51 #include "Teuchos_GlobalMPISession.hpp"
58 int main(
int argc,
char *argv[]) {
60 Teuchos::GlobalMPISession mpiSession(&argc, &argv);
63 int iprint = argc - 1;
64 ROL::Ptr<std::ostream> outStream;
67 outStream = ROL::makePtrFromRef(std::cout);
69 outStream = ROL::makePtrFromRef(bhs);
76 std::string filename =
"input.xml";
78 auto parlist = ROL::getParametersFromXmlFile( filename );
81 ROL::Ptr<ROL::Vector<RealT> > x0;
82 std::vector<ROL::Ptr<ROL::Vector<RealT> > > z;
83 ROL::Ptr<ROL::OptimizationProblem<RealT> > optProblem;
84 ROL::Ptr<ROL::BoundConstraint<RealT> > bnd;
88 int dim = x0->dimension();
89 parlist->sublist(
"General").sublist(
"Krylov").set(
"Iteration Limit", 2*dim);
92 optProblem->check(*outStream);
95 ROL::Ptr<ROL::Vector<RealT> > e = x0->clone();
99 parlist->sublist(
"Status Test").set(
"Gradient Tolerance",static_cast<RealT>(1e-6));
100 parlist->sublist(
"Step").set(
"Type",
"Moreau-Yosida Penalty");
102 optSolver.
solve(*outStream);
106 for (
int i = 0; i < static_cast<int>(z.size()); ++i) {
113 err = std::min(err,e->norm());
116 *outStream << std::endl <<
"Norm of Error: " << err << std::endl;
118 RealT tol =
static_cast<RealT>(1e-3)*std::max(z[0]->norm(),
static_cast<RealT>(1));
119 errorFlag += ((err < tol) ? 0 : 1);
121 catch (std::logic_error& err) {
122 *outStream << err.what() << std::endl;
127 std::cout <<
"End Result: TEST FAILED" << std::endl;
129 std::cout <<
"End Result: TEST PASSED" << std::endl;
Contains definitions of test objective functions.
Defines a no-output stream class ROL::NullStream and a function makeStreamPtr which either wraps a re...
Provides a simplified interface for solving a wide range of optimization problems.
basic_nullstream< char, char_traits< char >> nullstream
int main(int argc, char *argv[])
int solve(const ROL::Ptr< StatusTest< Real > > &status=ROL::nullPtr, const bool combineStatus=true)
Solve optimization problem with no iteration output.