Skip to content

Commit

Permalink
Fix syms warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gerlero committed Feb 5, 2024
1 parent 2c9b3e7 commit f67b89f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/odes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function boltzmann(eq::DiffusionEquation{1})
return @SMatrix [0 1
j21 j22]
end
return ODEFunction{false}(f, jac = jac, syms = [eq._sym, :d_do], indepsym = :o)
return ODEFunction{false}(f, jac = jac)
end
end

Expand All @@ -54,7 +54,7 @@ function boltzmann(eq::DiffusionEquation{m}) where {m}
return @SMatrix [0 1
j21 j22]
end
return ODEFunction{false}(f, jac = jac, syms = [eq._sym, :d_do], indepsym = :o)
return ODEFunction{false}(f, jac = jac)
end
end

Expand Down

0 comments on commit f67b89f

Please sign in to comment.