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"
42template <
class Scalar>
192template <
class Scalar>
200 return nonlinearSolver.
solve(x,solveCriteria,delta);
207template <
class Scalar>
213template <
class Scalar>
220template <
class Scalar>
227template <
class Scalar>
233template <
class Scalar>
240template <
class Scalar>
247template <
class Scalar>
251 true, std::logic_error,
252 "Error, the subclass object described as " << this->description() <<
" did not"
253 " override this function!"
Pure abstract base interface for evaluating a stateless "model" that can be mapped into a number of d...
Base class for all nonlinear equation solvers.
virtual void set_W_is_current(bool W_is_current)
Set 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.
virtual RCP< NonlinearSolverBase< Scalar > > cloneNonlinearSolver() const
Clone the solver algorithm if supported.
virtual RCP< const ModelEvaluator< Scalar > > getModel() const =0
Get the model that defines the nonlinear equations.
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 RCP< LinearOpWithSolveBase< Scalar > > get_nonconst_W(const bool forceUpToDate=false)
Get a nonconst RCP to the Jacobian if available.
virtual RCP< const LinearOpWithSolveBase< Scalar > > get_W() const
Get a const RCP to the Jacobian if available.
virtual void setModel(const RCP< const ModelEvaluator< Scalar > > &model)=0
Set the model that defines the nonlinear equations.
virtual bool is_W_current() const
Returns true if *get_W() is current with respect to *get_current_x().
virtual bool supportsCloning() const
Return if this solver object supports cloning or not.
Abstract interface for finite-dimensional dense vectors.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
T_To & dyn_cast(T_From &from)
Simple struct that defines the requested solution criteria for a solve.
Simple struct for the return status from a solve.