We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d56584 commit 16c9c0dCopy full SHA for 16c9c0d
src/systems/codegen.jl
@@ -455,8 +455,9 @@ end
455
Return the sparsity pattern of the jacobian of `sys` as a matrix.
456
"""
457
function jacobian_sparsity(sys::System)
458
- sparsity = torn_system_jacobian_sparsity(sys)
459
- sparsity === nothing || return sparsity
+ # disable to fix https://github.com/SciML/ModelingToolkit.jl/issues/3871
+ #sparsity = torn_system_jacobian_sparsity(sys)
460
+ #sparsity === nothing || return sparsity
461
462
Symbolics.jacobian_sparsity([eq.rhs for eq in full_equations(sys)],
463
[dv for dv in unknowns(sys)])
0 commit comments