summaryrefslogtreecommitdiffstats
path: root/polymatrix/expression/mixins/determinantexprmixin.py
diff options
context:
space:
mode:
authorMichael Schneeberger <michael.schneeberger@fhnw.ch>2024-02-26 08:53:32 +0100
committerMichael Schneeberger <michael.schneeberger@fhnw.ch>2024-02-26 08:53:32 +0100
commitc48eac2f053322c62ed7deaa709bc05984dbf9a0 (patch)
treed19f99af324bc1682bd8578cb0aa230ebc3f07d0 /polymatrix/expression/mixins/determinantexprmixin.py
parentflatten polymatrix.polymatrix and polymatrix.statemonad structure for better ... (diff)
downloadpolymatrix-c48eac2f053322c62ed7deaa709bc05984dbf9a0.tar.gz
polymatrix-c48eac2f053322c62ed7deaa709bc05984dbf9a0.zip
clean ups
Diffstat (limited to 'polymatrix/expression/mixins/determinantexprmixin.py')
-rw-r--r--polymatrix/expression/mixins/determinantexprmixin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/polymatrix/expression/mixins/determinantexprmixin.py b/polymatrix/expression/mixins/determinantexprmixin.py
index ef18e91..7614669 100644
--- a/polymatrix/expression/mixins/determinantexprmixin.py
+++ b/polymatrix/expression/mixins/determinantexprmixin.py
@@ -16,12 +16,12 @@ class DeterminantExprMixin(ExpressionBaseMixin):
def underlying(self) -> ExpressionBaseMixin:
...
- # # overwrites abstract method of `ExpressionBaseMixin`
+ # # overwrites the abstract method of `ExpressionBaseMixin`
# @property
# def shape(self) -> tuple[int, int]:
# return self.underlying.shape[0], 1
- # overwrites abstract method of `ExpressionBaseMixin`
+ # overwrites the abstract method of `ExpressionBaseMixin`
def apply(
self,
state: ExpressionState,