Skip to content
Snippets Groups Projects
Commit 9a0647e1 authored by Jonathan Lambrechts's avatar Jonathan Lambrechts
Browse files

correct previous commit for NETCDF

parent d42fc6b2
No related branches found
No related tags found
No related merge requests found
......@@ -279,10 +279,10 @@ class linearSystemPETSc : public linearSystem<scalar> {
virtual void allocate(int nbRows) {}
virtual void clear(){}
virtual void addToMatrix(int row, int col, const scalar &val) {}
virtual void getFromMatrix(int row, int col, scalar &val) const { return 0.; }
virtual void getFromMatrix(int row, int col, scalar &val) const {}
virtual void addToRightHandSide(int row, const scalar &val) {}
virtual void getFromRightHandSide(int row, scalar &val) const { return 0.; }
virtual void getFromSolution(int row, scalar &val) const { return 0.; }
virtual void getFromRightHandSide(int row, scalar &val) const {}
virtual void getFromSolution(int row, scalar &val) const {}
virtual void zeroMatrix() {}
virtual void zeroRightHandSide() {}
virtual int systemSolve() { return 0; }
......
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