Skip to content

Commit

Permalink
fix for symmray support
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmgray committed Sep 18, 2024
1 parent f4ff318 commit fd78337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quimb/tensor/tensor_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -4185,7 +4185,7 @@ def conj(self, mangle_inner=False, inplace=False):
append = None if mangle_inner is True else str(mangle_inner)
tn.mangle_inner_(append)

if hasattr(next(iter(tn.tensor_map.values())), "phase_flip"):
if hasattr(next(iter(tn.tensor_map.values())).data, "phase_flip"):
# need to phase dual outer indices
outer_inds = tn.outer_inds()
for t in tn:
Expand Down

0 comments on commit fd78337

Please sign in to comment.