Skip to content

Commit 0193676

Browse files
committed
Fix bounds
1 parent 7129283 commit 0193676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/alias_elimination.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function alias_elimination!(state::TearingState)
9191
end
9292
end
9393
deleteat!(eqs, sort!(dels))
94-
old_to_new = Vector{Int}(undef, length(var_to_diff))
94+
old_to_new = Vector{Int}(undef, nsrcs(graph))
9595
idx = 0
9696
cursor = 1
9797
ndels = length(dels)

0 commit comments

Comments
 (0)