preCICE v3.1.1
Loading...
Searching...
No Matches
helper.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <memory>
4
8
9namespace precice::testing {
11{
12 bool requiresInitialization = false;
13 bool exchangeSubsteps = true;
14 return std::make_shared<cplscheme::CouplingData>(std::move(data), std::move(mesh), requiresInitialization, exchangeSubsteps, cplscheme::CouplingData::Direction::Send);
15}
16} // namespace precice::testing
contains the testing framework.
Definition helper.hpp:9
cplscheme::PtrCouplingData makeCouplingData(mesh::PtrData data, mesh::PtrMesh mesh, bool exchangeSubsteps)
Definition helper.hpp:10