19 #include "Teuchos_GlobalMPISession.hpp"
20 #include "Teuchos_XMLParameterListHelpers.hpp"
21 #include "Teuchos_LAPACK.hpp"
33 int main(
int argc,
char *argv[]) {
35 typedef std::vector<RealT> vector;
41 Teuchos::GlobalMPISession mpiSession(&argc, &argv);
44 int iprint = argc - 1;
45 ROL::Ptr<std::ostream> outStream;
48 outStream = ROL::makePtrFromRef(std::cout);
50 outStream = ROL::makePtrFromRef(bhs);
62 ROL::Ptr<vector> x_ptr = ROL::makePtr<vector>(nx+2, 1.0);
63 ROL::Ptr<vector> y_ptr = ROL::makePtr<vector>(nx+2, 0.0);
64 for (uint i=0; i<nx+2; i++) {
77 ROL::Ptr<vector> l_ptr = ROL::makePtr<vector>(nx+2,0.0);
78 ROL::Ptr<vector> u_ptr = ROL::makePtr<vector>(nx+2,1.0);
79 ROL::Ptr<V> lo = ROL::makePtr<SV>(l_ptr);
80 ROL::Ptr<V> up = ROL::makePtr<SV>(u_ptr);
85 std::string filename =
"input.xml";
86 auto parlist = ROL::getParametersFromXmlFile( filename );
89 parlist->sublist(
"General").sublist(
"Krylov").set(
"Absolute Tolerance",1.e-8);
90 parlist->sublist(
"General").sublist(
"Krylov").set(
"Relative Tolerance",1.e-4);
91 parlist->sublist(
"General").sublist(
"Krylov").set(
"Iteration Limit",50);
93 parlist->sublist(
"Step").sublist(
"Primal Dual Active Set").set(
"Relative Step Tolerance",1.e-10);
94 parlist->sublist(
"Step").sublist(
"Primal Dual Active Set").set(
"Relative Gradient Tolerance",1.e-8);
95 parlist->sublist(
"Step").sublist(
"Primal Dual Active Set").set(
"Iteration Limit", 10);
96 parlist->sublist(
"Step").sublist(
"Primal Dual Active Set").set(
"Dual Scaling",(alpha>0.0)?alpha:1.e-4);
98 parlist->sublist(
"Status Test").set(
"Gradient Tolerance",1.e-12);
99 parlist->sublist(
"Status Test").set(
"Step Tolerance",1.e-16);
100 parlist->sublist(
"Status Test").set(
"Iteration Limit",100);
107 algo.
run(x, obj, bcon, *outStream);
110 std::ofstream file_pdas;
111 file_pdas.open(
"control_PDAS.txt");
112 for (
unsigned i = 0; i < (unsigned)nx+2; i++ ) {
113 file_pdas << (*x_ptr)[i] <<
"\n";
118 parlist->sublist(
"General").sublist(
"Krylov").set(
"Absolute Tolerance",1.e-4);
119 parlist->sublist(
"General").sublist(
"Krylov").set(
"Relative Tolerance",1.e-2);
120 parlist->sublist(
"General").sublist(
"Krylov").set(
"Iteration Limit",50);
127 algo.
run(y,obj,bcon,*outStream);
130 std::ofstream file_tr;
131 file_tr.open(
"control_TR.txt");
132 for (
unsigned i = 0; i < (unsigned)nx+2; i++ ) {
133 file_tr << (*y_ptr)[i] <<
"\n";
137 std::vector<RealT> u(nx,0.0);
138 std::vector<RealT> param(4,0.0);
141 file.open(
"state.txt");
142 for (
unsigned i=0; i<(unsigned)nx; i++) {
143 file << i/((
RealT)(nx+1)) <<
" " << u[i] <<
"\n";
148 ROL::Ptr<ROL::Vector<RealT> > diff = x.clone();
151 RealT error = diff->norm();
152 *outStream <<
"\nError between PDAS solution and TR solution is " << error <<
"\n";
153 errorFlag = ((error > 1e2*std::sqrt(ROL::ROL_EPSILON<RealT>())) ? 1 : 0);
155 catch (std::logic_error& err) {
156 *outStream << err.what() <<
"\n";
161 std::cout <<
"End Result: TEST FAILED\n";
163 std::cout <<
"End Result: TEST PASSED\n";
typename PV< Real >::size_type size_type
Provides an interface to run the trust-region algorithm of Lin and More.
void solve_state(std::vector< Real > &u, const std::vector< Real > &z, const std::vector< Real > ¶m)
Defines the linear algebra or vector space interface.
Defines a no-output stream class ROL::NullStream and a function makeStreamPtr which either wraps a re...
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.
Provides the ROL::Vector interface for scalar values, to be used, for example, with scalar constraint...
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...
Provides the elementwise interface to apply upper and lower bound constraints.
basic_nullstream< char, char_traits< char >> nullstream
int main(int argc, char *argv[])
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.
Provides an interface to run the projected secant algorithm.
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...