58 #include "Teuchos_GlobalMPISession.hpp"
65 int main(
int argc,
char *argv[]) {
67 typedef std::vector<RealT> vector;
75 Teuchos::GlobalMPISession mpiSession(&argc, &argv);
78 int iprint = argc - 1;
79 ROL::Ptr<std::ostream> outStream;
82 outStream = ROL::makePtrFromRef(std::cout);
84 outStream = ROL::makePtrFromRef(bhs);
95 ROL::Ptr<vector> x_exact_ptr = ROL::makePtr<vector>(xdim);
96 (*x_exact_ptr)[0] = 1.0;
97 (*x_exact_ptr)[1] = 1.0;
99 ROL::Ptr<V> x = ROL::makePtr<SV>( ROL::makePtr<vector>(xdim, 0.0) );
100 ROL::Ptr<V> d = ROL::makePtr<SV>( ROL::makePtr<vector>(xdim, 0.0) );
101 ROL::Ptr<V> xtest = ROL::makePtr<SV>( ROL::makePtr<vector>(xdim, 0.0) );
103 ROL::Ptr<V> c1 = ROL::makePtr<SV>( ROL::makePtr<vector>(cdim, 1.0) );
104 ROL::Ptr<V> c2 = ROL::makePtr<SV>( ROL::makePtr<vector>(cdim, 1.0) );
105 ROL::Ptr<V> l1 = ROL::makePtr<SV>( ROL::makePtr<vector>(cdim, 1.0) );
106 ROL::Ptr<V> l2 = ROL::makePtr<SV>( ROL::makePtr<vector>(cdim, 1.0) );
113 SV x_exact( x_exact_ptr );
116 x->applyUnary(ROL::Elementwise::Fill<RealT>(2.0));
121 ROL::Ptr<OBJ> obj = ROL::makePtr<ROL::ZOO::Objective_HS39<RealT>>();
122 ROL::Ptr<EC> con1 = ROL::makePtr<ROL::ZOO::Constraint_HS39a<RealT>>();
123 ROL::Ptr<EC> con2 = ROL::makePtr<ROL::ZOO::Constraint_HS39b<RealT>>();
124 std::vector<ROL::Ptr<EC> > cvec(2); cvec[0] = con1; cvec[1] = con2;
126 ROL::Ptr<EC> con = ROL::makePtr<ROL::Constraint_Partitioned<RealT>>(cvec);
128 *outStream <<
"Checking objective" << std::endl;
129 obj->checkGradient(*x,*d,
true,*outStream);
131 *outStream <<
"\nChecking first equality constraint" << std::endl;
132 con1->checkApplyJacobian( *xtest, *d, *c1 ,
true, *outStream );
133 con1->checkApplyAdjointJacobian( *xtest, *l1, *c1, *d,
true, *outStream );
134 con1->checkApplyAdjointHessian( *xtest, *l1, *d, *xtest,
true, *outStream );
136 *outStream <<
"\nChecking second equality constraint" << std::endl;
137 con2->checkApplyJacobian( *xtest, *d, *c2,
true, *outStream );
138 con2->checkApplyAdjointJacobian( *xtest, *l2, *c2, *d,
true, *outStream );
139 con2->checkApplyAdjointHessian( *xtest, *l2, *d, *xtest,
true, *outStream );
141 *outStream <<
"\nChecking partitioned equality constraint" << std::endl;
142 con->checkApplyJacobian( *xtest, *d, *c,
true, *outStream );
143 con->checkApplyAdjointJacobian( *xtest, *l, *c, *d,
true, *outStream );
144 con->checkApplyAdjointHessian( *xtest, *l, *d, *xtest,
true, *outStream );
147 ROL::ParameterList parlist;
148 std::string stepname =
"Composite Step";
149 parlist.sublist(
"Step").sublist(stepname).sublist(
"Optimality System Solver").set(
"Nominal Relative Tolerance",1.e-4);
150 parlist.sublist(
"Step").sublist(stepname).sublist(
"Optimality System Solver").set(
"Fix Tolerance",
true);
151 parlist.sublist(
"Step").sublist(stepname).sublist(
"Tangential Subproblem Solver").set(
"Iteration Limit",20);
152 parlist.sublist(
"Step").sublist(stepname).sublist(
"Tangential Subproblem Solver").set(
"Relative Tolerance",1e-2);
153 parlist.sublist(
"Step").sublist(stepname).set(
"Output Level",0);
154 parlist.sublist(
"Status Test").set(
"Gradient Tolerance",1.e-12);
155 parlist.sublist(
"Status Test").set(
"Constraint Tolerance",1.e-12);
156 parlist.sublist(
"Status Test").set(
"Step Tolerance",1.e-18);
157 parlist.sublist(
"Status Test").set(
"Iteration Limit",100);
158 ROL::Ptr<ROL::StatusTest<RealT>>
159 status = ROL::makePtr<ROL::ConstraintStatusTest<RealT>>(parlist);
160 ROL::Ptr<ROL::Step<RealT>>
161 step = ROL::makePtr<ROL::CompositeStep<RealT>>(parlist);
164 algo.run(*x,x->dual(),*l,*c,*obj,*con,
true,*outStream);
166 x->axpy(-1.0,x_exact);
168 if( x->norm() > 1e-6 ) {
173 catch (std::logic_error& err) {
174 *outStream << err.what() <<
"\n";
179 std::cout <<
"End Result: TEST FAILED\n";
181 std::cout <<
"End Result: TEST PASSED\n";
Provides the interface to evaluate objective functions.
typename PV< Real >::size_type size_type
ROL::Ptr< Vector< Real > > CreatePartitionedVector(const ROL::Ptr< Vector< Real >> &a)
void RandomizeVector(Vector< Real > &x, const Real &lower=0.0, const Real &upper=1.0)
Fill a ROL::Vector with uniformly-distributed random numbers in the interval [lower,upper].
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...
Contains definitions for W. Hock and K. Schittkowski 39th test function.
Provides the ROL::Vector interface for scalar values, to be used, for example, with scalar constraint...
Provides an interface to run optimization algorithms.
basic_nullstream< char, char_traits< char >> nullstream
int main(int argc, char *argv[])
Defines the general constraint operator interface.