diff options
author | Michael Schneeberger <michael.schneeberger@fhnw.ch> | 2022-04-12 09:30:35 +0200 |
---|---|---|
committer | Michael Schneeberger <michael.schneeberger@fhnw.ch> | 2022-04-12 09:30:35 +0200 |
commit | f9ec423683462800c757119c08947b742458639e (patch) | |
tree | c75a4686696368b160a46ed4f67601be8581492f /polymatrix/init/initpolymatexpr.py | |
parent | remove shape property, introduce accumulate function, reimplement derivative ... (diff) | |
download | polymatrix-f9ec423683462800c757119c08947b742458639e.tar.gz polymatrix-f9ec423683462800c757119c08947b742458639e.zip |
bug fixes and clean ups
Diffstat (limited to 'polymatrix/init/initpolymatexpr.py')
-rw-r--r-- | polymatrix/init/initpolymatexpr.py | 10 |
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, -) |