|
| | Objective_Cantilever () |
| |
| Real | value (const std::vector< Real > &x, Real &tol) |
| |
| void | gradient (std::vector< Real > &g, const std::vector< Real > &x, Real &tol) |
| |
| virtual void | update (const std::vector< Real > &x, bool flag=true, int iter=-1) |
| |
| void | update (const Vector< Real > &x, bool flag=true, int iter=-1) override |
| | Update objective function.
|
| |
| virtual void | update (const std::vector< Real > &x, UpdateType type, int iter=-1) |
| |
| void | update (const Vector< Real > &x, UpdateType type, int iter=-1) override |
| | Update objective function.
|
| |
| Real | value (const Vector< Real > &x, Real &tol) override |
| | Compute value.
|
| |
| void | gradient (Vector< Real > &g, const Vector< Real > &x, Real &tol) override |
| | Compute gradient.
|
| |
| virtual Real | dirDeriv (const std::vector< Real > &x, const std::vector< Real > &d, Real &tol) |
| |
| Real | dirDeriv (const Vector< Real > &x, const Vector< Real > &d, Real &tol) override |
| | Compute directional derivative.
|
| |
| virtual void | hessVec (std::vector< Real > &hv, const std::vector< Real > &v, const std::vector< Real > &x, Real &tol) |
| |
| void | hessVec (Vector< Real > &hv, const Vector< Real > &v, const Vector< Real > &x, Real &tol) override |
| | Apply Hessian approximation to vector.
|
| |
| virtual void | invHessVec (std::vector< Real > &hv, const std::vector< Real > &v, const std::vector< Real > &x, Real &tol) |
| |
| void | invHessVec (Vector< Real > &hv, const Vector< Real > &v, const Vector< Real > &x, Real &tol) override |
| | Apply inverse Hessian approximation to vector.
|
| |
| virtual void | precond (std::vector< Real > &Pv, const std::vector< Real > &v, const std::vector< Real > &x, Real &tol) |
| |
| void | precond (Vector< Real > &Pv, const Vector< Real > &v, const Vector< Real > &x, Real &tol) override |
| | Apply preconditioner to vector.
|
| |
| virtual | ~Objective () |
| |
| | Objective () |
| |
| virtual void | prox (Vector< Real > &Pv, const Vector< Real > &v, Real t, Real &tol) |
| | Compute the proximity operator.
|
| |
| virtual void | proxJacVec (Vector< Real > &Jv, const Vector< Real > &v, const Vector< Real > &x, Real t, Real &tol) |
| | Apply the Jacobian of the proximity operator.
|
| |
| virtual std::vector< std::vector< Real > > | checkGradient (const Vector< Real > &x, const Vector< Real > &d, const bool printToStream=true, std::ostream &outStream=std::cout, const int numSteps=ROL_NUM_CHECKDERIV_STEPS, const int order=1) |
| | Finite-difference gradient check.
|
| |
| virtual std::vector< std::vector< Real > > | checkGradient (const Vector< Real > &x, const Vector< Real > &g, const Vector< Real > &d, const bool printToStream=true, std::ostream &outStream=std::cout, const int numSteps=ROL_NUM_CHECKDERIV_STEPS, const int order=1) |
| | Finite-difference gradient check.
|
| |
| virtual std::vector< std::vector< Real > > | checkGradient (const Vector< Real > &x, const Vector< Real > &d, const std::vector< Real > &steps, const bool printToStream=true, std::ostream &outStream=std::cout, const int order=1) |
| | Finite-difference gradient check with specified step sizes.
|
| |
| virtual std::vector< std::vector< Real > > | checkGradient (const Vector< Real > &x, const Vector< Real > &g, const Vector< Real > &d, const std::vector< Real > &steps, const bool printToStream=true, std::ostream &outStream=std::cout, const int order=1) |
| | Finite-difference gradient check with specified step sizes.
|
| |
| virtual std::vector< std::vector< Real > > | checkHessVec (const Vector< Real > &x, const Vector< Real > &v, const bool printToStream=true, std::ostream &outStream=std::cout, const int numSteps=ROL_NUM_CHECKDERIV_STEPS, const int order=1) |
| | Finite-difference Hessian-applied-to-vector check.
|
| |
| virtual std::vector< std::vector< Real > > | checkHessVec (const Vector< Real > &x, const Vector< Real > &hv, const Vector< Real > &v, const bool printToStream=true, std::ostream &outStream=std::cout, const int numSteps=ROL_NUM_CHECKDERIV_STEPS, const int order=1) |
| | Finite-difference Hessian-applied-to-vector check.
|
| |
| virtual std::vector< std::vector< Real > > | checkHessVec (const Vector< Real > &x, const Vector< Real > &v, const std::vector< Real > &steps, const bool printToStream=true, std::ostream &outStream=std::cout, const int order=1) |
| | Finite-difference Hessian-applied-to-vector check with specified step sizes.
|
| |
| virtual std::vector< std::vector< Real > > | checkHessVec (const Vector< Real > &x, const Vector< Real > &hv, const Vector< Real > &v, const std::vector< Real > &steps, const bool printToStream=true, std::ostream &outStream=std::cout, const int order=1) |
| | Finite-difference Hessian-applied-to-vector check with specified step sizes.
|
| |
| virtual std::vector< Real > | checkHessSym (const Vector< Real > &x, const Vector< Real > &v, const Vector< Real > &w, const bool printToStream=true, std::ostream &outStream=std::cout) |
| | Hessian symmetry check.
|
| |
| virtual std::vector< Real > | checkHessSym (const Vector< Real > &x, const Vector< Real > &hv, const Vector< Real > &v, const Vector< Real > &w, const bool printToStream=true, std::ostream &outStream=std::cout) |
| | Hessian symmetry check.
|
| |
| virtual std::vector< std::vector< Real > > | checkProxJacVec (const Vector< Real > &x, const Vector< Real > &v, Real t=Real(1), bool printToStream=true, std::ostream &outStream=std::cout, int numSteps=ROL_NUM_CHECKDERIV_STEPS) |
| | Finite-difference proximity operator Jacobian-applied-to-vector check.
|
| |
| virtual void | setParameter (const std::vector< Real > ¶m) |
| |
template<class Real>
class ROL::ZOO::Objective_Cantilever< Real >
Definition at line 31 of file ROL_Cantilever.hpp.