Skip to content

Commit a337e60

Browse files
committed
allow Dual numbers with sparsity
1 parent fe391b6 commit a337e60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/OrdinaryDiffEqDifferentiation/src/alg_utils.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ function DiffEqBase.prepare_alg(
5454

5555
sparse_prepped_AD = prepare_user_sparsity(prepped_AD, prob)
5656

57-
# 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)
5959
@warn "Input type or problem definition is incompatible with sparse automatic differentiation. Switching to using dense automatic differentiation."
6060
autodiff = ADTypes.dense_ad(sparse_prepped_AD)
6161
else

0 commit comments

Comments
 (0)