OOPS
test/generic/gc99.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 
8 #include <cfloat>
9 #include <cmath>
10 
11 #include "oops/generic/gc99.h"
12 #include "oops/util/Logger.h"
13 
14 #include "eckit/testing/Test.h"
15 
16 namespace {
17 
18 
19 // -----------------------------------------------------------------------------
20 
21  CASE("test_gc99") {
22  double t;
23  t = oops::gc99(0.0);
24  oops::Log::info() << "gc99(0.0)=" << t << std::endl;
25  EXPECT(std::abs(t-1) < 2*DBL_EPSILON);
26 
27  t = oops::gc99(0.5);
28  oops::Log::info() << "gc99(0.5)=" << t << std::endl;
29  EXPECT(std::abs(t-0.208333) < 1e-5);
30 
31 
32  t = oops::gc99(1.0);
33  oops::Log::info() << "gc99(1.0)=" << t << std::endl;
34  EXPECT(std::abs(t) < 2*DBL_EPSILON);
35 
36  t = oops::gc99(2.0);
37  oops::Log::info() << "gc99(2.0)=" << t << std::endl;
38  EXPECT(std::abs(t) < 2*DBL_EPSILON);
39  }
40 
41 // -----------------------------------------------------------------------------
42 
43 } // anonymous namespace
44 
45 int main(int argc, char **argv)
46 {
47  return eckit::testing::run_tests ( argc, argv );
48 }
double gc99(const double &distnorm)
int main(int argc, char **argv)