LCOV - code coverage report
Current view: top level - generated/include/ad/physics - DurationSquaredValidInputRange.hpp (source / functions) Hit Total Coverage
Test: ad_physics Lines: 14 14 100.0 %
Date: 2022-10-04 09:47:07 Functions: 1 1 100.0 %
Branches: 22 32 68.8 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * ----------------- BEGIN LICENSE BLOCK ---------------------------------
       3                 :            :  *
       4                 :            :  * Copyright (C) 2018-2020 Intel Corporation
       5                 :            :  *
       6                 :            :  * SPDX-License-Identifier: MIT
       7                 :            :  *
       8                 :            :  * ----------------- END LICENSE BLOCK -----------------------------------
       9                 :            :  */
      10                 :            : 
      11                 :            : /**
      12                 :            :  * Generated file
      13                 :            :  * @file
      14                 :            :  *
      15                 :            :  * Generator Version : 11.0.0-1997
      16                 :            :  */
      17                 :            : 
      18                 :            : #pragma once
      19                 :            : 
      20                 :            : #include <cmath>
      21                 :            : #include <limits>
      22                 :            : #include "ad/physics/DurationSquared.hpp"
      23                 :            : #include "spdlog/fmt/ostr.h"
      24                 :            : #include "spdlog/spdlog.h"
      25                 :            : 
      26                 :            : /*!
      27                 :            :  * \brief check if the given DurationSquared is within valid input range
      28                 :            :  *
      29                 :            :  * \param[in] input the DurationSquared as an input value
      30                 :            :  * \param[in] logErrors enables error logging
      31                 :            :  *
      32                 :            :  * \returns \c true if DurationSquared is considered to be within the specified input range
      33                 :            :  *
      34                 :            :  * \note the specified input range is defined by
      35                 :            :  *       std::numeric_limits<::ad::physics::DurationSquared>::lowest() <= \c input <=
      36                 :            :  * std::numeric_limits<::ad::physics::DurationSquared>::max()
      37                 :            :  *       0. <= \c input <= 10000.
      38                 :            :  */
      39                 :         11 : inline bool withinValidInputRange(::ad::physics::DurationSquared const &input, bool const logErrors = true)
      40                 :            : {
      41                 :            :   // check for generic numeric limits of the type
      42   [ +  -  +  - ]:         19 :   bool inValidInputRange = input.isValid() && (std::numeric_limits<::ad::physics::DurationSquared>::lowest() <= input)
      43   [ +  +  +  -  :         19 :     && (input <= std::numeric_limits<::ad::physics::DurationSquared>::max());
                   +  - ]
      44   [ +  +  +  - ]:         11 :   if (!inValidInputRange && logErrors)
      45                 :            :   {
      46         [ +  - ]:          3 :     spdlog::error("withinValidInputRange(::ad::physics::DurationSquared)>> {} out of numerical limits [{}, {}]",
      47                 :            :                   input,
      48                 :          3 :                   std::numeric_limits<::ad::physics::DurationSquared>::lowest(),
      49                 :          6 :                   std::numeric_limits<::ad::physics::DurationSquared>::max()); // LCOV_EXCL_BR_LINE
      50                 :            :   }
      51                 :            :   // check for individual input range
      52         [ +  + ]:         11 :   if (inValidInputRange)
      53                 :            :   {
      54                 :            :     inValidInputRange
      55   [ +  -  +  +  :          8 :       = (::ad::physics::DurationSquared(0.) <= input) && (input <= ::ad::physics::DurationSquared(10000.));
             +  -  +  + ]
      56   [ +  +  +  - ]:          8 :     if (!inValidInputRange && logErrors)
      57                 :            :     {
      58         [ +  - ]:          5 :       spdlog::error("withinValidInputRange(::ad::physics::DurationSquared)>> {} out of valid input range [{}, {}]",
      59                 :            :                     input,
      60                 :          5 :                     ::ad::physics::DurationSquared(0.),
      61                 :         10 :                     ::ad::physics::DurationSquared(10000.)); // LCOV_EXCL_BR_LINE
      62                 :            :     }
      63                 :            :   }
      64                 :         11 :   return inValidInputRange;
      65                 :            : }

Generated by: LCOV version 1.14