Skip to content

Commit

Permalink
fix: turn off parameter splitting for BifurcationProblem
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushSabharwal committed Oct 1, 2024
1 parent 005a58f commit 3c5cf3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function BK.BifurcationProblem(rs::ReactionSystem, u0_bif, ps, bif_par, args...;
Catalyst.conservationlaw_errorcheck(rs, vcat(ps, u0))
nsys = convert(NonlinearSystem, rs; defaults = Dict(u0),
remove_conserved = true, remove_conserved_warn = false)
nsys = complete(nsys)
nsys = complete(nsys; split = false)

# Makes BifurcationProblem (this call goes through the ModelingToolkit-based BifurcationKit extension).
return BK.BifurcationProblem(nsys, u0_bif, ps, bif_par, args...; plot_var,
Expand Down

0 comments on commit 3c5cf3b

Please sign in to comment.