summaryrefslogtreecommitdiffstats
path: root/polymatrix/init/initpolymatexpr.py
diff options
context:
space:
mode:
authorMichael Schneeberger <michael.schneeberger@fhnw.ch>2022-04-12 09:30:35 +0200
committerMichael Schneeberger <michael.schneeberger@fhnw.ch>2022-04-12 09:30:35 +0200
commitf9ec423683462800c757119c08947b742458639e (patch)
treec75a4686696368b160a46ed4f67601be8581492f /polymatrix/init/initpolymatexpr.py
parentremove shape property, introduce accumulate function, reimplement derivative ... (diff)
downloadpolymatrix-f9ec423683462800c757119c08947b742458639e.tar.gz
polymatrix-f9ec423683462800c757119c08947b742458639e.zip
bug fixes and clean ups
Diffstat (limited to 'polymatrix/init/initpolymatexpr.py')
-rw-r--r--polymatrix/init/initpolymatexpr.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/polymatrix/init/initpolymatexpr.py b/polymatrix/init/initpolymatexpr.py
deleted file mode 100644
index 9f6cd20..0000000
--- a/polymatrix/init/initpolymatexpr.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from polymatrix.impl.polymatexprimpl import PolyMatExprImpl
-
-def init_poly_mat_expr(
- terms: dict,
- shape: tuple,
-):
- return PolyMatExprImpl(
- terms=terms,
- shape=shape,
-)