add mpi serialization for Action::ActionX

This commit is contained in:
Arne Morten Kvarving
2019-12-18 11:08:55 +01:00
parent 92811754a8
commit 9fb68ef289
3 changed files with 86 additions and 0 deletions

View File

@@ -39,6 +39,7 @@
#include <opm/parser/eclipse/EclipseState/IOConfig/IOConfig.hpp>
#include <opm/parser/eclipse/EclipseState/IOConfig/RestartConfig.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Action/ActionAST.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Action/ActionX.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Action/ASTNode.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Action/Condition.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Events.hpp>
@@ -444,6 +445,22 @@ Opm::Action::Condition getCondition()
val1.cmp_string = "test";
return val1;
}
Opm::Action::ActionX getActionX()
{
std::shared_ptr<Opm::Action::ASTNode> node;
node.reset(new Opm::Action::ASTNode(number, FuncType::field,
"test1", {"test2"}, 1.0, {}));
Opm::Action::AST ast(node);
return Opm::Action::ActionX("test", 1, 2.0, 3,
{Opm::DeckKeyword("test", {"test",1},
{getDeckRecord(), getDeckRecord()},
true, false)},
ast, {getCondition()}, 4, 5);
}
#endif
@@ -2190,6 +2207,17 @@ BOOST_AUTO_TEST_CASE(Condition)
}
BOOST_AUTO_TEST_CASE(ActionX)
{
#ifdef HAVE_MPI
Opm::Action::ActionX val1 = getActionX();
auto val2 = PackUnpack(val1);
BOOST_CHECK(std::get<1>(val2) == std::get<2>(val2));
BOOST_CHECK(val1 == std::get<0>(val2));
#endif
}
bool init_unit_test_func()
{
return true;