Skip to content

Commit

Permalink
fixes inverse factor
Browse files Browse the repository at this point in the history
  • Loading branch information
Eelco Hoogendoorn committed Nov 5, 2023
1 parent d067312 commit 4bc5ca2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions numga/operator/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,9 +545,9 @@ def inverse_factor(self, x: SubSpace) -> Operator:
inverse(x) = (x * inverse_factor(x))<0>
"""
p = self.product(self.conjugate(x), self.involute(x)).symmetry((0, 1), +1)
q = self.product(p, x.reverse())#.symmetry((1, 2), +1)
return q
p = self.product(self.conjugate(x), self.involute(x))
q = self.product(p, x.reverse())
return q.symmetry((0,1,2))

@cache
def inertia(self, l: SubSpace, r: SubSpace) -> Operator:
Expand Down

0 comments on commit 4bc5ca2

Please sign in to comment.