Skip to content

Commit a631481

Browse files
authored
Remove unused variables
1 parent 57e1a43 commit a631481

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/systems/diffeqs/abstractodesystem.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ function calculate_jacobian(sys::AbstractODESystem;
7171

7272
rhs = [eq.rhs - eq.lhs for eq in full_equations(sys)] #need du terms on rhs for differentiating wrt du
7373

74-
iv = get_iv(sys)
75-
7674
if sparse
7775
jac = sparsejacobian(rhs, dvs, simplify = simplify)
7876
else
@@ -94,8 +92,6 @@ function calculate_control_jacobian(sys::AbstractODESystem;
9492
end
9593

9694
rhs = [eq.rhs for eq in full_equations(sys)]
97-
98-
iv = get_iv(sys)
9995
ctrls = controls(sys)
10096

10197
if sparse

0 commit comments

Comments
 (0)