mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
[feature] Make ILU use CRS for storing lower and upper triangular matrices.
Then the backwards in memory iteration for the upper triangular can be avoided by storing the matrix blocks in the correct order.
This commit is contained in:
@@ -289,7 +289,8 @@ namespace Opm
|
||||
}
|
||||
}
|
||||
|
||||
typedef Dune::SeqILU0<Matrix, Vector, Vector> SeqPreconditioner;
|
||||
//typedef Dune::SeqILU0<Matrix, Vector, Vector> SeqPreconditioner;
|
||||
typedef ParallelOverlappingILU0<Matrix,Vector,Vector> SeqPreconditioner;
|
||||
|
||||
template <class Operator>
|
||||
std::unique_ptr<SeqPreconditioner> constructPrecond(Operator& opA, const Dune::Amg::SequentialInformation&) const
|
||||
|
||||
Reference in New Issue
Block a user