Skip to content
Snippets Groups Projects
Commit dfd5f43e authored by Éric Béchet's avatar Éric Béchet
Browse files

bug when GMM not compiled

parent 03baad8c
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ class linearSystemGmm : public linearSystem<scalar> {
virtual bool isAllocated() const { return false; }
virtual void allocate(int nbRows) {}
virtual void addToMatrix(int row, int col, scalar &val) {}
virtual void getFromMatrix(int row, int col, calar &val) const { return 0.; }
virtual void getFromMatrix(int row, int col, scalar &val) const { return 0.; }
virtual void addToRightHandSide(int row, scalar &val) {}
virtual void getFromRightHandSide(int row, scalar &val) const { return 0.; }
virtual void getFromSolution(int row, scalar &val) const { return 0.; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment