Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eelco Hoogendoorn committed Nov 26, 2023
1 parent 038fc16 commit ffb9813
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions numga/subspace/subspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,9 @@ def wedge(self, other) -> "SubSpace":
@cache
def inner(self, other) -> "SubSpace":
return self.algebra.operator.inner(self, other).subspace
# def reject(self, other):
# return self.difference()
def reject(self, other):
# FIXME: this formulation does not work for degenerate inputs
return self.wedge(other).inner(other)

@cache
def squared(self) -> "SubSpace":
Expand Down

0 comments on commit ffb9813

Please sign in to comment.