293 const bool printToStream =
true,
294 std::ostream & outStream = std::cout )
const {
300 std::vector<Real> vCheck;
304 ROL::Ptr<std::ostream> pStream;
306 pStream = ROL::makePtrFromRef(outStream);
308 pStream = ROL::makePtrFromRef(bhs);
312 ROL::nullstream oldFormatState, headerFormatState;
313 oldFormatState.copyfmt(*pStream);
315 ROL::Ptr<Vector> v = this->
clone();
316 ROL::Ptr<Vector> vtmp = this->
clone();
317 ROL::Ptr<Vector> xtmp = x.
clone();
318 ROL::Ptr<Vector> ytmp = y.
clone();
320 *pStream <<
"\n" << std::setw(width) << std::left << std::setfill(
'*') <<
"********** Begin verification of linear algebra. " <<
"\n\n";
321 headerFormatState.copyfmt(*pStream);
324 v->set(*
this); xtmp->set(x); ytmp->set(y);
325 v->plus(x); xtmp->plus(*
this); v->axpy(-one, *xtmp); vCheck.push_back(v->norm());
326 *pStream << std::scientific << std::setprecision(12) << std::setfill(
'>');
327 *pStream << std::setw(width) << std::left <<
"Commutativity of addition. Consistency error: " <<
" " << vCheck.back() <<
"\n";
330 v->set(*
this); xtmp->set(x); ytmp->set(y);
331 ytmp->plus(x); v->plus(*ytmp); xtmp->plus(*
this); xtmp->plus(y); v->axpy(-one, *xtmp); vCheck.push_back(v->norm());
332 *pStream << std::setw(width) << std::left <<
"Associativity of addition. Consistency error: " <<
" " << vCheck.back() <<
"\n";
335 v->set(*
this); xtmp->set(x); ytmp->set(y);
336 v->zero(); v->plus(x); v->axpy(-one, x); vCheck.push_back(v->norm());
337 *pStream << std::setw(width) << std::left <<
"Identity element of addition. Consistency error: " <<
" " << vCheck.back() <<
"\n";
340 v->set(*
this); xtmp->set(x); ytmp->set(y);
341 v->scale(-one); v->plus(*
this); vCheck.push_back(v->norm());
342 *pStream << std::setw(width) << std::left <<
"Inverse elements of addition. Consistency error: " <<
" " << vCheck.back() <<
"\n";
345 v->set(*
this); xtmp->set(x); ytmp->set(y);
346 v->scale(one); v->axpy(-one, *
this); vCheck.push_back(v->norm());
347 *pStream << std::setw(width) << std::left <<
"Identity element of scalar multiplication. Consistency error: " <<
" " << vCheck.back() <<
"\n";
350 v->set(*
this); vtmp->set(*
this);
351 v->scale(b); v->scale(a); vtmp->scale(a*b); v->axpy(-one, *vtmp); vCheck.push_back(v->norm());
352 *pStream << std::setw(width) << std::left <<
"Consistency of scalar multiplication with field multiplication. Consistency error: " <<
" " << vCheck.back() <<
"\n";
355 v->set(*
this); vtmp->set(*
this);
356 v->scale(a+b); vtmp->scale(a); vtmp->axpy(b, *
this); v->axpy(-one, *vtmp); vCheck.push_back(v->norm());
357 *pStream << std::setw(width) << std::left <<
"Distributivity of scalar multiplication with respect to field addition. Consistency error: " <<
" " << vCheck.back() <<
"\n";
360 v->set(*
this); xtmp->set(x); ytmp->set(y);
361 v->plus(x); v->scale(a); xtmp->scale(a); xtmp->axpy(a, *
this); v->axpy(-one, *xtmp); vCheck.push_back(v->norm());
362 *pStream << std::setw(width) << std::left <<
"Distributivity of scalar multiplication with respect to vector addition. Consistency error: " <<
" " << vCheck.back() <<
"\n";
365 vCheck.push_back(std::abs(this->
dot(x) - x.
dot(*
this)));
366 *pStream << std::setw(width) << std::left <<
"Commutativity of dot (inner) product over the field of reals. Consistency error: " <<
" " << vCheck.back() <<
"\n";
370 xtmp->plus(y); vCheck.push_back(std::abs(this->
dot(*xtmp) - this->
dot(x) - this->
dot(y))/std::max({
static_cast<Real
>(std::abs(this->
dot(*xtmp))),
static_cast<Real
>(std::abs(this->
dot(x))),
static_cast<Real
>(std::abs(this->
dot(y))), one}));
371 *pStream << std::setw(width) << std::left <<
"Additivity of dot (inner) product. Consistency error: " <<
" " << vCheck.back() <<
"\n";
375 Real vnorm = v->norm();
378 vCheck.push_back(std::abs(v->norm() -
zero));
381 vCheck.push_back(std::abs(v->norm() - one));
383 *pStream << std::setw(width) << std::left <<
"Consistency of scalar multiplication and norm. Consistency error: " <<
" " << vCheck.back() <<
"\n";
387 xtmp = ROL::constPtrCast<Vector>(ROL::makePtrFromRef(this->
dual()));
388 ytmp = ROL::constPtrCast<Vector>(ROL::makePtrFromRef(xtmp->dual()));
389 v->axpy(-one, *ytmp); vCheck.push_back(v->norm());
390 *pStream << std::setw(width) << std::left <<
"Reflexivity. Consistency error: " <<
" " << vCheck.back() <<
"\n";
395 Real vx = v->apply(*xtmp);
396 Real vxd = v->dot(xtmp->dual());
397 Real vdx = xtmp->dot(v->dual());
399 vCheck.push_back(std::max(std::abs(vx-vxd),std::abs(vx-vdx)));
402 vCheck.push_back(std::max(std::abs(vx-vxd),std::abs(vx-vdx))/std::abs(vx));
404 *pStream << std::setw(width) << std::left <<
"Consistency of apply and dual:" <<
" " << vCheck.back() <<
"\n\n";
409 pStream->copyfmt(headerFormatState);
410 *pStream << std::setw(width) << std::left <<
"********** End verification of linear algebra. " <<
"\n\n";
413 pStream->copyfmt(oldFormatState);