Skip to content
Snippets Groups Projects
Commit 0a97c923 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix compile

parent 02b11a02
No related branches found
No related tags found
No related merge requests found
......@@ -79,16 +79,16 @@ public :
{
Msg::Error("Gmm++ is not available on this version of gmsh");
}
virtual bool isAllocated () const {}
virtual bool isAllocated () const { return false; }
virtual void allocate (int nbRows) {}
virtual void addToMatrix (int _row, int _col, double val) {}
virtual double getFromMatrix (int _row, int _col) const {}
virtual double getFromMatrix (int _row, int _col) const { return 0.; }
virtual void addToRightHandSide (int _row, double val) {}
virtual double getFromRightHandSide (int _row) const {}
virtual double getFromSolution (int _row) const {}
virtual double getFromRightHandSide (int _row) const { return 0.; }
virtual double getFromSolution (int _row) const { return 0.; }
virtual void zeroMatrix () {}
virtual void zeroRightHandSide () {}
virtual int systemSolve () {}
virtual int systemSolve () { return 0; }
};
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment