Adjust test to changed constructor.

This commit is contained in:
Markus Blatt 2018-02-06 12:44:21 +01:00
parent cfa311e055
commit ffda4f96d5

View File

@ -302,8 +302,10 @@ void runBlackoilAmgLaplace()
Criterion criterion;
smootherArgs.iterations = 1;
Opm::CprParameter param;
Opm::BlackoilAmg<Operator,ParSmoother,Criterion,Communication,0> amg(fop, criterion,
Opm::BlackoilAmg<Operator,ParSmoother,Criterion,Communication,0> amg(param,
fop, criterion,
smootherArgs,
comm);
Dune::CGSolver<Vector> amgCG(fop, sp, amg, 10e-8, 300, (ccomm.rank()==0) ? 2 : 0);