ROL
ROL_Constraint_DynamicState.hpp
Go to the documentation of this file.
1// @HEADER
2// *****************************************************************************
3// Rapid Optimization Library (ROL) Package
4//
5// Copyright 2014 NTESS and the ROL contributors.
6// SPDX-License-Identifier: BSD-3-Clause
7// *****************************************************************************
8// @HEADER
9
10#ifndef ROL_CONSTRAINT_DYNAMICSTATE_H
11#define ROL_CONSTRAINT_DYNAMICSTATE_H
12
14#include "ROL_Constraint.hpp"
15
16namespace ROL {
17
18template <class Real>
19class Constraint_DynamicState : public Constraint<Real> {
20private:
21 const Ptr<DynamicConstraint<Real>> con_;
22 const Ptr<const Vector<Real>> uo_;
23 const Ptr<const Vector<Real>> z_;
24 const Ptr<const TimeStamp<Real>> ts_;
25
26 Ptr<Vector<Real>> ijv_;
27 bool isInit_;
28
29public:
31 const Ptr<const Vector<Real>> &uo,
32 const Ptr<const Vector<Real>> &z,
33 const Ptr<const TimeStamp<Real>> &ts)
34 : con_(con), uo_(uo), z_(z), ts_(ts), isInit_(false) {}
35
36 void value(Vector<Real> &c,const Vector<Real> &u,Real &tol) {
37 con_->value(c,*uo_,u,*z_,*ts_);
38 }
39
40 void applyJacobian(Vector<Real> &jv,const Vector<Real> &v,const Vector<Real> &u,Real &tol) {
41 con_->applyJacobian_un(jv,v,*uo_,u,*z_,*ts_);
42 }
43
45 void applyAdjointJacobian(Vector<Real> &ajv,const Vector<Real> &v,const Vector<Real> &u,Real &tol) {
46 con_->applyAdjointJacobian_un(ajv,v,*uo_,u,*z_,*ts_);
47 }
48
49 void applyAdjointHessian(Vector<Real> &ahwv,const Vector<Real> &w,const Vector<Real> &v,const Vector<Real> &u,Real &tol) {
50 con_->applyAdjointHessian_un_un(ahwv,w,v,*uo_,u,*z_,*ts_);
51 }
52
53 void update( const Vector<Real> &u, bool flag = true, int iter = -1 ) {
54 //con_->update_un(u,*ts_);
55 con_->update(*uo_,u,*z_,*ts_);
56 }
57
58 void applyPreconditioner(Vector<Real> &pv,const Vector<Real> &v,const Vector<Real> &u,const Vector<Real> &g,Real &tol) {
59 if (!isInit_) {
60 ijv_ = u.clone();
61 isInit_ = true;
62 }
63 con_->applyInverseJacobian_un(*ijv_,v,*uo_,u,*z_,*ts_);
64 con_->applyInverseAdjointJacobian_un(pv,ijv_->dual(),*uo_,u,*z_,*ts_);
65 }
66
67 // Definitions for parametrized (stochastic) equality constraints
68 //void setParameter(const std::vector<Real> &param) {
69 // con_->setParameter(param);
70 // Constraint<Real>::setParameter(param);
71 //}
72
73}; // class Constraint_State
74
75} // namespace ROL
76
77#endif
void value(Vector< Real > &c, const Vector< Real > &u, Real &tol)
Evaluate the constraint operator at .
void applyAdjointHessian(Vector< Real > &ahwv, const Vector< Real > &w, const Vector< Real > &v, const Vector< Real > &u, Real &tol)
Apply the derivative of the adjoint of the constraint Jacobian at to vector in direction ,...
const Ptr< DynamicConstraint< Real > > con_
const Ptr< const Vector< Real > > z_
void applyPreconditioner(Vector< Real > &pv, const Vector< Real > &v, const Vector< Real > &u, const Vector< Real > &g, Real &tol)
Apply a constraint preconditioner at , , to vector . Ideally, this preconditioner satisfies the follo...
const Ptr< const Vector< Real > > uo_
void update(const Vector< Real > &u, bool flag=true, int iter=-1)
Update constraint functions. x is the optimization variable, flag = true if optimization variable i...
const Ptr< const TimeStamp< Real > > ts_
Constraint_DynamicState(const Ptr< DynamicConstraint< Real > > &con, const Ptr< const Vector< Real > > &uo, const Ptr< const Vector< Real > > &z, const Ptr< const TimeStamp< Real > > &ts)
void applyJacobian(Vector< Real > &jv, const Vector< Real > &v, const Vector< Real > &u, Real &tol)
Apply the constraint Jacobian at , , to vector .
void applyAdjointJacobian(Vector< Real > &ajv, const Vector< Real > &v, const Vector< Real > &u, Real &tol)
Apply the adjoint of the the constraint Jacobian at , , to vector .
Defines the general constraint operator interface.
Defines the time-dependent constraint operator interface for simulation-based optimization.
Defines the linear algebra or vector space interface.
virtual const Vector & dual() const
Return dual representation of , for example, the result of applying a Riesz map, or change of basis,...
virtual ROL::Ptr< Vector > clone() const =0
Clone to make a new (uninitialized) vector.
Contains local time step information.