From ba376fd221fdb079549d59a7d39efc9869082808 Mon Sep 17 00:00:00 2001 From: "Bernhard C. Thiel" Date: Wed, 13 Oct 2021 23:22:25 +0200 Subject: [PATCH] Fix compiler error --- forgi/threedee/utilities/broken_ml_core.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/forgi/threedee/utilities/broken_ml_core.cpp b/forgi/threedee/utilities/broken_ml_core.cpp index 94181d22..05d5ad64 100644 --- a/forgi/threedee/utilities/broken_ml_core.cpp +++ b/forgi/threedee/utilities/broken_ml_core.cpp @@ -215,9 +215,9 @@ void testdot(){ Basis b3 = b1*b2; std::cout<<"B3:\n"; b3.print(); - assert (b3[0][0]==8); - assert (b3[1][0]==20); - assert (b3[1][2]==32); + assert (b3.coords[0][0]==8); + assert (b3.coords[1][0]==20); + assert (b3.coords[1][2]==32); Vect a=Vect(1.,2.,5.); Vect b=b1.apply_to(a);