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
Doing using JET, Nemo ; report_package(Nemo) I get the following error:
═════ 7806 toplevel errors found ═════
┌ @ /Users/mhorn/Projekte/OSCAR/Nemo.jl/src/Nemo.jl:59
│ ArgumentError: Package AbstractAlgebra not found in current path, maybe you meant `import/using .AbstractAlgebra`.
│ - Otherwise, run `import Pkg; Pkg.add("AbstractAlgebra")` to install the AbstractAlgebra package.
│ Stacktrace:
│ [1] macro expansion
│ @ ./loading.jl:1630 [inlined]
│ [2] macro expansion
│ @ ./lock.jl:267 [inlined]
│ [3] require(into::Module, mod::Symbol)
│ @ Base ./loading.jl:1611
│ [4] eval(m::Module, e::Any)
│ @ Core ./boot.jl:370
└─────────────────────────
┌ @ /Users/mhorn/Projekte/OSCAR/Nemo.jl/src/flint/FlintTypes.jl:42
│ UndefVarError: `RingElem` not defined
└─────────────────────────
┌ @ /Users/mhorn/Projekte/OSCAR/Nemo.jl/src/flint/FlintTypes.jl:95
│ UndefVarError: `ZZRingElem` not defined
└─────────────────────────
...
and then a gazillion more UndefVarError due to references to things from AbstractAlgebra.
Now, of course the package works, but I think the code flagged in the first error "confuses" JET:
for i in names(AbstractAlgebra) # <--- JET error points here
(i in AbstractAlgebra.import_exclude || !isdefined(AbstractAlgebra, i)) && continue
i == :GF && continue
i == :NumberField && continue
@eval import AbstractAlgebra: $i
@eval export $i
end
Any ideas or hints what might cause this, or how I could perhaps avoid this? I already tried inserting import AbstractAlgebra
The text was updated successfully, but these errors were encountered:
Doing
using JET, Nemo ; report_package(Nemo)
I get the following error:and then a gazillion more
UndefVarError
due to references to things fromAbstractAlgebra
.Now, of course the package works, but I think the code flagged in the first error "confuses" JET:
Any ideas or hints what might cause this, or how I could perhaps avoid this? I already tried inserting
import AbstractAlgebra
The text was updated successfully, but these errors were encountered: