[cleanup] Removes unnecessary if clauses for unsupported DUNE versions.
We are targetting DUNE 2.4.* and 2.5.* currently. Therefore this commit removes the if checks for lower versions to cleanup the code.
This commit is contained in:
parent
417c5b2d46
commit
a46e2c7121
@ -47,9 +47,7 @@
|
|||||||
#include <dune/istl/paamg/kamg.hh>
|
#include <dune/istl/paamg/kamg.hh>
|
||||||
#include <dune/istl/paamg/pinfo.hh>
|
#include <dune/istl/paamg/pinfo.hh>
|
||||||
|
|
||||||
#if DUNE_VERSION_NEWER(DUNE_ISTL, 2, 3)
|
|
||||||
#include <dune/istl/paamg/fastamg.hh>
|
#include <dune/istl/paamg/fastamg.hh>
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <opm/common/utility/platform_dependent/reenable_warnings.h>
|
#include <opm/common/utility/platform_dependent/reenable_warnings.h>
|
||||||
|
|
||||||
@ -77,7 +75,6 @@ namespace Opm
|
|||||||
solveCG_AMG(O& A, Vector& x, Vector& b, S& sp, const C& comm, double tolerance, int maxit, int verbosity,
|
solveCG_AMG(O& A, Vector& x, Vector& b, S& sp, const C& comm, double tolerance, int maxit, int verbosity,
|
||||||
double prolongateFactor, int smoothsteps);
|
double prolongateFactor, int smoothsteps);
|
||||||
|
|
||||||
#if defined(HAS_DUNE_FAST_AMG) || DUNE_VERSION_NEWER(DUNE_ISTL, 2, 3)
|
|
||||||
template<class O, class S, class C>
|
template<class O, class S, class C>
|
||||||
LinearSolverInterface::LinearSolverReport
|
LinearSolverInterface::LinearSolverReport
|
||||||
solveKAMG(O& A, Vector& x, Vector& b, S& sp, const C& comm, double tolerance, int maxit, int verbosity,
|
solveKAMG(O& A, Vector& x, Vector& b, S& sp, const C& comm, double tolerance, int maxit, int verbosity,
|
||||||
@ -87,7 +84,6 @@ namespace Opm
|
|||||||
LinearSolverInterface::LinearSolverReport
|
LinearSolverInterface::LinearSolverReport
|
||||||
solveFastAMG(O& A, Vector& x, Vector& b, S& sp, const C& comm, double tolerance, int maxit, int verbosity,
|
solveFastAMG(O& A, Vector& x, Vector& b, S& sp, const C& comm, double tolerance, int maxit, int verbosity,
|
||||||
double prolongateFactor);
|
double prolongateFactor);
|
||||||
#endif
|
|
||||||
|
|
||||||
template<class O, class S, class C>
|
template<class O, class S, class C>
|
||||||
LinearSolverInterface::LinearSolverReport
|
LinearSolverInterface::LinearSolverReport
|
||||||
@ -223,16 +219,10 @@ namespace Opm
|
|||||||
linsolver_prolongate_factor_, linsolver_smooth_steps_);
|
linsolver_prolongate_factor_, linsolver_smooth_steps_);
|
||||||
break;
|
break;
|
||||||
case KAMG:
|
case KAMG:
|
||||||
#if defined(HAS_DUNE_FAST_AMG) || DUNE_VERSION_NEWER(DUNE_ISTL, 2, 3)
|
|
||||||
res = solveKAMG(opA, x, b, sp, comm, linsolver_residual_tolerance_, maxit, linsolver_verbosity_,
|
res = solveKAMG(opA, x, b, sp, comm, linsolver_residual_tolerance_, maxit, linsolver_verbosity_,
|
||||||
linsolver_prolongate_factor_, linsolver_smooth_steps_);
|
linsolver_prolongate_factor_, linsolver_smooth_steps_);
|
||||||
#else
|
|
||||||
throw std::runtime_error("KAMG not supported with this version of DUNE");
|
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
case FastAMG:
|
case FastAMG:
|
||||||
#if defined(HAS_DUNE_FAST_AMG) || DUNE_VERSION_NEWER(DUNE_ISTL, 2, 3)
|
|
||||||
|
|
||||||
#if HAVE_MPI
|
#if HAVE_MPI
|
||||||
if(std::is_same<C,Dune::OwnerOverlapCopyCommunication<int,int> >::value)
|
if(std::is_same<C,Dune::OwnerOverlapCopyCommunication<int,int> >::value)
|
||||||
{
|
{
|
||||||
@ -242,12 +232,6 @@ namespace Opm
|
|||||||
|
|
||||||
res = solveFastAMG(opA, x, b, sp, comm, linsolver_residual_tolerance_, maxit, linsolver_verbosity_,
|
res = solveFastAMG(opA, x, b, sp, comm, linsolver_residual_tolerance_, maxit, linsolver_verbosity_,
|
||||||
linsolver_prolongate_factor_);
|
linsolver_prolongate_factor_);
|
||||||
#else
|
|
||||||
if(linsolver_verbosity_)
|
|
||||||
std::cerr<<"Fast AMG is not available; falling back to CG preconditioned with the normal one"<<std::endl;
|
|
||||||
res = solveCG_AMG(opA, x, b, sp, comm, linsolver_residual_tolerance_, maxit, linsolver_verbosity_,
|
|
||||||
linsolver_prolongate_factor_, linsolver_smooth_steps_);
|
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
case BiCGStab_ILU0:
|
case BiCGStab_ILU0:
|
||||||
res = solveBiCGStab_ILU0(opA, x, b, sp, comm, linsolver_residual_tolerance_, maxit, linsolver_verbosity_);
|
res = solveBiCGStab_ILU0(opA, x, b, sp, comm, linsolver_residual_tolerance_, maxit, linsolver_verbosity_);
|
||||||
@ -409,7 +393,6 @@ namespace Opm
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#if defined(HAS_DUNE_FAST_AMG) || DUNE_VERSION_NEWER(DUNE_ISTL, 2, 3)
|
|
||||||
template<class O, class S, class C>
|
template<class O, class S, class C>
|
||||||
LinearSolverInterface::LinearSolverReport
|
LinearSolverInterface::LinearSolverReport
|
||||||
solveKAMG(O& opA, Vector& x, Vector& b, S& /* sp */, const C& /* comm */, double tolerance, int maxit, int verbosity,
|
solveKAMG(O& opA, Vector& x, Vector& b, S& /* sp */, const C& /* comm */, double tolerance, int maxit, int verbosity,
|
||||||
@ -509,7 +492,6 @@ namespace Opm
|
|||||||
res.residual_reduction = result.reduction;
|
res.residual_reduction = result.reduction;
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
template<class O, class S, class C>
|
template<class O, class S, class C>
|
||||||
LinearSolverInterface::LinearSolverReport
|
LinearSolverInterface::LinearSolverReport
|
||||||
|
@ -30,13 +30,8 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <dune/common/version.hh>
|
#include <dune/common/version.hh>
|
||||||
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
|
|
||||||
#include <dune/common/parallel/mpicollectivecommunication.hh>
|
#include <dune/common/parallel/mpicollectivecommunication.hh>
|
||||||
#include <dune/common/parallel/collectivecommunication.hh>
|
#include <dune/common/parallel/collectivecommunication.hh>
|
||||||
#else
|
|
||||||
#include <dune/common/mpicollectivecommunication.hh>
|
|
||||||
#include <dune/common/collectivecommunication.hh>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <dune/common/parallel/indexset.hh>
|
#include <dune/common/parallel/indexset.hh>
|
||||||
#include <dune/common/parallel/communicator.hh>
|
#include <dune/common/parallel/communicator.hh>
|
||||||
|
@ -163,7 +163,6 @@ BOOST_AUTO_TEST_CASE(BiCGILUTest)
|
|||||||
run_test(param);
|
run_test(param);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(HAS_DUNE_FAST_AMG) || DUNE_VERSION_NEWER(DUNE_ISTL, 2, 3)
|
|
||||||
BOOST_AUTO_TEST_CASE(FastAMGTest)
|
BOOST_AUTO_TEST_CASE(FastAMGTest)
|
||||||
{
|
{
|
||||||
Opm::ParameterGroup param;
|
Opm::ParameterGroup param;
|
||||||
@ -183,7 +182,6 @@ BOOST_AUTO_TEST_CASE(KAMGTest)
|
|||||||
run_test(param);
|
run_test(param);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
#if HAVE_PETSC
|
#if HAVE_PETSC
|
||||||
BOOST_AUTO_TEST_CASE(PETScTest)
|
BOOST_AUTO_TEST_CASE(PETScTest)
|
||||||
|
Loading…
Reference in New Issue
Block a user