You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
push!(diagnostic, "Jacobian row(s) $singularity_rows have $entry_desc entries (e.g. $(join(example_strs, ", "))), suggesting a singularity in those equation(s)")
740
+
push!(diagnostic, "\nJacobian row(s) $singularity_rows have $entry_desc entries (e.g. $(join(example_strs, ", "))), suggesting a singularity in those equation(s)")
734
741
if sym_eqs !==nothing
735
742
for row in singularity_rows
736
743
if row <=length(sym_eqs)
@@ -740,7 +747,7 @@ function SciMLBase.log_instability(integrator::ODEIntegrator)
740
747
end
741
748
# jac cols
742
749
if!isempty(singularity_cols)
743
-
push!(diagnostic, "Jacobian column(s) $singularity_cols have $entry_desc entries, suggesting those state component(s) are diverging")
750
+
push!(diagnostic, "\nJacobian column(s) $singularity_cols have $entry_desc entries, suggesting those state component(s) are diverging")
744
751
if sym_vars !==nothing
745
752
for col in singularity_cols
746
753
if col <=length(sym_vars)
@@ -750,7 +757,13 @@ function SciMLBase.log_instability(integrator::ODEIntegrator)
0 commit comments