summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMichael Schneeberger <michael.schneeberger@fhnw.ch>2022-08-17 17:20:35 +0200
committerMichael Schneeberger <michael.schneeberger@fhnw.ch>2022-08-17 17:20:35 +0200
commitdcfe95fae5466e3ccffc9c27115aa9a45f01f537 (patch)
tree11c1765d884ee8249a2b53a484d0c6f4f152b633 /README.md
parent'to_matrix_repr' function requires 'variables' argument (diff)
downloadpolymatrix-dcfe95fae5466e3ccffc9c27115aa9a45f01f537.tar.gz
polymatrix-dcfe95fae5466e3ccffc9c27115aa9a45f01f537.zip
Update README
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index d6b8945..5c56079 100644
--- a/README.md
+++ b/README.md
@@ -52,7 +52,7 @@ f2 = polymatrix.from_(x1 + x1*x2)
f3 = f1 + f2
# prints the data structure of the expression
-# ExpressionImpl(underlying=AdditionExprImpl(left=FromSympyExprImpl(data=((x1 + x2,),)), right=FromSympyExprImpl(data=((x1*x2 + x1,),))))
+# AdditionExprImpl(left=FromSympyExprImpl(data=((x1 + x2,),)), right=FromSympyExprImpl(data=((x1*x2 + x1,),)))
print(f3)
state, poly_matrix = f3.apply(state)