diff options
author | Nao Pross <np@0hm.ch> | 2024-05-20 15:48:09 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2024-05-20 15:48:09 +0200 |
commit | 701db20fff023a3ecee5c9674bde268dad6d462d (patch) | |
tree | 5166212b8bf42264064da04b78615aca6305fe04 | |
parent | Create BlockPolyMatrixMixin to replace VStack, BlockDiag, ... (diff) | |
download | polymatrix-701db20fff023a3ecee5c9674bde268dad6d462d.tar.gz polymatrix-701db20fff023a3ecee5c9674bde268dad6d462d.zip |
Delete broken function for Determinant feature that was removed
-rw-r--r-- | polymatrix/expression/init.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/polymatrix/expression/init.py b/polymatrix/expression/init.py index 825bc10..e65be9e 100644 --- a/polymatrix/expression/init.py +++ b/polymatrix/expression/init.py @@ -59,12 +59,6 @@ def init_combinations_expr( ) -def init_determinant_expr( - underlying: ExpressionBaseMixin, -): - return polymatrix.expression.impl.DeterminantExprImpl( - underlying=underlying, - ) def init_diag_expr( |