renaming python/cxx/sunbeam*.* -> common *.*

This commit is contained in:
Steinar Foss
2019-08-15 11:19:18 +02:00
parent e25416c236
commit c94ed2f643
19 changed files with 22 additions and 22 deletions

View File

@@ -242,10 +242,10 @@ if (OPM_ENABLE_PYTHON)
python/cxx/group_tree.cpp
python/cxx/parser.cpp
python/cxx/schedule.cpp
python/cxx/sunbeam.cpp
python/cxx/sunbeam.hpp
python/cxx/sunbeam_state.cpp
python/cxx/sunbeam_state.hpp
python/cxx/common.cpp
python/cxx/common.hpp
python/cxx/common_state.cpp
python/cxx/common_state.hpp
python/cxx/table_manager.cpp
python/cxx/well.cpp
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/python/ ${CMAKE_BINARY_DIR}/python

View File

@@ -1,5 +1,5 @@
#include <pybind11/pybind11.h>
#include "sunbeam.hpp"
#include "common.hpp"
PYBIND11_MODULE(libopmcommon_python, module) {

View File

@@ -1,4 +1,4 @@
#include "sunbeam_state.hpp"
#include "common_state.hpp"
SunbeamState::SunbeamState(bool file_input, const std::string& deck_input, const Opm::ParseContext& context, const Opm::Parser& parser)

View File

@@ -1,6 +1,6 @@
#include <opm/parser/eclipse/EclipseState/Schedule/Well/Connection.hpp>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {

View File

@@ -2,7 +2,7 @@
#include <pybind11/pybind11.h>
#include "converters.hpp"
#include "sunbeam.hpp"
#include "common.hpp"
namespace {

View File

@@ -5,7 +5,7 @@
#include <opm/parser/eclipse/Deck/DeckRecord.hpp>
#include <opm/parser/eclipse/Utility/Typetools.hpp>
#include "sunbeam.hpp"
#include "common.hpp"
#include "converters.hpp"

View File

@@ -1,7 +1,7 @@
#include <opm/parser/eclipse/EclipseState/Eclipse3DProperties.hpp>
#include <pybind11/stl.h>
#include "sunbeam.hpp"
#include "common.hpp"
#include "converters.hpp"
namespace {

View File

@@ -5,7 +5,7 @@
#include <opm/parser/eclipse/EclipseState/SummaryConfig/SummaryConfig.hpp>
#include <opm/parser/eclipse/EclipseState/SimulationConfig/SimulationConfig.hpp>
#include "sunbeam.hpp"
#include "common.hpp"
void sunbeam::export_EclipseConfig(py::module& module)

View File

@@ -4,7 +4,7 @@
#include <opm/parser/eclipse/EclipseState/Grid/Fault.hpp>
#include <opm/parser/eclipse/EclipseState/Grid/FaceDir.hpp>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {

View File

@@ -1,7 +1,7 @@
#include <opm/parser/eclipse/EclipseState/EclipseState.hpp>
#include <opm/parser/eclipse/EclipseState/Grid/FaultCollection.hpp>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {

View File

@@ -1,6 +1,6 @@
#include <opm/parser/eclipse/EclipseState/Schedule/Group/Group2.hpp>
#include <pybind11/stl.h>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {

View File

@@ -1,7 +1,7 @@
#include <opm/parser/eclipse/EclipseState/Schedule/Group/GTNode.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
#include "sunbeam.hpp"
#include "common.hpp"
#include "converters.hpp"
namespace {

View File

@@ -3,8 +3,8 @@
#include <opm/parser/eclipse/Deck/Deck.hpp>
#include <pybind11/stl.h>
#include "sunbeam_state.hpp"
#include "sunbeam.hpp"
#include "common_state.hpp"
#include "common.hpp"
namespace {

View File

@@ -4,7 +4,7 @@
#include <pybind11/stl.h>
#include <pybind11/chrono.h>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {

View File

@@ -1,6 +1,6 @@
#include <opm/parser/eclipse/EclipseState/Tables/TableManager.hpp>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {

View File

@@ -1,6 +1,6 @@
#include <opm/parser/eclipse/EclipseState/Schedule/Well/Well2.hpp>
#include <pybind11/stl.h>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {

View File

@@ -35,10 +35,10 @@ ext_modules = [
'cxx/group_tree.cpp',
'cxx/parser.cpp',
'cxx/schedule.cpp',
'cxx/sunbeam_state.cpp',
'cxx/common_state.cpp',
'cxx/table_manager.cpp',
'cxx/well.cpp',
'cxx/sunbeam.cpp'
'cxx/common.cpp'
],
libraries=['opmcommon', 'boost_filesystem', 'boost_regex', 'ecl'],
language='c++',