/usr/include/trilinos/Piro_RythmosStepControlFactory.hpp is in libtrilinos-piro-dev 12.12.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #ifndef __Piro_RythmosStepControlFactory_hpp__
#define __Piro_RythmosStepControlFactory_hpp__
#include "Teuchos_RCP.hpp"
#include "Rythmos_StepperBase.hpp"
#include "Rythmos_StepControlStrategyBase.hpp"
#include "Thyra_ModelEvaluator.hpp"
#include "Thyra_NonlinearSolverBase.hpp"
#include "Rythmos_ImplicitBDFStepperRampingStepControl.hpp"
namespace Piro {
template <typename Scalar>
class RythmosStepControlFactory : public Rythmos::ImplicitBDFStepperRampingStepControl<Scalar>{
public:
virtual ~RythmosStepControlFactory() {}
virtual Teuchos::RCP<Rythmos::StepControlStrategyBase<Scalar> > buildStepControl() = 0;
};
}
#endif
|