Skip to content

Commit

Permalink
another precisino issue...
Browse files Browse the repository at this point in the history
hopefully
 - the last (famous last words)
 - the "final" fix for #1428
  • Loading branch information
fieker committed Sep 25, 2024
1 parent ec6d1d1 commit f7cb011
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LocalField/neq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -692,8 +692,8 @@ function frobenius_equation2(c::Hecke.LocalFieldElem, F::Union{PadicField, Qadic
return s
end
@assert v > 0
pvE = uniformizer(E, Int(v*eE))
pvE_inv = uniformizer(E, -Int(v*eE))
pvE = uniformizer(E, Int(v*eE); prec = pr)
pvE_inv = uniformizer(E, -Int(v*eE); prec = pr)

Check warning on line 696 in src/LocalField/neq.jl

View check run for this annotation

Codecov / codecov/patch

src/LocalField/neq.jl#L695-L696

Added lines #L695 - L696 were not covered by tests
x = mK((cc-1)* pvE_inv)
a = preimage(mK, artin_schreier_equation(X, x))
t = (1+pvE*a)
Expand Down

0 comments on commit f7cb011

Please sign in to comment.