diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e14c566048..de6144dbbcf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,8 +2,6 @@ cmake_minimum_required (VERSION 3.23) project(opm-common C CXX) option(SIBLING_SEARCH "Search for other modules in sibling directories?" ON) -option(ENABLE_ECL_INPUT "Enable eclipse input support?" ON) -option(ENABLE_ECL_OUTPUT "Enable eclipse output support?" ON) option(ENABLE_MOCKSIM "Build the mock simulator for io testing" ON) option(OPM_ENABLE_PYTHON "Enable python bindings?" OFF) option(OPM_INSTALL_PYTHON "Install python bindings?" ON) @@ -67,16 +65,6 @@ macro(opm-common_prereqs_hook) endmacro() macro(opm-common_config_hook) - if(ENABLE_ECL_INPUT) - string(APPEND OPM_PROJECT_EXTRA_CODE_INTREE "\n set(HAVE_ECL_INPUT 1)") - string(APPEND OPM_PROJECT_EXTRA_CODE_INSTALLED "\n set(HAVE_ECL_INPUT 1)") - set(HAVE_ECL_INPUT 1) - if(ENABLE_ECL_OUTPUT) - string(APPEND OPM_PROJECT_EXTRA_CODE_INTREE "\n set(HAVE_ECL_OUTPUT 1)") - string(APPEND OPM_PROJECT_EXTRA_CODE_INSTALLED "\n set(HAVE_ECL_OUTPUT 1)") - endif() - endif() - include(CheckIncludeFile) check_include_file(fnmatch.h FNMATCH_H_FOUND) if (FNMATCH_H_FOUND) @@ -86,24 +74,29 @@ macro(opm-common_config_hook) if(dune-common_FOUND) target_compile_definitions(opmcommon PUBLIC HAVE_DUNE_COMMON=1) endif() + + target_compile_definitions(opmcommon INTERFACE HAVE_OPM_COMMON=1) endmacro() macro(opm-common_sources_hook) - if(ENABLE_ECL_INPUT) - # Keyword generation - include(GenerateKeywords.cmake) - - # Append generated sources - list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/ParserInit.cpp) - foreach (name A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) - list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/ParserKeywords/${name}.cpp) - list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/ParserKeywords/ParserInit${name}.cpp) - list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/ParserKeywords/Builtin${name}.cpp) - endforeach() - if (OPM_ENABLE_EMBEDDED_PYTHON) - list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/python/cxx/builtin_pybind11.cpp) - endif() + # Keyword generation + include(GenerateKeywords.cmake) + + # Append generated sources + list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/ParserInit.cpp) + foreach (name A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) + list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/ParserKeywords/${name}.cpp) + list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/ParserKeywords/ParserInit${name}.cpp) + list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/ParserKeywords/Builtin${name}.cpp) + endforeach() + + if (OPM_ENABLE_EMBEDDED_PYTHON) + list(INSERT opm-common_SOURCES 0 ${PROJECT_BINARY_DIR}/python/cxx/builtin_pybind11.cpp) + set_source_files_properties(${PYTHON_CXX_SOURCE_FILES} PROPERTIES COMPILE_FLAGS -Wno-shadow) + set_source_files_properties(opm/input/eclipse/Python/PythonInterp.cpp PROPERTIES COMPILE_FLAGS -Wno-shadow) + set_source_files_properties(opm/input/eclipse/Schedule/Action/PyAction.cpp PROPERTIES COMPILE_FLAGS -Wno-shadow) endif() + set_source_files_properties( opm/input/eclipse/Python/Python.cpp PROPERTIES @@ -211,51 +204,49 @@ macro(opm-common_files_hook) endmacro() macro(opm-common_tests_hook) - if(ENABLE_ECL_INPUT) - # Add the tests - opm_add_test(test_EclFilesComparator - CONDITION - ENABLE_ECL_INPUT AND TARGET Boost::unit_test_framework - SOURCES - tests/test_EclFilesComparator.cpp - test_util/EclFilesComparator.cpp - LIBRARIES - opmcommon - Boost::unit_test_framework - WORKING_DIRECTORY - ${PROJECT_BINARY_DIR}/tests - ) + # Add the tests + opm_add_test(test_EclFilesComparator + CONDITION + TARGET Boost::unit_test_framework + SOURCES + tests/test_EclFilesComparator.cpp + test_util/EclFilesComparator.cpp + LIBRARIES + opmcommon + Boost::unit_test_framework + WORKING_DIRECTORY + ${PROJECT_BINARY_DIR}/tests + ) - opm_add_test(test_EclRegressionTest - CONDITION - ENABLE_ECL_INPUT AND TARGET Boost::unit_test_framework - SOURCES - tests/test_EclRegressionTest.cpp - test_util/EclFilesComparator.cpp - test_util/EclRegressionTest.cpp - LIBRARIES - opmcommon - Boost::unit_test_framework - WORKING_DIRECTORY - ${PROJECT_BINARY_DIR}/tests - ) + opm_add_test(test_EclRegressionTest + CONDITION + TARGET Boost::unit_test_framework + SOURCES + tests/test_EclRegressionTest.cpp + test_util/EclFilesComparator.cpp + test_util/EclRegressionTest.cpp + LIBRARIES + opmcommon + Boost::unit_test_framework + WORKING_DIRECTORY + ${PROJECT_BINARY_DIR}/tests + ) - include(ExtraTests.cmake) - - if(ENABLE_MOCKSIM AND TARGET Boost::unit_test_framework) - foreach(test test_msim test_msim_ACTIONX test_msim_EXIT) - opm_add_test(${test} - SOURCES - tests/msim/${test}.cpp - LIBRARIES - mocksim - opmcommon - Boost::unit_test_framework - WORKING_DIRECTORY - ${PROJECT_BINARY_DIR}/tests - ) - endforeach() - endif() + include(ExtraTests.cmake) + + if(ENABLE_MOCKSIM AND TARGET Boost::unit_test_framework) + foreach(test test_msim test_msim_ACTIONX test_msim_EXIT) + opm_add_test(${test} + SOURCES + tests/msim/${test}.cpp + LIBRARIES + mocksim + opmcommon + Boost::unit_test_framework + WORKING_DIRECTORY + ${PROJECT_BINARY_DIR}/tests + ) + endforeach() endif() if(OPM_ENABLE_PYTHON) @@ -276,26 +267,24 @@ macro(opm-common_targets_hook) target_include_directories(opmcommon PRIVATE ${CMAKE_BINARY_DIR}/_deps) endif() - if(ENABLE_ECL_INPUT) - target_sources(compareECL - PRIVATE - test_util/EclFilesComparator.cpp - test_util/EclRegressionTest.cpp - ) - - if(ENABLE_MOCKSIM) - add_library(mocksim msim/src/msim.cpp) - opm_add_target_options(TARGET mocksim) - target_link_libraries(mocksim PUBLIC opmcommon) - target_include_directories(mocksim PUBLIC msim/include) - add_executable(msim examples/msim.cpp) - opm_add_target_options(TARGET msim) - target_link_libraries(msim PRIVATE mocksim) - endif() + target_sources(compareECL + PRIVATE + test_util/EclFilesComparator.cpp + test_util/EclRegressionTest.cpp + ) - list(APPEND opm-common_EXTRA_TARGETS compareECL rst_deck) + if(ENABLE_MOCKSIM) + add_library(mocksim msim/src/msim.cpp) + opm_add_target_options(TARGET mocksim) + target_link_libraries(mocksim PUBLIC opmcommon) + target_include_directories(mocksim PUBLIC msim/include) + add_executable(msim examples/msim.cpp) + opm_add_target_options(TARGET msim) + target_link_libraries(msim PRIVATE mocksim) endif() + list(APPEND opm-common_EXTRA_TARGETS compareECL rst_deck) + if(TARGET Boost::unit_test_framework) foreach(test ACTIONX EmbeddedPython msim_ACTIONX PYACTION) if(TEST ${test}) @@ -486,16 +475,6 @@ endmacro() list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/Modules) set(OPM_MACROS_ROOT ${PROJECT_SOURCE_DIR}) -# Output implies input -if(ENABLE_ECL_OUTPUT) - set(ENABLE_ECL_INPUT ON) -endif() - -# And likewise, no input means no output -if(NOT ENABLE_ECL_INPUT) - set(ENABLE_ECL_OUTPUT OFF) -endif() - if(NOT OPM_ENABLE_PYTHON) set(OPM_INSTALL_PYTHON OFF) endif() diff --git a/CMakeLists_files.cmake b/CMakeLists_files.cmake index f74646b2a17..d58af8accd5 100644 --- a/CMakeLists_files.cmake +++ b/CMakeLists_files.cmake @@ -23,1635 +23,1586 @@ # you should only add to this list if the *user* of # the library needs it. -list (APPEND MAIN_SOURCE_FILES - opm/common/OpmLog/CounterLog.cpp - opm/common/OpmLog/EclipsePRTLog.cpp - opm/common/OpmLog/LogBackend.cpp - opm/common/OpmLog/Logger.cpp - opm/common/OpmLog/LogUtil.cpp - opm/common/OpmLog/KeywordLocation.cpp - opm/common/OpmLog/InfoLogger.cpp - opm/common/OpmLog/OpmLog.cpp - opm/common/OpmLog/StreamLog.cpp - opm/common/OpmLog/TimerLog.cpp - opm/common/utility/ActiveGridCells.cpp - opm/common/utility/DemangledType.cpp - opm/common/utility/FileSystem.cpp - opm/common/utility/MemPacker.cpp - opm/common/utility/OpmInputError.cpp - opm/common/utility/shmatch.cpp - opm/common/utility/String.cpp - opm/common/utility/SymmTensor.cpp - opm/common/utility/TimeService.cpp - opm/common/utility/VoigtArray.cpp - opm/common/utility/parameters/Parameter.cpp - opm/common/utility/parameters/ParameterGroup.cpp - opm/common/utility/parameters/ParameterRequirement.cpp - opm/common/utility/parameters/ParameterTools.cpp - opm/common/utility/numeric/calculateCellVol.cpp - opm/common/utility/numeric/GeometryUtil.cpp - opm/common/utility/numeric/VectorUtil.cpp - opm/common/utility/numeric/GridUtil.cpp - opm/common/utility/numeric/MonotCubicInterpolator.cpp - opm/common/utility/numeric/RootFinders.cpp - opm/material/common/Spline.cpp - opm/material/common/Tabulated1DFunction.cpp - opm/material/common/TridiagonalMatrix.cpp - opm/material/common/UniformXTabulated2DFunction.cpp - opm/material/components/CO2Tables.cpp - opm/material/components/H2.cpp - opm/material/densead/Evaluation.cpp - opm/material/fluidmatrixinteractions/EclEpsScalingPoints.cpp - opm/material/fluidsystems/BlackOilFluidSystem.cpp - opm/material/fluidsystems/PhaseUsageInfo.cpp - opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.cpp - opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.cpp - opm/material/fluidsystems/blackoilpvt/Co2GasPvt.cpp - opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.cpp - opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.cpp - opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.cpp - opm/material/fluidsystems/blackoilpvt/DeadOilPvt.cpp - opm/material/fluidsystems/blackoilpvt/DryGasPvt.cpp - opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.cpp - opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.cpp - opm/material/fluidsystems/blackoilpvt/GasPvtThermal.cpp - opm/material/fluidsystems/blackoilpvt/H2GasPvt.cpp - opm/material/fluidsystems/blackoilpvt/LiveOilPvt.cpp - opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.cpp - opm/material/fluidsystems/blackoilpvt/OilPvtThermal.cpp - opm/material/fluidsystems/blackoilpvt/SolventPvt.cpp - opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.cpp - opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.cpp - opm/material/fluidsystems/blackoilpvt/WetGasPvt.cpp - opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.cpp - opm/ml/ml_model.cpp +list(APPEND MAIN_SOURCE_FILES + external/resinsight/LibCore/cvfAssert.cpp + external/resinsight/LibCore/cvfAtomicCounter.cpp + external/resinsight/LibCore/cvfCharArray.cpp + external/resinsight/LibCore/cvfMath.cpp + external/resinsight/LibCore/cvfObject.cpp + external/resinsight/LibCore/cvfPlane.cpp + external/resinsight/LibCore/cvfString.cpp + external/resinsight/LibCore/cvfSystem.cpp + external/resinsight/LibCore/cvfTrace.cpp + external/resinsight/LibCore/cvfVector3.cpp + external/resinsight/LibGeometry/cvfBoundingBox.cpp + external/resinsight/LibGeometry/cvfBoundingBoxTree.cpp + external/resinsight/LibGeometry/cvfRay.cpp + external/resinsight/ReservoirDataModel/cvfGeometryTools.cpp + external/resinsight/ReservoirDataModel/RigHexIntersectionTools.cpp + external/resinsight/ReservoirDataModel/RigWellLogExtractor.cpp + external/resinsight/ReservoirDataModel/RigWellPath.cpp + external/resinsight/CommonCode/cvfStructGrid.cpp + external/resinsight/cafPdmCore/cafSignal.cpp + external/resinsight/cafHexGridIntersectionTools/cafHexGridIntersectionTools.cpp + opm/common/OpmLog/CounterLog.cpp + opm/common/OpmLog/EclipsePRTLog.cpp + opm/common/OpmLog/LogBackend.cpp + opm/common/OpmLog/Logger.cpp + opm/common/OpmLog/LogUtil.cpp + opm/common/OpmLog/KeywordLocation.cpp + opm/common/OpmLog/InfoLogger.cpp + opm/common/OpmLog/OpmLog.cpp + opm/common/OpmLog/StreamLog.cpp + opm/common/OpmLog/TimerLog.cpp + opm/common/utility/ActiveGridCells.cpp + opm/common/utility/DemangledType.cpp + opm/common/utility/FileSystem.cpp + opm/common/utility/MemPacker.cpp + opm/common/utility/OpmInputError.cpp + opm/common/utility/shmatch.cpp + opm/common/utility/String.cpp + opm/common/utility/SymmTensor.cpp + opm/common/utility/TimeService.cpp + opm/common/utility/VoigtArray.cpp + opm/common/utility/parameters/Parameter.cpp + opm/common/utility/parameters/ParameterGroup.cpp + opm/common/utility/parameters/ParameterRequirement.cpp + opm/common/utility/parameters/ParameterTools.cpp + opm/common/utility/numeric/calculateCellVol.cpp + opm/common/utility/numeric/GeometryUtil.cpp + opm/common/utility/numeric/VectorUtil.cpp + opm/common/utility/numeric/GridUtil.cpp + opm/common/utility/numeric/MonotCubicInterpolator.cpp + opm/common/utility/numeric/RootFinders.cpp + opm/input/eclipse/Deck/Deck.cpp + opm/input/eclipse/Deck/DeckView.cpp + opm/input/eclipse/Deck/DeckTree.cpp + opm/input/eclipse/Deck/FileDeck.cpp + opm/input/eclipse/Deck/DeckItem.cpp + opm/input/eclipse/Deck/DeckValue.cpp + opm/input/eclipse/Deck/DeckKeyword.cpp + opm/input/eclipse/Deck/DeckRecord.cpp + opm/input/eclipse/Deck/DeckOutput.cpp + opm/input/eclipse/Deck/DeckSection.cpp + opm/input/eclipse/Deck/ImportContainer.cpp + opm/input/eclipse/Deck/UDAValue.cpp + opm/input/eclipse/EclipseState/checkDeck.cpp + opm/input/eclipse/EclipseState/Co2StoreConfig.cpp + opm/input/eclipse/EclipseState/EclipseConfig.cpp + opm/input/eclipse/EclipseState/EclipseState.cpp + opm/input/eclipse/EclipseState/EndpointScaling.cpp + opm/input/eclipse/EclipseState/Phase.cpp + opm/input/eclipse/EclipseState/Runspec.cpp + opm/input/eclipse/EclipseState/TracerConfig.cpp + opm/input/eclipse/EclipseState/WagHysteresisConfig.cpp + opm/input/eclipse/EclipseState/Aquifer/AquiferConfig.cpp + opm/input/eclipse/EclipseState/Aquifer/AquiferFlux.cpp + opm/input/eclipse/EclipseState/Aquifer/AquiferCT.cpp + opm/input/eclipse/EclipseState/Aquifer/Aquifetp.cpp + opm/input/eclipse/EclipseState/Aquifer/Aquancon.cpp + opm/input/eclipse/EclipseState/Aquifer/AquiferHelpers.cpp + opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquiferCell.cpp + opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquiferConnection.cpp + opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/SingleNumericalAquifer.cpp + opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquifers.cpp + opm/input/eclipse/EclipseState/Compositional/CompositionalConfig.cpp + opm/input/eclipse/EclipseState/Grid/Box.cpp + opm/input/eclipse/EclipseState/Grid/BoxManager.cpp + opm/input/eclipse/EclipseState/Grid/Carfin.cpp + opm/input/eclipse/EclipseState/Grid/CarfinManager.cpp + opm/input/eclipse/EclipseState/Grid/LgrCollection.cpp + opm/input/eclipse/EclipseState/Grid/EclipseGrid.cpp + opm/input/eclipse/EclipseState/Grid/FieldData.cpp + opm/input/eclipse/EclipseState/Grid/FieldProps.cpp + opm/input/eclipse/EclipseState/Grid/FieldPropsManager.cpp + opm/input/eclipse/EclipseState/Grid/FaceDir.cpp + opm/input/eclipse/EclipseState/Grid/Fault.cpp + opm/input/eclipse/EclipseState/Grid/FaultCollection.cpp + opm/input/eclipse/EclipseState/Grid/FaultFace.cpp + opm/input/eclipse/EclipseState/Grid/FIPRegionStatistics.cpp + opm/input/eclipse/EclipseState/Grid/GridDims.cpp + opm/input/eclipse/EclipseState/Grid/MapAxes.cpp + opm/input/eclipse/EclipseState/Grid/MinpvMode.cpp + opm/input/eclipse/EclipseState/Grid/MULTREGTScanner.cpp + opm/input/eclipse/EclipseState/Grid/NNC.cpp + opm/input/eclipse/EclipseState/Grid/Operate.cpp + opm/input/eclipse/EclipseState/Grid/PinchMode.cpp + opm/input/eclipse/EclipseState/Grid/readKeywordCarfin.cpp + opm/input/eclipse/EclipseState/Grid/RegionSetMatcher.cpp + opm/input/eclipse/EclipseState/Grid/SatfuncPropertyInitializers.cpp + opm/input/eclipse/EclipseState/Grid/setKeywordBox.cpp + opm/input/eclipse/EclipseState/Grid/TranCalculator.cpp + opm/input/eclipse/EclipseState/Grid/TransMult.cpp + opm/input/eclipse/EclipseState/InitConfig/Equil.cpp + opm/input/eclipse/EclipseState/InitConfig/FoamConfig.cpp + opm/input/eclipse/EclipseState/InitConfig/InitConfig.cpp + opm/input/eclipse/EclipseState/IOConfig/FIPConfig.cpp + opm/input/eclipse/EclipseState/IOConfig/IOConfig.cpp + opm/input/eclipse/EclipseState/SimulationConfig/BCConfig.cpp + opm/input/eclipse/EclipseState/SimulationConfig/DatumDepth.cpp + opm/input/eclipse/EclipseState/SimulationConfig/RockConfig.cpp + opm/input/eclipse/EclipseState/SimulationConfig/SimulationConfig.cpp + opm/input/eclipse/EclipseState/SimulationConfig/ThresholdPressure.cpp + opm/input/eclipse/EclipseState/SummaryConfig/SummaryConfig.cpp + opm/input/eclipse/EclipseState/Tables/Aqudims.cpp + opm/input/eclipse/EclipseState/Tables/ColumnSchema.cpp + opm/input/eclipse/EclipseState/Tables/DenT.cpp + opm/input/eclipse/EclipseState/Tables/JouleThomson.cpp + opm/input/eclipse/EclipseState/Tables/Eqldims.cpp + opm/input/eclipse/EclipseState/Tables/JFunc.cpp + opm/input/eclipse/EclipseState/Tables/PvtxTable.cpp + opm/input/eclipse/EclipseState/Tables/Regdims.cpp + opm/input/eclipse/EclipseState/Tables/SimpleTable.cpp + opm/input/eclipse/EclipseState/Tables/PolyInjTables.cpp + opm/input/eclipse/EclipseState/Tables/StandardCond.cpp + opm/input/eclipse/EclipseState/Tables/TableColumn.cpp + opm/input/eclipse/EclipseState/Tables/TableContainer.cpp + opm/input/eclipse/EclipseState/Tables/TableIndex.cpp + opm/input/eclipse/EclipseState/Tables/TLMixpar.cpp + opm/input/eclipse/EclipseState/Tables/Ppcwmax.cpp + opm/input/eclipse/EclipseState/Tables/EzrokhiTable.cpp + opm/input/eclipse/EclipseState/Tables/TableManager.cpp + opm/input/eclipse/EclipseState/Tables/TableSchema.cpp + opm/input/eclipse/EclipseState/Tables/Tables.cpp + opm/input/eclipse/EclipseState/Tables/Rock2dTable.cpp + opm/input/eclipse/EclipseState/Tables/Rock2dtrTable.cpp + opm/input/eclipse/EclipseState/Tables/PvtwsaltTable.cpp + opm/input/eclipse/EclipseState/Tables/BrineDensityTable.cpp + opm/input/eclipse/EclipseState/Tables/SolventDensityTable.cpp + opm/input/eclipse/EclipseState/Tables/Tabdims.cpp + opm/input/eclipse/Parser/ErrorGuard.cpp + opm/input/eclipse/Parser/InputErrorAction.cpp + opm/input/eclipse/Parser/ParseContext.cpp + opm/input/eclipse/Parser/Parser.cpp + opm/input/eclipse/Parser/ParserEnums.cpp + opm/input/eclipse/Parser/ParserItem.cpp + opm/input/eclipse/Parser/ParserKeyword.cpp + opm/input/eclipse/Parser/ParserRecord.cpp + opm/input/eclipse/Parser/raw/RawKeyword.cpp + opm/input/eclipse/Parser/raw/RawRecord.cpp + opm/input/eclipse/Parser/raw/StarToken.cpp + opm/input/eclipse/Python/Python.cpp + opm/input/eclipse/Schedule/ArrayDimChecker.cpp + opm/input/eclipse/Schedule/BCProp.cpp + opm/input/eclipse/Schedule/CompletedCells.cpp + opm/input/eclipse/Schedule/eval_uda.cpp + opm/input/eclipse/Schedule/Events.cpp + opm/input/eclipse/Schedule/GasLiftOpt.cpp + opm/input/eclipse/Schedule/GasLiftOptKeywordHandlers.cpp + opm/input/eclipse/Schedule/HandlerContext.cpp + opm/input/eclipse/Schedule/KeywordHandlers.cpp + opm/input/eclipse/Schedule/MessageLimits.cpp + opm/input/eclipse/Schedule/MixingRateControlKeywordHandlers.cpp + opm/input/eclipse/Schedule/OilVaporizationProperties.cpp + opm/input/eclipse/Schedule/RFTConfig.cpp + opm/input/eclipse/Schedule/RPTConfig.cpp + opm/input/eclipse/Schedule/RPTKeywordNormalisation.cpp + opm/input/eclipse/Schedule/RptschedKeywordNormalisation.cpp + opm/input/eclipse/Schedule/RSTConfig.cpp + opm/input/eclipse/Schedule/RXXKeywordHandlers.cpp + opm/input/eclipse/Schedule/Schedule.cpp + opm/input/eclipse/Schedule/ScheduleBlock.cpp + opm/input/eclipse/Schedule/ScheduleDeck.cpp + opm/input/eclipse/Schedule/ScheduleGrid.cpp + opm/input/eclipse/Schedule/ScheduleRestartInfo.cpp + opm/input/eclipse/Schedule/ScheduleState.cpp + opm/input/eclipse/Schedule/ScheduleStatic.cpp + opm/input/eclipse/Schedule/ScheduleTypes.cpp + opm/input/eclipse/Schedule/SimpleRPTIntegerControlHandler.cpp + opm/input/eclipse/Schedule/Source.cpp + opm/input/eclipse/Schedule/SummaryState.cpp + opm/input/eclipse/Schedule/Tuning.cpp + opm/input/eclipse/Schedule/VFPInjTable.cpp + opm/input/eclipse/Schedule/VFPProdTable.cpp + opm/input/eclipse/Schedule/WriteRestartFileEvents.cpp + opm/input/eclipse/Schedule/Action/ActionAST.cpp + opm/input/eclipse/Schedule/Action/ActionContext.cpp + opm/input/eclipse/Schedule/Action/ActionResult.cpp + opm/input/eclipse/Schedule/Action/Actdims.cpp + opm/input/eclipse/Schedule/Action/Actions.cpp + opm/input/eclipse/Schedule/Action/ActionX.cpp + opm/input/eclipse/Schedule/Action/ActionParser.cpp + opm/input/eclipse/Schedule/Action/ActionValue.cpp + opm/input/eclipse/Schedule/Action/ASTNode.cpp + opm/input/eclipse/Schedule/Action/Condition.cpp + opm/input/eclipse/Schedule/Action/Enums.cpp + opm/input/eclipse/Schedule/Action/PyAction.cpp + opm/input/eclipse/Schedule/Action/State.cpp + opm/input/eclipse/Schedule/Action/WGNames.cpp + opm/input/eclipse/Schedule/Group/GPMaint.cpp + opm/input/eclipse/Schedule/Group/Group.cpp + opm/input/eclipse/Schedule/Group/GroupKeywordHandlers.cpp + opm/input/eclipse/Schedule/Group/GuideRate.cpp + opm/input/eclipse/Schedule/Group/GuideRateConfig.cpp + opm/input/eclipse/Schedule/Group/GuideRateKeywordHandlers.cpp + opm/input/eclipse/Schedule/Group/GuideRateModel.cpp + opm/input/eclipse/Schedule/Group/GConSale.cpp + opm/input/eclipse/Schedule/Group/GConSump.cpp + opm/input/eclipse/Schedule/Group/GroupEconProductionLimits.cpp + opm/input/eclipse/Schedule/Group/GroupSatelliteInjection.cpp + opm/input/eclipse/Schedule/Group/GSatProd.cpp + opm/input/eclipse/Schedule/Group/GTNode.cpp + opm/input/eclipse/Schedule/MSW/AICD.cpp + opm/input/eclipse/Schedule/MSW/Compsegs.cpp + opm/input/eclipse/Schedule/MSW/icd.cpp + opm/input/eclipse/Schedule/MSW/MSWKeywordHandlers.cpp + opm/input/eclipse/Schedule/MSW/Segment.cpp + opm/input/eclipse/Schedule/MSW/SegmentMatcher.cpp + opm/input/eclipse/Schedule/MSW/SICD.cpp + opm/input/eclipse/Schedule/MSW/Valve.cpp + opm/input/eclipse/Schedule/MSW/WellSegments.cpp + opm/input/eclipse/Schedule/MSW/WelSegsSet.cpp + opm/input/eclipse/Schedule/Network/Balance.cpp + opm/input/eclipse/Schedule/Network/Branch.cpp + opm/input/eclipse/Schedule/Network/ExtNetwork.cpp + opm/input/eclipse/Schedule/Network/NetworkKeywordHandlers.cpp + opm/input/eclipse/Schedule/Network/Node.cpp + opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingInfo.cpp + opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingKeywordHandlers.cpp + opm/input/eclipse/Schedule/ResCoup/GrupSlav.cpp + opm/input/eclipse/Schedule/ResCoup/MasterGroup.cpp + opm/input/eclipse/Schedule/ResCoup/Slaves.cpp + opm/input/eclipse/Schedule/ResCoup/MasterMinimumTimeStep.cpp + opm/input/eclipse/Schedule/ResCoup/ReadCouplingFile.cpp + opm/input/eclipse/Schedule/ResCoup/WriteCouplingFile.cpp + opm/input/eclipse/Schedule/UDQ/UDQKeywordHandlers.cpp + opm/input/eclipse/Schedule/UDQ/UDQActive.cpp + opm/input/eclipse/Schedule/UDQ/UDQAssign.cpp + opm/input/eclipse/Schedule/UDQ/UDQASTNode.cpp + opm/input/eclipse/Schedule/UDQ/UDQConfig.cpp + opm/input/eclipse/Schedule/UDQ/UDQContext.cpp + opm/input/eclipse/Schedule/UDQ/UDQDefine.cpp + opm/input/eclipse/Schedule/UDQ/UDQEnums.cpp + opm/input/eclipse/Schedule/UDQ/UDQFunction.cpp + opm/input/eclipse/Schedule/UDQ/UDQFunctionTable.cpp + opm/input/eclipse/Schedule/UDQ/UDQInput.cpp + opm/input/eclipse/Schedule/UDQ/UDQParams.cpp + opm/input/eclipse/Schedule/UDQ/UDQParser.cpp + opm/input/eclipse/Schedule/UDQ/UDQSet.cpp + opm/input/eclipse/Schedule/UDQ/UDQState.cpp + opm/input/eclipse/Schedule/UDQ/UDQToken.cpp + opm/input/eclipse/Schedule/UDQ/UDT.cpp + opm/input/eclipse/Schedule/Well/Connection.cpp + opm/input/eclipse/Schedule/Well/FilterCake.cpp + opm/input/eclipse/Schedule/Well/injection.cpp + opm/input/eclipse/Schedule/Well/GridIndependentWellKeywordHandlers.cpp + opm/input/eclipse/Schedule/Well/NameOrder.cpp + opm/input/eclipse/Schedule/Well/PAvg.cpp + opm/input/eclipse/Schedule/Well/PAvgCalculator.cpp + opm/input/eclipse/Schedule/Well/PAvgCalculatorCollection.cpp + opm/input/eclipse/Schedule/Well/PAvgDynamicSourceData.cpp + opm/input/eclipse/Schedule/Well/WCYCLE.cpp + opm/input/eclipse/Schedule/Well/Well.cpp + opm/input/eclipse/Schedule/Well/WellBrineProperties.cpp + opm/input/eclipse/Schedule/Well/WellCompletionKeywordHandlers.cpp + opm/input/eclipse/Schedule/Well/WellConnections.cpp + opm/input/eclipse/Schedule/Well/WellEconProductionLimits.cpp + opm/input/eclipse/Schedule/Well/WellEnums.cpp + opm/input/eclipse/Schedule/Well/WellFoamProperties.cpp + opm/input/eclipse/Schedule/Well/WellFractureSeeds.cpp + opm/input/eclipse/Schedule/Well/WellInjectionProperties.cpp + opm/input/eclipse/Schedule/Well/WellKeywordHandlers.cpp + opm/input/eclipse/Schedule/Well/WellMatcher.cpp + opm/input/eclipse/Schedule/Well/WellMICPProperties.cpp + opm/input/eclipse/Schedule/Well/WellPolymerProperties.cpp + opm/input/eclipse/Schedule/Well/WellProductionProperties.cpp + opm/input/eclipse/Schedule/Well/WellPropertiesKeywordHandlers.cpp + opm/input/eclipse/Schedule/Well/WellTestConfig.cpp + opm/input/eclipse/Schedule/Well/WellTestState.cpp + opm/input/eclipse/Schedule/Well/WellTracerProperties.cpp + opm/input/eclipse/Schedule/Well/WINJMULT.cpp + opm/input/eclipse/Schedule/Well/WList.cpp + opm/input/eclipse/Schedule/Well/WListManager.cpp + opm/input/eclipse/Schedule/Well/WDFAC.cpp + opm/input/eclipse/Schedule/Well/WVFPDP.cpp + opm/input/eclipse/Schedule/Well/WVFPEXP.cpp + opm/input/eclipse/Schedule/WellTraj/RigEclipseWellLogExtractor.cpp + opm/input/eclipse/Units/Dimension.cpp + opm/input/eclipse/Units/UnitSystem.cpp + opm/input/eclipse/Utility/Functional.cpp + opm/io/eclipse/EclFile.cpp + opm/io/eclipse/EclOutput.cpp + opm/io/eclipse/EclUtil.cpp + opm/io/eclipse/EGrid.cpp + opm/io/eclipse/EInit.cpp + opm/io/eclipse/ERft.cpp + opm/io/eclipse/ERst.cpp + opm/io/eclipse/ERsm.cpp + opm/io/eclipse/ESmry.cpp + opm/io/eclipse/ExtESmry.cpp + opm/io/eclipse/ESmry_write_rsm.cpp + opm/io/eclipse/OutputStream.cpp + opm/io/eclipse/ExtSmryOutput.cpp + opm/io/eclipse/RestartFileView.cpp + opm/io/eclipse/SummaryNode.cpp + opm/io/eclipse/rst/action.cpp + opm/io/eclipse/rst/aquifer.cpp + opm/io/eclipse/rst/connection.cpp + opm/io/eclipse/rst/group.cpp + opm/io/eclipse/rst/header.cpp + opm/io/eclipse/rst/netbalan.cpp + opm/io/eclipse/rst/network.cpp + opm/io/eclipse/rst/udq.cpp + opm/io/eclipse/rst/segment.cpp + opm/io/eclipse/rst/state.cpp + opm/io/eclipse/rst/well.cpp + opm/json/JsonObject.cpp + opm/material/common/Spline.cpp + opm/material/common/Tabulated1DFunction.cpp + opm/material/common/TridiagonalMatrix.cpp + opm/material/common/UniformXTabulated2DFunction.cpp + opm/material/components/CO2Tables.cpp + opm/material/components/H2.cpp + opm/material/densead/Evaluation.cpp + opm/material/fluidmatrixinteractions/EclEpsConfig.cpp + opm/material/fluidmatrixinteractions/EclEpsGridProperties.cpp + opm/material/fluidmatrixinteractions/EclEpsScalingPoints.cpp + opm/material/fluidmatrixinteractions/EclHysteresisConfig.cpp + opm/material/fluidmatrixinteractions/EclMaterialLawInitParams.cpp + opm/material/fluidmatrixinteractions/EclMaterialLawHystParams.cpp + opm/material/fluidmatrixinteractions/EclMaterialLawManager.cpp + opm/material/fluidmatrixinteractions/EclMaterialLawReadEffectiveParams.cpp + opm/material/fluidsystems/BlackOilFluidSystem.cpp + opm/material/fluidsystems/PhaseUsageInfo.cpp + opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.cpp + opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.cpp + opm/material/fluidsystems/blackoilpvt/Co2GasPvt.cpp + opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.cpp + opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.cpp + opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.cpp + opm/material/fluidsystems/blackoilpvt/DeadOilPvt.cpp + opm/material/fluidsystems/blackoilpvt/DryGasPvt.cpp + opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.cpp + opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.cpp + opm/material/fluidsystems/blackoilpvt/GasPvtThermal.cpp + opm/material/fluidsystems/blackoilpvt/H2GasPvt.cpp + opm/material/fluidsystems/blackoilpvt/LiveOilPvt.cpp + opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.cpp + opm/material/fluidsystems/blackoilpvt/OilPvtThermal.cpp + opm/material/fluidsystems/blackoilpvt/SolventPvt.cpp + opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.cpp + opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.cpp + opm/material/fluidsystems/blackoilpvt/WetGasPvt.cpp + opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.cpp + opm/material/thermal/EclThermalLawManager.cpp + opm/ml/ml_model.cpp + opm/output/data/Aquifer.cpp + opm/output/data/InterRegFlowMap.cpp + opm/output/data/Solution.cpp + opm/output/eclipse/ActiveIndexByColumns.cpp + opm/output/eclipse/AggregateActionxData.cpp + opm/output/eclipse/AggregateAquiferData.cpp + opm/output/eclipse/AggregateConnectionData.cpp + opm/output/eclipse/AggregateGroupData.cpp + opm/output/eclipse/AggregateNetworkData.cpp + opm/output/eclipse/AggregateMSWData.cpp + opm/output/eclipse/AggregateUDQData.cpp + opm/output/eclipse/AggregateWellData.cpp + opm/output/eclipse/AggregateWListData.cpp + opm/output/eclipse/CreateActionRSTDims.cpp + opm/output/eclipse/CreateDoubHead.cpp + opm/output/eclipse/CreateInteHead.cpp + opm/output/eclipse/CreateLogiHead.cpp + opm/output/eclipse/CreateLgrHeadi.cpp + opm/output/eclipse/CreateLgrHeadq.cpp + opm/output/eclipse/CreateLgrHeadd.cpp + opm/output/eclipse/DoubHEAD.cpp + opm/output/eclipse/EclipseGridInspector.cpp + opm/output/eclipse/EclipseIO.cpp + opm/output/eclipse/InteHEAD.cpp + opm/output/eclipse/LgrHEADI.cpp + opm/output/eclipse/LgrHEADQ.cpp + opm/output/eclipse/LgrHEADD.cpp + opm/output/eclipse/LinearisedOutputTable.cpp + opm/output/eclipse/LoadRestart.cpp + opm/output/eclipse/LogiHEAD.cpp + opm/output/eclipse/RestartIO.cpp + opm/output/eclipse/Inplace.cpp + opm/output/eclipse/Summary.cpp + opm/output/eclipse/Tables.cpp + opm/output/eclipse/UDQDims.cpp + opm/output/eclipse/RegionCache.cpp + opm/output/eclipse/RestartValue.cpp + opm/output/eclipse/WriteInit.cpp + opm/output/eclipse/WriteRFT.cpp + opm/output/eclipse/report/WellSpecification.cpp + opm/utility/EModel.cpp + opm/utility/GroupStructureViz.cpp + opm/utility/WellStructureViz.cpp ) -if(ENABLE_ECL_INPUT) - list(APPEND MAIN_SOURCE_FILES - external/resinsight/LibCore/cvfAssert.cpp - external/resinsight/LibCore/cvfAtomicCounter.cpp - external/resinsight/LibCore/cvfCharArray.cpp - external/resinsight/LibCore/cvfMath.cpp - external/resinsight/LibCore/cvfObject.cpp - external/resinsight/LibCore/cvfPlane.cpp - external/resinsight/LibCore/cvfString.cpp - external/resinsight/LibCore/cvfSystem.cpp - external/resinsight/LibCore/cvfTrace.cpp - external/resinsight/LibCore/cvfVector3.cpp - external/resinsight/LibGeometry/cvfBoundingBox.cpp - external/resinsight/LibGeometry/cvfBoundingBoxTree.cpp - external/resinsight/LibGeometry/cvfRay.cpp - external/resinsight/ReservoirDataModel/cvfGeometryTools.cpp - external/resinsight/ReservoirDataModel/RigHexIntersectionTools.cpp - external/resinsight/ReservoirDataModel/RigWellLogExtractor.cpp - external/resinsight/ReservoirDataModel/RigWellPath.cpp - external/resinsight/CommonCode/cvfStructGrid.cpp - external/resinsight/cafPdmCore/cafSignal.cpp - external/resinsight/cafHexGridIntersectionTools/cafHexGridIntersectionTools.cpp - opm/io/eclipse/SummaryNode.cpp - opm/json/JsonObject.cpp - opm/input/eclipse/Deck/Deck.cpp - opm/input/eclipse/Deck/DeckView.cpp - opm/input/eclipse/Deck/DeckTree.cpp - opm/input/eclipse/Deck/FileDeck.cpp - opm/input/eclipse/Deck/DeckItem.cpp - opm/input/eclipse/Deck/DeckValue.cpp - opm/input/eclipse/Deck/DeckKeyword.cpp - opm/input/eclipse/Deck/DeckRecord.cpp - opm/input/eclipse/Deck/DeckOutput.cpp - opm/input/eclipse/Deck/DeckSection.cpp - opm/input/eclipse/Deck/ImportContainer.cpp - opm/input/eclipse/Deck/UDAValue.cpp - opm/input/eclipse/EclipseState/checkDeck.cpp - opm/input/eclipse/EclipseState/Co2StoreConfig.cpp - opm/input/eclipse/EclipseState/EclipseConfig.cpp - opm/input/eclipse/EclipseState/EclipseState.cpp - opm/input/eclipse/EclipseState/EndpointScaling.cpp - opm/input/eclipse/EclipseState/Phase.cpp - opm/input/eclipse/EclipseState/Runspec.cpp - opm/input/eclipse/EclipseState/TracerConfig.cpp - opm/input/eclipse/EclipseState/WagHysteresisConfig.cpp - opm/input/eclipse/EclipseState/Aquifer/AquiferConfig.cpp - opm/input/eclipse/EclipseState/Aquifer/AquiferFlux.cpp - opm/input/eclipse/EclipseState/Aquifer/AquiferCT.cpp - opm/input/eclipse/EclipseState/Aquifer/Aquifetp.cpp - opm/input/eclipse/EclipseState/Aquifer/Aquancon.cpp - opm/input/eclipse/EclipseState/Aquifer/AquiferHelpers.cpp - opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquiferCell.cpp - opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquiferConnection.cpp - opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/SingleNumericalAquifer.cpp - opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquifers.cpp - opm/input/eclipse/EclipseState/Compositional/CompositionalConfig.cpp - opm/input/eclipse/EclipseState/Grid/Box.cpp - opm/input/eclipse/EclipseState/Grid/BoxManager.cpp - opm/input/eclipse/EclipseState/Grid/Carfin.cpp - opm/input/eclipse/EclipseState/Grid/CarfinManager.cpp - opm/input/eclipse/EclipseState/Grid/LgrCollection.cpp - opm/input/eclipse/EclipseState/Grid/EclipseGrid.cpp - opm/input/eclipse/EclipseState/Grid/FieldData.cpp - opm/input/eclipse/EclipseState/Grid/FieldProps.cpp - opm/input/eclipse/EclipseState/Grid/FieldPropsManager.cpp - opm/input/eclipse/EclipseState/Grid/FaceDir.cpp - opm/input/eclipse/EclipseState/Grid/Fault.cpp - opm/input/eclipse/EclipseState/Grid/FaultCollection.cpp - opm/input/eclipse/EclipseState/Grid/FaultFace.cpp - opm/input/eclipse/EclipseState/Grid/FIPRegionStatistics.cpp - opm/input/eclipse/EclipseState/Grid/GridDims.cpp - opm/input/eclipse/EclipseState/Grid/MapAxes.cpp - opm/input/eclipse/EclipseState/Grid/MinpvMode.cpp - opm/input/eclipse/EclipseState/Grid/MULTREGTScanner.cpp - opm/input/eclipse/EclipseState/Grid/NNC.cpp - opm/input/eclipse/EclipseState/Grid/Operate.cpp - opm/input/eclipse/EclipseState/Grid/PinchMode.cpp - opm/input/eclipse/EclipseState/Grid/readKeywordCarfin.cpp - opm/input/eclipse/EclipseState/Grid/RegionSetMatcher.cpp - opm/input/eclipse/EclipseState/Grid/SatfuncPropertyInitializers.cpp - opm/input/eclipse/EclipseState/Grid/setKeywordBox.cpp - opm/input/eclipse/EclipseState/Grid/TranCalculator.cpp - opm/input/eclipse/EclipseState/Grid/TransMult.cpp - opm/input/eclipse/EclipseState/InitConfig/Equil.cpp - opm/input/eclipse/EclipseState/InitConfig/FoamConfig.cpp - opm/input/eclipse/EclipseState/InitConfig/InitConfig.cpp - opm/input/eclipse/EclipseState/IOConfig/FIPConfig.cpp - opm/input/eclipse/EclipseState/IOConfig/IOConfig.cpp - opm/input/eclipse/EclipseState/SimulationConfig/BCConfig.cpp - opm/input/eclipse/EclipseState/SimulationConfig/DatumDepth.cpp - opm/input/eclipse/EclipseState/SimulationConfig/RockConfig.cpp - opm/input/eclipse/EclipseState/SimulationConfig/SimulationConfig.cpp - opm/input/eclipse/EclipseState/SimulationConfig/ThresholdPressure.cpp - opm/input/eclipse/EclipseState/SummaryConfig/SummaryConfig.cpp - opm/input/eclipse/EclipseState/Tables/Aqudims.cpp - opm/input/eclipse/EclipseState/Tables/ColumnSchema.cpp - opm/input/eclipse/EclipseState/Tables/DenT.cpp - opm/input/eclipse/EclipseState/Tables/JouleThomson.cpp - opm/input/eclipse/EclipseState/Tables/Eqldims.cpp - opm/input/eclipse/EclipseState/Tables/JFunc.cpp - opm/input/eclipse/EclipseState/Tables/PvtxTable.cpp - opm/input/eclipse/EclipseState/Tables/Regdims.cpp - opm/input/eclipse/EclipseState/Tables/SimpleTable.cpp - opm/input/eclipse/EclipseState/Tables/PolyInjTables.cpp - opm/input/eclipse/EclipseState/Tables/StandardCond.cpp - opm/input/eclipse/EclipseState/Tables/TableColumn.cpp - opm/input/eclipse/EclipseState/Tables/TableContainer.cpp - opm/input/eclipse/EclipseState/Tables/TableIndex.cpp - opm/input/eclipse/EclipseState/Tables/TLMixpar.cpp - opm/input/eclipse/EclipseState/Tables/Ppcwmax.cpp - opm/input/eclipse/EclipseState/Tables/EzrokhiTable.cpp - opm/input/eclipse/EclipseState/Tables/TableManager.cpp - opm/input/eclipse/EclipseState/Tables/TableSchema.cpp - opm/input/eclipse/EclipseState/Tables/Tables.cpp - opm/input/eclipse/EclipseState/Tables/Rock2dTable.cpp - opm/input/eclipse/EclipseState/Tables/Rock2dtrTable.cpp - opm/input/eclipse/EclipseState/Tables/PvtwsaltTable.cpp - opm/input/eclipse/EclipseState/Tables/BrineDensityTable.cpp - opm/input/eclipse/EclipseState/Tables/SolventDensityTable.cpp - opm/input/eclipse/EclipseState/Tables/Tabdims.cpp - opm/input/eclipse/Parser/ErrorGuard.cpp - opm/input/eclipse/Parser/InputErrorAction.cpp - opm/input/eclipse/Parser/ParseContext.cpp - opm/input/eclipse/Parser/Parser.cpp - opm/input/eclipse/Parser/ParserEnums.cpp - opm/input/eclipse/Parser/ParserItem.cpp - opm/input/eclipse/Parser/ParserKeyword.cpp - opm/input/eclipse/Parser/ParserRecord.cpp - opm/input/eclipse/Parser/raw/RawKeyword.cpp - opm/input/eclipse/Parser/raw/RawRecord.cpp - opm/input/eclipse/Parser/raw/StarToken.cpp - opm/input/eclipse/Python/Python.cpp - opm/input/eclipse/Schedule/ArrayDimChecker.cpp - opm/input/eclipse/Schedule/BCProp.cpp - opm/input/eclipse/Schedule/CompletedCells.cpp - opm/input/eclipse/Schedule/eval_uda.cpp - opm/input/eclipse/Schedule/Events.cpp - opm/input/eclipse/Schedule/GasLiftOpt.cpp - opm/input/eclipse/Schedule/GasLiftOptKeywordHandlers.cpp - opm/input/eclipse/Schedule/HandlerContext.cpp - opm/input/eclipse/Schedule/KeywordHandlers.cpp - opm/input/eclipse/Schedule/MessageLimits.cpp - opm/input/eclipse/Schedule/MixingRateControlKeywordHandlers.cpp - opm/input/eclipse/Schedule/OilVaporizationProperties.cpp - opm/input/eclipse/Schedule/RFTConfig.cpp - opm/input/eclipse/Schedule/RPTConfig.cpp - opm/input/eclipse/Schedule/RPTKeywordNormalisation.cpp - opm/input/eclipse/Schedule/RptschedKeywordNormalisation.cpp - opm/input/eclipse/Schedule/RSTConfig.cpp - opm/input/eclipse/Schedule/RXXKeywordHandlers.cpp - opm/input/eclipse/Schedule/Schedule.cpp - opm/input/eclipse/Schedule/ScheduleBlock.cpp - opm/input/eclipse/Schedule/ScheduleDeck.cpp - opm/input/eclipse/Schedule/ScheduleGrid.cpp - opm/input/eclipse/Schedule/ScheduleRestartInfo.cpp - opm/input/eclipse/Schedule/ScheduleState.cpp - opm/input/eclipse/Schedule/ScheduleStatic.cpp - opm/input/eclipse/Schedule/ScheduleTypes.cpp - opm/input/eclipse/Schedule/SimpleRPTIntegerControlHandler.cpp - opm/input/eclipse/Schedule/Source.cpp - opm/input/eclipse/Schedule/SummaryState.cpp - opm/input/eclipse/Schedule/Tuning.cpp - opm/input/eclipse/Schedule/VFPInjTable.cpp - opm/input/eclipse/Schedule/VFPProdTable.cpp - opm/input/eclipse/Schedule/WriteRestartFileEvents.cpp - opm/input/eclipse/Schedule/Action/ActionAST.cpp - opm/input/eclipse/Schedule/Action/ActionContext.cpp - opm/input/eclipse/Schedule/Action/ActionResult.cpp - opm/input/eclipse/Schedule/Action/Actdims.cpp - opm/input/eclipse/Schedule/Action/Actions.cpp - opm/input/eclipse/Schedule/Action/ActionX.cpp - opm/input/eclipse/Schedule/Action/ActionParser.cpp - opm/input/eclipse/Schedule/Action/ActionValue.cpp - opm/input/eclipse/Schedule/Action/ASTNode.cpp - opm/input/eclipse/Schedule/Action/Condition.cpp - opm/input/eclipse/Schedule/Action/Enums.cpp - opm/input/eclipse/Schedule/Action/PyAction.cpp - opm/input/eclipse/Schedule/Action/State.cpp - opm/input/eclipse/Schedule/Action/WGNames.cpp - opm/input/eclipse/Schedule/Group/GPMaint.cpp - opm/input/eclipse/Schedule/Group/Group.cpp - opm/input/eclipse/Schedule/Group/GroupKeywordHandlers.cpp - opm/input/eclipse/Schedule/Group/GuideRate.cpp - opm/input/eclipse/Schedule/Group/GuideRateConfig.cpp - opm/input/eclipse/Schedule/Group/GuideRateKeywordHandlers.cpp - opm/input/eclipse/Schedule/Group/GuideRateModel.cpp - opm/input/eclipse/Schedule/Group/GConSale.cpp - opm/input/eclipse/Schedule/Group/GConSump.cpp - opm/input/eclipse/Schedule/Group/GroupEconProductionLimits.cpp - opm/input/eclipse/Schedule/Group/GroupSatelliteInjection.cpp - opm/input/eclipse/Schedule/Group/GSatProd.cpp - opm/input/eclipse/Schedule/Group/GTNode.cpp - opm/input/eclipse/Schedule/MSW/AICD.cpp - opm/input/eclipse/Schedule/MSW/Compsegs.cpp - opm/input/eclipse/Schedule/MSW/icd.cpp - opm/input/eclipse/Schedule/MSW/MSWKeywordHandlers.cpp - opm/input/eclipse/Schedule/MSW/Segment.cpp - opm/input/eclipse/Schedule/MSW/SegmentMatcher.cpp - opm/input/eclipse/Schedule/MSW/SICD.cpp - opm/input/eclipse/Schedule/MSW/Valve.cpp - opm/input/eclipse/Schedule/MSW/WellSegments.cpp - opm/input/eclipse/Schedule/MSW/WelSegsSet.cpp - opm/input/eclipse/Schedule/Network/Balance.cpp - opm/input/eclipse/Schedule/Network/Branch.cpp - opm/input/eclipse/Schedule/Network/ExtNetwork.cpp - opm/input/eclipse/Schedule/Network/NetworkKeywordHandlers.cpp - opm/input/eclipse/Schedule/Network/Node.cpp - opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingInfo.cpp - opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingKeywordHandlers.cpp - opm/input/eclipse/Schedule/ResCoup/GrupSlav.cpp - opm/input/eclipse/Schedule/ResCoup/MasterGroup.cpp - opm/input/eclipse/Schedule/ResCoup/Slaves.cpp - opm/input/eclipse/Schedule/ResCoup/MasterMinimumTimeStep.cpp - opm/input/eclipse/Schedule/ResCoup/ReadCouplingFile.cpp - opm/input/eclipse/Schedule/ResCoup/WriteCouplingFile.cpp - opm/input/eclipse/Schedule/UDQ/UDQKeywordHandlers.cpp - opm/input/eclipse/Schedule/UDQ/UDQActive.cpp - opm/input/eclipse/Schedule/UDQ/UDQAssign.cpp - opm/input/eclipse/Schedule/UDQ/UDQASTNode.cpp - opm/input/eclipse/Schedule/UDQ/UDQConfig.cpp - opm/input/eclipse/Schedule/UDQ/UDQContext.cpp - opm/input/eclipse/Schedule/UDQ/UDQDefine.cpp - opm/input/eclipse/Schedule/UDQ/UDQEnums.cpp - opm/input/eclipse/Schedule/UDQ/UDQFunction.cpp - opm/input/eclipse/Schedule/UDQ/UDQFunctionTable.cpp - opm/input/eclipse/Schedule/UDQ/UDQInput.cpp - opm/input/eclipse/Schedule/UDQ/UDQParams.cpp - opm/input/eclipse/Schedule/UDQ/UDQParser.cpp - opm/input/eclipse/Schedule/UDQ/UDQSet.cpp - opm/input/eclipse/Schedule/UDQ/UDQState.cpp - opm/input/eclipse/Schedule/UDQ/UDQToken.cpp - opm/input/eclipse/Schedule/UDQ/UDT.cpp - opm/input/eclipse/Schedule/Well/Connection.cpp - opm/input/eclipse/Schedule/Well/FilterCake.cpp - opm/input/eclipse/Schedule/Well/injection.cpp - opm/input/eclipse/Schedule/Well/GridIndependentWellKeywordHandlers.cpp - opm/input/eclipse/Schedule/Well/NameOrder.cpp - opm/input/eclipse/Schedule/Well/PAvg.cpp - opm/input/eclipse/Schedule/Well/PAvgCalculator.cpp - opm/input/eclipse/Schedule/Well/PAvgCalculatorCollection.cpp - opm/input/eclipse/Schedule/Well/PAvgDynamicSourceData.cpp - opm/input/eclipse/Schedule/Well/WCYCLE.cpp - opm/input/eclipse/Schedule/Well/Well.cpp - opm/input/eclipse/Schedule/Well/WellBrineProperties.cpp - opm/input/eclipse/Schedule/Well/WellCompletionKeywordHandlers.cpp - opm/input/eclipse/Schedule/Well/WellConnections.cpp - opm/input/eclipse/Schedule/Well/WellEconProductionLimits.cpp - opm/input/eclipse/Schedule/Well/WellEnums.cpp - opm/input/eclipse/Schedule/Well/WellFoamProperties.cpp - opm/input/eclipse/Schedule/Well/WellFractureSeeds.cpp - opm/input/eclipse/Schedule/Well/WellInjectionProperties.cpp - opm/input/eclipse/Schedule/Well/WellKeywordHandlers.cpp - opm/input/eclipse/Schedule/Well/WellMatcher.cpp - opm/input/eclipse/Schedule/Well/WellMICPProperties.cpp - opm/input/eclipse/Schedule/Well/WellPolymerProperties.cpp - opm/input/eclipse/Schedule/Well/WellProductionProperties.cpp - opm/input/eclipse/Schedule/Well/WellPropertiesKeywordHandlers.cpp - opm/input/eclipse/Schedule/Well/WellTestConfig.cpp - opm/input/eclipse/Schedule/Well/WellTestState.cpp - opm/input/eclipse/Schedule/Well/WellTracerProperties.cpp - opm/input/eclipse/Schedule/Well/WINJMULT.cpp - opm/input/eclipse/Schedule/Well/WList.cpp - opm/input/eclipse/Schedule/Well/WListManager.cpp - opm/input/eclipse/Schedule/Well/WDFAC.cpp - opm/input/eclipse/Schedule/Well/WVFPDP.cpp - opm/input/eclipse/Schedule/Well/WVFPEXP.cpp - opm/input/eclipse/Schedule/WellTraj/RigEclipseWellLogExtractor.cpp - opm/input/eclipse/Units/Dimension.cpp - opm/input/eclipse/Units/UnitSystem.cpp - opm/input/eclipse/Utility/Functional.cpp - opm/material/fluidmatrixinteractions/EclEpsConfig.cpp - opm/material/fluidmatrixinteractions/EclEpsGridProperties.cpp - opm/material/fluidmatrixinteractions/EclHysteresisConfig.cpp - opm/material/fluidmatrixinteractions/EclMaterialLawInitParams.cpp - opm/material/fluidmatrixinteractions/EclMaterialLawHystParams.cpp - opm/material/fluidmatrixinteractions/EclMaterialLawManager.cpp - opm/material/fluidmatrixinteractions/EclMaterialLawReadEffectiveParams.cpp - opm/material/thermal/EclThermalLawManager.cpp - ) - - list( APPEND PYTHON_CXX_SOURCE_FILES - python/cxx/connection.cpp - python/cxx/converters.cpp - python/cxx/deck.cpp - python/cxx/deck_keyword.cpp - python/cxx/eclipse_io.cpp - python/cxx/field_props.cpp - python/cxx/eclipse_config.cpp - python/cxx/eclipse_grid.cpp - python/cxx/eclipse_state.cpp - python/cxx/emodel_util.cpp - python/cxx/export.cpp - python/cxx/group.cpp - python/cxx/log.cpp - python/cxx/parsecontext.cpp - python/cxx/parser.cpp - python/cxx/schedule.cpp - python/cxx/schedule_state.cpp - python/cxx/simulation_config.cpp - python/cxx/summary_state.cpp - python/cxx/table_manager.cpp - python/cxx/unit_system.cpp - python/cxx/well.cpp - ) - if (OPM_ENABLE_EMBEDDED_PYTHON) - set_source_files_properties(${PYTHON_CXX_SOURCE_FILES} PROPERTIES COMPILE_FLAGS -Wno-shadow) - set_source_files_properties(opm/input/eclipse/Python/PythonInterp.cpp PROPERTIES COMPILE_FLAGS -Wno-shadow) - set_source_files_properties(opm/input/eclipse/Schedule/Action/PyAction.cpp PROPERTIES COMPILE_FLAGS -Wno-shadow) - list( APPEND MAIN_SOURCE_FILES - opm/input/eclipse/Python/PythonInterp.cpp - opm/input/eclipse/Python/PyRunModule.cpp - ${PYTHON_CXX_SOURCE_FILES}) - endif() - - list( APPEND PYTHON_CXX_DEPENDS ${PYTHON_CXX_SOURCE_FILES} - python/cxx/converters.hpp - python/cxx/export.hpp) +list(APPEND PYTHON_CXX_SOURCE_FILES + python/cxx/connection.cpp + python/cxx/converters.cpp + python/cxx/deck.cpp + python/cxx/deck_keyword.cpp + python/cxx/eclipse_io.cpp + python/cxx/field_props.cpp + python/cxx/eclipse_config.cpp + python/cxx/eclipse_grid.cpp + python/cxx/eclipse_state.cpp + python/cxx/emodel_util.cpp + python/cxx/export.cpp + python/cxx/group.cpp + python/cxx/log.cpp + python/cxx/parsecontext.cpp + python/cxx/parser.cpp + python/cxx/schedule.cpp + python/cxx/schedule_state.cpp + python/cxx/simulation_config.cpp + python/cxx/summary_state.cpp + python/cxx/table_manager.cpp + python/cxx/unit_system.cpp + python/cxx/well.cpp +) - list(APPEND ADDITIONAL_SOURCE_FILES - test_util/arraylist.cpp - test_util/compareECL.cpp - test_util/convertECL.cpp - test_util/rewriteEclFile.cpp - test_util/summary.cpp +if(OPM_ENABLE_EMBEDDED_PYTHON) + list(APPEND MAIN_SOURCE_FILES + opm/input/eclipse/Python/PythonInterp.cpp + opm/input/eclipse/Python/PyRunModule.cpp + ${PYTHON_CXX_SOURCE_FILES} ) endif() -if(ENABLE_ECL_OUTPUT) - list( APPEND MAIN_SOURCE_FILES - opm/io/eclipse/EclFile.cpp - opm/io/eclipse/EclOutput.cpp - opm/io/eclipse/EclUtil.cpp - opm/io/eclipse/EGrid.cpp - opm/io/eclipse/EInit.cpp - opm/io/eclipse/ERft.cpp - opm/io/eclipse/ERst.cpp - opm/io/eclipse/ERsm.cpp - opm/io/eclipse/ESmry.cpp - opm/io/eclipse/ExtESmry.cpp - opm/io/eclipse/ESmry_write_rsm.cpp - opm/io/eclipse/OutputStream.cpp - opm/io/eclipse/ExtSmryOutput.cpp - opm/io/eclipse/RestartFileView.cpp - opm/io/eclipse/SummaryNode.cpp - opm/io/eclipse/rst/action.cpp - opm/io/eclipse/rst/aquifer.cpp - opm/io/eclipse/rst/connection.cpp - opm/io/eclipse/rst/group.cpp - opm/io/eclipse/rst/header.cpp - opm/io/eclipse/rst/netbalan.cpp - opm/io/eclipse/rst/network.cpp - opm/io/eclipse/rst/udq.cpp - opm/io/eclipse/rst/segment.cpp - opm/io/eclipse/rst/state.cpp - opm/io/eclipse/rst/well.cpp - opm/output/data/Aquifer.cpp - opm/output/data/InterRegFlowMap.cpp - opm/output/data/Solution.cpp - opm/output/eclipse/ActiveIndexByColumns.cpp - opm/output/eclipse/AggregateActionxData.cpp - opm/output/eclipse/AggregateAquiferData.cpp - opm/output/eclipse/AggregateConnectionData.cpp - opm/output/eclipse/AggregateGroupData.cpp - opm/output/eclipse/AggregateNetworkData.cpp - opm/output/eclipse/AggregateMSWData.cpp - opm/output/eclipse/AggregateUDQData.cpp - opm/output/eclipse/AggregateWellData.cpp - opm/output/eclipse/AggregateWListData.cpp - opm/output/eclipse/CreateActionRSTDims.cpp - opm/output/eclipse/CreateDoubHead.cpp - opm/output/eclipse/CreateInteHead.cpp - opm/output/eclipse/CreateLogiHead.cpp - opm/output/eclipse/CreateLgrHeadi.cpp - opm/output/eclipse/CreateLgrHeadq.cpp - opm/output/eclipse/CreateLgrHeadd.cpp - opm/output/eclipse/DoubHEAD.cpp - opm/output/eclipse/EclipseGridInspector.cpp - opm/output/eclipse/EclipseIO.cpp - opm/output/eclipse/InteHEAD.cpp - opm/output/eclipse/LgrHEADI.cpp - opm/output/eclipse/LgrHEADQ.cpp - opm/output/eclipse/LgrHEADD.cpp - opm/output/eclipse/LinearisedOutputTable.cpp - opm/output/eclipse/LoadRestart.cpp - opm/output/eclipse/LogiHEAD.cpp - opm/output/eclipse/RestartIO.cpp - opm/output/eclipse/Inplace.cpp - opm/output/eclipse/Summary.cpp - opm/output/eclipse/Tables.cpp - opm/output/eclipse/UDQDims.cpp - opm/output/eclipse/RegionCache.cpp - opm/output/eclipse/RestartValue.cpp - opm/output/eclipse/WriteInit.cpp - opm/output/eclipse/WriteRFT.cpp - opm/output/eclipse/report/WellSpecification.cpp - opm/utility/EModel.cpp - opm/utility/GroupStructureViz.cpp - opm/utility/WellStructureViz.cpp - ) -endif() -list (APPEND TEST_SOURCE_FILES - tests/test_calculateCellVol.cpp - tests/test_cmp.cpp - tests/test_CompletedCells.cpp - tests/test_ConditionalStorage.cpp - tests/test_critical_error.cpp - tests/test_cubic.cpp - tests/test_FastSmallVector.cpp - tests/test_messagelimiter.cpp - tests/test_nonuniformtablelinear.cpp - tests/test_OpmInputError_format.cpp - tests/test_OpmLog.cpp - tests/test_PhaseUsageInfo.cpp - tests/test_param.cpp - tests/test_RootFinders.cpp - tests/test_ScheduleGrid.cpp - tests/test_SegmentMatcher.cpp - tests/test_sparsevector.cpp - tests/test_uniformtablelinear.cpp - tests/test_Uns2CPG.cpp - tests/test_VoigtArray.cpp - tests/material/test_2dtables.cpp - tests/material/test_spline.cpp - tests/test_Visitor.cpp - tests/ml/test_ml_model.cpp - tests/ml/test_ml_layer.cpp +list(APPEND PYTHON_CXX_DEPENDS ${PYTHON_CXX_SOURCE_FILES} + python/cxx/converters.hpp + python/cxx/export.hpp +) + +list(APPEND ADDITIONAL_SOURCE_FILES + test_util/arraylist.cpp + test_util/compareECL.cpp + test_util/convertECL.cpp + test_util/rewriteEclFile.cpp + test_util/summary.cpp +) + +list(APPEND TEST_SOURCE_FILES + tests/test_ActiveGridCells.cpp + tests/test_ActiveIndexByColumns.cpp + tests/test_AggregateActionxData.cpp + tests/test_AggregateAquiferData.cpp + tests/test_AggregateConnectionData.cpp + tests/test_AggregateGroupData.cpp + tests/test_AggregateMSWData.cpp + tests/test_AggregateNetworkData.cpp + tests/test_AggregateUDQData.cpp + tests/test_AggregateWListData.cpp + tests/test_AggregateWellData.cpp + tests/test_AggregateWellDataLGR.cpp + tests/test_ArrayDimChecker.cpp + tests/test_calculateCellVol.cpp + tests/test_cmp.cpp + tests/test_CompletedCells.cpp + tests/test_CopyablePtr.cpp + tests/test_ConditionalStorage.cpp + tests/test_critical_error.cpp + tests/test_CSRGraphFromCoordinates.cpp + tests/test_CSRGraphFromCoordinates_Merge.cpp + tests/test_cubic.cpp + tests/test_data_GuideRateValue.cpp + tests/test_data_InterRegFlow.cpp + tests/test_data_InterRegFlowMap.cpp + tests/test_DatumDepth.cpp + tests/test_DoubHEAD.cpp + tests/test_EclipseIO.cpp + tests/test_EclipseIO_LGR.cpp + tests/test_EclIO.cpp + tests/test_EGrid.cpp + tests/test_EInit.cpp + tests/test_ERft.cpp + tests/test_ERsm.cpp + tests/test_ERst.cpp + tests/test_ESmry.cpp + tests/test_ExtESmry.cpp + tests/test_FastSmallVector.cpp + tests/test_FIPRegionStatistics.cpp + tests/test_GroupSatelliteInjection.cpp + tests/test_GuideRate.cpp + tests/test_HeadersLGR.cpp + tests/test_Inplace.cpp + tests/test_InteHEAD.cpp + tests/test_LGOData.cpp + tests/test_LgrHeadX.cpp + tests/test_LinearisedOutputTable.cpp + tests/test_LogiHEAD.cpp + tests/test_messagelimiter.cpp + tests/test_nonuniformtablelinear.cpp + tests/test_OpmInputError_format.cpp + tests/test_OpmLog.cpp + tests/test_OutputStream.cpp + tests/test_PhaseUsageInfo.cpp + tests/test_PaddedOutputString.cpp + tests/test_param.cpp + tests/test_PAvgCalculator.cpp + tests/test_PAvgDynamicSourceData.cpp + tests/test_regionCache.cpp + tests/test_RegionSetMatcher.cpp + tests/test_Restart.cpp + tests/test_RestartFileView.cpp + tests/test_RestartLGR.cpp + tests/test_restartwellinfo.cpp + tests/test_RFT.cpp + tests/test_RootFinders.cpp + tests/test_RPTConfig.cpp + tests/test_rst.cpp + tests/test_rst_netbalan.cpp + tests/test_ScheduleGrid.cpp + tests/test_SegmentMatcher.cpp + tests/test_Serialization.cpp + tests/test_Solution.cpp + tests/test_sparsevector.cpp + tests/test_Summary.cpp + tests/test_SummaryNode.cpp + tests/test_SummaryConfigNode.cpp + tests/test_Summary_Group.cpp + tests/test_Summary_GSatProd.cpp + tests/test_Tables.cpp + tests/test_uniformtablelinear.cpp + tests/test_Uns2CPG.cpp + tests/test_Visitor.cpp + tests/test_VoigtArray.cpp + tests/test_WellFractureSeeds.cpp + tests/test_Wells.cpp + tests/test_WindowedArray.cpp + tests/material/test_2dtables.cpp + tests/material/test_eclmateriallawmanager.cpp + tests/material/test_hysteresis.cpp + tests/material/test_spline.cpp + tests/ml/test_ml_model.cpp + tests/ml/test_ml_layer.cpp + tests/parser/ACTIONX.cpp + tests/parser/ADDREGTests.cpp + tests/parser/AquiferTests.cpp + tests/parser/BCConfigTests.cpp + tests/parser/BoxTests.cpp + tests/parser/CarfinTests.cpp + tests/parser/ColumnSchemaTests.cpp + tests/parser/ConnectionTests.cpp + tests/parser/COMPSEGUnits.cpp + tests/parser/CompositionalTests.cpp + tests/parser/CopyRegTests.cpp + tests/parser/DeckValueTests.cpp + tests/parser/DeckTests.cpp + tests/parser/EclipseGridTests.cpp + tests/parser/EmbeddedPython.cpp + tests/parser/EqualRegTests.cpp + tests/parser/EventTests.cpp + tests/parser/FaceDirTests.cpp + tests/parser/FaultTests.cpp + tests/parser/FieldPropsTests.cpp + tests/parser/FIPConfigTests.cpp + tests/parser/FoamTests.cpp + tests/parser/FunctionalTests.cpp + tests/parser/GeomodifierTests.cpp + tests/parser/GroupTests.cpp + tests/parser/ImportTests.cpp + tests/parser/InitConfigTest.cpp + tests/parser/IOConfigTests.cpp + tests/parser/LgrTests.cpp + tests/parser/LgrOutputTests.cpp + tests/parser/MICPTests.cpp + tests/parser/MessageLimitTests.cpp + tests/parser/MultiRegTests.cpp + tests/parser/MultisegmentWellTests.cpp + tests/parser/MULTREGTScannerTests.cpp + tests/parser/NetworkTests.cpp + tests/parser/OperateTests.cpp + tests/parser/OrderedMapTests.cpp + tests/parser/ParseContextTests.cpp + tests/parser/ParseContext_EXIT1.cpp + tests/parser/ParseDATAWithDefault.cpp + tests/parser/PAvgTests.cpp + tests/parser/PYACTION.cpp + tests/parser/RawKeywordTests.cpp + tests/parser/ReservoirCouplingTests.cpp + tests/parser/test_ReportConfig.cpp + tests/parser/ResinsightTest.cpp + tests/parser/RestartConfigTests.cpp + tests/parser/RFTConfigTests.cpp + tests/parser/RockTableTests.cpp + tests/parser/RunspecTests.cpp + tests/parser/SaltTableTests.cpp + tests/parser/ScheduleSerializeTest.cpp + tests/parser/ScheduleRestartTests.cpp + tests/parser/ScheduleTests.cpp + tests/parser/SectionTests.cpp + tests/parser/SimpleTableTests.cpp + tests/parser/SimulationConfigTest.cpp + tests/parser/SourceTests.cpp + tests/parser/StarTokenTests.cpp + tests/parser/StringTests.cpp + tests/parser/SummaryConfigTests.cpp + tests/parser/TabdimsTests.cpp + tests/parser/TableColumnTests.cpp + tests/parser/TableContainerTests.cpp + tests/parser/TableManagerTests.cpp + tests/parser/TableSchemaTests.cpp + tests/parser/ThresholdPressureTest.cpp + tests/parser/TracerTests.cpp + tests/parser/TransMultTests.cpp + tests/parser/TuningTests.cpp + tests/parser/UDQTests.cpp + tests/parser/UDTTests.cpp + tests/parser/UnitTests.cpp + tests/parser/integration/NNCTests.cpp + tests/parser/integration/NNCTestsLGR.cpp + tests/parser/WellSolventTests.cpp + tests/parser/WellTracerTests.cpp + tests/parser/WellTests.cpp + tests/parser/WellTestsLGR.cpp + tests/parser/WLIST.cpp + tests/parser/WriteRestartFileEventsTests.cpp + tests/parser/WTEST.cpp ) if(OpenMP_FOUND) - list(APPEND - TEST_SOURCE_FILES - tests/test_ThreadSafeMapBuilder.cpp + list(APPEND TEST_SOURCE_FILES + tests/test_ThreadSafeMapBuilder.cpp ) endif() # tests that need to be linked to dune-common list(APPEND DUNE_TEST_SOURCE_FILES - tests/material/test_binarycoefficients.cpp - tests/test_densead.cpp - tests/test_EvaluationFormat.cpp - tests/test_SymmTensor.cpp - tests/material/test_blackoilfluidstate.cpp - tests/material/test_blackoilfluidsystem_nonstatic.cpp - tests/material/test_co2brinepvt.cpp - tests/material/test_co2brine_ptflash.cpp - tests/material/test_components.cpp - tests/material/test_eclblackoilfluidsystem.cpp - tests/material/test_eclblackoilfluidsystemnonstatic.cpp - tests/material/test_eclblackoilpvt.cpp - tests/material/test_fluidmatrixinteractions.cpp - tests/material/test_fluidsystems.cpp - tests/material/test_h2brinepvt.cpp - tests/material/test_immiscibleflash.cpp - tests/material/test_ncpflash.cpp - tests/material/test_pengrobinson.cpp - tests/material/test_tabulation.cpp - tests/material/test_threecomponents_ptflash.cpp + tests/material/test_binarycoefficients.cpp + tests/test_densead.cpp + tests/test_EvaluationFormat.cpp + tests/test_SymmTensor.cpp + tests/material/test_blackoilfluidstate.cpp + tests/material/test_blackoilfluidsystem_nonstatic.cpp + tests/material/test_co2brinepvt.cpp + tests/material/test_co2brine_ptflash.cpp + tests/material/test_components.cpp + tests/material/test_eclblackoilfluidsystem.cpp + tests/material/test_eclblackoilfluidsystemnonstatic.cpp + tests/material/test_eclblackoilpvt.cpp + tests/material/test_fluidmatrixinteractions.cpp + tests/material/test_fluidsystems.cpp + tests/material/test_h2brinepvt.cpp + tests/material/test_immiscibleflash.cpp + tests/material/test_ncpflash.cpp + tests/material/test_pengrobinson.cpp + tests/material/test_tabulation.cpp + tests/material/test_threecomponents_ptflash.cpp ) -if(dune-common_FOUND) - list(APPEND - TEST_SOURCE_FILES - ${DUNE_TEST_SOURCE_FILES} - ) -endif() -if(ENABLE_ECL_INPUT) +if(dune-common_FOUND) list(APPEND TEST_SOURCE_FILES - tests/test_ActiveGridCells.cpp - tests/test_CopyablePtr.cpp - tests/test_CSRGraphFromCoordinates.cpp - tests/test_CSRGraphFromCoordinates_Merge.cpp - tests/test_DatumDepth.cpp - tests/test_ERsm.cpp - tests/test_GroupSatelliteInjection.cpp - tests/test_GuideRate.cpp - tests/test_RestartFileView.cpp - tests/test_EclIO.cpp - tests/test_EGrid.cpp - tests/test_EInit.cpp - tests/test_ERft.cpp - tests/test_ERst.cpp - tests/test_ESmry.cpp - tests/test_ExtESmry.cpp - tests/test_FIPRegionStatistics.cpp - tests/test_RegionSetMatcher.cpp - tests/test_RPTConfig.cpp - tests/test_PAvgCalculator.cpp - tests/test_PAvgDynamicSourceData.cpp - tests/test_Serialization.cpp - tests/test_WellFractureSeeds.cpp - tests/material/test_hysteresis.cpp - tests/material/test_eclmateriallawmanager.cpp - tests/parser/ACTIONX.cpp - tests/parser/ADDREGTests.cpp - tests/parser/AquiferTests.cpp - tests/parser/BCConfigTests.cpp - tests/parser/BoxTests.cpp - tests/parser/CarfinTests.cpp - tests/parser/ColumnSchemaTests.cpp - tests/parser/ConnectionTests.cpp - tests/parser/COMPSEGUnits.cpp - tests/parser/CompositionalTests.cpp - tests/parser/CopyRegTests.cpp - tests/parser/DeckValueTests.cpp - tests/parser/DeckTests.cpp - tests/parser/EclipseGridTests.cpp - tests/parser/EmbeddedPython.cpp - tests/parser/EqualRegTests.cpp - tests/parser/EventTests.cpp - tests/parser/FaceDirTests.cpp - tests/parser/FaultTests.cpp - tests/parser/FieldPropsTests.cpp - tests/parser/FIPConfigTests.cpp - tests/parser/FoamTests.cpp - tests/parser/FunctionalTests.cpp - tests/parser/GeomodifierTests.cpp - tests/parser/GroupTests.cpp - tests/parser/ImportTests.cpp - tests/parser/InitConfigTest.cpp - tests/parser/IOConfigTests.cpp - tests/parser/LgrTests.cpp - tests/parser/LgrOutputTests.cpp - tests/parser/MICPTests.cpp - tests/parser/MessageLimitTests.cpp - tests/parser/MultiRegTests.cpp - tests/parser/MultisegmentWellTests.cpp - tests/parser/MULTREGTScannerTests.cpp - tests/parser/NetworkTests.cpp - tests/parser/OperateTests.cpp - tests/parser/OrderedMapTests.cpp - tests/parser/ParseContextTests.cpp - tests/parser/ParseContext_EXIT1.cpp - tests/parser/ParseDATAWithDefault.cpp - tests/parser/PAvgTests.cpp - tests/parser/PYACTION.cpp - tests/parser/RawKeywordTests.cpp - tests/parser/ReservoirCouplingTests.cpp - tests/parser/test_ReportConfig.cpp - tests/parser/ResinsightTest.cpp - tests/parser/RestartConfigTests.cpp - tests/parser/RFTConfigTests.cpp - tests/parser/RockTableTests.cpp - tests/parser/RunspecTests.cpp - tests/parser/SaltTableTests.cpp - tests/parser/ScheduleSerializeTest.cpp - tests/parser/ScheduleRestartTests.cpp - tests/parser/ScheduleTests.cpp - tests/parser/SectionTests.cpp - tests/parser/SimpleTableTests.cpp - tests/parser/SimulationConfigTest.cpp - tests/parser/SourceTests.cpp - tests/parser/StarTokenTests.cpp - tests/parser/StringTests.cpp - tests/parser/SummaryConfigTests.cpp - tests/parser/TabdimsTests.cpp - tests/parser/TableColumnTests.cpp - tests/parser/TableContainerTests.cpp - tests/parser/TableManagerTests.cpp - tests/parser/TableSchemaTests.cpp - tests/parser/ThresholdPressureTest.cpp - tests/parser/TracerTests.cpp - tests/parser/TransMultTests.cpp - tests/parser/TuningTests.cpp - tests/parser/UDQTests.cpp - tests/parser/UDTTests.cpp - tests/parser/UnitTests.cpp - tests/parser/integration/NNCTests.cpp - tests/parser/integration/NNCTestsLGR.cpp - tests/parser/WellSolventTests.cpp - tests/parser/WellTracerTests.cpp - tests/parser/WellTests.cpp - tests/parser/WellTestsLGR.cpp - tests/parser/WLIST.cpp - tests/parser/WriteRestartFileEventsTests.cpp - tests/parser/WTEST.cpp - ) -endif() - -if(ENABLE_ECL_OUTPUT) - list (APPEND TEST_SOURCE_FILES - tests/test_ActiveIndexByColumns.cpp - tests/test_AggregateActionxData.cpp - tests/test_AggregateAquiferData.cpp - tests/test_AggregateConnectionData.cpp - tests/test_AggregateGroupData.cpp - tests/test_AggregateMSWData.cpp - tests/test_AggregateNetworkData.cpp - tests/test_AggregateUDQData.cpp - tests/test_AggregateWListData.cpp - tests/test_AggregateWellData.cpp - tests/test_AggregateWellDataLGR.cpp - tests/test_ArrayDimChecker.cpp - tests/test_DoubHEAD.cpp - tests/test_data_GuideRateValue.cpp - tests/test_data_InterRegFlow.cpp - tests/test_data_InterRegFlowMap.cpp - tests/test_EclipseIO.cpp - tests/test_EclipseIO_LGR.cpp - tests/test_HeadersLGR.cpp - tests/test_Inplace.cpp - tests/test_InteHEAD.cpp - tests/test_LGOData.cpp - tests/test_LgrHeadX.cpp - tests/test_LinearisedOutputTable.cpp - tests/test_LogiHEAD.cpp - tests/test_OutputStream.cpp - tests/test_PaddedOutputString.cpp - tests/test_regionCache.cpp - tests/test_restartwellinfo.cpp - tests/test_rst.cpp - tests/test_rst_netbalan.cpp - tests/test_Restart.cpp - tests/test_RestartLGR.cpp - tests/test_RFT.cpp - tests/test_Solution.cpp - tests/test_Summary.cpp - tests/test_Summary_Group.cpp - tests/test_Summary_GSatProd.cpp - tests/test_Tables.cpp - tests/test_Wells.cpp - tests/test_WindowedArray.cpp - ) + ${DUNE_TEST_SOURCE_FILES} + ) endif() -list (APPEND TEST_DATA_FILES - tests/testdata.param - tests/material/brine_unittest.json - tests/material/co2_unittest_part1.json - tests/material/co2_unittest_part2.json - tests/material/co2_unittest_above_sat.json - tests/material/co2_unittest_below_sat.json - tests/material/h2o_unittest.json - tests/material/h2_unittest.json - tests/material/ref_values_threecomponents_ptflash.json - tests/ml/ml_tools/models/test_dense_1x1.model - tests/ml/ml_tools/models/test_dense_2x2.model - tests/ml/ml_tools/models/test_dense_10x1.model - tests/ml/ml_tools/models/test_dense_10x10.model - tests/ml/ml_tools/models/test_dense_10x10x10.model - tests/ml/ml_tools/models/test_dense_activation_10.model - tests/ml/ml_tools/models/test_scalingdense_10x1.model +list(APPEND TEST_DATA_FILES + tests/0A4_GRCTRL_LRAT_LRAT_GGR_BASE_MODEL2_MSW_ALL.DATA + tests/2_WLIFT_MODEL5_NOINC.DATA + tests/5_NETWORK_MODEL5_STDW_NETBAL_PACK.DATA + tests/9_4C_WINJ_GINJ_UDQ_MSW-UDARATE_TEST_PACK.DATA + tests/ACTIONX_M1.DATA + tests/ACTIONX_M1.UNRST + tests/ACTIONX_M1.X0010 + tests/ACTIONX_M1_MULTIPLE.DATA + tests/ACTIONX_M1_RESTART.DATA + tests/BASE.UNRST + tests/BASE_SIM.DATA + tests/BASE_SIM_THPRES.DATA + tests/CARFIN-COLUMN.EGRID + tests/CARFIN-DOUBLE.EGRID + tests/CARFIN-NESTED.EGRID + tests/CARFIN5.EGRID + tests/ECLFILE.FINIT + tests/ECLFILE.INIT + tests/EGRID_NO_ACTNUM.FEGRID + tests/EMBEDDED_PYTHON.DATA + tests/EXIT_TEST.DATA + tests/GDFILE_NO_ACTNUM.DATA + tests/LGR_3WELLS.DATA + tests/LGR_BASESIM2WELLS.DATA + tests/LGR_DIFFGROUP.DATA + tests/LGR_GROUP_EX01.DATA + tests/LGR_GROUP_EX04.DATA + tests/LGR_TESTMOD.EGRID + tests/LGR_TESTMOD.INIT + tests/LGR_TESTMOD.UNRST + tests/LGR_TESTMOD.X0002 + tests/MOD4_TEST_IGRP-DATA.DATA + tests/MODEL1_IX.INIT + tests/MODEL1_IX.SMSPEC + tests/MODEL1_IX.UNSMRY + tests/MSW.DATA + tests/MSW_2WELSEGS.DATA + tests/PYACTION.DATA + tests/RESTART_SIM.DATA + tests/SOFR_TEST.DATA + tests/SPE1CASE1.DATA + tests/SPE1CASE1.EGRID + tests/SPE1CASE1.RFT + tests/SPE1CASE1.SMSPEC + tests/SPE1CASE1.UNSMRY + tests/SPE1CASE1A.SMSPEC + tests/SPE1CASE1A.UNSMRY + tests/SPE1CASE1B.DATA + tests/SPE1CASE1_RPTONLY.DATA + tests/SPE1CASE1_RST60.ESMRY + tests/SPE1CASE1_RST60.SMSPEC + tests/SPE1CASE1_RST60.UNSMRY + tests/SPE1CASE1_SUMTHIN.DATA + tests/SPE1CASE1_WELTRAJ.DATA + tests/SPE1CASE1_WELTRAJ_2.DATA + tests/SPE1CASE1_WELTRAJ_MSW.DATA + tests/SPE1CASE2.DATA + tests/SPE1CASE2.X0060 + tests/SPE1CASE2_RESTART.DATA + tests/SPE1CASE2_RESTART_SKIPREST.DATA + tests/SPE1_TESTCASE.F0025 + tests/SPE1_TESTCASE.FUNRST + tests/SPE1_TESTCASE.UNRST + tests/SPE1_TESTCASE.X0025 + tests/SPE9_CP_PACKED.DATA + tests/SUMMARY_EFF_FAC.DATA + tests/TEST_AGGREGATE_MSW.DATA + tests/TEST_NETWORK_ALL.DATA + tests/TEST_WLIST.DATA + tests/UDQ_ACTIONX.DATA + tests/UDQ_ACTIONX.X0007 + tests/UDQ_ACTIONX_RESTART.DATA + tests/UDQ_ACTIONX_TEST1.DATA + tests/UDQ_ACTIONX_TEST1_U.DATA + tests/UDQ_BASE.DATA + tests/UDQ_RESTART.DATA + tests/UDQ_TEST_WCONPROD_IUAD-2.DATA + tests/UDQ_WCONPROD.DATA + tests/UDQ_WCONPROD.X0006 + tests/UDQ_WCONPROD_GRID.grdecl + tests/UDQ_WCONPROD_RESTART.DATA + tests/VFP_CASE.DATA + tests/act1.py + tests/action_syntax_error.py + tests/group_group.DATA + tests/include_example_pvt.txt + tests/include_example_summary.txt + tests/include_grid_3x5x4.grdecl + tests/include_sgof.txt + tests/include_swof.txt + tests/logger.py + tests/material/brine_unittest.json + tests/material/co2_unittest_above_sat.json + tests/material/co2_unittest_below_sat.json + tests/material/co2_unittest_part1.json + tests/material/co2_unittest_part2.json + tests/material/h2_unittest.json + tests/material/h2o_unittest.json + tests/material/ref_values_threecomponents_ptflash.json + tests/ml/ml_tools/models/test_dense_10x1.model + tests/ml/ml_tools/models/test_dense_10x10.model + tests/ml/ml_tools/models/test_dense_10x10x10.model + tests/ml/ml_tools/models/test_dense_1x1.model + tests/ml/ml_tools/models/test_dense_2x2.model + tests/ml/ml_tools/models/test_dense_activation_10.model + tests/ml/ml_tools/models/test_scalingdense_10x1.model + tests/msim/MSIM_PYACTION.DATA + tests/msim/MSIM_PYACTION_CHANGING_SCHEDULE.DATA + tests/msim/MSIM_PYACTION_CHANGING_SCHEDULE_ACTIONX_CALLBACK.DATA + tests/msim/MSIM_PYACTION_EXIT.DATA + tests/msim/MSIM_PYACTION_INSERT_INVALID_KEYWORD.DATA + tests/msim/MSIM_PYACTION_INSERT_KEYWORD.DATA + tests/msim/MSIM_PYACTION_NO_RUN_FUNCTION.DATA + tests/msim/MSIM_PYACTION_OPEN_WELL_AT_PAST_REPORT_STEP.DATA + tests/msim/MSIM_PYACTION_OPEN_WELL_AT_TOO_LATE_REPORT_STEP.DATA + tests/msim/MSIM_PYACTION_RETRIEVE_INFO.DATA + tests/msim/action1.py + tests/msim/action2.py + tests/msim/action2_no_run_function.py + tests/msim/action3.py + tests/msim/action3_actionx_callback.py + tests/msim/action_count.py + tests/msim/action_count_no_run_function.py + tests/msim/exit.py + tests/msim/insert_invalid_keyword.py + tests/msim/insert_keyword.py + tests/msim/open_well_past.py + tests/msim/open_well_too_late.py + tests/msim/retrieve_info.py + tests/props_spe1case1b.inc + tests/summary_deck.DATA + tests/summary_deck_non_constant_porosity.DATA + tests/table_deck.DATA + tests/testblackoilstate3.DATA + tests/testdata.param + tests/testrft.DATA + tests/wclose.py ) -if(ENABLE_ECL_OUTPUT) - list (APPEND TEST_DATA_FILES - tests/GDFILE_NO_ACTNUM.DATA - tests/EGRID_NO_ACTNUM.FEGRID - tests/BASE_SIM.DATA - tests/BASE_SIM_THPRES.DATA - tests/LGR_3WELLS.DATA - tests/LGR_BASESIM2WELLS.DATA - tests/LGR_DIFFGROUP.DATA - tests/LGR_GROUP_EX01.DATA - tests/LGR_GROUP_EX04.DATA - tests/RESTART_SIM.DATA - tests/summary_deck.DATA - tests/group_group.DATA - tests/testblackoilstate3.DATA - tests/testrft.DATA - tests/table_deck.DATA - tests/summary_deck_non_constant_porosity.DATA - tests/SUMMARY_EFF_FAC.DATA - tests/SPE1CASE1.DATA - tests/SPE1CASE1_RPTONLY.DATA - tests/SPE1CASE1_SUMTHIN.DATA - tests/SPE1CASE1.SMSPEC - tests/SPE1CASE1A.SMSPEC - tests/SPE1CASE1B.DATA - tests/SPE1CASE1_WELTRAJ.DATA - tests/SPE1CASE1_WELTRAJ_2.DATA - tests/SPE1CASE1_WELTRAJ_MSW.DATA - tests/props_spe1case1b.inc - tests/SPE9_CP_PACKED.DATA - tests/SOFR_TEST.DATA - tests/UDQ_BASE.DATA - tests/UDQ_RESTART.DATA - tests/UDQ_ACTIONX.X0007 - tests/UDQ_ACTIONX.DATA - tests/UDQ_ACTIONX_RESTART.DATA - tests/UDQ_TEST_WCONPROD_IUAD-2.DATA - tests/5_NETWORK_MODEL5_STDW_NETBAL_PACK.DATA - tests/9_4C_WINJ_GINJ_UDQ_MSW-UDARATE_TEST_PACK.DATA - tests/UDQ_ACTIONX_TEST1.DATA - tests/UDQ_ACTIONX_TEST1_U.DATA - tests/TEST_AGGREGATE_MSW.DATA - tests/include_example_pvt.txt - tests/include_example_summary.txt - tests/include_sgof.txt - tests/include_swof.txt - tests/include_grid_3x5x4.grdecl - tests/SPE1CASE2.DATA - tests/SPE1CASE2_RESTART.DATA - tests/SPE1CASE2_RESTART_SKIPREST.DATA - tests/SPE1CASE2.X0060 - tests/PYACTION.DATA - tests/logger.py - tests/0A4_GRCTRL_LRAT_LRAT_GGR_BASE_MODEL2_MSW_ALL.DATA - tests/MOD4_TEST_IGRP-DATA.DATA - tests/2_WLIFT_MODEL5_NOINC.DATA - tests/TEST_NETWORK_ALL.DATA - tests/TEST_WLIST.DATA - tests/act1.py - tests/MSW.DATA - tests/MSW_2WELSEGS.DATA - tests/EXIT_TEST.DATA - tests/action_syntax_error.py - tests/EMBEDDED_PYTHON.DATA - tests/ACTIONX_M1.DATA - tests/ACTIONX_M1_MULTIPLE.DATA - tests/ACTIONX_M1_RESTART.DATA - tests/ACTIONX_M1.UNRST - tests/ACTIONX_M1.X0010 - tests/wclose.py - tests/msim/MSIM_PYACTION.DATA - tests/msim/MSIM_PYACTION_RETRIEVE_INFO.DATA - tests/msim/MSIM_PYACTION_CHANGING_SCHEDULE.DATA - tests/msim/MSIM_PYACTION_CHANGING_SCHEDULE_ACTIONX_CALLBACK.DATA - tests/msim/MSIM_PYACTION_INSERT_KEYWORD.DATA - tests/msim/MSIM_PYACTION_INSERT_INVALID_KEYWORD.DATA - tests/msim/MSIM_PYACTION_NO_RUN_FUNCTION.DATA - tests/msim/MSIM_PYACTION_OPEN_WELL_AT_PAST_REPORT_STEP.DATA - tests/msim/MSIM_PYACTION_OPEN_WELL_AT_TOO_LATE_REPORT_STEP.DATA - tests/msim/MSIM_PYACTION_EXIT.DATA - tests/msim/exit.py - tests/msim/retrieve_info.py - tests/msim/action1.py - tests/msim/action2.py - tests/msim/action2_no_run_function.py - tests/msim/action3.py - tests/msim/action3_actionx_callback.py - tests/msim/action_count.py - tests/msim/insert_keyword.py - tests/msim/insert_invalid_keyword.py - tests/msim/action_count_no_run_function.py - tests/msim/open_well_past.py - tests/msim/open_well_too_late.py - tests/VFP_CASE.DATA - tests/CARFIN-COLUMN.EGRID - tests/CARFIN-DOUBLE.EGRID - tests/CARFIN-NESTED.EGRID - tests/CARFIN5.EGRID) -endif() -list (APPEND EXAMPLE_SOURCE_FILES +list(APPEND EXAMPLE_SOURCE_FILES + examples/opmi.cpp + examples/opmpack.cpp + examples/opmhash.cpp + examples/plot_ms_wells.cpp + examples/rst_deck.cpp + examples/wellgraph.cpp + examples/networkgraph.cpp + examples/make_ext_smry.cpp + examples/co2brinepvt.cpp + examples/hysteresis.cpp ) -if(ENABLE_ECL_INPUT) - list (APPEND TEST_DATA_FILES - tests/ECLFILE.INIT - tests/ECLFILE.FINIT - tests/LGR_TESTMOD.EGRID - tests/LGR_TESTMOD.INIT - tests/LGR_TESTMOD.UNRST - tests/LGR_TESTMOD.X0002 - tests/MODEL1_IX.INIT - tests/MODEL1_IX.SMSPEC - tests/MODEL1_IX.UNSMRY - tests/SPE1CASE1.EGRID - tests/SPE1CASE1.RFT - tests/SPE1_TESTCASE.UNRST - tests/SPE1_TESTCASE.FUNRST - tests/SPE1_TESTCASE.F0025 - tests/SPE1_TESTCASE.X0025 - tests/SPE1CASE1.UNSMRY - tests/SPE1CASE1A.UNSMRY - tests/SPE1CASE1_RST60.SMSPEC - tests/SPE1CASE1_RST60.UNSMRY - tests/SPE1CASE1_RST60.ESMRY - tests/UDQ_WCONPROD.DATA - tests/UDQ_WCONPROD_GRID.grdecl - tests/UDQ_WCONPROD_RESTART.DATA - tests/UDQ_WCONPROD.X0006 - tests/BASE.UNRST - ) - list (APPEND EXAMPLE_SOURCE_FILES - examples/opmi.cpp - examples/opmpack.cpp - examples/opmhash.cpp - examples/plot_ms_wells.cpp - examples/rst_deck.cpp - examples/wellgraph.cpp - examples/networkgraph.cpp - examples/make_ext_smry.cpp - examples/co2brinepvt.cpp - examples/hysteresis.cpp - ) -endif() # programs listed here will not only be compiled, but also marked for # installation -list (APPEND PROGRAM_SOURCE_FILES +list(APPEND PROGRAM_SOURCE_FILES + examples/opmi.cpp + examples/opmpack.cpp + examples/opmhash.cpp + examples/rst_deck.cpp + examples/make_esmry.cpp + examples/co2brinepvt.cpp + examples/hysteresis.cpp + examples/plot_ms_wells.cpp ) -if(ENABLE_ECL_INPUT) - list (APPEND PROGRAM_SOURCE_FILES - examples/opmi.cpp - examples/opmpack.cpp - examples/opmhash.cpp - examples/rst_deck.cpp - examples/make_esmry.cpp - examples/co2brinepvt.cpp - examples/hysteresis.cpp - examples/plot_ms_wells.cpp - ) -endif() -list( APPEND PUBLIC_HEADER_FILES - opm/common/CriticalError.hpp - opm/common/ErrorMacros.hpp - opm/common/Exceptions.hpp - opm/common/TimingMacros.hpp - opm/common/OpmLog/CounterLog.hpp - opm/common/OpmLog/EclipsePRTLog.hpp - opm/common/OpmLog/LogBackend.hpp - opm/common/OpmLog/Logger.hpp - opm/common/OpmLog/LogUtil.hpp - opm/common/OpmLog/MessageFormatter.hpp - opm/common/OpmLog/MessageLimiter.hpp - opm/common/OpmLog/KeywordLocation.hpp - opm/common/OpmLog/InfoLogger.hpp - opm/common/OpmLog/OpmLog.hpp - opm/common/OpmLog/StreamLog.hpp - opm/common/OpmLog/TimerLog.hpp - opm/common/utility/ActiveGridCells.hpp - opm/common/utility/ConstexprAssert.hpp - opm/common/utility/CSRGraphFromCoordinates.hpp - opm/common/utility/CSRGraphFromCoordinates_impl.hpp - opm/common/utility/DemangledType.hpp - opm/common/utility/FileSystem.hpp - opm/common/utility/gpuDecorators.hpp - opm/common/utility/gpuistl_if_available.hpp - opm/common/utility/MemPacker.hpp - opm/common/utility/pointerArithmetic.hpp - opm/common/utility/ThreadSafeMapBuilder.hpp - opm/common/utility/numeric/cmp.hpp - opm/common/utility/numeric/blas_lapack.h - opm/common/utility/numeric/calculateCellVol.hpp - opm/common/utility/numeric/GeometryUtil.hpp - opm/common/utility/numeric/VectorUtil.hpp - opm/common/utility/numeric/GridUtil.hpp - opm/common/utility/numeric/buildUniformMonotoneTable.hpp - opm/common/utility/numeric/linearInterpolation.hpp - opm/common/utility/numeric/MonotCubicInterpolator.hpp - opm/common/utility/numeric/NonuniformTableLinear.hpp - opm/common/utility/numeric/RootFinders.hpp - opm/common/utility/numeric/SparseVector.hpp - opm/common/utility/numeric/UniformTableLinear.hpp - opm/common/utility/numeric/VectorOps.hpp - opm/common/utility/OpmInputError.hpp - opm/common/utility/parameters/ParameterGroup.hpp - opm/common/utility/parameters/ParameterGroup_impl.hpp - opm/common/utility/parameters/Parameter.hpp - opm/common/utility/parameters/ParameterMapItem.hpp - opm/common/utility/parameters/ParameterRequirement.hpp - opm/common/utility/parameters/ParameterStrings.hpp - opm/common/utility/parameters/ParameterTools.hpp - opm/common/utility/platform_dependent/disable_warnings.h - opm/common/utility/platform_dependent/reenable_warnings.h - opm/common/utility/shmatch.hpp - opm/common/utility/Serializer.hpp - opm/common/utility/String.hpp - opm/common/utility/SymmTensor.hpp - opm/common/utility/TimeService.hpp - opm/common/utility/VectorWithDefaultAllocator.hpp - opm/common/utility/Visitor.hpp - opm/common/utility/VoigtArray.hpp - opm/material/components/Lnapl.hpp - opm/material/components/N2.hpp - opm/material/components/H2.hpp - opm/material/components/Unit.hpp - opm/material/components/iapws/Common.hpp - opm/material/components/iapws/Region1.hpp - opm/material/components/iapws/Region4.hpp - opm/material/components/iapws/Region2.hpp - opm/material/components/Dnapl.hpp - opm/material/components/NullComponent.hpp - opm/material/components/H2O.hpp - opm/material/components/TabulatedComponent.hpp - opm/material/components/Xylene.hpp - opm/material/components/SimpleH2O.hpp - opm/material/components/CO2.hpp - opm/material/components/CO2Tables.hpp - opm/material/components/Mesitylene.hpp - opm/material/components/SimpleCO2.hpp - opm/material/components/C10.hpp - opm/material/components/SimpleHuDuanH2O.hpp - opm/material/components/Component.hpp - opm/material/components/Air.hpp - opm/material/components/C1.hpp - opm/material/components/Brine.hpp - opm/material/components/BrineDynamic.hpp - opm/material/fluidstates/BlackOilFluidState.hpp - opm/material/fluidstates/NonEquilibriumFluidState.hpp - opm/material/fluidstates/FluidStateSaturationModules.hpp - opm/material/fluidstates/FluidStateCompositionModules.hpp - opm/material/fluidstates/PressureOverlayFluidState.hpp - opm/material/fluidstates/CompositionalFluidState.hpp - opm/material/fluidstates/FluidStateEnthalpyModules.hpp - opm/material/fluidstates/FluidStatePressureModules.hpp - opm/material/fluidstates/ModularFluidState.hpp - opm/material/fluidstates/FluidStateTemperatureModules.hpp - opm/material/fluidstates/SimpleModularFluidState.hpp - opm/material/fluidstates/FluidStateViscosityModules.hpp - opm/material/fluidstates/TemperatureOverlayFluidState.hpp - opm/material/fluidstates/ImmiscibleFluidState.hpp - opm/material/fluidstates/SaturationOverlayFluidState.hpp - opm/material/fluidstates/FluidStateFugacityModules.hpp - opm/material/fluidstates/FluidStateDensityModules.hpp - opm/material/constraintsolvers/ComputeFromReferencePhase.hpp - opm/material/constraintsolvers/PTFlash.hpp - opm/material/constraintsolvers/CompositionFromFugacities.hpp - opm/material/constraintsolvers/MiscibleMultiPhaseComposition.hpp - opm/material/constraintsolvers/NcpFlash.hpp - opm/material/constraintsolvers/ImmiscibleFlash.hpp - opm/material/IdealGas.hpp - opm/material/binarycoefficients/H2O_Mesitylene.hpp - opm/material/binarycoefficients/H2O_Air.hpp - opm/material/binarycoefficients/H2O_N2.hpp - opm/material/binarycoefficients/Air_Mesitylene.hpp - opm/material/binarycoefficients/FullerMethod.hpp - opm/material/binarycoefficients/H2O_Xylene.hpp - opm/material/binarycoefficients/H2O_CO2.hpp - opm/material/binarycoefficients/Air_Xylene.hpp - opm/material/binarycoefficients/Brine_CO2.hpp - opm/material/binarycoefficients/Brine_H2.hpp - opm/material/binarycoefficients/HenryIapws.hpp - opm/material/Constants.hpp - opm/material/fluidsystems/NullParameterCache.hpp - opm/material/fluidsystems/BaseFluidSystem.hpp - opm/material/fluidsystems/BlackOilDefaultFluidSystemIndices.hpp - opm/material/fluidsystems/ParameterCacheBase.hpp - opm/material/fluidsystems/PhaseUsageInfo.hpp - opm/material/fluidsystems/H2ON2LiquidPhaseFluidSystem.hpp - opm/material/fluidsystems/BrineCO2FluidSystem.hpp - opm/material/fluidsystems/GasPhase.hpp - opm/material/fluidsystems/TwoPhaseImmiscibleFluidSystem.hpp - opm/material/fluidsystems/BlackOilFluidSystem.hpp - opm/material/fluidsystems/BlackOilFluidSystem_macrotemplate.hpp - opm/material/fluidsystems/BlackOilFluidSystemNonStatic.hpp - opm/material/fluidsystems/BlackOilFunctions.hpp - opm/material/fluidsystems/LiquidPhase.hpp - opm/material/fluidsystems/PTFlashParameterCache.hpp - opm/material/fluidsystems/Spe5ParameterCache.hpp - opm/material/fluidsystems/H2OAirMesityleneFluidSystem.hpp - opm/material/fluidsystems/H2OAirXyleneFluidSystem.hpp - opm/material/fluidsystems/SinglePhaseFluidSystem.hpp - opm/material/fluidsystems/Spe5FluidSystem.hpp - opm/material/fluidsystems/blackoilpvt/SolventPvt.hpp - opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.hpp - opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.hpp - opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.hpp - opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.hpp - opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.hpp - opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.hpp - opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.hpp - opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.hpp - opm/material/fluidsystems/blackoilpvt/WetGasPvt.hpp - opm/material/fluidsystems/blackoilpvt/DeadOilPvt.hpp - opm/material/fluidsystems/blackoilpvt/DryGasPvt.hpp - opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.hpp - opm/material/fluidsystems/blackoilpvt/LiveOilPvt.hpp - opm/material/fluidsystems/blackoilpvt/NullOilPvt.hpp - opm/material/fluidsystems/blackoilpvt/OilPvtThermal.hpp - opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.hpp - opm/material/fluidsystems/blackoilpvt/GasPvtThermal.hpp - opm/material/fluidsystems/blackoilpvt/Co2GasPvt.hpp - opm/material/fluidsystems/blackoilpvt/H2GasPvt.hpp - opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.hpp - opm/material/fluidsystems/H2OAirFluidSystem.hpp - opm/material/fluidsystems/H2ON2FluidSystem.hpp - opm/material/fluidsystems/ThreeComponentFluidSystem.hh - opm/material/fluidsystems/GenericOilGasWaterFluidSystem.hpp - opm/material/fluidmatrixinteractions/EclTwoPhaseMaterial.hpp - opm/material/fluidmatrixinteractions/SatCurveMultiplexerParams.hpp - opm/material/fluidmatrixinteractions/EclTwoPhaseMaterialParams.hpp - opm/material/fluidmatrixinteractions/EclEpsTwoPhaseLawParams.hpp - opm/material/fluidmatrixinteractions/ParkerLenhardParams.hpp - opm/material/fluidmatrixinteractions/ThreePhaseParkerVanGenuchtenParams.hpp - opm/material/fluidmatrixinteractions/RegularizedVanGenuchtenParams.hpp - opm/material/fluidmatrixinteractions/MaterialTraits.hpp - opm/material/fluidmatrixinteractions/VanGenuchtenParams.hpp - opm/material/fluidmatrixinteractions/VanGenuchten.hpp - opm/material/fluidmatrixinteractions/LinearMaterial.hpp - opm/material/fluidmatrixinteractions/ParkerLenhard.hpp - opm/material/fluidmatrixinteractions/SatCurveMultiplexer.hpp - opm/material/fluidmatrixinteractions/EclEpsGridProperties.hpp - opm/material/fluidmatrixinteractions/EclHysteresisTwoPhaseLaw.hpp - opm/material/fluidmatrixinteractions/EclHysteresisConfig.hpp - opm/material/fluidmatrixinteractions/RegularizedBrooksCoreyParams.hpp - opm/material/fluidmatrixinteractions/EclMultiplexerMaterialParams.hpp - opm/material/fluidmatrixinteractions/NullMaterial.hpp - opm/material/fluidmatrixinteractions/EclEpsScalingPoints.hpp - opm/material/fluidmatrixinteractions/EclHysteresisTwoPhaseLawParams.hpp - opm/material/fluidmatrixinteractions/TwoPhaseLETCurvesParams.hpp - opm/material/fluidmatrixinteractions/EclStone2Material.hpp - opm/material/fluidmatrixinteractions/NullMaterialParams.hpp - opm/material/fluidmatrixinteractions/LinearMaterialParams.hpp - opm/material/fluidmatrixinteractions/EclStone1Material.hpp - opm/material/fluidmatrixinteractions/EclMultiplexerMaterial.hpp - opm/material/fluidmatrixinteractions/EclStone1MaterialParams.hpp - opm/material/fluidmatrixinteractions/EclEpsConfig.hpp - opm/material/fluidmatrixinteractions/EclStone2MaterialParams.hpp - opm/material/fluidmatrixinteractions/EffToAbsLawParams.hpp - opm/material/fluidmatrixinteractions/RegularizedBrooksCorey.hpp - opm/material/fluidmatrixinteractions/SplineTwoPhaseMaterial.hpp - opm/material/fluidmatrixinteractions/EffToAbsLaw.hpp - opm/material/fluidmatrixinteractions/EclDefaultMaterial.hpp - opm/material/fluidmatrixinteractions/PiecewiseLinearTwoPhaseMaterialParams.hpp - opm/material/fluidmatrixinteractions/SplineTwoPhaseMaterialParams.hpp - opm/material/fluidmatrixinteractions/EclEpsTwoPhaseLaw.hpp - opm/material/fluidmatrixinteractions/TwoPhaseLETCurves.hpp - opm/material/fluidmatrixinteractions/EclMaterialLawInitParams.hpp - opm/material/fluidmatrixinteractions/EclMaterialLawHystParams.hpp - opm/material/fluidmatrixinteractions/EclMaterialLawManager.hpp - opm/material/fluidmatrixinteractions/EclMaterialLawReadEffectiveParams.hpp - opm/material/fluidmatrixinteractions/EclMaterialLawTwoPhaseTypes.hpp - opm/material/fluidmatrixinteractions/DirectionalMaterialLawParams.hpp - opm/material/fluidmatrixinteractions/DirectionalMaterialLawParams.hpp - opm/material/fluidmatrixinteractions/RegularizedVanGenuchten.hpp - opm/material/fluidmatrixinteractions/EclDefaultMaterialParams.hpp - opm/material/fluidmatrixinteractions/ThreePhaseParkerVanGenuchten.hpp - opm/material/fluidmatrixinteractions/BrooksCoreyParams.hpp - opm/material/fluidmatrixinteractions/BrooksCorey.hpp - opm/material/fluidmatrixinteractions/PiecewiseLinearTwoPhaseMaterial.hpp - opm/material/checkFluidSystem.hpp - opm/material/viscositymodels/LBC.hpp - opm/material/viscositymodels/LBCco2rich.hpp - opm/material/common/Valgrind.hpp - opm/material/common/EnsureFinalized.hpp - opm/material/common/quad.hpp - opm/material/common/Spline.hpp - opm/material/common/PolynomialUtils.hpp - opm/material/common/UniformXTabulated2DFunction.hpp - opm/material/common/MathToolbox.hpp - opm/material/common/TridiagonalMatrix.hpp - opm/material/common/ResetLocale.hpp - opm/material/common/HasMemberGeneratorMacros.hpp - opm/material/common/UniformTabulated2DFunction.hpp - opm/material/common/FastSmallVector.hpp - opm/material/common/ConditionalStorage.hpp - opm/material/common/Means.hpp - opm/material/common/IntervalTabulated2DFunction.hpp - opm/material/common/Tabulated1DFunction.hpp - opm/material/densead/Evaluation9.hpp - opm/material/densead/Evaluation8.hpp - opm/material/densead/Evaluation7.hpp - opm/material/densead/Evaluation.hpp - opm/material/densead/Evaluation5.hpp - opm/material/densead/Evaluation3.hpp - opm/material/densead/Evaluation4.hpp - opm/material/densead/Evaluation11.hpp - opm/material/densead/DynamicEvaluation.hpp - opm/material/densead/Math.hpp - opm/material/densead/Evaluation1.hpp - opm/material/densead/Evaluation12.hpp - opm/material/densead/Evaluation2.hpp - opm/material/densead/EvaluationFormat.hpp - opm/material/densead/EvaluationSpecializations.hpp - opm/material/densead/Evaluation10.hpp - opm/material/densead/Evaluation6.hpp - opm/material/eos/PengRobinson.hpp - opm/material/eos/PengRobinsonParams.hpp - opm/material/eos/PengRobinsonParamsMixture.hpp - opm/material/eos/PengRobinsonMixture.hpp - opm/material/eos/CubicEOS.hpp - opm/material/eos/CubicEOSParams.hpp - opm/material/eos/PRParams.hpp - opm/material/eos/RKParams.hpp - opm/material/eos/SRKParams.hpp - opm/material/thermal/ConstantSolidHeatCapLawParams.hpp - opm/material/thermal/ConstantSolidHeatCapLaw.hpp - opm/material/thermal/EclHeatcrLaw.hpp - opm/material/thermal/SomertonThermalConductionLawParams.hpp - opm/material/thermal/EclThcLawParams.hpp - opm/material/thermal/EclSpecrockLawParams.hpp - opm/material/thermal/EclThconrLaw.hpp - opm/material/thermal/EclThconrLawParams.hpp - opm/material/thermal/FluidThermalConductionLaw.hpp - opm/material/thermal/EclThcLaw.hpp - opm/material/thermal/FluidThermalConductionLawParams.hpp - opm/material/thermal/EclHeatcrLawParams.hpp - opm/material/thermal/NullThermalConductionLaw.hpp - opm/material/thermal/EclSolidEnergyLawMultiplexer.hpp - opm/material/thermal/EclThermalConductionLawMultiplexerParams.hpp - opm/material/thermal/EclThermalConductionLawMultiplexer.hpp - opm/material/thermal/EclSolidEnergyLawMultiplexerParams.hpp - opm/material/thermal/EclThermalLawManager.hpp - opm/material/thermal/SomertonThermalConductionLaw.hpp - opm/material/thermal/EclSpecrockLaw.hpp - opm/material/thermal/NullSolidEnergyLaw.hpp - opm/material/thermal/EnergyModuleType.hpp - opm/ml/ml_model.hpp +list(APPEND PUBLIC_HEADER_FILES + opm/common/CriticalError.hpp + opm/common/ErrorMacros.hpp + opm/common/Exceptions.hpp + opm/common/OpmLog/CounterLog.hpp + opm/common/OpmLog/EclipsePRTLog.hpp + opm/common/OpmLog/InfoLogger.hpp + opm/common/OpmLog/KeywordLocation.hpp + opm/common/OpmLog/LogBackend.hpp + opm/common/OpmLog/LogUtil.hpp + opm/common/OpmLog/Logger.hpp + opm/common/OpmLog/MessageFormatter.hpp + opm/common/OpmLog/MessageLimiter.hpp + opm/common/OpmLog/OpmLog.hpp + opm/common/OpmLog/StreamLog.hpp + opm/common/OpmLog/TimerLog.hpp + opm/common/TimingMacros.hpp + opm/common/utility/ActiveGridCells.hpp + opm/common/utility/CSRGraphFromCoordinates.hpp + opm/common/utility/CSRGraphFromCoordinates_impl.hpp + opm/common/utility/ConstexprAssert.hpp + opm/common/utility/DemangledType.hpp + opm/common/utility/FileSystem.hpp + opm/common/utility/MemPacker.hpp + opm/common/utility/OpmInputError.hpp + opm/common/utility/Serializer.hpp + opm/common/utility/String.hpp + opm/common/utility/SymmTensor.hpp + opm/common/utility/ThreadSafeMapBuilder.hpp + opm/common/utility/TimeService.hpp + opm/common/utility/VectorWithDefaultAllocator.hpp + opm/common/utility/Visitor.hpp + opm/common/utility/VoigtArray.hpp + opm/common/utility/gpuDecorators.hpp + opm/common/utility/gpuistl_if_available.hpp + opm/common/utility/numeric/GeometryUtil.hpp + opm/common/utility/numeric/GridUtil.hpp + opm/common/utility/numeric/MonotCubicInterpolator.hpp + opm/common/utility/numeric/NonuniformTableLinear.hpp + opm/common/utility/numeric/RootFinders.hpp + opm/common/utility/numeric/SparseVector.hpp + opm/common/utility/numeric/UniformTableLinear.hpp + opm/common/utility/numeric/VectorOps.hpp + opm/common/utility/numeric/VectorUtil.hpp + opm/common/utility/numeric/blas_lapack.h + opm/common/utility/numeric/buildUniformMonotoneTable.hpp + opm/common/utility/numeric/calculateCellVol.hpp + opm/common/utility/numeric/cmp.hpp + opm/common/utility/numeric/linearInterpolation.hpp + opm/common/utility/parameters/Parameter.hpp + opm/common/utility/parameters/ParameterGroup.hpp + opm/common/utility/parameters/ParameterGroup_impl.hpp + opm/common/utility/parameters/ParameterMapItem.hpp + opm/common/utility/parameters/ParameterRequirement.hpp + opm/common/utility/parameters/ParameterStrings.hpp + opm/common/utility/parameters/ParameterTools.hpp + opm/common/utility/platform_dependent/disable_warnings.h + opm/common/utility/platform_dependent/reenable_warnings.h + opm/common/utility/pointerArithmetic.hpp + opm/common/utility/shmatch.hpp + opm/input/eclipse/Deck/Deck.hpp + opm/input/eclipse/Deck/DeckItem.hpp + opm/input/eclipse/Deck/DeckKeyword.hpp + opm/input/eclipse/Deck/DeckOutput.hpp + opm/input/eclipse/Deck/DeckRecord.hpp + opm/input/eclipse/Deck/DeckSection.hpp + opm/input/eclipse/Deck/DeckTree.hpp + opm/input/eclipse/Deck/DeckValue.hpp + opm/input/eclipse/Deck/DeckView.hpp + opm/input/eclipse/Deck/FileDeck.hpp + opm/input/eclipse/Deck/ImportContainer.hpp + opm/input/eclipse/Deck/UDAValue.hpp + opm/input/eclipse/Deck/value_status.hpp + opm/input/eclipse/EclipseState/Aquifer/Aquancon.hpp + opm/input/eclipse/EclipseState/Aquifer/AquiferCT.hpp + opm/input/eclipse/EclipseState/Aquifer/AquiferConfig.hpp + opm/input/eclipse/EclipseState/Aquifer/AquiferFlux.hpp + opm/input/eclipse/EclipseState/Aquifer/Aquifetp.hpp + opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquiferCell.hpp + opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquiferConnection.hpp + opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquifers.hpp + opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/SingleNumericalAquifer.hpp + opm/input/eclipse/EclipseState/Co2StoreConfig.hpp + opm/input/eclipse/EclipseState/Compositional/CompositionalConfig.hpp + opm/input/eclipse/EclipseState/EclipseConfig.hpp + opm/input/eclipse/EclipseState/EclipseState.hpp + opm/input/eclipse/EclipseState/EndpointScaling.hpp + opm/input/eclipse/EclipseState/Grid/Box.hpp + opm/input/eclipse/EclipseState/Grid/BoxManager.hpp + opm/input/eclipse/EclipseState/Grid/Carfin.hpp + opm/input/eclipse/EclipseState/Grid/CarfinManager.hpp + opm/input/eclipse/EclipseState/Grid/EclipseGrid.hpp + opm/input/eclipse/EclipseState/Grid/FIPRegionStatistics.hpp + opm/input/eclipse/EclipseState/Grid/FaceDir.hpp + opm/input/eclipse/EclipseState/Grid/Fault.hpp + opm/input/eclipse/EclipseState/Grid/FaultCollection.hpp + opm/input/eclipse/EclipseState/Grid/FaultFace.hpp + opm/input/eclipse/EclipseState/Grid/FieldData.hpp + opm/input/eclipse/EclipseState/Grid/FieldProps.hpp + opm/input/eclipse/EclipseState/Grid/FieldPropsManager.hpp + opm/input/eclipse/EclipseState/Grid/GridDims.hpp + opm/input/eclipse/EclipseState/Grid/Keywords.hpp + opm/input/eclipse/EclipseState/Grid/LgrCollection.hpp + opm/input/eclipse/EclipseState/Grid/MULTREGTScanner.hpp + opm/input/eclipse/EclipseState/Grid/MapAxes.hpp + opm/input/eclipse/EclipseState/Grid/MinpvMode.hpp + opm/input/eclipse/EclipseState/Grid/NNC.hpp + opm/input/eclipse/EclipseState/Grid/PinchMode.hpp + opm/input/eclipse/EclipseState/Grid/RegionSetMatcher.hpp + opm/input/eclipse/EclipseState/Grid/SatfuncPropertyInitializers.hpp + opm/input/eclipse/EclipseState/Grid/TranCalculator.hpp + opm/input/eclipse/EclipseState/Grid/TransMult.hpp + opm/input/eclipse/EclipseState/IOConfig/FIPConfig.hpp + opm/input/eclipse/EclipseState/IOConfig/IOConfig.hpp + opm/input/eclipse/EclipseState/InitConfig/Equil.hpp + opm/input/eclipse/EclipseState/InitConfig/FoamConfig.hpp + opm/input/eclipse/EclipseState/InitConfig/InitConfig.hpp + opm/input/eclipse/EclipseState/Phase.hpp + opm/input/eclipse/EclipseState/Runspec.hpp + opm/input/eclipse/EclipseState/SimulationConfig/BCConfig.hpp + opm/input/eclipse/EclipseState/SimulationConfig/DatumDepth.hpp + opm/input/eclipse/EclipseState/SimulationConfig/RockConfig.hpp + opm/input/eclipse/EclipseState/SimulationConfig/SimulationConfig.hpp + opm/input/eclipse/EclipseState/SimulationConfig/ThresholdPressure.hpp + opm/input/eclipse/EclipseState/SummaryConfig/SummaryConfig.hpp + opm/input/eclipse/EclipseState/Tables/Aqudims.hpp + opm/input/eclipse/EclipseState/Tables/AqutabTable.hpp + opm/input/eclipse/EclipseState/Tables/BiofilmTable.hpp + opm/input/eclipse/EclipseState/Tables/BrineDensityTable.hpp + opm/input/eclipse/EclipseState/Tables/ColumnSchema.hpp + opm/input/eclipse/EclipseState/Tables/DenT.hpp + opm/input/eclipse/EclipseState/Tables/DiffMICPTable.hpp + opm/input/eclipse/EclipseState/Tables/EnkrvdTable.hpp + opm/input/eclipse/EclipseState/Tables/EnptvdTable.hpp + opm/input/eclipse/EclipseState/Tables/Eqldims.hpp + opm/input/eclipse/EclipseState/Tables/EzrokhiTable.hpp + opm/input/eclipse/EclipseState/Tables/FlatTable.hpp + opm/input/eclipse/EclipseState/Tables/FoamadsTable.hpp + opm/input/eclipse/EclipseState/Tables/FoammobTable.hpp + opm/input/eclipse/EclipseState/Tables/GasvisctTable.hpp + opm/input/eclipse/EclipseState/Tables/GsfTable.hpp + opm/input/eclipse/EclipseState/Tables/ImkrvdTable.hpp + opm/input/eclipse/EclipseState/Tables/ImptvdTable.hpp + opm/input/eclipse/EclipseState/Tables/JFunc.hpp + opm/input/eclipse/EclipseState/Tables/JouleThomson.hpp + opm/input/eclipse/EclipseState/Tables/MiscTable.hpp + opm/input/eclipse/EclipseState/Tables/MsfnTable.hpp + opm/input/eclipse/EclipseState/Tables/OilvisctTable.hpp + opm/input/eclipse/EclipseState/Tables/OverburdTable.hpp + opm/input/eclipse/EclipseState/Tables/PbvdTable.hpp + opm/input/eclipse/EclipseState/Tables/PcfactTable.hpp + opm/input/eclipse/EclipseState/Tables/PdvdTable.hpp + opm/input/eclipse/EclipseState/Tables/PermfactTable.hpp + opm/input/eclipse/EclipseState/Tables/PlyadsTable.hpp + opm/input/eclipse/EclipseState/Tables/PlydhflfTable.hpp + opm/input/eclipse/EclipseState/Tables/PlymaxTable.hpp + opm/input/eclipse/EclipseState/Tables/PlymwinjTable.hpp + opm/input/eclipse/EclipseState/Tables/PlyrockTable.hpp + opm/input/eclipse/EclipseState/Tables/PlyshlogTable.hpp + opm/input/eclipse/EclipseState/Tables/PlyviscTable.hpp + opm/input/eclipse/EclipseState/Tables/PmiscTable.hpp + opm/input/eclipse/EclipseState/Tables/PolyInjTable.hpp + opm/input/eclipse/EclipseState/Tables/Ppcwmax.hpp + opm/input/eclipse/EclipseState/Tables/PvdgTable.hpp + opm/input/eclipse/EclipseState/Tables/PvdoTable.hpp + opm/input/eclipse/EclipseState/Tables/PvdsTable.hpp + opm/input/eclipse/EclipseState/Tables/PvtgTable.hpp + opm/input/eclipse/EclipseState/Tables/PvtgwTable.hpp + opm/input/eclipse/EclipseState/Tables/PvtgwoTable.hpp + opm/input/eclipse/EclipseState/Tables/PvtoTable.hpp + opm/input/eclipse/EclipseState/Tables/PvtsolTable.hpp + opm/input/eclipse/EclipseState/Tables/PvtwsaltTable.hpp + opm/input/eclipse/EclipseState/Tables/PvtxTable.hpp + opm/input/eclipse/EclipseState/Tables/Regdims.hpp + opm/input/eclipse/EclipseState/Tables/Rock2dTable.hpp + opm/input/eclipse/EclipseState/Tables/Rock2dtrTable.hpp + opm/input/eclipse/EclipseState/Tables/RocktabTable.hpp + opm/input/eclipse/EclipseState/Tables/RockwnodTable.hpp + opm/input/eclipse/EclipseState/Tables/RsvdTable.hpp + opm/input/eclipse/EclipseState/Tables/RtempvdTable.hpp + opm/input/eclipse/EclipseState/Tables/RvvdTable.hpp + opm/input/eclipse/EclipseState/Tables/RvwvdTable.hpp + opm/input/eclipse/EclipseState/Tables/RwgsaltTable.hpp + opm/input/eclipse/EclipseState/Tables/SaltSolubilityTable.hpp + opm/input/eclipse/EclipseState/Tables/SaltpvdTable.hpp + opm/input/eclipse/EclipseState/Tables/SaltvdTable.hpp + opm/input/eclipse/EclipseState/Tables/SgcwmisTable.hpp + opm/input/eclipse/EclipseState/Tables/SgfnTable.hpp + opm/input/eclipse/EclipseState/Tables/SgofTable.hpp + opm/input/eclipse/EclipseState/Tables/SgwfnTable.hpp + opm/input/eclipse/EclipseState/Tables/SimpleTable.hpp + opm/input/eclipse/EclipseState/Tables/SkprpolyTable.hpp + opm/input/eclipse/EclipseState/Tables/SkprwatTable.hpp + opm/input/eclipse/EclipseState/Tables/SlgofTable.hpp + opm/input/eclipse/EclipseState/Tables/Sof2Table.hpp + opm/input/eclipse/EclipseState/Tables/Sof3Table.hpp + opm/input/eclipse/EclipseState/Tables/SolventDensityTable.hpp + opm/input/eclipse/EclipseState/Tables/SorwmisTable.hpp + opm/input/eclipse/EclipseState/Tables/SpecheatTable.hpp + opm/input/eclipse/EclipseState/Tables/SpecrockTable.hpp + opm/input/eclipse/EclipseState/Tables/SsfnTable.hpp + opm/input/eclipse/EclipseState/Tables/StandardCond.hpp + opm/input/eclipse/EclipseState/Tables/SwfnTable.hpp + opm/input/eclipse/EclipseState/Tables/SwofTable.hpp + opm/input/eclipse/EclipseState/Tables/TLMixpar.hpp + opm/input/eclipse/EclipseState/Tables/Tabdims.hpp + opm/input/eclipse/EclipseState/Tables/TableColumn.hpp + opm/input/eclipse/EclipseState/Tables/TableContainer.hpp + opm/input/eclipse/EclipseState/Tables/TableEnums.hpp + opm/input/eclipse/EclipseState/Tables/TableIndex.hpp + opm/input/eclipse/EclipseState/Tables/TableManager.hpp + opm/input/eclipse/EclipseState/Tables/TableSchema.hpp + opm/input/eclipse/EclipseState/Tables/TlpmixpaTable.hpp + opm/input/eclipse/EclipseState/Tables/TracerVdTable.hpp + opm/input/eclipse/EclipseState/Tables/WatvisctTable.hpp + opm/input/eclipse/EclipseState/Tables/WsfTable.hpp + opm/input/eclipse/EclipseState/TracerConfig.hpp + opm/input/eclipse/EclipseState/Util/IOrderSet.hpp + opm/input/eclipse/EclipseState/Util/OrderedMap.hpp + opm/input/eclipse/EclipseState/WagHysteresisConfig.hpp + opm/input/eclipse/EclipseState/checkDeck.hpp + opm/input/eclipse/Generator/KeywordGenerator.hpp + opm/input/eclipse/Generator/KeywordLoader.hpp + opm/input/eclipse/Parser/ErrorGuard.hpp + opm/input/eclipse/Parser/InputErrorAction.hpp + opm/input/eclipse/Parser/ParseContext.hpp + opm/input/eclipse/Parser/Parser.hpp + opm/input/eclipse/Parser/ParserConst.hpp + opm/input/eclipse/Parser/ParserEnums.hpp + opm/input/eclipse/Parser/ParserItem.hpp + opm/input/eclipse/Parser/ParserKeyword.hpp + opm/input/eclipse/Parser/ParserRecord.hpp + opm/input/eclipse/Python/Python.hpp + opm/input/eclipse/Schedule/Action/ASTNode.hpp + opm/input/eclipse/Schedule/Action/Actdims.hpp + opm/input/eclipse/Schedule/Action/ActionAST.hpp + opm/input/eclipse/Schedule/Action/ActionContext.hpp + opm/input/eclipse/Schedule/Action/ActionResult.hpp + opm/input/eclipse/Schedule/Action/ActionValue.hpp + opm/input/eclipse/Schedule/Action/ActionX.hpp + opm/input/eclipse/Schedule/Action/Actions.hpp + opm/input/eclipse/Schedule/Action/Condition.hpp + opm/input/eclipse/Schedule/Action/Enums.hpp + opm/input/eclipse/Schedule/Action/PyAction.hpp + opm/input/eclipse/Schedule/Action/SimulatorUpdate.hpp + opm/input/eclipse/Schedule/Action/State.hpp + opm/input/eclipse/Schedule/Action/WGNames.hpp + opm/input/eclipse/Schedule/ArrayDimChecker.hpp + opm/input/eclipse/Schedule/BCProp.hpp + opm/input/eclipse/Schedule/CompletedCells.hpp + opm/input/eclipse/Schedule/Events.hpp + opm/input/eclipse/Schedule/GasLiftOpt.hpp + opm/input/eclipse/Schedule/Group/GConSale.hpp + opm/input/eclipse/Schedule/Group/GConSump.hpp + opm/input/eclipse/Schedule/Group/GPMaint.hpp + opm/input/eclipse/Schedule/Group/GSatProd.hpp + opm/input/eclipse/Schedule/Group/GTNode.hpp + opm/input/eclipse/Schedule/Group/Group.hpp + opm/input/eclipse/Schedule/Group/GroupEconProductionLimits.hpp + opm/input/eclipse/Schedule/Group/GroupSatelliteInjection.hpp + opm/input/eclipse/Schedule/Group/GuideRate.hpp + opm/input/eclipse/Schedule/Group/GuideRateConfig.hpp + opm/input/eclipse/Schedule/Group/GuideRateModel.hpp + opm/input/eclipse/Schedule/MSW/AICD.hpp + opm/input/eclipse/Schedule/MSW/SICD.hpp + opm/input/eclipse/Schedule/MSW/Segment.hpp + opm/input/eclipse/Schedule/MSW/SegmentMatcher.hpp + opm/input/eclipse/Schedule/MSW/Valve.hpp + opm/input/eclipse/Schedule/MSW/WellSegments.hpp + opm/input/eclipse/Schedule/MSW/icd.hpp + opm/input/eclipse/Schedule/MessageLimits.hpp + opm/input/eclipse/Schedule/Network/Balance.hpp + opm/input/eclipse/Schedule/Network/Branch.hpp + opm/input/eclipse/Schedule/Network/ExtNetwork.hpp + opm/input/eclipse/Schedule/Network/Node.hpp + opm/input/eclipse/Schedule/OilVaporizationProperties.hpp + opm/input/eclipse/Schedule/RFTConfig.hpp + opm/input/eclipse/Schedule/RPTConfig.hpp + opm/input/eclipse/Schedule/RPTKeywordNormalisation.hpp + opm/input/eclipse/Schedule/RSTConfig.hpp + opm/input/eclipse/Schedule/ResCoup/GrupSlav.hpp + opm/input/eclipse/Schedule/ResCoup/MasterGroup.hpp + opm/input/eclipse/Schedule/ResCoup/MasterMinimumTimeStep.hpp + opm/input/eclipse/Schedule/ResCoup/ReadCouplingFile.hpp + opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingInfo.hpp + opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingInfo.hpp + opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingKeywordHandlers.hpp + opm/input/eclipse/Schedule/ResCoup/Slaves.hpp + opm/input/eclipse/Schedule/ResCoup/WriteCouplingFile.hpp + opm/input/eclipse/Schedule/RptschedKeywordNormalisation.hpp + opm/input/eclipse/Schedule/Schedule.hpp + opm/input/eclipse/Schedule/ScheduleBlock.hpp + opm/input/eclipse/Schedule/ScheduleDeck.hpp + opm/input/eclipse/Schedule/ScheduleGrid.hpp + opm/input/eclipse/Schedule/ScheduleRestartInfo.hpp + opm/input/eclipse/Schedule/ScheduleState.hpp + opm/input/eclipse/Schedule/ScheduleStatic.hpp + opm/input/eclipse/Schedule/ScheduleTypes.hpp + opm/input/eclipse/Schedule/SimpleRPTIntegerControlHandler.hpp + opm/input/eclipse/Schedule/Source.hpp + opm/input/eclipse/Schedule/SummaryState.hpp + opm/input/eclipse/Schedule/Tuning.hpp + opm/input/eclipse/Schedule/UDQ/UDQASTNode.hpp + opm/input/eclipse/Schedule/UDQ/UDQActive.hpp + opm/input/eclipse/Schedule/UDQ/UDQAssign.hpp + opm/input/eclipse/Schedule/UDQ/UDQConfig.hpp + opm/input/eclipse/Schedule/UDQ/UDQContext.hpp + opm/input/eclipse/Schedule/UDQ/UDQDefine.hpp + opm/input/eclipse/Schedule/UDQ/UDQEnums.hpp + opm/input/eclipse/Schedule/UDQ/UDQFunction.hpp + opm/input/eclipse/Schedule/UDQ/UDQFunctionTable.hpp + opm/input/eclipse/Schedule/UDQ/UDQInput.hpp + opm/input/eclipse/Schedule/UDQ/UDQParams.hpp + opm/input/eclipse/Schedule/UDQ/UDQSet.hpp + opm/input/eclipse/Schedule/UDQ/UDQState.hpp + opm/input/eclipse/Schedule/UDQ/UDQToken.hpp + opm/input/eclipse/Schedule/UDQ/UDT.hpp + opm/input/eclipse/Schedule/VFPInjTable.hpp + opm/input/eclipse/Schedule/VFPProdTable.hpp + opm/input/eclipse/Schedule/Well/Connection.hpp + opm/input/eclipse/Schedule/Well/FilterCake.hpp + opm/input/eclipse/Schedule/Well/NameOrder.hpp + opm/input/eclipse/Schedule/Well/PAvg.hpp + opm/input/eclipse/Schedule/Well/PAvgCalculator.hpp + opm/input/eclipse/Schedule/Well/PAvgCalculatorCollection.hpp + opm/input/eclipse/Schedule/Well/PAvgDynamicSourceData.hpp + opm/input/eclipse/Schedule/Well/WCYCLE.hpp + opm/input/eclipse/Schedule/Well/WDFAC.hpp + opm/input/eclipse/Schedule/Well/WINJMULT.hpp + opm/input/eclipse/Schedule/Well/WList.hpp + opm/input/eclipse/Schedule/Well/WListManager.hpp + opm/input/eclipse/Schedule/Well/WVFPDP.hpp + opm/input/eclipse/Schedule/Well/WVFPEXP.hpp + opm/input/eclipse/Schedule/Well/Well.hpp + opm/input/eclipse/Schedule/Well/WellBrineProperties.hpp + opm/input/eclipse/Schedule/Well/WellConnections.hpp + opm/input/eclipse/Schedule/Well/WellEconProductionLimits.hpp + opm/input/eclipse/Schedule/Well/WellEnums.hpp + opm/input/eclipse/Schedule/Well/WellFoamProperties.hpp + opm/input/eclipse/Schedule/Well/WellFractureSeeds.hpp + opm/input/eclipse/Schedule/Well/WellInjectionControls.hpp + opm/input/eclipse/Schedule/Well/WellMICPProperties.hpp + opm/input/eclipse/Schedule/Well/WellMatcher.hpp + opm/input/eclipse/Schedule/Well/WellPolymerProperties.hpp + opm/input/eclipse/Schedule/Well/WellProductionControls.hpp + opm/input/eclipse/Schedule/Well/WellTestConfig.hpp + opm/input/eclipse/Schedule/Well/WellTestState.hpp + opm/input/eclipse/Schedule/Well/WellTracerProperties.hpp + opm/input/eclipse/Schedule/WriteRestartFileEvents.hpp + opm/input/eclipse/Units/Dimension.hpp + opm/input/eclipse/Units/UnitSystem.hpp + opm/input/eclipse/Units/Units.hpp + opm/input/eclipse/Utility/Functional.hpp + opm/input/eclipse/Utility/Typetools.hpp + opm/io/eclipse/EGrid.hpp + opm/io/eclipse/EInit.hpp + opm/io/eclipse/ERft.hpp + opm/io/eclipse/ERsm.hpp + opm/io/eclipse/ERst.hpp + opm/io/eclipse/ESmry.hpp + opm/io/eclipse/EclFile.hpp + opm/io/eclipse/EclIOdata.hpp + opm/io/eclipse/EclOutput.hpp + opm/io/eclipse/EclUtil.hpp + opm/io/eclipse/ExtESmry.hpp + opm/io/eclipse/ExtSmryOutput.hpp + opm/io/eclipse/OutputStream.hpp + opm/io/eclipse/PaddedOutputString.hpp + opm/io/eclipse/RestartFileView.hpp + opm/io/eclipse/SummaryNode.hpp + opm/io/eclipse/SummaryNode.hpp + opm/io/eclipse/rst/action.hpp + opm/io/eclipse/rst/aquifer.hpp + opm/io/eclipse/rst/connection.hpp + opm/io/eclipse/rst/group.hpp + opm/io/eclipse/rst/header.hpp + opm/io/eclipse/rst/netbalan.hpp + opm/io/eclipse/rst/network.hpp + opm/io/eclipse/rst/segment.hpp + opm/io/eclipse/rst/state.hpp + opm/io/eclipse/rst/udq.hpp + opm/io/eclipse/rst/well.hpp + opm/json/JsonObject.hpp + opm/material/Constants.hpp + opm/material/IdealGas.hpp + opm/material/binarycoefficients/Air_Mesitylene.hpp + opm/material/binarycoefficients/Air_Xylene.hpp + opm/material/binarycoefficients/Brine_CO2.hpp + opm/material/binarycoefficients/Brine_H2.hpp + opm/material/binarycoefficients/FullerMethod.hpp + opm/material/binarycoefficients/H2O_Air.hpp + opm/material/binarycoefficients/H2O_CO2.hpp + opm/material/binarycoefficients/H2O_Mesitylene.hpp + opm/material/binarycoefficients/H2O_N2.hpp + opm/material/binarycoefficients/H2O_Xylene.hpp + opm/material/binarycoefficients/HenryIapws.hpp + opm/material/checkFluidSystem.hpp + opm/material/common/ConditionalStorage.hpp + opm/material/common/EnsureFinalized.hpp + opm/material/common/FastSmallVector.hpp + opm/material/common/HasMemberGeneratorMacros.hpp + opm/material/common/IntervalTabulated2DFunction.hpp + opm/material/common/MathToolbox.hpp + opm/material/common/Means.hpp + opm/material/common/PolynomialUtils.hpp + opm/material/common/ResetLocale.hpp + opm/material/common/Spline.hpp + opm/material/common/Tabulated1DFunction.hpp + opm/material/common/TridiagonalMatrix.hpp + opm/material/common/UniformTabulated2DFunction.hpp + opm/material/common/UniformXTabulated2DFunction.hpp + opm/material/common/Valgrind.hpp + opm/material/common/quad.hpp + opm/material/components/Air.hpp + opm/material/components/Brine.hpp + opm/material/components/BrineDynamic.hpp + opm/material/components/C1.hpp + opm/material/components/C10.hpp + opm/material/components/CO2.hpp + opm/material/components/CO2Tables.hpp + opm/material/components/Component.hpp + opm/material/components/Dnapl.hpp + opm/material/components/H2.hpp + opm/material/components/H2O.hpp + opm/material/components/Lnapl.hpp + opm/material/components/Mesitylene.hpp + opm/material/components/N2.hpp + opm/material/components/NullComponent.hpp + opm/material/components/SimpleCO2.hpp + opm/material/components/SimpleH2O.hpp + opm/material/components/SimpleHuDuanH2O.hpp + opm/material/components/TabulatedComponent.hpp + opm/material/components/Unit.hpp + opm/material/components/Xylene.hpp + opm/material/components/iapws/Common.hpp + opm/material/components/iapws/Region1.hpp + opm/material/components/iapws/Region2.hpp + opm/material/components/iapws/Region4.hpp + opm/material/constraintsolvers/CompositionFromFugacities.hpp + opm/material/constraintsolvers/ComputeFromReferencePhase.hpp + opm/material/constraintsolvers/ImmiscibleFlash.hpp + opm/material/constraintsolvers/MiscibleMultiPhaseComposition.hpp + opm/material/constraintsolvers/NcpFlash.hpp + opm/material/constraintsolvers/PTFlash.hpp + opm/material/densead/DynamicEvaluation.hpp + opm/material/densead/Evaluation.hpp + opm/material/densead/Evaluation1.hpp + opm/material/densead/Evaluation10.hpp + opm/material/densead/Evaluation11.hpp + opm/material/densead/Evaluation12.hpp + opm/material/densead/Evaluation2.hpp + opm/material/densead/Evaluation3.hpp + opm/material/densead/Evaluation4.hpp + opm/material/densead/Evaluation5.hpp + opm/material/densead/Evaluation6.hpp + opm/material/densead/Evaluation7.hpp + opm/material/densead/Evaluation8.hpp + opm/material/densead/Evaluation9.hpp + opm/material/densead/EvaluationFormat.hpp + opm/material/densead/EvaluationSpecializations.hpp + opm/material/densead/Math.hpp + opm/material/eos/CubicEOS.hpp + opm/material/eos/CubicEOSParams.hpp + opm/material/eos/PRParams.hpp + opm/material/eos/PengRobinson.hpp + opm/material/eos/PengRobinsonMixture.hpp + opm/material/eos/PengRobinsonParams.hpp + opm/material/eos/PengRobinsonParamsMixture.hpp + opm/material/eos/RKParams.hpp + opm/material/eos/SRKParams.hpp + opm/material/fluidmatrixinteractions/BrooksCorey.hpp + opm/material/fluidmatrixinteractions/BrooksCoreyParams.hpp + opm/material/fluidmatrixinteractions/DirectionalMaterialLawParams.hpp + opm/material/fluidmatrixinteractions/DirectionalMaterialLawParams.hpp + opm/material/fluidmatrixinteractions/EclDefaultMaterial.hpp + opm/material/fluidmatrixinteractions/EclDefaultMaterialParams.hpp + opm/material/fluidmatrixinteractions/EclEpsConfig.hpp + opm/material/fluidmatrixinteractions/EclEpsGridProperties.hpp + opm/material/fluidmatrixinteractions/EclEpsScalingPoints.hpp + opm/material/fluidmatrixinteractions/EclEpsTwoPhaseLaw.hpp + opm/material/fluidmatrixinteractions/EclEpsTwoPhaseLawParams.hpp + opm/material/fluidmatrixinteractions/EclHysteresisConfig.hpp + opm/material/fluidmatrixinteractions/EclHysteresisTwoPhaseLaw.hpp + opm/material/fluidmatrixinteractions/EclHysteresisTwoPhaseLawParams.hpp + opm/material/fluidmatrixinteractions/EclMaterialLawHystParams.hpp + opm/material/fluidmatrixinteractions/EclMaterialLawInitParams.hpp + opm/material/fluidmatrixinteractions/EclMaterialLawManager.hpp + opm/material/fluidmatrixinteractions/EclMaterialLawReadEffectiveParams.hpp + opm/material/fluidmatrixinteractions/EclMaterialLawTwoPhaseTypes.hpp + opm/material/fluidmatrixinteractions/EclMultiplexerMaterial.hpp + opm/material/fluidmatrixinteractions/EclMultiplexerMaterialParams.hpp + opm/material/fluidmatrixinteractions/EclStone1Material.hpp + opm/material/fluidmatrixinteractions/EclStone1MaterialParams.hpp + opm/material/fluidmatrixinteractions/EclStone2Material.hpp + opm/material/fluidmatrixinteractions/EclStone2MaterialParams.hpp + opm/material/fluidmatrixinteractions/EclTwoPhaseMaterial.hpp + opm/material/fluidmatrixinteractions/EclTwoPhaseMaterialParams.hpp + opm/material/fluidmatrixinteractions/EffToAbsLaw.hpp + opm/material/fluidmatrixinteractions/EffToAbsLawParams.hpp + opm/material/fluidmatrixinteractions/LinearMaterial.hpp + opm/material/fluidmatrixinteractions/LinearMaterialParams.hpp + opm/material/fluidmatrixinteractions/MaterialTraits.hpp + opm/material/fluidmatrixinteractions/NullMaterial.hpp + opm/material/fluidmatrixinteractions/NullMaterialParams.hpp + opm/material/fluidmatrixinteractions/ParkerLenhard.hpp + opm/material/fluidmatrixinteractions/ParkerLenhardParams.hpp + opm/material/fluidmatrixinteractions/PiecewiseLinearTwoPhaseMaterial.hpp + opm/material/fluidmatrixinteractions/PiecewiseLinearTwoPhaseMaterialParams.hpp + opm/material/fluidmatrixinteractions/RegularizedBrooksCorey.hpp + opm/material/fluidmatrixinteractions/RegularizedBrooksCoreyParams.hpp + opm/material/fluidmatrixinteractions/RegularizedVanGenuchten.hpp + opm/material/fluidmatrixinteractions/RegularizedVanGenuchtenParams.hpp + opm/material/fluidmatrixinteractions/SatCurveMultiplexer.hpp + opm/material/fluidmatrixinteractions/SatCurveMultiplexerParams.hpp + opm/material/fluidmatrixinteractions/SplineTwoPhaseMaterial.hpp + opm/material/fluidmatrixinteractions/SplineTwoPhaseMaterialParams.hpp + opm/material/fluidmatrixinteractions/ThreePhaseParkerVanGenuchten.hpp + opm/material/fluidmatrixinteractions/ThreePhaseParkerVanGenuchtenParams.hpp + opm/material/fluidmatrixinteractions/TwoPhaseLETCurves.hpp + opm/material/fluidmatrixinteractions/TwoPhaseLETCurvesParams.hpp + opm/material/fluidmatrixinteractions/VanGenuchten.hpp + opm/material/fluidmatrixinteractions/VanGenuchtenParams.hpp + opm/material/fluidstates/BlackOilFluidState.hpp + opm/material/fluidstates/CompositionalFluidState.hpp + opm/material/fluidstates/FluidStateCompositionModules.hpp + opm/material/fluidstates/FluidStateDensityModules.hpp + opm/material/fluidstates/FluidStateEnthalpyModules.hpp + opm/material/fluidstates/FluidStateFugacityModules.hpp + opm/material/fluidstates/FluidStatePressureModules.hpp + opm/material/fluidstates/FluidStateSaturationModules.hpp + opm/material/fluidstates/FluidStateTemperatureModules.hpp + opm/material/fluidstates/FluidStateViscosityModules.hpp + opm/material/fluidstates/ImmiscibleFluidState.hpp + opm/material/fluidstates/ModularFluidState.hpp + opm/material/fluidstates/NonEquilibriumFluidState.hpp + opm/material/fluidstates/PressureOverlayFluidState.hpp + opm/material/fluidstates/SaturationOverlayFluidState.hpp + opm/material/fluidstates/SimpleModularFluidState.hpp + opm/material/fluidstates/TemperatureOverlayFluidState.hpp + opm/material/fluidsystems/BaseFluidSystem.hpp + opm/material/fluidsystems/BlackOilDefaultFluidSystemIndices.hpp + opm/material/fluidsystems/BlackOilFluidSystem.hpp + opm/material/fluidsystems/BlackOilFluidSystemNonStatic.hpp + opm/material/fluidsystems/BlackOilFluidSystem_macrotemplate.hpp + opm/material/fluidsystems/BlackOilFunctions.hpp + opm/material/fluidsystems/BrineCO2FluidSystem.hpp + opm/material/fluidsystems/GasPhase.hpp + opm/material/fluidsystems/GenericOilGasWaterFluidSystem.hpp + opm/material/fluidsystems/H2OAirFluidSystem.hpp + opm/material/fluidsystems/H2OAirMesityleneFluidSystem.hpp + opm/material/fluidsystems/H2OAirXyleneFluidSystem.hpp + opm/material/fluidsystems/H2ON2FluidSystem.hpp + opm/material/fluidsystems/H2ON2LiquidPhaseFluidSystem.hpp + opm/material/fluidsystems/LiquidPhase.hpp + opm/material/fluidsystems/NullParameterCache.hpp + opm/material/fluidsystems/PTFlashParameterCache.hpp + opm/material/fluidsystems/ParameterCacheBase.hpp + opm/material/fluidsystems/PhaseUsageInfo.hpp + opm/material/fluidsystems/SinglePhaseFluidSystem.hpp + opm/material/fluidsystems/Spe5FluidSystem.hpp + opm/material/fluidsystems/Spe5ParameterCache.hpp + opm/material/fluidsystems/ThreeComponentFluidSystem.hh + opm/material/fluidsystems/TwoPhaseImmiscibleFluidSystem.hpp + opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.hpp + opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.hpp + opm/material/fluidsystems/blackoilpvt/Co2GasPvt.hpp + opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.hpp + opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.hpp + opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.hpp + opm/material/fluidsystems/blackoilpvt/DeadOilPvt.hpp + opm/material/fluidsystems/blackoilpvt/DryGasPvt.hpp + opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.hpp + opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.hpp + opm/material/fluidsystems/blackoilpvt/GasPvtThermal.hpp + opm/material/fluidsystems/blackoilpvt/H2GasPvt.hpp + opm/material/fluidsystems/blackoilpvt/LiveOilPvt.hpp + opm/material/fluidsystems/blackoilpvt/NullOilPvt.hpp + opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.hpp + opm/material/fluidsystems/blackoilpvt/OilPvtThermal.hpp + opm/material/fluidsystems/blackoilpvt/SolventPvt.hpp + opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.hpp + opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.hpp + opm/material/fluidsystems/blackoilpvt/WetGasPvt.hpp + opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.hpp + opm/material/thermal/ConstantSolidHeatCapLaw.hpp + opm/material/thermal/ConstantSolidHeatCapLawParams.hpp + opm/material/thermal/EclHeatcrLaw.hpp + opm/material/thermal/EclHeatcrLawParams.hpp + opm/material/thermal/EclSolidEnergyLawMultiplexer.hpp + opm/material/thermal/EclSolidEnergyLawMultiplexerParams.hpp + opm/material/thermal/EclSpecrockLaw.hpp + opm/material/thermal/EclSpecrockLawParams.hpp + opm/material/thermal/EclThcLaw.hpp + opm/material/thermal/EclThcLawParams.hpp + opm/material/thermal/EclThconrLaw.hpp + opm/material/thermal/EclThconrLawParams.hpp + opm/material/thermal/EclThermalConductionLawMultiplexer.hpp + opm/material/thermal/EclThermalConductionLawMultiplexerParams.hpp + opm/material/thermal/EclThermalLawManager.hpp + opm/material/thermal/EnergyModuleType.hpp + opm/material/thermal/FluidThermalConductionLaw.hpp + opm/material/thermal/FluidThermalConductionLawParams.hpp + opm/material/thermal/NullSolidEnergyLaw.hpp + opm/material/thermal/NullThermalConductionLaw.hpp + opm/material/thermal/SomertonThermalConductionLaw.hpp + opm/material/thermal/SomertonThermalConductionLawParams.hpp + opm/material/viscositymodels/LBC.hpp + opm/material/viscositymodels/LBCco2rich.hpp + opm/ml/ml_model.hpp + opm/output/data/Aquifer.hpp + opm/output/data/Cells.hpp + opm/output/data/Groups.hpp + opm/output/data/GuideRateValue.hpp + opm/output/data/InterRegFlow.hpp + opm/output/data/InterRegFlowMap.hpp + opm/output/data/Solution.hpp + opm/output/data/Wells.hpp + opm/output/eclipse/ActiveIndexByColumns.hpp + opm/output/eclipse/AggregateActionxData.hpp + opm/output/eclipse/AggregateAquiferData.hpp + opm/output/eclipse/AggregateConnectionData.hpp + opm/output/eclipse/AggregateGroupData.hpp + opm/output/eclipse/AggregateMSWData.hpp + opm/output/eclipse/AggregateNetworkData.hpp + opm/output/eclipse/AggregateUDQData.hpp + opm/output/eclipse/AggregateWListData.hpp + opm/output/eclipse/AggregateWellData.hpp + opm/output/eclipse/DoubHEAD.hpp + opm/output/eclipse/EclipseGridInspector.hpp + opm/output/eclipse/EclipseIO.hpp + opm/output/eclipse/EclipseIOUtil.hpp + opm/output/eclipse/Inplace.hpp + opm/output/eclipse/InteHEAD.hpp + opm/output/eclipse/LgrHEADD.hpp + opm/output/eclipse/LgrHEADI.hpp + opm/output/eclipse/LgrHEADQ.hpp + opm/output/eclipse/LinearisedOutputTable.hpp + opm/output/eclipse/LogiHEAD.hpp + opm/output/eclipse/RegionCache.hpp + opm/output/eclipse/RestartIO.hpp + opm/output/eclipse/RestartValue.hpp + opm/output/eclipse/Summary.hpp + opm/output/eclipse/Tables.hpp + opm/output/eclipse/UDQDims.hpp + opm/output/eclipse/VectorItems/action.hpp + opm/output/eclipse/VectorItems/aquifer.hpp + opm/output/eclipse/VectorItems/connection.hpp + opm/output/eclipse/VectorItems/group.hpp + opm/output/eclipse/VectorItems/intehead.hpp + opm/output/eclipse/VectorItems/lgrheadd.hpp + opm/output/eclipse/VectorItems/lgrheadi.hpp + opm/output/eclipse/VectorItems/lgrheadq.hpp + opm/output/eclipse/VectorItems/logihead.hpp + opm/output/eclipse/VectorItems/msw.hpp + opm/output/eclipse/VectorItems/network.hpp + opm/output/eclipse/VectorItems/tabdims.hpp + opm/output/eclipse/VectorItems/udq.hpp + opm/output/eclipse/VectorItems/well.hpp + opm/output/eclipse/WStat.hpp + opm/output/eclipse/WindowedArray.hpp + opm/output/eclipse/WriteInit.hpp + opm/output/eclipse/WriteRFT.hpp + opm/output/eclipse/WriteRestartHelpers.hpp + opm/output/eclipse/report/WellSpecification.hpp + opm/utility/CopyablePtr.hpp + opm/utility/EModel.hpp + opm/utility/GroupStructureViz.hpp + opm/utility/WellStructureViz.hpp ) -if(ENABLE_ECL_INPUT) - list(APPEND PUBLIC_HEADER_FILES - opm/io/eclipse/SummaryNode.hpp - opm/json/JsonObject.hpp - opm/input/eclipse/Utility/Functional.hpp - opm/input/eclipse/Utility/Typetools.hpp - opm/input/eclipse/Generator/KeywordGenerator.hpp - opm/input/eclipse/Generator/KeywordLoader.hpp - opm/input/eclipse/Units/UnitSystem.hpp - opm/input/eclipse/Units/Units.hpp - opm/input/eclipse/Units/Dimension.hpp - opm/input/eclipse/Parser/ErrorGuard.hpp - opm/input/eclipse/Parser/ParserItem.hpp - opm/input/eclipse/Parser/Parser.hpp - opm/input/eclipse/Parser/ParserRecord.hpp - opm/input/eclipse/Parser/ParserKeyword.hpp - opm/input/eclipse/Parser/InputErrorAction.hpp - opm/input/eclipse/Parser/ParserEnums.hpp - opm/input/eclipse/Parser/ParseContext.hpp - opm/input/eclipse/Parser/ParserConst.hpp - opm/input/eclipse/EclipseState/InitConfig/InitConfig.hpp - opm/input/eclipse/EclipseState/InitConfig/Equil.hpp - opm/input/eclipse/EclipseState/InitConfig/FoamConfig.hpp - opm/input/eclipse/EclipseState/Util/IOrderSet.hpp - opm/input/eclipse/EclipseState/Util/OrderedMap.hpp - opm/input/eclipse/EclipseState/SummaryConfig/SummaryConfig.hpp - opm/input/eclipse/EclipseState/Grid/FieldData.hpp - opm/input/eclipse/EclipseState/Grid/Keywords.hpp - opm/input/eclipse/EclipseState/Grid/GridDims.hpp - opm/input/eclipse/EclipseState/Grid/TranCalculator.hpp - opm/input/eclipse/EclipseState/Grid/TransMult.hpp - opm/input/eclipse/EclipseState/Grid/PinchMode.hpp - opm/input/eclipse/EclipseState/Grid/MULTREGTScanner.hpp - opm/input/eclipse/EclipseState/Grid/FaultCollection.hpp - opm/input/eclipse/EclipseState/Grid/RegionSetMatcher.hpp - opm/input/eclipse/EclipseState/Grid/SatfuncPropertyInitializers.hpp - opm/input/eclipse/EclipseState/Grid/Fault.hpp - opm/input/eclipse/EclipseState/Grid/Box.hpp - opm/input/eclipse/EclipseState/Grid/Carfin.hpp - opm/input/eclipse/EclipseState/Grid/LgrCollection.hpp - opm/input/eclipse/EclipseState/Grid/FieldProps.hpp - opm/input/eclipse/EclipseState/Grid/FieldPropsManager.hpp - opm/input/eclipse/EclipseState/Grid/FIPRegionStatistics.hpp - opm/input/eclipse/EclipseState/Grid/FaultFace.hpp - opm/input/eclipse/EclipseState/Grid/NNC.hpp - opm/input/eclipse/EclipseState/Grid/EclipseGrid.hpp - opm/input/eclipse/EclipseState/Grid/BoxManager.hpp - opm/input/eclipse/EclipseState/Grid/CarfinManager.hpp - opm/input/eclipse/EclipseState/Grid/FaceDir.hpp - opm/input/eclipse/EclipseState/Grid/MapAxes.hpp - opm/input/eclipse/EclipseState/Grid/MinpvMode.hpp - opm/input/eclipse/EclipseState/EndpointScaling.hpp - opm/input/eclipse/EclipseState/TracerConfig.hpp - opm/input/eclipse/EclipseState/WagHysteresisConfig.hpp - opm/input/eclipse/EclipseState/Tables/DenT.hpp - opm/input/eclipse/EclipseState/Tables/JouleThomson.hpp - opm/input/eclipse/EclipseState/Tables/SimpleTable.hpp - opm/input/eclipse/EclipseState/Tables/StandardCond.hpp - opm/input/eclipse/EclipseState/Tables/PolyInjTable.hpp - opm/input/eclipse/EclipseState/Tables/PdvdTable.hpp - opm/input/eclipse/EclipseState/Tables/TlpmixpaTable.hpp - opm/input/eclipse/EclipseState/Tables/PvdgTable.hpp - opm/input/eclipse/EclipseState/Tables/MsfnTable.hpp - opm/input/eclipse/EclipseState/Tables/GasvisctTable.hpp - opm/input/eclipse/EclipseState/Tables/Regdims.hpp - opm/input/eclipse/EclipseState/Tables/Eqldims.hpp - opm/input/eclipse/EclipseState/Tables/SpecrockTable.hpp - opm/input/eclipse/EclipseState/Tables/PvtwsaltTable.hpp - opm/input/eclipse/EclipseState/Tables/BrineDensityTable.hpp - opm/input/eclipse/EclipseState/Tables/PcfactTable.hpp - opm/input/eclipse/EclipseState/Tables/PermfactTable.hpp - opm/input/eclipse/EclipseState/Tables/RwgsaltTable.hpp - opm/input/eclipse/EclipseState/Tables/SaltSolubilityTable.hpp - opm/input/eclipse/EclipseState/Tables/SaltvdTable.hpp - opm/input/eclipse/EclipseState/Tables/SaltpvdTable.hpp - opm/input/eclipse/EclipseState/Tables/SolventDensityTable.hpp - opm/input/eclipse/EclipseState/Tables/PlydhflfTable.hpp - opm/input/eclipse/EclipseState/Tables/PlymwinjTable.hpp - opm/input/eclipse/EclipseState/Tables/PlyshlogTable.hpp - opm/input/eclipse/EclipseState/Tables/RsvdTable.hpp - opm/input/eclipse/EclipseState/Tables/SkprwatTable.hpp - opm/input/eclipse/EclipseState/Tables/SkprpolyTable.hpp - opm/input/eclipse/EclipseState/Tables/SpecheatTable.hpp - opm/input/eclipse/EclipseState/Tables/SgcwmisTable.hpp - opm/input/eclipse/EclipseState/Tables/Sof2Table.hpp - opm/input/eclipse/EclipseState/Tables/TLMixpar.hpp - opm/input/eclipse/EclipseState/Tables/Ppcwmax.hpp - opm/input/eclipse/EclipseState/Tables/EzrokhiTable.hpp - opm/input/eclipse/EclipseState/Tables/TableManager.hpp - opm/input/eclipse/EclipseState/Tables/SwfnTable.hpp - opm/input/eclipse/EclipseState/Tables/EnptvdTable.hpp - opm/input/eclipse/EclipseState/Tables/SwofTable.hpp - opm/input/eclipse/EclipseState/Tables/FlatTable.hpp - opm/input/eclipse/EclipseState/Tables/Aqudims.hpp - opm/input/eclipse/EclipseState/Tables/JFunc.hpp - opm/input/eclipse/EclipseState/Tables/TableIndex.hpp - opm/input/eclipse/EclipseState/Tables/PvtgTable.hpp - opm/input/eclipse/EclipseState/Tables/PvtgwTable.hpp - opm/input/eclipse/EclipseState/Tables/PvtgwoTable.hpp - opm/input/eclipse/EclipseState/Tables/Tabdims.hpp - opm/input/eclipse/EclipseState/Tables/TableSchema.hpp - opm/input/eclipse/EclipseState/Tables/RocktabTable.hpp - opm/input/eclipse/EclipseState/Tables/EnkrvdTable.hpp - opm/input/eclipse/EclipseState/Tables/PlyrockTable.hpp - opm/input/eclipse/EclipseState/Tables/PvtxTable.hpp - opm/input/eclipse/EclipseState/Tables/WatvisctTable.hpp - opm/input/eclipse/EclipseState/Tables/TableEnums.hpp - opm/input/eclipse/EclipseState/Tables/RvvdTable.hpp - opm/input/eclipse/EclipseState/Tables/RvwvdTable.hpp - opm/input/eclipse/EclipseState/Tables/TableContainer.hpp - opm/input/eclipse/EclipseState/Tables/AqutabTable.hpp - opm/input/eclipse/EclipseState/Tables/PlyadsTable.hpp - opm/input/eclipse/EclipseState/Tables/FoamadsTable.hpp - opm/input/eclipse/EclipseState/Tables/FoammobTable.hpp - opm/input/eclipse/EclipseState/Tables/PbvdTable.hpp - opm/input/eclipse/EclipseState/Tables/SorwmisTable.hpp - opm/input/eclipse/EclipseState/Tables/PlymaxTable.hpp - opm/input/eclipse/EclipseState/Tables/PlyviscTable.hpp - opm/input/eclipse/EclipseState/Tables/TableColumn.hpp - opm/input/eclipse/EclipseState/Tables/SsfnTable.hpp - opm/input/eclipse/EclipseState/Tables/PvdoTable.hpp - opm/input/eclipse/EclipseState/Tables/OilvisctTable.hpp - opm/input/eclipse/EclipseState/Tables/SgfnTable.hpp - opm/input/eclipse/EclipseState/Tables/WsfTable.hpp - opm/input/eclipse/EclipseState/Tables/GsfTable.hpp - opm/input/eclipse/EclipseState/Tables/MiscTable.hpp - opm/input/eclipse/EclipseState/Tables/SgwfnTable.hpp - opm/input/eclipse/EclipseState/Tables/PvdsTable.hpp - opm/input/eclipse/EclipseState/Tables/PvtoTable.hpp - opm/input/eclipse/EclipseState/Tables/PvtsolTable.hpp - opm/input/eclipse/EclipseState/Tables/Rock2dTable.hpp - opm/input/eclipse/EclipseState/Tables/Rock2dtrTable.hpp - opm/input/eclipse/EclipseState/Tables/RockwnodTable.hpp - opm/input/eclipse/EclipseState/Tables/OverburdTable.hpp - opm/input/eclipse/EclipseState/Tables/ColumnSchema.hpp - opm/input/eclipse/EclipseState/Tables/PmiscTable.hpp - opm/input/eclipse/EclipseState/Tables/RtempvdTable.hpp - opm/input/eclipse/EclipseState/Tables/SlgofTable.hpp - opm/input/eclipse/EclipseState/Tables/ImptvdTable.hpp - opm/input/eclipse/EclipseState/Tables/ImkrvdTable.hpp - opm/input/eclipse/EclipseState/Tables/Sof3Table.hpp - opm/input/eclipse/EclipseState/Tables/SgofTable.hpp - opm/input/eclipse/EclipseState/Tables/TracerVdTable.hpp - opm/input/eclipse/EclipseState/Tables/BiofilmTable.hpp - opm/input/eclipse/EclipseState/Tables/DiffMICPTable.hpp - opm/input/eclipse/EclipseState/Co2StoreConfig.hpp - opm/input/eclipse/EclipseState/EclipseState.hpp - opm/input/eclipse/EclipseState/EclipseConfig.hpp - opm/input/eclipse/EclipseState/Aquifer/Aquancon.hpp - opm/input/eclipse/EclipseState/Aquifer/AquiferConfig.hpp - opm/input/eclipse/EclipseState/Aquifer/AquiferFlux.hpp - opm/input/eclipse/EclipseState/Aquifer/AquiferCT.hpp - opm/input/eclipse/EclipseState/Aquifer/Aquifetp.hpp - opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquiferCell.hpp - opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquiferConnection.hpp - opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/SingleNumericalAquifer.hpp - opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquifers.hpp - opm/input/eclipse/EclipseState/Compositional/CompositionalConfig.hpp - opm/input/eclipse/Schedule/Action/ActionAST.hpp - opm/input/eclipse/Schedule/Action/ActionContext.hpp - opm/input/eclipse/Schedule/Action/ActionResult.hpp - opm/input/eclipse/Schedule/Action/ActionValue.hpp - opm/input/eclipse/Schedule/Action/Actdims.hpp - opm/input/eclipse/Schedule/Action/Actions.hpp - opm/input/eclipse/Schedule/Action/ActionX.hpp - opm/input/eclipse/Schedule/Action/Condition.hpp - opm/input/eclipse/Schedule/Action/Enums.hpp - opm/input/eclipse/Schedule/Action/ASTNode.hpp - opm/input/eclipse/Schedule/Action/PyAction.hpp - opm/input/eclipse/Schedule/Action/SimulatorUpdate.hpp - opm/input/eclipse/Schedule/Action/State.hpp - opm/input/eclipse/Schedule/Action/WGNames.hpp - opm/input/eclipse/Schedule/ArrayDimChecker.hpp - opm/input/eclipse/Schedule/BCProp.hpp - opm/input/eclipse/Schedule/GasLiftOpt.hpp - opm/input/eclipse/Schedule/Network/Balance.hpp - opm/input/eclipse/Schedule/Network/Branch.hpp - opm/input/eclipse/Schedule/Network/ExtNetwork.hpp - opm/input/eclipse/Schedule/Network/Node.hpp - opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingInfo.hpp - opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingKeywordHandlers.hpp - opm/input/eclipse/Schedule/ResCoup/GrupSlav.hpp - opm/input/eclipse/Schedule/ResCoup/MasterGroup.hpp - opm/input/eclipse/Schedule/ResCoup/Slaves.hpp - opm/input/eclipse/Schedule/ResCoup/MasterMinimumTimeStep.hpp - opm/input/eclipse/Schedule/ResCoup/ReadCouplingFile.hpp - opm/input/eclipse/Schedule/ResCoup/WriteCouplingFile.hpp - opm/input/eclipse/Schedule/VFPInjTable.hpp - opm/input/eclipse/Schedule/VFPProdTable.hpp - opm/input/eclipse/Schedule/Well/Connection.hpp - opm/input/eclipse/Schedule/Well/FilterCake.hpp - opm/input/eclipse/Schedule/Well/PAvg.hpp - opm/input/eclipse/Schedule/Well/PAvgCalculator.hpp - opm/input/eclipse/Schedule/Well/PAvgCalculatorCollection.hpp - opm/input/eclipse/Schedule/Well/PAvgDynamicSourceData.hpp - opm/input/eclipse/Schedule/Well/WCYCLE.hpp - opm/input/eclipse/Schedule/Well/Well.hpp - opm/input/eclipse/Schedule/Well/WellEnums.hpp - opm/input/eclipse/Schedule/Well/WellInjectionControls.hpp - opm/input/eclipse/Schedule/Well/WellProductionControls.hpp - opm/input/eclipse/Schedule/Well/WList.hpp - opm/input/eclipse/Schedule/Well/NameOrder.hpp - opm/input/eclipse/Schedule/Well/WellMatcher.hpp - opm/input/eclipse/Schedule/Well/WListManager.hpp - opm/input/eclipse/Schedule/Well/WellEconProductionLimits.hpp - opm/input/eclipse/Schedule/Well/WellFoamProperties.hpp - opm/input/eclipse/Schedule/Well/WellFractureSeeds.hpp - opm/input/eclipse/Schedule/Well/WellBrineProperties.hpp - opm/input/eclipse/Schedule/Well/WellMICPProperties.hpp - opm/input/eclipse/Schedule/Well/WellPolymerProperties.hpp - opm/input/eclipse/Schedule/Well/WellTracerProperties.hpp - opm/input/eclipse/Schedule/Well/WINJMULT.hpp - opm/input/eclipse/Schedule/Well/WDFAC.hpp - opm/input/eclipse/Schedule/Well/WVFPDP.hpp - opm/input/eclipse/Schedule/Well/WVFPEXP.hpp - opm/input/eclipse/Schedule/Well/WellTestConfig.hpp - opm/input/eclipse/Schedule/Well/WellTestState.hpp - opm/input/eclipse/Schedule/Well/WellConnections.hpp - opm/input/eclipse/Schedule/SummaryState.hpp - opm/input/eclipse/Schedule/RFTConfig.hpp - opm/input/eclipse/Schedule/RPTConfig.hpp - opm/input/eclipse/Schedule/RPTKeywordNormalisation.hpp - opm/input/eclipse/Schedule/RptschedKeywordNormalisation.hpp - opm/input/eclipse/Schedule/RSTConfig.hpp - opm/input/eclipse/Schedule/Schedule.hpp - opm/input/eclipse/Schedule/ScheduleBlock.hpp - opm/input/eclipse/Schedule/ScheduleDeck.hpp - opm/input/eclipse/Schedule/ScheduleGrid.hpp - opm/input/eclipse/Schedule/ScheduleRestartInfo.hpp - opm/input/eclipse/Schedule/ScheduleState.hpp - opm/input/eclipse/Schedule/ScheduleStatic.hpp - opm/input/eclipse/Schedule/ScheduleTypes.hpp - opm/input/eclipse/Schedule/SimpleRPTIntegerControlHandler.hpp - opm/input/eclipse/Schedule/Source.hpp - opm/input/eclipse/Schedule/Tuning.hpp - opm/input/eclipse/Schedule/WriteRestartFileEvents.hpp - opm/input/eclipse/Schedule/Group/GConSale.hpp - opm/input/eclipse/Schedule/Group/GConSump.hpp - opm/input/eclipse/Schedule/Group/GPMaint.hpp - opm/input/eclipse/Schedule/Group/GSatProd.hpp - opm/input/eclipse/Schedule/Group/Group.hpp - opm/input/eclipse/Schedule/Group/GroupEconProductionLimits.hpp - opm/input/eclipse/Schedule/Group/GroupSatelliteInjection.hpp - opm/input/eclipse/Schedule/Group/GuideRate.hpp - opm/input/eclipse/Schedule/Group/GuideRateConfig.hpp - opm/input/eclipse/Schedule/Group/GuideRateModel.hpp - opm/input/eclipse/Schedule/Group/GTNode.hpp - opm/input/eclipse/Schedule/MessageLimits.hpp - opm/input/eclipse/Schedule/CompletedCells.hpp - opm/input/eclipse/Schedule/Events.hpp - opm/input/eclipse/Schedule/OilVaporizationProperties.hpp - opm/input/eclipse/Schedule/MSW/icd.hpp - opm/input/eclipse/Schedule/MSW/Segment.hpp - opm/input/eclipse/Schedule/MSW/SegmentMatcher.hpp - opm/input/eclipse/Schedule/MSW/WellSegments.hpp - opm/input/eclipse/Schedule/MSW/AICD.hpp - opm/input/eclipse/Schedule/MSW/SICD.hpp - opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingInfo.hpp - opm/input/eclipse/EclipseState/SimulationConfig/BCConfig.hpp - opm/input/eclipse/EclipseState/SimulationConfig/DatumDepth.hpp - opm/input/eclipse/EclipseState/SimulationConfig/RockConfig.hpp - opm/input/eclipse/EclipseState/SimulationConfig/SimulationConfig.hpp - opm/input/eclipse/EclipseState/SimulationConfig/ThresholdPressure.hpp - opm/input/eclipse/Schedule/MSW/Valve.hpp - opm/input/eclipse/EclipseState/IOConfig/FIPConfig.hpp - opm/input/eclipse/EclipseState/IOConfig/IOConfig.hpp - opm/input/eclipse/EclipseState/checkDeck.hpp - opm/input/eclipse/EclipseState/Phase.hpp - opm/input/eclipse/EclipseState/Runspec.hpp - opm/input/eclipse/Schedule/UDQ/UDQActive.hpp - opm/input/eclipse/Schedule/UDQ/UDQAssign.hpp - opm/input/eclipse/Schedule/UDQ/UDQASTNode.hpp - opm/input/eclipse/Schedule/UDQ/UDQConfig.hpp - opm/input/eclipse/Schedule/UDQ/UDQContext.hpp - opm/input/eclipse/Schedule/UDQ/UDQDefine.hpp - opm/input/eclipse/Schedule/UDQ/UDQEnums.hpp - opm/input/eclipse/Schedule/UDQ/UDQFunction.hpp - opm/input/eclipse/Schedule/UDQ/UDQFunctionTable.hpp - opm/input/eclipse/Schedule/UDQ/UDQInput.hpp - opm/input/eclipse/Schedule/UDQ/UDQParams.hpp - opm/input/eclipse/Schedule/UDQ/UDQSet.hpp - opm/input/eclipse/Schedule/UDQ/UDQState.hpp - opm/input/eclipse/Schedule/UDQ/UDQToken.hpp - opm/input/eclipse/Schedule/UDQ/UDT.hpp - opm/input/eclipse/Deck/DeckItem.hpp - opm/input/eclipse/Deck/Deck.hpp - opm/input/eclipse/Deck/DeckView.hpp - opm/input/eclipse/Deck/FileDeck.hpp - opm/input/eclipse/Deck/DeckSection.hpp - opm/input/eclipse/Deck/DeckTree.hpp - opm/input/eclipse/Deck/DeckOutput.hpp - opm/input/eclipse/Deck/DeckValue.hpp - opm/input/eclipse/Deck/DeckKeyword.hpp - opm/input/eclipse/Deck/DeckRecord.hpp - opm/input/eclipse/Deck/ImportContainer.hpp - opm/input/eclipse/Deck/UDAValue.hpp - opm/input/eclipse/Deck/value_status.hpp - opm/input/eclipse/Python/Python.hpp) - list(APPEND PRIVATE_HEADER_FILES - opm/input/eclipse/Schedule/HandlerContext.hpp - opm/input/eclipse/Schedule/WellTraj/RigEclipseWellLogExtractor.hpp - opm/input/eclipse/Schedule/Well/WellTrajInfo.hpp - external/resinsight/CommonCode/cvfStructGrid.h - external/resinsight/LibCore/cvfArray.h - external/resinsight/LibCore/cvfArrayWrapperConst.h - external/resinsight/LibCore/cvfAssert.h - external/resinsight/LibCore/cvfAtomicCounter.h - external/resinsight/LibCore/cvfBase.h - external/resinsight/LibCore/cvfBase64.h - external/resinsight/LibCore/cvfCharArray.h - external/resinsight/LibCore/cvfCodeLocation.h - external/resinsight/LibCore/cvfCollection.h - external/resinsight/LibCore/cvfColor3.h - external/resinsight/LibCore/cvfColor4.h - external/resinsight/LibCore/cvfConfigCore.h - external/resinsight/LibCore/cvfDebugTimer.h - external/resinsight/LibCore/cvfFlags.h - external/resinsight/LibCore/cvfFunctorRange.h - external/resinsight/LibCore/cvfLibCore.h - external/resinsight/LibCore/cvfLogDestination.h - external/resinsight/LibCore/cvfLogger.h - external/resinsight/LibCore/cvfMath.h - external/resinsight/LibCore/cvfMatrix3.h - external/resinsight/LibCore/cvfMatrix4.h - external/resinsight/LibCore/cvfObject.h - external/resinsight/LibCore/cvfPlane.h - external/resinsight/LibCore/cvfPropertySet.h - external/resinsight/LibCore/cvfQuat.h - external/resinsight/LibCore/cvfRect.h - external/resinsight/LibCore/cvfString.h - external/resinsight/LibCore/cvfSystem.h - external/resinsight/LibCore/cvfTBBControl.h - external/resinsight/LibCore/cvfTimer.h - external/resinsight/LibCore/cvfTrace.h - external/resinsight/LibCore/cvfValueArray.h - external/resinsight/LibCore/cvfVector2.h - external/resinsight/LibCore/cvfVector3.h - external/resinsight/LibCore/cvfVector4.h - external/resinsight/LibCore/cvfVersion.h - external/resinsight/LibGeometry/cvfBoundingBox.h - external/resinsight/LibGeometry/cvfBoundingBoxTree.h - external/resinsight/LibGeometry/cvfRay.h - external/resinsight/ReservoirDataModel/RigCellGeometryTools.h - #external/resinsight/ReservoirDataModel/RigEclipseCaseData.h - external/resinsight/ReservoirDataModel/RigHexIntersectionTools.h - #external/resinsight/ReservoirDataModel/RigMainGrid.h - external/resinsight/ReservoirDataModel/RigWellLogExtractionTools.h - external/resinsight/ReservoirDataModel/RigWellLogExtractor.h - external/resinsight/ReservoirDataModel/RigWellPath.h - #external/resinsight/ReservoirDataModel/RigWellPathIntersectionTools.h - external/resinsight/ReservoirDataModel/cvfGeometryTools.h - external/resinsight/cafHexGridIntersectionTools/cafHexGridIntersectionTools.h - external/resinsight/cafPdmCore/cafAppEnum.h - external/resinsight/cafPdmCore/cafAssert.h - external/resinsight/cafPdmCore/cafSignal.h - external/resinsight/LibCore/cvfArray.inl - external/resinsight/LibCore/cvfCollection.inl - external/resinsight/LibCore/cvfFlags.inl - external/resinsight/LibCore/cvfMath.inl - external/resinsight/LibCore/cvfMatrix3.inl - external/resinsight/LibCore/cvfMatrix4.inl - external/resinsight/LibCore/cvfObject.inl - external/resinsight/LibCore/cvfQuat.inl - external/resinsight/LibCore/cvfRect.inl - external/resinsight/LibCore/cvfVector2.inl - external/resinsight/LibCore/cvfVector3.inl - external/resinsight/LibCore/cvfVector4.inl - external/resinsight/ReservoirDataModel/cvfGeometryTools.inl - ) -endif() -if(ENABLE_ECL_OUTPUT) - list(APPEND PUBLIC_HEADER_FILES - opm/io/eclipse/EclFile.hpp - opm/io/eclipse/EclIOdata.hpp - opm/io/eclipse/EclOutput.hpp - opm/io/eclipse/EclUtil.hpp - opm/io/eclipse/EGrid.hpp - opm/io/eclipse/EInit.hpp - opm/io/eclipse/ERft.hpp - opm/io/eclipse/ERst.hpp - opm/io/eclipse/ERsm.hpp - opm/io/eclipse/ESmry.hpp - opm/io/eclipse/ExtESmry.hpp - opm/io/eclipse/PaddedOutputString.hpp - opm/io/eclipse/OutputStream.hpp - opm/io/eclipse/ExtSmryOutput.hpp - opm/io/eclipse/RestartFileView.hpp - opm/io/eclipse/SummaryNode.hpp - opm/io/eclipse/rst/action.hpp - opm/io/eclipse/rst/aquifer.hpp - opm/io/eclipse/rst/connection.hpp - opm/io/eclipse/rst/group.hpp - opm/io/eclipse/rst/header.hpp - opm/io/eclipse/rst/netbalan.hpp - opm/io/eclipse/rst/network.hpp - opm/io/eclipse/rst/segment.hpp - opm/io/eclipse/rst/state.hpp - opm/io/eclipse/rst/udq.hpp - opm/io/eclipse/rst/well.hpp - opm/output/data/Aquifer.hpp - opm/output/data/Cells.hpp - opm/output/data/GuideRateValue.hpp - opm/output/data/Groups.hpp - opm/output/data/InterRegFlow.hpp - opm/output/data/InterRegFlowMap.hpp - opm/output/data/Solution.hpp - opm/output/data/Wells.hpp - opm/output/eclipse/VectorItems/action.hpp - opm/output/eclipse/VectorItems/aquifer.hpp - opm/output/eclipse/VectorItems/connection.hpp - opm/output/eclipse/VectorItems/group.hpp - opm/output/eclipse/VectorItems/intehead.hpp - opm/output/eclipse/VectorItems/logihead.hpp - opm/output/eclipse/VectorItems/lgrheadd.hpp - opm/output/eclipse/VectorItems/lgrheadi.hpp - opm/output/eclipse/VectorItems/lgrheadq.hpp +list(APPEND PRIVATE_HEADER_FILES + external/resinsight/CommonCode/cvfStructGrid.h + external/resinsight/LibCore/cvfArray.h + external/resinsight/LibCore/cvfArray.inl + external/resinsight/LibCore/cvfArrayWrapperConst.h + external/resinsight/LibCore/cvfAssert.h + external/resinsight/LibCore/cvfAtomicCounter.h + external/resinsight/LibCore/cvfBase.h + external/resinsight/LibCore/cvfBase64.h + external/resinsight/LibCore/cvfCharArray.h + external/resinsight/LibCore/cvfCodeLocation.h + external/resinsight/LibCore/cvfCollection.h + external/resinsight/LibCore/cvfCollection.inl + external/resinsight/LibCore/cvfColor3.h + external/resinsight/LibCore/cvfColor4.h + external/resinsight/LibCore/cvfConfigCore.h + external/resinsight/LibCore/cvfDebugTimer.h + external/resinsight/LibCore/cvfFlags.h + external/resinsight/LibCore/cvfFlags.inl + external/resinsight/LibCore/cvfFunctorRange.h + external/resinsight/LibCore/cvfLibCore.h + external/resinsight/LibCore/cvfLogDestination.h + external/resinsight/LibCore/cvfLogger.h + external/resinsight/LibCore/cvfMath.h + external/resinsight/LibCore/cvfMath.inl + external/resinsight/LibCore/cvfMatrix3.h + external/resinsight/LibCore/cvfMatrix3.inl + external/resinsight/LibCore/cvfMatrix4.h + external/resinsight/LibCore/cvfMatrix4.inl + external/resinsight/LibCore/cvfObject.h + external/resinsight/LibCore/cvfObject.inl + external/resinsight/LibCore/cvfPlane.h + external/resinsight/LibCore/cvfPropertySet.h + external/resinsight/LibCore/cvfQuat.h + external/resinsight/LibCore/cvfQuat.inl + external/resinsight/LibCore/cvfRect.h + external/resinsight/LibCore/cvfRect.inl + external/resinsight/LibCore/cvfString.h + external/resinsight/LibCore/cvfSystem.h + external/resinsight/LibCore/cvfTBBControl.h + external/resinsight/LibCore/cvfTimer.h + external/resinsight/LibCore/cvfTrace.h + external/resinsight/LibCore/cvfValueArray.h + external/resinsight/LibCore/cvfVector2.h + external/resinsight/LibCore/cvfVector2.inl + external/resinsight/LibCore/cvfVector3.h + external/resinsight/LibCore/cvfVector3.inl + external/resinsight/LibCore/cvfVector4.h + external/resinsight/LibCore/cvfVector4.inl + external/resinsight/LibCore/cvfVersion.h + external/resinsight/LibGeometry/cvfBoundingBox.h + external/resinsight/LibGeometry/cvfBoundingBoxTree.h + external/resinsight/LibGeometry/cvfRay.h + external/resinsight/ReservoirDataModel/RigCellGeometryTools.h + external/resinsight/ReservoirDataModel/RigHexIntersectionTools.h + external/resinsight/ReservoirDataModel/RigWellLogExtractionTools.h + external/resinsight/ReservoirDataModel/RigWellLogExtractor.h + external/resinsight/ReservoirDataModel/RigWellPath.h + external/resinsight/ReservoirDataModel/cvfGeometryTools.h + external/resinsight/ReservoirDataModel/cvfGeometryTools.inl + external/resinsight/cafHexGridIntersectionTools/cafHexGridIntersectionTools.h + external/resinsight/cafPdmCore/cafAppEnum.h + external/resinsight/cafPdmCore/cafAssert.h + external/resinsight/cafPdmCore/cafSignal.h + opm/input/eclipse/Schedule/HandlerContext.hpp + opm/input/eclipse/Schedule/Well/WellTrajInfo.hpp + opm/input/eclipse/Schedule/WellTraj/RigEclipseWellLogExtractor.hpp +) - opm/output/eclipse/VectorItems/msw.hpp - opm/output/eclipse/VectorItems/network.hpp - opm/output/eclipse/VectorItems/tabdims.hpp - opm/output/eclipse/VectorItems/udq.hpp - opm/output/eclipse/VectorItems/well.hpp - opm/output/eclipse/ActiveIndexByColumns.hpp - opm/output/eclipse/AggregateActionxData.hpp - opm/output/eclipse/AggregateAquiferData.hpp - opm/output/eclipse/AggregateGroupData.hpp - opm/output/eclipse/AggregateNetworkData.hpp - opm/output/eclipse/AggregateConnectionData.hpp - opm/output/eclipse/AggregateMSWData.hpp - opm/output/eclipse/AggregateUDQData.hpp - opm/output/eclipse/AggregateWellData.hpp - opm/output/eclipse/AggregateWListData.hpp - opm/output/eclipse/DoubHEAD.hpp - opm/output/eclipse/EclipseGridInspector.hpp - opm/output/eclipse/EclipseIO.hpp - opm/output/eclipse/EclipseIOUtil.hpp - opm/output/eclipse/InteHEAD.hpp - opm/output/eclipse/LgrHEADI.hpp - opm/output/eclipse/LgrHEADQ.hpp - opm/output/eclipse/LgrHEADD.hpp - opm/output/eclipse/LinearisedOutputTable.hpp - opm/output/eclipse/LogiHEAD.hpp - opm/output/eclipse/RegionCache.hpp - opm/output/eclipse/RestartIO.hpp - opm/output/eclipse/RestartValue.hpp - opm/output/eclipse/Inplace.hpp - opm/output/eclipse/Summary.hpp - opm/output/eclipse/Tables.hpp - opm/output/eclipse/UDQDims.hpp - opm/output/eclipse/WStat.hpp - opm/output/eclipse/WindowedArray.hpp - opm/output/eclipse/WriteInit.hpp - opm/output/eclipse/WriteRFT.hpp - opm/output/eclipse/WriteRestartHelpers.hpp - opm/output/eclipse/report/WellSpecification.hpp - opm/utility/CopyablePtr.hpp - opm/utility/EModel.hpp - opm/utility/GroupStructureViz.hpp - opm/utility/WellStructureViz.hpp - ) - foreach (name A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) - list(APPEND GENERATED_HEADER_FILES - opm/input/eclipse/Parser/ParserKeywords/${name}.hpp - opm/input/eclipse/Parser/ParserKeywords/ParserInit${name}.hpp - ) - endforeach() +foreach (name A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) list(APPEND GENERATED_HEADER_FILES - opm/input/eclipse/Parser/ParserKeywords/Builtin.hpp + opm/input/eclipse/Parser/ParserKeywords/${name}.hpp + opm/input/eclipse/Parser/ParserKeywords/ParserInit${name}.hpp ) -endif() - -if(ENABLE_ECL_INPUT OR ENABLE_ECL_OUTPUT) - list(APPEND TEST_SOURCE_FILES - tests/test_SummaryNode.cpp - tests/test_SummaryConfigNode.cpp +endforeach() +list(APPEND GENERATED_HEADER_FILES + opm/input/eclipse/Parser/ParserKeywords/Builtin.hpp ) -endif() diff --git a/opm-common-prereqs.cmake b/opm-common-prereqs.cmake index 3aecd58c91d..71f12f3fd4c 100644 --- a/opm-common-prereqs.cmake +++ b/opm-common-prereqs.cmake @@ -1,11 +1,6 @@ # -*- mode: cmake; tab-width: 2; indent-tabs-mode: nil; truncate-lines: t; compile-command: "cmake -Wdev" -*- # vim: set filetype=cmake autoindent tabstop=2 shiftwidth=2 expandtab softtabstop=2 nowrap: -# defines that must be present in config.h for our headers -set (opm-common_CONFIG_VAR - HAVE_ECL_INPUT -) - # CMake 3.30.0 requires to find Boost in CONFIG mode if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.30.0) set(_Boost_CONFIG_MODE CONFIG) diff --git a/opm/material/fluidmatrixinteractions/EclEpsConfig.hpp b/opm/material/fluidmatrixinteractions/EclEpsConfig.hpp index bdf269f1d8c..c95310818d3 100644 --- a/opm/material/fluidmatrixinteractions/EclEpsConfig.hpp +++ b/opm/material/fluidmatrixinteractions/EclEpsConfig.hpp @@ -31,9 +31,7 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; -#endif /*! * \brief Specified which fluids are involved in a given twophase material law for @@ -165,7 +163,6 @@ class EclEpsConfig bool enableLeverettScaling() const { return enableLeverettScaling_; } -#if HAVE_ECL_INPUT /*! * \brief Reads all relevant material parameters form a cell of a parsed ECL deck. * @@ -175,7 +172,6 @@ class EclEpsConfig EclTwoPhaseSystemType twoPhaseSystemType, const std::string& prefix = "", const std::string& suffix = ""); -#endif private: // enable scaling of the input saturations (i.e., rescale the x-Axis) diff --git a/opm/material/fluidmatrixinteractions/EclEpsGridProperties.hpp b/opm/material/fluidmatrixinteractions/EclEpsGridProperties.hpp index e058f2ab108..44483af8d72 100644 --- a/opm/material/fluidmatrixinteractions/EclEpsGridProperties.hpp +++ b/opm/material/fluidmatrixinteractions/EclEpsGridProperties.hpp @@ -32,9 +32,7 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; -#endif /*! * \brief Collects all grid properties which are relevant for end point scaling. @@ -47,10 +45,8 @@ class EclEpsGridProperties { public: -#if HAVE_ECL_INPUT EclEpsGridProperties(const EclipseState& eclState, bool useImbibition); -#endif int satRegion(const std::size_t active_index) const { diff --git a/opm/material/fluidmatrixinteractions/EclEpsScalingPoints.cpp b/opm/material/fluidmatrixinteractions/EclEpsScalingPoints.cpp index 43c4d4b6ae2..59b3ec2c603 100644 --- a/opm/material/fluidmatrixinteractions/EclEpsScalingPoints.cpp +++ b/opm/material/fluidmatrixinteractions/EclEpsScalingPoints.cpp @@ -27,7 +27,6 @@ #include -#if HAVE_ECL_INPUT #include #include #include @@ -39,13 +38,11 @@ #include #include #include -#endif // HAVE_ECL_INPUT #include #include #include -#if HAVE_ECL_INPUT namespace { template void updateIfNonNull(Scalar& targetValue, const double* value_ptr) @@ -55,7 +52,6 @@ namespace { } } } // Anonymous namespace -#endif // HAVE_ECL_INPUT template void Opm::EclEpsScalingPointsInfo::print() const @@ -82,7 +78,6 @@ void Opm::EclEpsScalingPointsInfo::print() const << " maxKrog: " << maxKrog << '\n'; } -#if HAVE_ECL_INPUT template void Opm::EclEpsScalingPointsInfo:: extractUnscaled(const satfunc::RawTableEndPoints& rtep, @@ -231,7 +226,6 @@ calculateLeverettFactors(const EclipseState& eclState, this->pcgoLeverettFactor = commonFactor * gamma * Uconst; } } -#endif // HAVE_ECL_INPUT // --------------------------------------------------------------------------- diff --git a/opm/material/fluidmatrixinteractions/EclEpsScalingPoints.hpp b/opm/material/fluidmatrixinteractions/EclEpsScalingPoints.hpp index 74d279a9b1f..0518928faed 100644 --- a/opm/material/fluidmatrixinteractions/EclEpsScalingPoints.hpp +++ b/opm/material/fluidmatrixinteractions/EclEpsScalingPoints.hpp @@ -35,7 +35,6 @@ namespace Opm { class EclEpsConfig; enum class EclTwoPhaseSystemType; -#if HAVE_ECL_INPUT class EclipseState; class EclEpsGridProperties; @@ -43,7 +42,6 @@ namespace satfunc { struct RawTableEndPoints; struct RawFunctionValues; } -#endif /*! * \brief This structure represents all values which can be possibly used as scaling @@ -117,7 +115,6 @@ struct EclEpsScalingPointsInfo void print() const; -#if HAVE_ECL_INPUT /*! * \brief Extract the values of the unscaled scaling parameters. * @@ -141,7 +138,6 @@ struct EclEpsScalingPointsInfo void calculateLeverettFactors(const EclipseState& eclState, const EclEpsGridProperties& epsProperties, unsigned activeIndex); -#endif // HAVE_ECL_INPUT }; /*! diff --git a/opm/material/fluidmatrixinteractions/EclHysteresisConfig.hpp b/opm/material/fluidmatrixinteractions/EclHysteresisConfig.hpp index 2b7936eded9..1972a44d865 100644 --- a/opm/material/fluidmatrixinteractions/EclHysteresisConfig.hpp +++ b/opm/material/fluidmatrixinteractions/EclHysteresisConfig.hpp @@ -29,9 +29,7 @@ namespace Opm { -#if HAVE_ECL_INPUT class Runspec; -#endif /*! * \ingroup FluidMatrixInteractions @@ -140,14 +138,12 @@ class EclHysteresisConfig bool enableWettingPhaseKilloughFix() const { return enableWettingPhaseKilloughFix_; } -#if HAVE_ECL_INPUT /*! * \brief Reads all relevant material parameters form a cell of a parsed ECL deck. * * This requires that the opm-parser module is available. */ void initFromState(const Runspec& runspec); -#endif private: // enable hysteresis at all diff --git a/opm/material/fluidmatrixinteractions/EclMaterialLawManager.hpp b/opm/material/fluidmatrixinteractions/EclMaterialLawManager.hpp index fd4bee1a4e7..dede4e133d2 100644 --- a/opm/material/fluidmatrixinteractions/EclMaterialLawManager.hpp +++ b/opm/material/fluidmatrixinteractions/EclMaterialLawManager.hpp @@ -24,9 +24,6 @@ * \file * \copydoc Opm::EclMaterialLawManager */ -#if ! HAVE_ECL_INPUT -#error "Eclipse input support in opm-common is required to use the ECL material manager!" -#endif #ifndef OPM_ECL_MATERIAL_LAW_MANAGER_HPP #define OPM_ECL_MATERIAL_LAW_MANAGER_HPP diff --git a/opm/material/fluidsystems/BlackOilFluidSystem.cpp b/opm/material/fluidsystems/BlackOilFluidSystem.cpp index c77acad93d7..69c5c4ce429 100644 --- a/opm/material/fluidsystems/BlackOilFluidSystem.cpp +++ b/opm/material/fluidsystems/BlackOilFluidSystem.cpp @@ -26,11 +26,9 @@ #include -#if HAVE_ECL_INPUT #include #include #include -#endif #include @@ -38,7 +36,6 @@ namespace Opm { -#if HAVE_ECL_INPUT template typename Storage> void BlackOilFluidSystem:: initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -196,7 +193,6 @@ initFromState(const EclipseState& eclState, const Schedule& schedule) } } } -#endif #define INSTANTIATE_TYPE(T) \ template<> PhaseUsageInfo \ diff --git a/opm/material/fluidsystems/BlackOilFluidSystem_macrotemplate.hpp b/opm/material/fluidsystems/BlackOilFluidSystem_macrotemplate.hpp index 9c94e8e9b4a..e47f0fa7176 100644 --- a/opm/material/fluidsystems/BlackOilFluidSystem_macrotemplate.hpp +++ b/opm/material/fluidsystems/BlackOilFluidSystem_macrotemplate.hpp @@ -59,13 +59,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif - - - /*! * \brief A fluid system which uses the black-oil model assumptions to calculate @@ -255,12 +250,10 @@ class FLUIDSYSTEM_CLASSNAME : public BaseFluidSystem -#if HAVE_ECL_INPUT #include #include -#endif #include #include @@ -132,7 +130,6 @@ namespace Opm { } } -#if HAVE_ECL_INPUT /*! * \brief Initialize the fluid system using an ECL deck object */ @@ -166,7 +163,6 @@ namespace Opm { waterPvt_->initFromState(eclState, schedule); } -#endif // HAVE_ECL_INPUT static void init() { diff --git a/opm/material/fluidsystems/PhaseUsageInfo.cpp b/opm/material/fluidsystems/PhaseUsageInfo.cpp index 44d97886b93..0e53e1d293f 100644 --- a/opm/material/fluidsystems/PhaseUsageInfo.cpp +++ b/opm/material/fluidsystems/PhaseUsageInfo.cpp @@ -28,9 +28,7 @@ #include #include -#if HAVE_ECL_INPUT #include -#endif #include #include @@ -82,7 +80,6 @@ void PhaseUsageInfo::reset_() { std::fill_n(&canonicalToActiveCompIdx_[0], numComponents, -1); } -#if HAVE_ECL_INPUT template void PhaseUsageInfo::initFromState(const EclipseState& eclState) { @@ -130,7 +127,6 @@ void PhaseUsageInfo::initFromPhases(const Phases& phases) { this->updateIndexMapping_(); } -#endif // Explicit template instantiations for commonly used IndexTraits template class PhaseUsageInfo; diff --git a/opm/material/fluidsystems/PhaseUsageInfo.hpp b/opm/material/fluidsystems/PhaseUsageInfo.hpp index cc043783f67..49bbd026e53 100644 --- a/opm/material/fluidsystems/PhaseUsageInfo.hpp +++ b/opm/material/fluidsystems/PhaseUsageInfo.hpp @@ -24,10 +24,8 @@ #ifndef OPM_PHASEUSAGEINFO_HPP #define OPM_PHASEUSAGEINFO_HPP -#if HAVE_ECL_INPUT #include #include -#endif #include #include @@ -111,11 +109,9 @@ class PhaseUsageInfo { return activePhaseIdx; } -#if HAVE_ECL_INPUT void initFromPhases(const Phases& phases); void initFromState(const EclipseState& eclState); -#endif OPM_HOST_DEVICE bool hasSolvent() const noexcept { return has_solvent; diff --git a/opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.cpp b/opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.cpp index 62a3bc7ce7b..bde85f60e62 100644 --- a/opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.cpp @@ -62,7 +62,6 @@ BrineCo2Pvt(const ContainerT& salinity, } } -#if HAVE_ECL_INPUT template class Storage> void BrineCo2Pvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -146,7 +145,6 @@ initFromState(const EclipseState& eclState, const Schedule&) ezrokhiViscNaClCoeff_[0], ezrokhiViscNaClCoeff_[1], ezrokhiViscNaClCoeff_[2])); } } -#endif template class Storage> void BrineCo2Pvt:: diff --git a/opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.hpp b/opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.hpp index 031196e0b8c..e3e37c77576 100644 --- a/opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.hpp @@ -124,13 +124,11 @@ class BrineCo2Pvt { } -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for Brine-CO2 system using an ECL deck. * */ void initFromState(const EclipseState& eclState, const Schedule&); -#endif void setNumRegions(std::size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.cpp b/opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.cpp index db5d4422ec3..197593c8b81 100644 --- a/opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.cpp @@ -50,7 +50,6 @@ BrineH2Pvt(const std::vector& salinity, } } -#if HAVE_ECL_INPUT template void BrineH2Pvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -112,7 +111,6 @@ initFromState(const EclipseState& eclState, const Schedule&) usys.from_si(Meas::pressure , P_ref), usys.name(Meas::pressure), usys.from_si(Meas::temperature , T_ref), usys.name(Meas::temperature))); } -#endif template void BrineH2Pvt:: diff --git a/opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.hpp b/opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.hpp index 28e86d4da10..13100d3a0f2 100644 --- a/opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/BrineH2Pvt.hpp @@ -42,10 +42,8 @@ copyright holders. namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the liquid phase for a H2-Brine system @@ -68,13 +66,11 @@ class BrineH2Pvt Scalar T_ref = 288.71, //(273.15 + 15.56) Scalar P_ref = 101325); -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for Brine-H2 system using an ECL deck. * */ void initFromState(const EclipseState& eclState, const Schedule&); -#endif void setNumRegions(std::size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/Co2GasPvt.cpp b/opm/material/fluidsystems/blackoilpvt/Co2GasPvt.cpp index c13c21400d6..4e8529ca440 100644 --- a/opm/material/fluidsystems/blackoilpvt/Co2GasPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/Co2GasPvt.cpp @@ -63,7 +63,6 @@ Co2GasPvt(const ContainerT& salinity, } } -#if HAVE_ECL_INPUT template class Storage> void Co2GasPvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -108,7 +107,6 @@ initFromState(const EclipseState& eclState, const Schedule&) initEnd(); } -#endif template class Storage> OPM_HOST_DEVICE void Co2GasPvt:: diff --git a/opm/material/fluidsystems/blackoilpvt/Co2GasPvt.hpp b/opm/material/fluidsystems/blackoilpvt/Co2GasPvt.hpp index e1d689feaa4..99088007276 100644 --- a/opm/material/fluidsystems/blackoilpvt/Co2GasPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/Co2GasPvt.hpp @@ -112,9 +112,7 @@ class Co2GasPvt assert(enableEzrokhiDensity == false && "Ezrokhi density not supported by GPUs"); } -#if HAVE_ECL_INPUT void initFromState(const EclipseState& eclState, const Schedule&); -#endif void setNumRegions(std::size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.cpp b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.cpp index e30f412d0ca..88857c62746 100644 --- a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.cpp @@ -33,7 +33,6 @@ namespace Opm { -#if HAVE_ECL_INPUT template void ConstantCompressibilityBrinePvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -88,7 +87,6 @@ initFromState(const EclipseState& eclState, const Schedule&) initEnd(); } -#endif template void ConstantCompressibilityBrinePvt:: diff --git a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.hpp b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.hpp index 05005872a2d..b5a4d2f5ffc 100644 --- a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityBrinePvt.hpp @@ -38,10 +38,8 @@ namespace Opm { template class WaterPvtMultiplexer; -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the gas phase @@ -53,13 +51,11 @@ class ConstantCompressibilityBrinePvt public: using TabulatedFunction = Tabulated1DFunction; -#if HAVE_ECL_INPUT /*! * \brief Sets the pressure-dependent water viscosity and density * using a table stemming from the Eclipse PVTWSALT keyword. */ void initFromState(const EclipseState& eclState, const Schedule&); -#endif void setNumRegions(std::size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.cpp b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.cpp index ee89e4fadbd..eefaa3bae94 100644 --- a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.cpp @@ -32,7 +32,6 @@ namespace Opm { -#if HAVE_ECL_INPUT template void ConstantCompressibilityOilPvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -65,7 +64,6 @@ initFromState(const EclipseState& eclState, const Schedule&) initEnd(); } -#endif template void ConstantCompressibilityOilPvt:: diff --git a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.hpp b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.hpp index 17eb8f97f5a..5eb7d5ad1ca 100644 --- a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityOilPvt.hpp @@ -35,10 +35,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the oil phase @@ -48,7 +46,6 @@ template class ConstantCompressibilityOilPvt { public: -#if HAVE_ECL_INPUT /*! * \brief Sets the pressure-dependent oil viscosity and density * using the Eclipse PVCDO keyword. @@ -57,7 +54,6 @@ class ConstantCompressibilityOilPvt * \brief Initialize the oil parameters via the data specified by the PVTO ECL keyword. */ void initFromState(const EclipseState& eclState, const Schedule&); -#endif void setNumRegions(std::size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.cpp b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.cpp index 5ceefaed9e8..4cdc3a6caed 100644 --- a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.cpp @@ -32,7 +32,6 @@ namespace Opm { -#if HAVE_ECL_INPUT template void ConstantCompressibilityWaterPvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -61,7 +60,6 @@ initFromState(const EclipseState& eclState, const Schedule&) initEnd(); } -#endif template void ConstantCompressibilityWaterPvt:: diff --git a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.hpp b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.hpp index bd255e5912d..d42c5dd986d 100644 --- a/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/ConstantCompressibilityWaterPvt.hpp @@ -35,10 +35,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the gas phase @@ -48,13 +46,11 @@ template class ConstantCompressibilityWaterPvt { public: -#if HAVE_ECL_INPUT /*! * \brief Sets the pressure-dependent water viscosity and density * using a table stemming from the Eclipse PVTW keyword. */ void initFromState(const EclipseState& eclState, const Schedule&); -#endif void setNumRegions(std::size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/DeadOilPvt.cpp b/opm/material/fluidsystems/blackoilpvt/DeadOilPvt.cpp index f8400c35917..75476036565 100644 --- a/opm/material/fluidsystems/blackoilpvt/DeadOilPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/DeadOilPvt.cpp @@ -26,17 +26,14 @@ #include -#if HAVE_ECL_INPUT #include #include #include -#endif #include namespace Opm { -#if HAVE_ECL_INPUT template void DeadOilPvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -77,7 +74,6 @@ initFromState(const EclipseState& eclState, const Schedule&) initEnd(); } -#endif template void DeadOilPvt::setNumRegions(std::size_t numRegions) diff --git a/opm/material/fluidsystems/blackoilpvt/DeadOilPvt.hpp b/opm/material/fluidsystems/blackoilpvt/DeadOilPvt.hpp index ff24ccf3cd3..494fd1609fe 100644 --- a/opm/material/fluidsystems/blackoilpvt/DeadOilPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/DeadOilPvt.hpp @@ -34,10 +34,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the oil phase @@ -49,12 +47,10 @@ class DeadOilPvt public: using TabulatedOneDFunction = Tabulated1DFunction; -#if HAVE_ECL_INPUT /*! * \brief Initialize the oil parameters via the data specified by the PVDO ECL keyword. */ void initFromState(const EclipseState& eclState, const Schedule&); -#endif // HAVE_ECL_INPUT void setNumRegions(std::size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/DryGasPvt.cpp b/opm/material/fluidsystems/blackoilpvt/DryGasPvt.cpp index f62bc3af8ce..b6b51ac5015 100644 --- a/opm/material/fluidsystems/blackoilpvt/DryGasPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/DryGasPvt.cpp @@ -26,17 +26,14 @@ #include -#if HAVE_ECL_INPUT #include #include #include -#endif #include namespace Opm { -#if HAVE_ECL_INPUT template void DryGasPvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -87,7 +84,6 @@ initFromState(const EclipseState& eclState, const Schedule&) initEnd(); } -#endif template void DryGasPvt::setNumRegions(std::size_t numRegions) diff --git a/opm/material/fluidsystems/blackoilpvt/DryGasPvt.hpp b/opm/material/fluidsystems/blackoilpvt/DryGasPvt.hpp index 14e916add04..2ff84cd1a5d 100644 --- a/opm/material/fluidsystems/blackoilpvt/DryGasPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/DryGasPvt.hpp @@ -36,10 +36,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the gas phase @@ -53,14 +51,12 @@ class DryGasPvt public: using TabulatedOneDFunction = Tabulated1DFunction; -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for dry gas using an ECL deck. * * This method assumes that the deck features valid DENSITY and PVDG keywords. */ void initFromState(const EclipseState& eclState, const Schedule&); -#endif void setNumRegions(std::size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.cpp b/opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.cpp index 3d00d7cf642..4bc18604bb1 100644 --- a/opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.cpp @@ -26,16 +26,13 @@ #include -#if HAVE_ECL_INPUT #include #include -#endif #include namespace Opm { -#if HAVE_ECL_INPUT template void DryHumidGasPvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -236,7 +233,6 @@ extendPvtgwTable_(unsigned regionIdx, gasmu.appendSamplePoint(xIdx, newRw, newMug); } } -#endif template void DryHumidGasPvt::setNumRegions(std::size_t numRegions) diff --git a/opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.hpp b/opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.hpp index 1389a85efbd..b2476c2526c 100644 --- a/opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/DryHumidGasPvt.hpp @@ -39,11 +39,9 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; class SimpleTable; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the gas phase @@ -58,7 +56,6 @@ class DryHumidGasPvt using TabulatedTwoDFunction = UniformXTabulated2DFunction; using TabulatedOneDFunction = Tabulated1DFunction; -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for wet gas using an ECL deck. * @@ -71,9 +68,8 @@ class DryHumidGasPvt unsigned xIdx, const SimpleTable& curTable, const SimpleTable& masterTable); -public: -#endif // HAVE_ECL_INPUT +public: void setNumRegions(std::size_t numRegions); void setVapPars(const Scalar par1, const Scalar) diff --git a/opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.cpp b/opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.cpp index 8750815cc83..06fff8679fa 100644 --- a/opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.cpp +++ b/opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.cpp @@ -67,7 +67,6 @@ GasPvtMultiplexer::hVap(unsigned regionIdx) const OPM_GAS_PVT_MULTIPLEXER_CALL(return pvtImpl.hVap(regionIdx)); } -#if HAVE_ECL_INPUT template void GasPvtMultiplexer::initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -92,7 +91,6 @@ GasPvtMultiplexer::initFromState(const EclipseState& eclS OPM_GAS_PVT_MULTIPLEXER_CALL(pvtImpl.initFromState(eclState, schedule), break); } -#endif // Helper function to keep the switch case tidy when constructing different pvts template diff --git a/opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.hpp b/opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.hpp index c08ea56427b..15d7d1af993 100644 --- a/opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.hpp +++ b/opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.hpp @@ -38,10 +38,8 @@ #include namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif #define OPM_GAS_PVT_MULTIPLEXER_CALL(codeToCall, ...) \ switch (gasPvtApproach_) { \ @@ -137,14 +135,12 @@ class GasPvtMultiplexer return gasPvtApproach_ != GasPvtApproach::NoGas; } -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for gas using an ECL deck. * * This method assumes that the deck features valid DENSITY and PVDG keywords. */ void initFromState(const EclipseState& eclState, const Schedule& schedule); -#endif // HAVE_ECL_INPUT void setApproach(GasPvtApproach gasPvtAppr); diff --git a/opm/material/fluidsystems/blackoilpvt/GasPvtThermal.cpp b/opm/material/fluidsystems/blackoilpvt/GasPvtThermal.cpp index a4e6e2d827c..5153f36d2a6 100644 --- a/opm/material/fluidsystems/blackoilpvt/GasPvtThermal.cpp +++ b/opm/material/fluidsystems/blackoilpvt/GasPvtThermal.cpp @@ -37,7 +37,6 @@ namespace Opm { -#if HAVE_ECL_INPUT template void GasPvtThermal:: initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -186,7 +185,6 @@ initFromState(const EclipseState& eclState, const Schedule& schedule) } } } -#endif template void GasPvtThermal:: diff --git a/opm/material/fluidsystems/blackoilpvt/GasPvtThermal.hpp b/opm/material/fluidsystems/blackoilpvt/GasPvtThermal.hpp index 19b48a90c3a..072471043b6 100644 --- a/opm/material/fluidsystems/blackoilpvt/GasPvtThermal.hpp +++ b/opm/material/fluidsystems/blackoilpvt/GasPvtThermal.hpp @@ -33,10 +33,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif template class GasPvtMultiplexer; @@ -92,12 +90,10 @@ class GasPvtThermal ~GasPvtThermal() { delete isothermalPvt_; } -#if HAVE_ECL_INPUT /*! * \brief Implement the temperature part of the gas PVT properties. */ void initFromState(const EclipseState& eclState, const Schedule& schedule); -#endif // HAVE_ECL_INPUT /*! * \brief Set the number of PVT-regions considered by this object. diff --git a/opm/material/fluidsystems/blackoilpvt/H2GasPvt.cpp b/opm/material/fluidsystems/blackoilpvt/H2GasPvt.cpp index b64893a0e3f..7dfb690be3e 100644 --- a/opm/material/fluidsystems/blackoilpvt/H2GasPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/H2GasPvt.cpp @@ -46,7 +46,6 @@ H2GasPvt(const std::vector& salinity, } } -#if HAVE_ECL_INPUT template void H2GasPvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -77,7 +76,6 @@ initFromState(const EclipseState& eclState, const Schedule&) brineReferenceDensity_[regionIdx] = Brine::liquidDensity(T_ref, P_ref, salinity_[regionIdx], extrapolate); initEnd(); } -#endif template void H2GasPvt:: diff --git a/opm/material/fluidsystems/blackoilpvt/H2GasPvt.hpp b/opm/material/fluidsystems/blackoilpvt/H2GasPvt.hpp index 517d794e151..67f75a2de3e 100644 --- a/opm/material/fluidsystems/blackoilpvt/H2GasPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/H2GasPvt.hpp @@ -37,10 +37,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the gas phase for H2 @@ -63,12 +61,10 @@ class H2GasPvt Scalar T_ref = 288.71, //(273.15 + 15.56) Scalar P_ref = 101325); -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for H2 gas using an ECL deck. */ void initFromState(const EclipseState& eclState, const Schedule&); -#endif void setNumRegions(size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/LiveOilPvt.cpp b/opm/material/fluidsystems/blackoilpvt/LiveOilPvt.cpp index d83f25c6136..20d2e43963e 100644 --- a/opm/material/fluidsystems/blackoilpvt/LiveOilPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/LiveOilPvt.cpp @@ -26,18 +26,15 @@ #include -#if HAVE_ECL_INPUT #include #include #include #include -#endif #include namespace Opm { -#if HAVE_ECL_INPUT template void LiveOilPvt:: initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -213,7 +210,6 @@ extendPvtoTable_(unsigned regionIdx, oilMu.appendSamplePoint(xIdx, newPo, newMuo); } } -#endif template void LiveOilPvt::setNumRegions(std::size_t numRegions) diff --git a/opm/material/fluidsystems/blackoilpvt/LiveOilPvt.hpp b/opm/material/fluidsystems/blackoilpvt/LiveOilPvt.hpp index 8b95eb3b3ad..b3738f8bcde 100644 --- a/opm/material/fluidsystems/blackoilpvt/LiveOilPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/LiveOilPvt.hpp @@ -36,11 +36,9 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; class SimpleTable; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the oil phas @@ -55,7 +53,6 @@ class LiveOilPvt using TabulatedTwoDFunction = UniformXTabulated2DFunction; using TabulatedOneDFunction = Tabulated1DFunction; -#if HAVE_ECL_INPUT /*! * \brief Initialize the oil parameters via the data specified by the PVTO ECL keyword. */ @@ -68,8 +65,6 @@ class LiveOilPvt const SimpleTable& masterTable); public: -#endif // HAVE_ECL_INPUT - void setNumRegions(size_t numRegions); void setVapPars(const Scalar, const Scalar par2) diff --git a/opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.cpp b/opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.cpp index aa8691eb40f..6d41dd231da 100644 --- a/opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.cpp +++ b/opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.cpp @@ -63,7 +63,6 @@ OilPvtMultiplexer:: } } -#if HAVE_ECL_INPUT template void OilPvtMultiplexer:: initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -88,7 +87,6 @@ initFromState(const EclipseState& eclState, const Schedule& schedule) OPM_OIL_PVT_MULTIPLEXER_CALL(pvtImpl.initFromState(eclState, schedule), break); } -#endif template void OilPvtMultiplexer:: diff --git a/opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.hpp b/opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.hpp index a745c6010d5..14d2ba7c9e1 100644 --- a/opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.hpp +++ b/opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.hpp @@ -36,10 +36,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif #define OPM_OIL_PVT_MULTIPLEXER_CALL(codeToCall, ...) \ switch (approach_) { \ @@ -126,15 +124,13 @@ class OilPvtMultiplexer { return approach_ == OilPvtApproach::ThermalOil; } -#if HAVE_ECL_INPUT + /*! * \brief Initialize the parameters for water using an ECL state. * * This method assumes that the deck features valid DENSITY and PVTO/PVDO/PVCDO keywords. */ void initFromState(const EclipseState& eclState, const Schedule& schedule); -#endif // HAVE_ECL_INPUT - void initEnd(); diff --git a/opm/material/fluidsystems/blackoilpvt/OilPvtThermal.cpp b/opm/material/fluidsystems/blackoilpvt/OilPvtThermal.cpp index 20b8a179372..49bd4f7b1f2 100644 --- a/opm/material/fluidsystems/blackoilpvt/OilPvtThermal.cpp +++ b/opm/material/fluidsystems/blackoilpvt/OilPvtThermal.cpp @@ -36,7 +36,6 @@ namespace Opm { -#if HAVE_ECL_INPUT template void OilPvtThermal:: initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -176,7 +175,6 @@ initFromState(const EclipseState& eclState, const Schedule& schedule) } } } -#endif template void OilPvtThermal:: diff --git a/opm/material/fluidsystems/blackoilpvt/OilPvtThermal.hpp b/opm/material/fluidsystems/blackoilpvt/OilPvtThermal.hpp index 70e74eca748..ee17e764f74 100644 --- a/opm/material/fluidsystems/blackoilpvt/OilPvtThermal.hpp +++ b/opm/material/fluidsystems/blackoilpvt/OilPvtThermal.hpp @@ -33,10 +33,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif template class OilPvtMultiplexer; @@ -94,12 +92,10 @@ class OilPvtThermal ~OilPvtThermal() { delete isothermalPvt_; } -#if HAVE_ECL_INPUT /*! * \brief Implement the temperature part of the oil PVT properties. */ void initFromState(const EclipseState& eclState, const Schedule& schedule); -#endif // HAVE_ECL_INPUT /*! * \brief Set the number of PVT-regions considered by this object. diff --git a/opm/material/fluidsystems/blackoilpvt/SolventPvt.cpp b/opm/material/fluidsystems/blackoilpvt/SolventPvt.cpp index 756683bcb30..93e2f8143a7 100644 --- a/opm/material/fluidsystems/blackoilpvt/SolventPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/SolventPvt.cpp @@ -26,17 +26,14 @@ #include -#if HAVE_ECL_INPUT #include #include #include -#endif #include namespace Opm { -#if HAVE_ECL_INPUT template void SolventPvt:: initFromState(const EclipseState& eclState, const Schedule&) @@ -75,7 +72,6 @@ initFromState(const EclipseState& eclState, const Schedule&) initEnd(); } -#endif template void SolventPvt::setNumRegions(std::size_t numRegions) diff --git a/opm/material/fluidsystems/blackoilpvt/SolventPvt.hpp b/opm/material/fluidsystems/blackoilpvt/SolventPvt.hpp index 3250bcc31fd..cc3bebf20d2 100644 --- a/opm/material/fluidsystems/blackoilpvt/SolventPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/SolventPvt.hpp @@ -34,10 +34,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the "second" @@ -51,14 +49,12 @@ class SolventPvt public: using TabulatedOneDFunction = Tabulated1DFunction; -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for "solvent gas" using an ECL deck. * * This method assumes that the deck features valid SDENSITY and PVDS keywords. */ void initFromState(const EclipseState& eclState, const Schedule&); -#endif void setNumRegions(std::size_t numRegions); diff --git a/opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.cpp b/opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.cpp index f8a6ddf5c2d..d4b59de81cd 100644 --- a/opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.cpp +++ b/opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.cpp @@ -59,7 +59,6 @@ WaterPvtMultiplexer:: } } -#if HAVE_ECL_INPUT template void WaterPvtMultiplexer:: initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -82,7 +81,6 @@ initFromState(const EclipseState& eclState, const Schedule& schedule) OPM_WATER_PVT_MULTIPLEXER_CALL(pvtImpl.initFromState(eclState, schedule), break); } -#endif template void WaterPvtMultiplexer:: diff --git a/opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.hpp b/opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.hpp index 7dd6a409038..bcb1a378c83 100644 --- a/opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.hpp +++ b/opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.hpp @@ -76,10 +76,8 @@ enum class WaterPvtApproach { BrineH2 }; -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the water @@ -112,14 +110,12 @@ class WaterPvtMultiplexer return approach_ == WaterPvtApproach::ThermalWater; } -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for water using an ECL deck. * * This method assumes that the deck features valid DENSITY and PVDG keywords. */ void initFromState(const EclipseState& eclState, const Schedule& schedule); -#endif // HAVE_ECL_INPUT void initEnd(); diff --git a/opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.cpp b/opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.cpp index 9b207c0453f..4d9a58a96ec 100644 --- a/opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.cpp +++ b/opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.cpp @@ -36,7 +36,6 @@ namespace Opm { -#if HAVE_ECL_INPUT template void WaterPvtThermal:: initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -178,7 +177,6 @@ initFromState(const EclipseState& eclState, const Schedule& schedule) } } } -#endif template void WaterPvtThermal:: diff --git a/opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.hpp b/opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.hpp index 55b89481a11..4a1e4892693 100644 --- a/opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.hpp +++ b/opm/material/fluidsystems/blackoilpvt/WaterPvtThermal.hpp @@ -33,10 +33,8 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; -#endif template class WaterPvtMultiplexer; @@ -100,12 +98,10 @@ class WaterPvtThermal ~WaterPvtThermal() { delete isothermalPvt_; } -#if HAVE_ECL_INPUT /*! * \brief Implement the temperature part of the water PVT properties. */ void initFromState(const EclipseState& eclState, const Schedule& schedule); -#endif // HAVE_ECL_INPUT /*! * \brief Set the number of PVT-regions considered by this object. diff --git a/opm/material/fluidsystems/blackoilpvt/WetGasPvt.cpp b/opm/material/fluidsystems/blackoilpvt/WetGasPvt.cpp index eaf68ac39d2..72f410544ec 100644 --- a/opm/material/fluidsystems/blackoilpvt/WetGasPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/WetGasPvt.cpp @@ -26,18 +26,15 @@ #include -#if HAVE_ECL_INPUT #include #include #include #include -#endif #include namespace Opm { -#if HAVE_ECL_INPUT template void WetGasPvt:: initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -214,7 +211,6 @@ extendPvtgTable_(unsigned regionIdx, gasmu.appendSamplePoint(xIdx, newRv, newMug); } } -#endif template void WetGasPvt::setNumRegions(std::size_t numRegions) diff --git a/opm/material/fluidsystems/blackoilpvt/WetGasPvt.hpp b/opm/material/fluidsystems/blackoilpvt/WetGasPvt.hpp index 2947fc42e01..000d66672e2 100644 --- a/opm/material/fluidsystems/blackoilpvt/WetGasPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/WetGasPvt.hpp @@ -38,11 +38,9 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; class SimpleTable; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the gas phas @@ -57,7 +55,6 @@ class WetGasPvt using TabulatedTwoDFunction = UniformXTabulated2DFunction; using TabulatedOneDFunction = Tabulated1DFunction; -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for wet gas using an ECL deck. * @@ -72,8 +69,6 @@ class WetGasPvt const SimpleTable& masterTable); public: -#endif // HAVE_ECL_INPUT - void setNumRegions(std::size_t numRegions); void setVapPars(const Scalar par1, const Scalar) diff --git a/opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.cpp b/opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.cpp index 16d1e30f081..7f5ba58c982 100644 --- a/opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.cpp +++ b/opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.cpp @@ -26,17 +26,14 @@ #include -#if HAVE_ECL_INPUT #include #include #include -#endif #include namespace Opm { -#if HAVE_ECL_INPUT template void WetHumidGasPvt:: initFromState(const EclipseState& eclState, const Schedule& schedule) @@ -395,7 +392,6 @@ extendPvtgTable_(unsigned regionIdx, gasMuRvwSat.appendSamplePoint(xIdx, newRv, newMug); } } -#endif template void WetHumidGasPvt::setNumRegions(std::size_t numRegions) diff --git a/opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.hpp b/opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.hpp index 1f17e27ac28..9a25cc41b9d 100644 --- a/opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.hpp +++ b/opm/material/fluidsystems/blackoilpvt/WetHumidGasPvt.hpp @@ -39,11 +39,9 @@ namespace Opm { -#if HAVE_ECL_INPUT class EclipseState; class Schedule; class SimpleTable; -#endif /*! * \brief This class represents the Pressure-Volume-Temperature relations of the gas phase @@ -58,7 +56,6 @@ class WetHumidGasPvt using TabulatedTwoDFunction = UniformXTabulated2DFunction; using TabulatedOneDFunction = Tabulated1DFunction; -#if HAVE_ECL_INPUT /*! * \brief Initialize the parameters for wet gas using an ECL deck. * @@ -78,8 +75,6 @@ class WetHumidGasPvt const SimpleTable& masterTable); public: -#endif // HAVE_ECL_INPUT - void setNumRegions(std::size_t numRegions); void setVapPars(const Scalar par1, const Scalar) diff --git a/opm/material/thermal/EclThermalLawManager.hpp b/opm/material/thermal/EclThermalLawManager.hpp index 5600f19dab2..639b46ea26e 100644 --- a/opm/material/thermal/EclThermalLawManager.hpp +++ b/opm/material/thermal/EclThermalLawManager.hpp @@ -27,10 +27,6 @@ #ifndef OPM_ECL_THERMAL_LAW_MANAGER_HPP #define OPM_ECL_THERMAL_LAW_MANAGER_HPP -#if ! HAVE_ECL_INPUT -#error "Eclipse input support in opm-common is required to use the ECL thermal law manager!" -#endif - #include "EclSolidEnergyLawMultiplexer.hpp" #include "EclSolidEnergyLawMultiplexerParams.hpp" diff --git a/tests/material/test_co2brinepvt.cpp b/tests/material/test_co2brinepvt.cpp index ad453ccdc1f..3dd1c8fdf69 100644 --- a/tests/material/test_co2brinepvt.cpp +++ b/tests/material/test_co2brinepvt.cpp @@ -34,10 +34,6 @@ #define BOOST_TEST_MODULE Co2BrinePvt #include -#if !HAVE_ECL_INPUT -#error "The test for the co2 brine PVT classes requires eclipse input support in opm-common" -#endif - //#include //#include diff --git a/tests/material/test_eclblackoilfluidsystem.cpp b/tests/material/test_eclblackoilfluidsystem.cpp index 5a649cf7bf4..19f53261bbf 100644 --- a/tests/material/test_eclblackoilfluidsystem.cpp +++ b/tests/material/test_eclblackoilfluidsystem.cpp @@ -29,10 +29,6 @@ */ #include "config.h" -#if !HAVE_ECL_INPUT -#error "The test for the black oil fluid system classes requires ecl input support in opm-common" -#endif - #include #define BOOST_TEST_MODULE EclBlackOilFluidSystem diff --git a/tests/material/test_eclblackoilfluidsystemnonstatic.cpp b/tests/material/test_eclblackoilfluidsystemnonstatic.cpp index 1e001fe0ebd..711f2b82257 100644 --- a/tests/material/test_eclblackoilfluidsystemnonstatic.cpp +++ b/tests/material/test_eclblackoilfluidsystemnonstatic.cpp @@ -30,10 +30,6 @@ #include "config.h" #include -#if !HAVE_ECL_INPUT -#error "The test for the black oil fluid system classes requires ecl input support in opm-common" -#endif - #include #define BOOST_TEST_MODULE EclBlackOilFluidSystemNonStatic diff --git a/tests/material/test_eclblackoilpvt.cpp b/tests/material/test_eclblackoilpvt.cpp index d78ed61c984..3cc4801b223 100644 --- a/tests/material/test_eclblackoilpvt.cpp +++ b/tests/material/test_eclblackoilpvt.cpp @@ -29,10 +29,6 @@ */ #include "config.h" -#if !HAVE_ECL_INPUT -#error "The test for the black oil PVT classes requires eclipse input support in opm-common" -#endif - #include #define BOOST_TEST_MODULE EclBlackOilPvt diff --git a/tests/material/test_eclmateriallawmanager.cpp b/tests/material/test_eclmateriallawmanager.cpp index 35f1975bd7e..2ca5d3eeff0 100644 --- a/tests/material/test_eclmateriallawmanager.cpp +++ b/tests/material/test_eclmateriallawmanager.cpp @@ -30,10 +30,6 @@ */ #include "config.h" -#if !HAVE_ECL_INPUT -#error "The test for EclMaterialLawManager requires eclipse input support in opm-common" -#endif - #include #define BOOST_TEST_MODULE EclMaterialLawManager diff --git a/tests/material/test_fluidsystems.cpp b/tests/material/test_fluidsystems.cpp index 910d8b0e465..6b7fe534909 100644 --- a/tests/material/test_fluidsystems.cpp +++ b/tests/material/test_fluidsystems.cpp @@ -72,11 +72,9 @@ #include #include -#if HAVE_ECL_INPUT #include #include #include -#endif // check that the blackoil fluid system implements all non-standard functions template @@ -85,13 +83,11 @@ void ensureBlackoilApi() // here we don't want to call these methods at runtime, we just want to make sure // that they compile while (false) { -#if HAVE_ECL_INPUT auto python = std::make_shared(); Opm::Deck deck; Opm::EclipseState eclState(deck); Opm::Schedule schedule(deck, eclState, python); FluidSystem::initFromState(eclState, schedule); -#endif using Scalar = typename FluidSystem::Scalar; using FluidState = Opm::BlackOilFluidState; diff --git a/tests/material/test_h2brinepvt.cpp b/tests/material/test_h2brinepvt.cpp index bea5f8b60cd..62c8ce414bb 100644 --- a/tests/material/test_h2brinepvt.cpp +++ b/tests/material/test_h2brinepvt.cpp @@ -34,10 +34,6 @@ #define BOOST_TEST_MODULE H2BrinePvt #include -#if !HAVE_ECL_INPUT -#error "The test for the H2-brine PVT classes requires eclipse input support in opm-common" -#endif - #include #include #include diff --git a/tests/material/test_hysteresis.cpp b/tests/material/test_hysteresis.cpp index 307c00b7514..23d7412b3c8 100644 --- a/tests/material/test_hysteresis.cpp +++ b/tests/material/test_hysteresis.cpp @@ -30,10 +30,6 @@ */ #include "config.h" -#if !HAVE_ECL_INPUT -#error "The test for hysteresis requires eclipse input support in opm-common" -#endif - #include #define BOOST_TEST_MODULE HYSTERESIS @@ -2705,4 +2701,4 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(HysteresisKilloughGasWaterFix, Scalar, Types) BOOST_CHECK_SMALL(kr[Fixture::oilPhaseIdx], tol); // no oil BOOST_CHECK_SMALL(Krg-kr[Fixture::gasPhaseIdx], tol); } -} \ No newline at end of file +} diff --git a/tests/test_PhaseUsageInfo.cpp b/tests/test_PhaseUsageInfo.cpp index da68cef39ef..0a4408b1694 100644 --- a/tests/test_PhaseUsageInfo.cpp +++ b/tests/test_PhaseUsageInfo.cpp @@ -26,10 +26,8 @@ #include #include "config.h" -#if HAVE_ECL_INPUT #include #include -#endif #include #include @@ -62,7 +60,6 @@ BOOST_AUTO_TEST_CASE(default_constructor) BOOST_TEST_MESSAGE("Default constructor test passed."); } -#if HAVE_ECL_INPUT BOOST_AUTO_TEST_CASE(constructor_with_phases) { // water and oil active, gas inactive @@ -211,5 +208,5 @@ END BOOST_CHECK(pu.activeCompToActivePhaseIdx(1) == pu.canonicalToActivePhaseIdx(PhaseUsage::gasPhaseIdx) ); BOOST_CHECK(pu.activePhaseToActiveCompIdx(2) == 2); } -#endif + }