Adapt to changed argument order for a method.

IncompFlowSolverHybrid::solve() argument order has been restored, this is
the only place the new argument order (with some new arguments placed in
between old arguments) were used correctly, so it has to be changed back.
This commit is contained in:
Atgeirr Flø Rasmussen 2012-11-15 23:53:51 +01:00
parent 077f66eaa9
commit 2d09c43b26

View File

@ -243,9 +243,10 @@ namespace Dune
// Run pressure solver.
bool same_matrix = (bctype_ != Fixed) && (pdd != 0);
flow_solver_.solve(fluid, sat, bcond_, src, residual_tolerance_,
linsolver_maxit_, linsolver_prolongate_factor_,
linsolver_verbosity_,
linsolver_type_, same_matrix, linsolver_smooth_steps_);
linsolver_type_, same_matrix,
linsolver_maxit_, linsolver_prolongate_factor_,
linsolver_smooth_steps_);
double max_mod = flow_solver_.postProcessFluxes();
std::cout << "Max mod = " << max_mod << std::endl;