Skip to content

Commit 079a2bb

Browse files
committed
Fix factorization for ladders
1 parent 5ef6c4f commit 079a2bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/ldu.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function ldu_factorization!(system)
2929
for c in cyclic_children
3030
for cc in cyclic_children
3131
cc == c && break
32-
cc acyclic_children[c] && continue
32+
cc children(system,c) && continue
3333
ldu_factorization_cyclic!(matrix_entries[v,c], matrix_entries[v,cc], matrix_entries[cc,cc], matrix_entries[cc,c])
3434
ldu_factorization_cyclic!(matrix_entries[c,v], matrix_entries[c,cc], matrix_entries[cc,cc], matrix_entries[cc,v])
3535
end

0 commit comments

Comments
 (0)