mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Avoid unnecessary extra matrix manipulation.
When using the ParallelOverlappingILU0 it is not necessary to fix the overlap rows.
This commit is contained in:
parent
65817c9068
commit
1c208e9a92
@ -208,7 +208,7 @@ namespace Opm
|
|||||||
}
|
}
|
||||||
rhs_ = &b;
|
rhs_ = &b;
|
||||||
|
|
||||||
if (isParallel()) {
|
if (isParallel() && prm_.get<std::string>("preconditioner.type") != "ParOverILU0") {
|
||||||
makeOverlapRowsInvalid(getMatrix());
|
makeOverlapRowsInvalid(getMatrix());
|
||||||
}
|
}
|
||||||
prepareFlexibleSolver();
|
prepareFlexibleSolver();
|
||||||
|
Loading…
Reference in New Issue
Block a user