You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think we can do better. Here is a quick example to reproduce the issue.
julia> K, a =rationals_as_number_field();
julia> OK =maximal_order(K);
julia> M =12*OK;
julia> R, f =ray_class_group(M);
julia> I =FacElem([9*OK, 3*OK, 5* OK], ZZRingElem[1, -2, 1]);
julia> Hecke.assertions(true);
julia> f\(numerator(evaluate(I)))
Element of R with components [01]
julia> f\(I)
ERROR: AssertionError:$(Expr(:escape, :(is_coprime(J, m))))
Stacktrace:
The text was updated successfully, but these errors were encountered:
We can map factored ideals to ray class groups, but the individual factors need to be coprime to the modulus:
Hecke.jl/src/NumFieldOrd/NfOrd/RayClassGrp.jl
Lines 785 to 792 in 60a055c
I think we can do better. Here is a quick example to reproduce the issue.
The text was updated successfully, but these errors were encountered: