@@ -560,7 +560,7 @@ function get_linear_scc_linsol(alg_eqs::BitSet, alg_vars::Vector{Int}, neweqs::V
560560 end
561561 # Substitute solved differential equations
562562 resid = Symbolics. fixpoint_sub (
563- resid, total_sub; operator = MTKBase. Shift)
563+ resid, total_sub, MTKBase. Shift)
564564 # Substitute solved equations
565565 resid = SU. substitute (resid, solved_eqs_sub)
566566 push! (resids, resid)
@@ -580,7 +580,7 @@ function get_linear_scc_linsol(alg_eqs::BitSet, alg_vars::Vector{Int}, neweqs::V
580580 end
581581 # Substitute solved differential equations
582582 resid = Symbolics. fixpoint_sub (
583- resid, total_sub; operator = MTKBase. Shift)
583+ resid, total_sub, MTKBase. Shift)
584584 # Substitute solved equations
585585 resid = SU. substitute (resid, solved_eqs_sub)
586586 # Standard `linear_expansion`-based process
@@ -821,7 +821,7 @@ Generate a first-order differential equation whose LHS is `dx`.
821821"""
822822function make_differential_equation (var, dx, eq, total_sub)
823823 v1 = Symbolics. symbolic_linear_solve (eq, var):: SymbolicT
824- v2 = Symbolics. fixpoint_sub (v1, total_sub; operator = MTKBase. Shift)
824+ v2 = Symbolics. fixpoint_sub (v1, total_sub, MTKBase. Shift)
825825 v3 = MTKBase. simplify_shifts (v2)
826826 dx ~ v3
827827end
@@ -851,7 +851,7 @@ function make_solved_equation(var, eq, total_sub; simplify = false)
851851 return var ~ MTKBase. simplify_shifts (Symbolics. fixpoint_sub (
852852 simplify ?
853853 Symbolics. simplify (rhs) : rhs,
854- total_sub; operator = MTKBase. Shift))
854+ total_sub, MTKBase. Shift))
855855 end
856856end
857857
0 commit comments