10 #ifndef ROL_UPPER_BOUND_TO_CONSTRAINT_H
11 #define ROL_UPPER_BOUND_TO_CONSTRAINT_H
23 template<
typename Real>
26 Ptr<Vector<Real>>
up_;
void applyJacobian(Vector< Real > &jv, const Vector< Real > &v, const Vector< Real > &x, Real &tol) override
Apply the constraint Jacobian at , , to vector .
void applyAdjointHessian(Vector< Real > &ahuv, const Vector< Real > &u, const Vector< Real > &v, const Vector< Real > &x, Real &tol) override
Apply the derivative of the adjoint of the constraint Jacobian at to vector in direction ...
Defines the linear algebra or vector space interface.
void applyAdjointJacobian(Vector< Real > &ajv, const Vector< Real > &v, const Vector< Real > &x, Real &tol) override
Apply the adjoint of the the constraint Jacobian at , , to vector .
Ptr< Vector< Real > > up_
UpperBoundToConstraint(BoundConstraint< Real > &bnd)
Provides the interface to apply upper and lower bound constraints.
void value(Vector< Real > &c, const Vector< Real > &x, Real &tol) override
Evaluate the constraint operator at .
Provides an implementation for upper bound constraints.
Defines the general constraint operator interface.