Skip to content
Snippets Groups Projects
Commit 6f1b3275 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

* Bug fix for initial problem

parent 3f6d7c12
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,13 @@ namespace AMDiS { ...@@ -68,7 +68,13 @@ namespace AMDiS {
/** \brief /** \brief
*/ */
virtual void solve(AdaptInfo *adaptInfo, bool fixedMatrix) {} virtual void solve(AdaptInfo* adaptInfo) {}
/** \brief
*/
virtual void solve(AdaptInfo *adaptInfo, bool fixedMatrix) {
solve(adaptInfo);
}
/** \brief /** \brief
*/ */
......
...@@ -23,7 +23,7 @@ namespace AMDiS { ...@@ -23,7 +23,7 @@ namespace AMDiS {
Flag flag = buildAndAdapt(adaptInfo, toDo); Flag flag = buildAndAdapt(adaptInfo, toDo);
if (toDo.isSet(SOLVE)) if (toDo.isSet(SOLVE))
problem_->solve(adaptInfo, false); problem_->solve(adaptInfo, false);
if (toDo.isSet(SOLVE_RHS)) if (toDo.isSet(SOLVE_RHS))
......
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