BlackoilModelEbos: add accessor to linear solve setup time

to allow for external usage
This commit is contained in:
Arne Morten Kvarving 2023-07-04 15:41:57 +02:00
parent cee8dc4c6e
commit 6f726049ce

View File

@ -888,6 +888,13 @@ namespace Opm {
}
// Obtain reference to linear solver setup time
double& linearSolveSetupTime()
{
return linear_solve_setup_time_;
}
void solveJacobianSystemDomain(const Domain& domain, BVector& global_x)
{
Dune::Timer perfTimer;