Skip to content

Commit

Permalink
fixes #613 - the upper bound was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
fieker committed Aug 12, 2021
1 parent 810e4a7 commit a2fa9d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experimental/GaloisGrp/GaloisGrp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ end
Normal ring
"""
function add_ring()
return BoundRing{fmpz}( (x,y) -> x*y, (x,y) -> x+y, (x,y) -> x^y, x->x, "add-ring")
return BoundRing{fmpz}( (x,y) -> x*y, (x,y) -> x+y, (x,y) -> x^y, x->abs(x), "add-ring")
end

#roots rt are power series sum a_n x^n
Expand Down

0 comments on commit a2fa9d3

Please sign in to comment.