10#ifndef ROL_TYPEB_PRIMALINTERIORPOINTALGORITHM_DEF_HPP
11#define ROL_TYPEB_PRIMALINTERIORPOINTALGORITHM_DEF_HPP
18template<
typename Real>
27 ParameterList& steplist = list.sublist(
"Step").sublist(
"Interior Point");
28 state_->searchSize = steplist.get(
"Initial Barrier Parameter", 1.0);
29 mumin_ = steplist.get(
"Minimum Barrier Parameter", 1e-4);
30 mumax_ = steplist.get(
"Maximum Barrier Parameter", 1e8);
31 rho_ = steplist.get(
"Barrier Penalty Reduction Factor", 0.5);
33 kappaD_ = steplist.get(
"Linear Damping Coefficient", 1.e-4);
34 print_ = steplist.sublist(
"Subproblem").get(
"Print History",
false);
36 gtol_ = steplist.sublist(
"Subproblem").get(
"Initial Optimality Tolerance", 1e-2);
38 int maxit = steplist.sublist(
"Subproblem").get(
"Iteration Limit", 1000);
39 list_.sublist(
"Status Test").set(
"Iteration Limit", maxit);
41 gtolrate_ = steplist.sublist(
"Subproblem").get(
"Optimality Tolerance Reduction Factor", 0.1);
42 mingtol_ =
static_cast<Real
>(1e-2)*list.sublist(
"Status Test").get(
"Gradient Tolerance", 1e-8);
44 stepname_ = steplist.sublist(
"Subproblem").get(
"Step Type",
"Augmented Lagrangian");
47 verbosity_ = list.sublist(
"General").get(
"Output Level", 0);
53template<
typename Real>
59 std::ostream &outStream) {
61 if (
proj_ == nullPtr) {
62 proj_ = makePtr<PolyhedralProjection<Real>>(makePtrFromRef(bnd));
65 proj_->project(x,outStream);
76template<
typename Real>
81 std::ostream &outStream) {
98 proj_->project(pwa,outStream);
106template<
typename Real>
111 std::ostream &outStream ) {
113 Ptr<Vector<Real>> pwa = x.
clone();
119 Ptr<TypeU::Algorithm<Real>> algo;
126 list_.sublist(
"Status Test").set(
"Gradient Tolerance",
gtol_);
127 list_.sublist(
"Status Test").set(
"Step Tolerance",
stol_);
130 *
proj_->getLinearConstraint(),
131 *
proj_->getMultiplier(),
132 *
proj_->getResidual(),outStream);
133 else algo->run(x,g,ipobj,outStream);
135 state_->nfval += algo->getState()->nfval;
136 state_->ngrad += algo->getState()->ngrad;
144 state_->iterateVec->set(x);
168template<
typename Real>
170 std::ios_base::fmtflags osFlags(os.flags());
172 os << std::string(109,
'-') << std::endl;
173 os <<
"Interior Point Solver";
174 os <<
" status output definitions" << std::endl << std::endl;
175 os <<
" iter - Number of iterates (steps taken)" << std::endl;
176 os <<
" fval - Objective function value" << std::endl;
177 os <<
" gnorm - Norm of the gradient" << std::endl;
178 os <<
" snorm - Norm of the step (update to optimization vector)" << std::endl;
179 os <<
" penalty - Penalty parameter for bound constraints" << std::endl;
180 os <<
" #fval - Cumulative number of times the objective function was evaluated" << std::endl;
181 os <<
" #grad - Cumulative number of times the gradient was computed" << std::endl;
182 os <<
" optTol - Subproblem optimality tolerance" << std::endl;
183 os <<
" subiter - Number of subproblem iterations" << std::endl;
184 os << std::string(109,
'-') << std::endl;
188 os << std::setw(6) << std::left <<
"iter";
189 os << std::setw(15) << std::left <<
"fval";
190 os << std::setw(15) << std::left <<
"gnorm";
191 os << std::setw(15) << std::left <<
"snorm";
192 os << std::setw(10) << std::left <<
"penalty";
193 os << std::setw(8) << std::left <<
"#fval";
194 os << std::setw(8) << std::left <<
"#grad";
195 os << std::setw(10) << std::left <<
"optTol";
196 os << std::setw(8) << std::left <<
"subIter";
201template<
typename Real>
203 std::ios_base::fmtflags osFlags(os.flags());
204 os << std::endl <<
"Interior Point Solver (Type B, Bound Constraints)";
206 os <<
"Subproblem Solver: " <<
stepname_ << std::endl;
210template<
typename Real>
212 std::ios_base::fmtflags osFlags(os.flags());
213 os << std::scientific << std::setprecision(6);
216 if (
state_->iter == 0 ) {
218 os << std::setw(6) << std::left <<
state_->iter;
219 os << std::setw(15) << std::left <<
state_->value;
220 os << std::setw(15) << std::left <<
state_->gnorm;
221 os << std::setw(15) << std::left <<
"---";
222 os << std::scientific << std::setprecision(2);
223 os << std::setw(10) << std::left <<
state_->searchSize;
224 os << std::setw(8) << std::left <<
state_->nfval;
225 os << std::setw(8) << std::left <<
state_->ngrad;
226 os << std::setw(10) << std::left <<
"---";
227 os << std::setw(8) << std::left <<
"---";
232 os << std::setw(6) << std::left <<
state_->iter;
233 os << std::setw(15) << std::left <<
state_->value;
234 os << std::setw(15) << std::left <<
state_->gnorm;
235 os << std::setw(15) << std::left <<
state_->snorm;
236 os << std::scientific << std::setprecision(2);
237 os << std::setw(10) << std::left <<
state_->searchSize;
238 os << std::scientific << std::setprecision(6);
239 os << std::setw(8) << std::left <<
state_->nfval;
240 os << std::setw(8) << std::left <<
state_->ngrad;
241 os << std::scientific << std::setprecision(2);
242 os << std::setw(10) << std::left <<
gtol_;
243 os << std::scientific << std::setprecision(6);
virtual void initialize(const Vector< Real > &x)
Initialize temporary variables.
Provides the interface to apply upper and lower bound constraints.
virtual void projectInterior(Vector< Real > &x)
Project optimization variables into the interior of the feasible set.
void update(const Vector< Real > &x, UpdateType type, int iter=-1)
void gradient(Vector< Real > &g, const Vector< Real > &x, Real &tol)
void updatePenalty(const Real mu)
Real getObjectiveValue(const Vector< Real > &x, Real &tol)
Provides the interface to evaluate objective functions.
Provides interface for and implements limited-memory secant operators.
Provides an interface to check status of optimization algorithms.
Ptr< PolyhedralProjection< Real > > proj_
void initialize(const Vector< Real > &x, const Vector< Real > &g)
Algorithm()
Constructor, given a step and a status test.
virtual void writeExitStatus(std::ostream &os) const
const Ptr< AlgorithmState< Real > > state_
const Ptr< CombinedStatusTest< Real > > status_
void writeName(std::ostream &os) const override
Print step name.
const Ptr< Secant< Real > > secant_
void run(Vector< Real > &x, const Vector< Real > &g, Objective< Real > &obj, BoundConstraint< Real > &bnd, std::ostream &outStream=std::cout) override
Run algorithm on bound constrained problems (Type-B). This general interface supports the use of dual...
void writeOutput(std::ostream &os, const bool write_header=false) const override
Print iterate status.
void updateState(const Vector< Real > &x, InteriorPointObjective< Real > &ipobj, BoundConstraint< Real > &bnd, Vector< Real > &pwa, std::ostream &outStream=std::cout)
void initialize(Vector< Real > &x, const Vector< Real > &g, InteriorPointObjective< Real > &ipobj, BoundConstraint< Real > &bnd, Vector< Real > &pwa, std::ostream &outStream=std::cout)
InteriorPointAlgorithm(ParameterList &list, const Ptr< Secant< Real > > &secant=nullPtr)
void writeHeader(std::ostream &os) const override
Print iterate header.
Defines the linear algebra or vector space interface.
virtual Real norm() const =0
Returns where .
virtual void set(const Vector &x)
Set where .
virtual ROL::Ptr< Vector > clone() const =0
Clone to make a new (uninitialized) vector.
virtual void axpy(const Real alpha, const Vector &x)
Compute where .
Ptr< Algorithm< Real > > AlgorithmFactory(ParameterList &parlist, const Ptr< Secant< Real > > &secant=nullPtr)
Real ROL_EPSILON(void)
Platform-dependent machine epsilon.