mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Fixed unitialized value for ILU when using flexible solvers.
If the user requested ILU0, the uninitialized valued caused an arbritrary (quite high) fill-in level to be used which stalled the computation and exhausted memory when running parallel.
This commit is contained in:
@@ -80,7 +80,7 @@ class ParallelOverlappingILU0Args
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ParallelOverlappingILU0Args(MILU_VARIANT milu = MILU_VARIANT::ILU )
|
ParallelOverlappingILU0Args(MILU_VARIANT milu = MILU_VARIANT::ILU )
|
||||||
: milu_(milu)
|
: milu_(milu), n_(0)
|
||||||
{}
|
{}
|
||||||
void setMilu(MILU_VARIANT milu)
|
void setMilu(MILU_VARIANT milu)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user