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
# if u0 is a StaticArray or Complex or Dual etc. don't use sparsity
58
-
if (((typeof(u0) <:StaticArray) || (eltype(u0) <:Complex) ||eltype(u0) <:ForwardDiff.Dual||(!(prob.f isa DAEFunction) && prob.f.mass_matrix isa MatrixOperator)) && sparse_prepped_AD isa AutoSparse)
57
+
# if u0 is a StaticArray or eltype is Complex etc. don't use sparsity
58
+
if (((typeof(u0) <:StaticArray) || (eltype(u0) <:Complex) || (!(prob.f isa DAEFunction) && prob.f.mass_matrix isa MatrixOperator)) && sparse_prepped_AD isa AutoSparse)
59
59
@warn"Input type or problem definition is incompatible with sparse automatic differentiation. Switching to using dense automatic differentiation."
0 commit comments