We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22f818b commit b6ecff1Copy full SHA for b6ecff1
src/abstractalgebra.jl
@@ -65,11 +65,9 @@ let
65
@acrule(~x::ismpoly * ~y::ismpoly => ~x * ~y)
66
@rule(*(~x) => ~x)
67
@rule((~x::ismpoly)^(~a::isnonnegint) => (~x)^(~a))]
68
- MPOLY_CLEANUP = Fixpoint(Postwalk(PassThrough(RestartedChain(mpoly_preprocess))))
+ global const MPOLY_CLEANUP = Fixpoint(Postwalk(PassThrough(RestartedChain(mpoly_preprocess))))
69
MPOLY_MAKER = Fixpoint(Postwalk(PassThrough(RestartedChain(mpoly_rules))))
70
71
- global MPOLY_CLEANUP
72
-
73
global to_mpoly
74
function to_mpoly(t, dicts=_dicts())
75
# term2sym is only used to assign the same
0 commit comments