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
@@ -1,5 +1,5 @@
#include <pybind11/pybind11.h>
#include "sunbeam.hpp"
#include "common.hpp"
PYBIND11_MODULE(libopmcommon_python, module) {
@@ -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)
+1 -1
View File
@@ -1,6 +1,6 @@
#include <opm/parser/eclipse/EclipseState/Schedule/Well/Connection.hpp>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {
+1 -1
View File
@@ -2,7 +2,7 @@
#include <pybind11/pybind11.h>
#include "converters.hpp"
#include "sunbeam.hpp"
#include "common.hpp"
namespace {
+1 -1
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"
+1 -1
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 {
+1 -1
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)
+1 -1
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 {
+1 -1
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 {
+1 -1
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 {
+1 -1
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 {
+2 -2
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 {
+1 -1
View File
@@ -4,7 +4,7 @@
#include <pybind11/stl.h>
#include <pybind11/chrono.h>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {
+1 -1
View File
@@ -1,6 +1,6 @@
#include <opm/parser/eclipse/EclipseState/Tables/TableManager.hpp>
#include "sunbeam.hpp"
#include "common.hpp"
namespace {
+1 -1
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 {
+2 -2
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++',