diff --git a/Solver/linearSystemFull.h b/Solver/linearSystemFull.h
index 586fa52aaa3fa01ba339efea3456d506e72cc065..1c3cf865e4f2405e1456ce17baced16ada6e9001 100644
--- a/Solver/linearSystemFull.h
+++ b/Solver/linearSystemFull.h
@@ -72,9 +72,6 @@ class linearSystemFull : public linearSystem<scalar> {
   }
   virtual int systemSolve() 
   {
-    _a->print("A in solve");
-    _b->print("B in solve");
-    _x->print("X in solve");
     if (_b->size())
       _a->luSolve(*_b, *_x);
     return 1;