Skip to content

Commit 5af597a

Browse files
fix: lower default maxiters for fixpoint_sub
1 parent d16bc03 commit 5af597a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/variable.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ infinite loops in cases where the substitutions in `dict` are circular
533533
534534
See also: [`fast_substitute`](@ref).
535535
"""
536-
function fixpoint_sub(x, dict; operator = Nothing, maxiters = 10000)
536+
function fixpoint_sub(x, dict; operator = Nothing, maxiters = 1000)
537537
dict = subrules_to_dict(dict)
538538
y = fast_substitute(x, dict; operator)
539539
while !isequal(x, y) && maxiters > 0

0 commit comments

Comments
 (0)