10#ifndef ROL_DYKSTRAPROJECTION_DEF_H
11#define ROL_DYKSTRAPROJECTION_DEF_H
15template<
typename Real>
43 mul_->setScalar(
static_cast<Real
>(1));
44 con_->applyAdjointJacobian(*
z_,*
mul_,xprim,tol);
51template<
typename Real>
60 atol_ = list.sublist(
"General").sublist(
"Polyhedral Projection").get(
"Absolute Tolerance",
DEFAULT_atol_);
61 rtol_ = list.sublist(
"General").sublist(
"Polyhedral Projection").get(
"Relative Tolerance",
DEFAULT_rtol_);
62 maxit_ = list.sublist(
"General").sublist(
"Polyhedral Projection").get(
"Iteration Limit",
DEFAULT_maxit_);
66template<
typename Real>
68 if (
con_ == nullPtr) {
76template<
typename Real>
81template<
typename Real>
88template<
typename Real>
94template<
typename Real>
98 Real lam = -rhs/
cdot_;
106 x.
scale(
static_cast<Real
>(-1));
111template<
typename Real>
113 const Real one(1), xnorm(x.
norm()), ctol(std::min(
atol_,
rtol_*xnorm));
114 Real norm1(0), norm2(0), rnorm(0);
115 p_->zero();
q_->zero();
116 std::ios_base::fmtflags streamFlags(stream.flags());
118 stream << std::scientific << std::setprecision(6);
120 stream <<
" Polyhedral Projection using Dykstra's Algorithm" << std::endl;
122 stream << std::setw(6) << std::left <<
"iter";
123 stream << std::setw(15) << std::left <<
"con norm";
124 stream << std::setw(15) << std::left <<
"bnd norm";
125 stream << std::setw(15) << std::left <<
"error";
126 stream << std::setw(15) << std::left <<
"tol";
129 for (
int cnt=0; cnt <
maxit_; ++cnt) {
136 norm1 =
tmp_->norm();
143 norm2 =
tmp_->norm();
147 rnorm = std::sqrt(norm1*norm1 + norm2*norm2);
150 stream << std::setw(6) << std::left << cnt;
151 stream << std::setw(15) << std::left << norm1;
152 stream << std::setw(15) << std::left << norm2;
153 stream << std::setw(15) << std::left << rnorm;
154 stream << std::setw(15) << std::left << ctol;
157 if (rnorm <= ctol)
break;
164 stream <<
">>> ROL::PolyhedralProjection::project : Projection may be inaccurate! rnorm = ";
165 stream << rnorm <<
" rtol = " << ctol << std::endl;
167 stream.flags(streamFlags);
Provides the interface to apply upper and lower bound constraints.
Defines the general constraint operator interface.
Real residual_1d(const Vector< Real > &x) const
void residual_nd(Vector< Real > &r, const Vector< Real > &y) const
void project(Vector< Real > &x, std::ostream &stream=std::cout) override
void project_Dykstra(Vector< Real > &x, std::ostream &stream=std::cout) const
Ptr< Vector< Real > > tmp_
void project_con(Vector< Real > &x, const Vector< Real > &y) const
DykstraProjection(const Vector< Real > &xprim, const Vector< Real > &xdual, const Ptr< BoundConstraint< Real > > &bnd, const Ptr< Constraint< Real > > &con, const Vector< Real > &mul, const Vector< Real > &res)
void project_bnd(Vector< Real > &x, const Vector< Real > &y) const
const Ptr< Constraint< Real > > con_
Ptr< Vector< Real > > xprim_
const Ptr< BoundConstraint< Real > > bnd_
Ptr< Vector< Real > > mul_
Ptr< Vector< Real > > res_
PolyhedralProjection(const Ptr< BoundConstraint< Real > > &bnd)
Defines the linear algebra or vector space interface.
virtual Real norm() const =0
Returns where .
virtual void set(const Vector &x)
Set where .
virtual void scale(const Real alpha)=0
Compute where .
virtual void plus(const Vector &x)=0
Compute , where .
virtual ROL::Ptr< Vector > clone() const =0
Clone to make a new (uninitialized) vector.
virtual int dimension() const
Return dimension of the vector space.
virtual void axpy(const Real alpha, const Vector &x)
Compute where .
Real ROL_EPSILON(void)
Platform-dependent machine epsilon.