mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
MILU: avoid use of sstream
This commit is contained in:
parent
4a0bdc38e1
commit
6d033fcf56
@ -134,7 +134,8 @@ void milu0_decomposition(M& A, FieldFunct<M> absFunctor, FieldFunct<M> signFunct
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( a_ik.index() != irow.index() )
|
if ( a_ik.index() != irow.index() )
|
||||||
OPM_THROW(std::logic_error, "Matrix is missing diagonal for row " << irow.index());
|
OPM_THROW(std::logic_error,
|
||||||
|
"Matrix is missing diagonal for row " + std::to_string(irow.index()));
|
||||||
|
|
||||||
int index = 0;
|
int index = 0;
|
||||||
for(const auto& entry: sum_dropped)
|
for(const auto& entry: sum_dropped)
|
||||||
|
Loading…
Reference in New Issue
Block a user