Skip to content

Commit

Permalink
use full_equations so ovservables work
Browse files Browse the repository at this point in the history
  • Loading branch information
jClugstor committed Jul 30, 2024
1 parent a7f6cd2 commit b049203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/MTKBifurcationKitExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ function BifurcationKit.BifurcationProblem(osys::ODESystem, args...; kwargs...)
if !ModelingToolkit.iscomplete(osys)
error("A completed `ODESystem` is required. Call `complete` or `structural_simplify` on the system before creating a `BifurcationProblem`")
end
nsys = NonlinearSystem([0 ~ eq.rhs for eq in equations(osys)],
nsys = NonlinearSystem([0 ~ eq.rhs for eq in full_equations(osys)],
unknowns(osys),
parameters(osys);
name = nameof(osys))
Expand Down

0 comments on commit b049203

Please sign in to comment.