diff options
author | Nao Pross <np@0hm.ch> | 2024-04-29 16:06:22 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2024-04-29 16:06:22 +0200 |
commit | 72aae805d12edb487f2390e34f915f2102db1d97 (patch) | |
tree | 251f8785cf2e49a000aa5f3d02604f03de8ad201 | |
parent | Fix bug in ExpressionState.index (diff) | |
download | polymatrix-72aae805d12edb487f2390e34f915f2102db1d97.tar.gz polymatrix-72aae805d12edb487f2390e34f915f2102db1d97.zip |
Remove debug print
Diffstat (limited to '')
-rw-r--r-- | polymatrix/expression/mixins/variablemixin.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/polymatrix/expression/mixins/variablemixin.py b/polymatrix/expression/mixins/variablemixin.py index 916c29d..da72b65 100644 --- a/polymatrix/expression/mixins/variablemixin.py +++ b/polymatrix/expression/mixins/variablemixin.py @@ -32,7 +32,6 @@ class VariableMixin(ExpressionBaseMixin): @override def apply(self, state: ExpressionStateMixin) -> tuple[ExpressionStateMixin, PolyMatrixMixin]: state, indices = state.index(self) - print(f"indexing {self}, got index {indices}") p = PolyMatrixDict() rows, cols = self.shape |