Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Backofen, Rainer
amdis
Commits
6f1b3275
Commit
6f1b3275
authored
Dec 03, 2008
by
Thomas Witkowski
Browse files
* Bug fix for initial problem
parent
3f6d7c12
Changes
2
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/ProblemInstat.h
View file @
6f1b3275
...
...
@@ -68,7 +68,13 @@ namespace AMDiS {
/** \brief
*/
virtual
void
solve
(
AdaptInfo
*
adaptInfo
,
bool
fixedMatrix
)
{}
virtual
void
solve
(
AdaptInfo
*
adaptInfo
)
{}
/** \brief
*/
virtual
void
solve
(
AdaptInfo
*
adaptInfo
,
bool
fixedMatrix
)
{
solve
(
adaptInfo
);
}
/** \brief
*/
...
...
AMDiS/src/StandardProblemIteration.cc
View file @
6f1b3275
...
...
@@ -23,7 +23,7 @@ namespace AMDiS {
Flag
flag
=
buildAndAdapt
(
adaptInfo
,
toDo
);
if
(
toDo
.
isSet
(
SOLVE
))
if
(
toDo
.
isSet
(
SOLVE
))
problem_
->
solve
(
adaptInfo
,
false
);
if
(
toDo
.
isSet
(
SOLVE_RHS
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment