Skip to content
Snippets Groups Projects
Commit 29f82023 authored by Van Dung Nguyen's avatar Van Dung Nguyen
Browse files

add norm of solution

parent 27edb5f7
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,7 @@ class linearSystemBase { ...@@ -26,6 +26,7 @@ class linearSystemBase {
void setParameter (std::string key, std::string value); void setParameter (std::string key, std::string value);
virtual void insertInSparsityPattern(int _row, int _col){}; virtual void insertInSparsityPattern(int _row, int _col){};
virtual double normInfRightHandSide() const = 0; virtual double normInfRightHandSide() const = 0;
virtual double normInfSolution() const {return 0;};
virtual void createMatrix() {}; virtual void createMatrix() {};
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment