From 54462f7c4468fee0a9cf69c6961fb03f5b00e3aa Mon Sep 17 00:00:00 2001 From: utensil Date: Thu, 28 Mar 2024 20:08:20 +0800 Subject: [PATCH] Further update test_basic_multivector_operations --- test/test_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_test.py b/test/test_test.py index 39032f5c..fb6b0405 100644 --- a/test/test_test.py +++ b/test/test_test.py @@ -60,8 +60,8 @@ def test_basic_multivector_operations(self): assert str(A) == 'A + A__xy*e_x^e_y' assert str((X|A)) == 'A__xy*(-(e_x.e_y)*X__x - (e_y.e_y)*X__y)*e_x + A__xy*((e_x.e_x)*X__x + (e_x.e_y)*X__y)*e_y' - assert str((XX)) == 'A__xy*((e_x.e_y)*X__x + (e_y.e_y)*X__y)*e_x - A__xy*((e_x.e_x)*X__x + (e_x.e_y)*X__y)*e_y' + assert str((XX)) == 'A__xy*((e_x.e_y)*X__x + (e_y.e_y)*X__y)*e_x + A__xy*(-(e_x.e_x)*X__x - (e_x.e_y)*X__y)*e_y' o2d = Ga('e*x|y', g=[1, 1])