Skip to content
Snippets Groups Projects
Commit f1ee9b75 authored by Bastien Gorissen's avatar Bastien Gorissen
Browse files

Remove superfluous matrix printing (debug leftover).

parent 44fe3bae
Branches
Tags
No related merge requests found
...@@ -72,9 +72,6 @@ class linearSystemFull : public linearSystem<scalar> { ...@@ -72,9 +72,6 @@ class linearSystemFull : public linearSystem<scalar> {
} }
virtual int systemSolve() virtual int systemSolve()
{ {
_a->print("A in solve");
_b->print("B in solve");
_x->print("X in solve");
if (_b->size()) if (_b->size())
_a->luSolve(*_b, *_x); _a->luSolve(*_b, *_x);
return 1; return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment