Skip to content

Commit

Permalink
Fix operator order for left IP-EOM
Browse files Browse the repository at this point in the history
  • Loading branch information
obackhouse committed Aug 13, 2024
1 parent a6bab71 commit a70fad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ebcc/codegen/bootstrap_CCSD.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def tensor_cleanup(self, *args):
# Get the L2 contractions in pdaggerq format
pq.clear()
pq.set_left_operators_type("IP")
pq.set_right_operators([["a*(a)", "a(i)", "a(j)"]])
pq.set_right_operators([["a*(a)", "a(j)", "a(i)"]])
pq.set_left_operators([["l1"], ["l2"]])
pq.add_st_operator(1.0, ["f"], ["t1", "t2"])
pq.add_st_operator(1.0, ["v"], ["t1", "t2"])
Expand Down

0 comments on commit a70fad5

Please sign in to comment.