From 456de40e50fda4b5074553bae1b6e56a1fcd9f19 Mon Sep 17 00:00:00 2001 From: Michael Schneeberger Date: Wed, 10 Aug 2022 10:41:49 +0200 Subject: fix bug in test TestToMatrixRepr --- test_polymatrix/test_tomatrixrepr.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test_polymatrix/test_tomatrixrepr.py b/test_polymatrix/test_tomatrixrepr.py index 181f6fa..1af25dd 100644 --- a/test_polymatrix/test_tomatrixrepr.py +++ b/test_polymatrix/test_tomatrixrepr.py @@ -6,7 +6,7 @@ from polymatrix.expression.init.initfromtermsexpr import init_from_terms_expr from polymatrix.expression.init.initlinearinexpr import init_linear_in_expr -class TestLinearIn(unittest.TestCase): +class TestToMatrixRepr(unittest.TestCase): def test_1(self): underlying_terms = { @@ -27,12 +27,12 @@ class TestLinearIn(unittest.TestCase): expr = init_from_terms_expr(terms=underlying_terms, shape=(3, 1)) state = init_expression_state(n_param=2) - state, result = polymatrix.to_matrix_equations((expr,), (0, 1)).apply(state) + state, result = polymatrix.to_matrix_repr((expr,), (0, 1)).apply(state) - A0 = result.matrix_equations[0][0] - A1 = result.matrix_equations[0][1] - A2 = result.matrix_equations[0][2] - A3 = result.matrix_equations[0][3] + A0 = result.data[0][0] + A1 = result.data[0][1] + A2 = result.data[0][2] + A3 = result.data[0][3] self.assertEquals(A0[0, 0], 1.0) -- cgit v1.2.1