Skip to content

Commit c938a76

Browse files
Support non-commutative symbols
1 parent 3d9c4ed commit c938a76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sympt/classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ def dagger(self):
992992
subs_dict = dict(zip(self.Ns, nsimplify(self.Ns - new_delta)))
993993
new_fn = self.fn.T.applyfunc(Dagger).subs(subs_dict)
994994
else:
995-
new_fn = self.fn.T.conjugate()
995+
new_fn = self.fn.T.applyfunc(Dagger)
996996

997997
return MulGroup(new_fn, new_inf, new_delta, self.Ns)
998998

0 commit comments

Comments
 (0)