47 using AbstractSolverType = Dune::InverseOperator<Vector, Vector>;
49 using AbstractOperatorType = Dune::AssembledLinearOperator<Matrix, Vector, Vector>;
51 using AbstractOperatorPtrType = std::unique_ptr<AbstractOperatorType>;
52 using AbstractSolverPtrType = std::unique_ptr<AbstractSolverType>;
53 using GpuCommunicationType = std::conditional_t<
54 std::is_same_v<Comm, Dune::Communication<int>>,
61 std::size_t pressureIndex,
68 void apply(Vector& x, Vector&
y, Dune::InverseOperatorResult&
result);
71 AbstractOperatorPtrType m_operator;
72 AbstractSolverPtrType m_solver;
75 std::shared_ptr<GpuCommunicationType> m_gpuCommunication;
78 std::tuple<AbstractOperatorPtrType, AbstractSolverPtrType, std::reference_wrapper<AbstractPreconditionerType>, std::shared_ptr<GpuCommunicationType>>&&
constexpr auto getPropValue()
get the value data member of a property
Definition propertysystem.hh:240