OOPS
MinimizerUtils.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
9 
10 #include "oops/util/formats.h"
11 #include "oops/util/Logger.h"
12 
13 namespace oops {
14 
15 void printNormReduction(int iteration, const double & grad, const double & norm) {
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;
20 }
21 
22 void printQuadraticCostFunction(int iteration, const double & costJ,
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;
30 }
31 
32 // -----------------------------------------------------------------------------
33 
34 } // namespace oops
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)