10 #ifndef THYRA_NONLINEAR_SOLVER_BASE_HPP
11 #define THYRA_NONLINEAR_SOLVER_BASE_HPP
13 #include "Thyra_LinearOpWithSolveBase.hpp"
14 #include "Thyra_ModelEvaluator.hpp"
15 #include "Teuchos_Describable.hpp"
16 #include "Teuchos_VerboseObject.hpp"
17 #include "Teuchos_ParameterListAcceptor.hpp"
42 template <
class Scalar>
192 template <
class Scalar>
200 return nonlinearSolver.
solve(x,solveCriteria,delta);
207 template <
class Scalar>
213 template <
class Scalar>
217 return Teuchos::null;
220 template <
class Scalar>
224 return Teuchos::null;
227 template <
class Scalar>
233 template <
class Scalar>
237 return Teuchos::null;
240 template <
class Scalar>
244 return Teuchos::null;
247 template <
class Scalar>
251 true, std::logic_error,
252 "Error, the subclass object described as " << this->description() <<
" did not"
253 " override this function!"
261 #endif // THYRA_NONLINEAR_SOLVER_BASE_HPP
Pure abstract base interface for evaluating a stateless "model" that can be mapped into a number of d...
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
virtual RCP< LinearOpWithSolveBase< Scalar > > get_nonconst_W(const bool forceUpToDate=false)
Get a nonconst RCP to the Jacobian if available.
Base class for all nonlinear equation solvers.
virtual RCP< NonlinearSolverBase< Scalar > > cloneNonlinearSolver() const
Clone the solver algorithm if supported.
virtual bool supportsCloning() const
Return if this solver object supports cloning or not.
virtual RCP< const ModelEvaluator< Scalar > > getModel() const =0
Get the model that defines the nonlinear equations.
virtual void set_W_is_current(bool W_is_current)
Set if *get_W() is current with respect to *get_current_x().
Abstract interface for finite-dimensional dense vectors.
Simple struct for the return status from a solve.
virtual RCP< const LinearOpWithSolveBase< Scalar > > get_W() const
Get a const RCP to the Jacobian if available.
virtual SolveStatus< Scalar > solve(VectorBase< Scalar > *x, const SolveCriteria< Scalar > *solveCriteria=NULL, VectorBase< Scalar > *delta=NULL)=0
Solve a set of nonlinear equations from a given starting point.
const SolveStatus< Scalar > solve(NonlinearSolverBase< Scalar > &nonlinearSolver, VectorBase< Scalar > *x, const SolveCriteria< Scalar > *solveCriteria=NULL, VectorBase< Scalar > *delta=NULL)
virtual bool is_W_current() const
Returns true if *get_W() is current with respect to *get_current_x().
virtual RCP< const VectorBase< Scalar > > get_current_x() const
Return the current value of the solution x as computed in the last solve() operation if supported...
Simple struct that defines the requested solution criteria for a solve.
virtual void setModel(const RCP< const ModelEvaluator< Scalar > > &model)=0
Set the model that defines the nonlinear equations.