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.
maxiters
fixpoint_sub
1 parent d16bc03 commit 5af597aCopy full SHA for 5af597a
src/variable.jl
@@ -533,7 +533,7 @@ infinite loops in cases where the substitutions in `dict` are circular
533
534
See also: [`fast_substitute`](@ref).
535
"""
536
-function fixpoint_sub(x, dict; operator = Nothing, maxiters = 10000)
+function fixpoint_sub(x, dict; operator = Nothing, maxiters = 1000)
537
dict = subrules_to_dict(dict)
538
y = fast_substitute(x, dict; operator)
539
while !isequal(x, y) && maxiters > 0
0 commit comments