Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 3 : //* 4 : //* All rights reserved, see COPYRIGHT for full restrictions 5 : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT 6 : //* 7 : //* Licensed under LGPL 2.1, please see LICENSE for details 8 : //* https://www.gnu.org/licenses/lgpl-2.1.html 9 : 10 : #ifdef MOOSE_MFEM_ENABLED 11 : 12 : #pragma once 13 : #include "Executioner.h" 14 : #include "MFEMProblemData.h" 15 : 16 : class MFEMProblem; 17 : 18 : class MFEMExecutioner : public Executioner 19 : { 20 : public: 21 : static InputParameters validParams(); 22 : 23 : MFEMExecutioner(const InputParameters & params); 24 : 25 236 : virtual bool lastSolveConverged() const override { return true; }; 26 : 27 : /// Virtual method to construct the ProblemOperator. Call for default problems. 28 : virtual void constructProblemOperator() = 0; 29 : 30 : protected: 31 : MFEMProblem & _mfem_problem; 32 : MFEMProblemData & _problem_data; 33 : }; 34 : 35 : #endif