10 #include "oops/util/formats.h"
11 #include "oops/util/Logger.h"
16 Log::info() <<
" Gradient reduction (" << std::setw(2) << iteration <<
") = "
17 << util::full_precision(grad) << std::endl
18 <<
" Norm reduction (" << std::setw(2) << iteration <<
") = "
19 << util::full_precision(norm) << std::endl << std::endl;
23 const double & costJb,
const double & costJoJc) {
24 Log::info() <<
" Quadratic cost function: J (" << std::setw(2) << iteration <<
") = "
25 << util::full_precision(costJ) << std::endl
26 <<
" Quadratic cost function: Jb (" << std::setw(2) << iteration <<
") = "
27 << util::full_precision(costJb) << std::endl
28 <<
" Quadratic cost function: JoJc(" << std::setw(2) << iteration <<
") = "
29 << util::full_precision(costJoJc) << std::endl << std::endl;
The namespace for the main oops code.
void printQuadraticCostFunction(int iteration, const double &costJ, const double &costJb, const double &costJoJc)
void printNormReduction(int iteration, const double &grad, const double &norm)