Skip to content
3 changes: 1 addition & 2 deletions CMakeLists_files.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ list (APPEND MAIN_SOURCE_FILES
opm/simulators/linalg/FlexibleSolver2.cpp
opm/simulators/linalg/FlexibleSolver3.cpp
opm/simulators/linalg/FlexibleSolver4.cpp
opm/simulators/linalg/setupPropertyTree.cpp
opm/simulators/utils/readDeck.cpp
opm/simulators/timestepping/TimeStepControl.cpp
opm/simulators/timestepping/AdaptiveSimulatorTimer.cpp
Expand Down Expand Up @@ -170,10 +171,8 @@ list (APPEND PUBLIC_HEADER_FILES
opm/simulators/linalg/bda/openclSolverBackend.hpp
opm/simulators/linalg/bda/MultisegmentWellContribution.hpp
opm/simulators/linalg/bda/WellContributions.hpp
opm/simulators/linalg/BlackoilAmg.hpp
opm/simulators/linalg/amgcpr.hh
opm/simulators/linalg/twolevelmethodcpr.hh
opm/simulators/linalg/CPRPreconditioner.hpp
opm/simulators/linalg/ExtractParallelGridInformationToISTL.hpp
opm/simulators/linalg/FlexibleSolver.hpp
opm/simulators/linalg/FlexibleSolver_impl.hpp
Expand Down
18 changes: 1 addition & 17 deletions flow/flow_blackoil_dunecpr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,6 @@ namespace Opm {
static constexpr int value = 100;
};
template<class TypeTag>
struct UseAmg<TypeTag, TTag::EclFlowProblemSimple> { // probably not used
static constexpr bool value = true;
};
template<class TypeTag>
struct UseCpr<TypeTag, TTag::EclFlowProblemSimple> {
static constexpr bool value = true;
};
template<class TypeTag>
struct CprMaxEllIter<TypeTag,TTag::EclFlowProblemSimple> {
static constexpr int value = 1;
};
Expand All @@ -70,17 +62,9 @@ namespace Opm {
static constexpr int value = 3;
};
template<class TypeTag>
struct CprSolverVerbose<TypeTag, TTag::EclFlowProblemSimple> {
static constexpr int value = 0;
};
template<class TypeTag>
struct LinearSolverConfiguration<TypeTag, TTag::EclFlowProblemSimple> {
struct Linsolver<TypeTag, TTag::EclFlowProblemSimple> {
static constexpr auto value = "ilu0";
};
template<class TypeTag>
struct SystemStrategy<TypeTag, TTag::EclFlowProblemSimple> {
static constexpr auto value = "quasiimpes";
};

template<class TypeTag>
struct FluidSystem<TypeTag, TTag::EclFlowProblemSimple>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_blackoil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_blackoil.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_gasoil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_gasoil.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_oilwater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_oilwater.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_oilwater_brine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_oilwater_brine.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_oilwater_polymer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_oilwater_polymer.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_oilwater_polymer_injectivity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_oilwater_polymer_injectivity.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
Loading