Skip to content

Commit

Permalink
Fix type inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromxavier committed Sep 10, 2024
1 parent f0122cd commit a9effd3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/compiler/parse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ function parse!(

for (ωi, di) in Virtual.expansion(vi)
for (ωj, dj) in Virtual.expansion(vj)
g[union(ωi, ωj)] += c * di * dj
ωij = union!(VI[], ωi, ωj)

g[ωij] += c * di * dj
end
end
end
Expand Down

0 comments on commit a9effd3

Please sign in to comment.