LCOV - code coverage report
Current view: top level - generated/include/ad/physics - SpeedValidInputRange.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/Speed.hpp"
      23                 :            : #include "spdlog/fmt/ostr.h"
      24                 :            : #include "spdlog/spdlog.h"
      25                 :            : 
      26                 :            : /*!
      27                 :            :  * \brief check if the given Speed is within valid input range
      28                 :            :  *
      29                 :            :  * \param[in] input the Speed as an input value
      30                 :            :  * \param[in] logErrors enables error logging
      31                 :            :  *
      32                 :            :  * \returns \c true if Speed 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::Speed>::lowest() <= \c input <=
      36                 :            :  * std::numeric_limits<::ad::physics::Speed>::max()
      37                 :            :  *       -100. <= \c input <= 100.
      38                 :            :  */
      39                 :         46 : inline bool withinValidInputRange(::ad::physics::Speed const &input, bool const logErrors = true)
      40                 :            : {
      41                 :            :   // check for generic numeric limits of the type
      42   [ +  -  +  - ]:         85 :   bool inValidInputRange = input.isValid() && (std::numeric_limits<::ad::physics::Speed>::lowest() <= input)
      43   [ +  +  +  -  :         85 :     && (input <= std::numeric_limits<::ad::physics::Speed>::max());
                   +  - ]
      44   [ +  +  +  - ]:         46 :   if (!inValidInputRange && logErrors)
      45                 :            :   {
      46         [ +  - ]:          7 :     spdlog::error("withinValidInputRange(::ad::physics::Speed)>> {} out of numerical limits [{}, {}]",
      47                 :            :                   input,
      48                 :          7 :                   std::numeric_limits<::ad::physics::Speed>::lowest(),
      49                 :         14 :                   std::numeric_limits<::ad::physics::Speed>::max()); // LCOV_EXCL_BR_LINE
      50                 :            :   }
      51                 :            :   // check for individual input range
      52         [ +  + ]:         46 :   if (inValidInputRange)
      53                 :            :   {
      54   [ +  -  +  +  :         39 :     inValidInputRange = (::ad::physics::Speed(-100.) <= input) && (input <= ::ad::physics::Speed(100.));
             +  -  +  + ]
      55   [ +  +  +  - ]:         39 :     if (!inValidInputRange && logErrors)
      56                 :            :     {
      57         [ +  - ]:         18 :       spdlog::error("withinValidInputRange(::ad::physics::Speed)>> {} out of valid input range [{}, {}]",
      58                 :            :                     input,
      59                 :         18 :                     ::ad::physics::Speed(-100.),
      60                 :         36 :                     ::ad::physics::Speed(100.)); // LCOV_EXCL_BR_LINE
      61                 :            :     }
      62                 :            :   }
      63                 :         46 :   return inValidInputRange;
      64                 :            : }

Generated by: LCOV version 1.14