Skip to content

Update README.md #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Mods"
uuid = "7475f97c-0381-53b1-977b-4c60186c8d62"
author = ["Edward Scheinerman <[email protected]>"]
version = "2.0.3"
version = "2.1.0"

[compat]
julia = "1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ julia> rand(Mod{10},2,5)
### Rationals and Mods

The result of `Mod{N}(a//b)` is exactly
`Mod{N}(numerator(a)) / Mod{n}(denominator(b))`. This may equal
`Mod{N}(numerator(a)) / Mod{N}(denominator(b))`. This may equal
`Mod{N}(a)/Mod{N}(b)` if `a` and `b` are relatively prime to each other
and to `N`.

Expand Down
55 changes: 0 additions & 55 deletions junk/old_GaussMods.jl

This file was deleted.

200 changes: 0 additions & 200 deletions junk/old_Mods.jl

This file was deleted.

4 changes: 0 additions & 4 deletions src/Mods.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
module Mods


__init__() =
@warn "This version of Mods is still under development. Don't upgrade to version 2.0.x yet. I'm working on it."



import Base: (==), (+), (-), (*), (inv), (/), (//), (^)
import Base: hash, show, iszero, isone, mod, abs,conj
Expand Down
Loading