GCC Code Coverage Report


Directory: ../../../builds/dumux-repositories/
File: /builds/dumux-repositories/dumux/dumux/discretization/facecentered/staggered/normalaxis.hh
Date: 2024-05-04 19:09:25
Exec Total Coverage
Lines: 6 7 85.7%
Functions: 3 9 33.3%
Branches: 5 64 7.8%

Line Branch Exec Source
1 // -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 // vi: set et ts=4 sw=4 sts=4:
3 //
4 // SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5 // SPDX-License-Identifier: GPL-3.0-or-later
6 //
7 /*!
8 * \file
9 * \ingroup FaceCenteredStaggeredDiscretization
10 * \copydoc Dumux::FaceCenteredStaggeredFVGridGeometry
11 */
12 #ifndef DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_NORMAL_AXIS_HH
13 #define DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_NORMAL_AXIS_HH
14
15 #include <cstddef>
16 #include <algorithm>
17 #include <numeric>
18
19 namespace Dumux {
20
21 /*!
22 * \ingroup FaceCenteredStaggeredDiscretization
23 * \brief Returns the normal axis index of a unit vector (0 = x, 1 = y, 2 = z)
24 */
25 template<class Vector>
26 38635442 inline static std::size_t normalAxis(const Vector& v)
27 {
28 using std::abs;
29
30 38635442 constexpr auto eps = 1e-8;
31
2/30
✗ Branch 0 not taken.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
✗ Branch 9 not taken.
✗ Branch 10 not taken.
✗ Branch 11 not taken.
✗ Branch 12 not taken.
✗ Branch 13 not taken.
✗ Branch 14 not taken.
✗ Branch 15 not taken.
✗ Branch 16 not taken.
✗ Branch 17 not taken.
✗ Branch 18 not taken.
✗ Branch 19 not taken.
✓ Branch 20 taken 130 times.
✗ Branch 21 not taken.
✗ Branch 22 not taken.
✗ Branch 23 not taken.
✗ Branch 24 not taken.
✗ Branch 25 not taken.
✗ Branch 26 not taken.
✗ Branch 27 not taken.
✗ Branch 31 not taken.
✓ Branch 32 taken 38635312 times.
115906326 assert(std::any_of(v.begin(), v.end(), [=](auto x){ return abs(x) > eps; }));
32
33
2/4
✗ Branch 3 not taken.
✓ Branch 4 taken 38635442 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 38635442 times.
115906326 const auto result = std::distance(
34 std::begin(v), std::find_if(v.begin(), v.end(), [eps=eps](auto x){ return abs(x) > eps; })
35 );
36
37 // make sure there is only one non-zero entry
38
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 38635442 times.
154541638 assert(v[result] == std::accumulate(v.begin(), v.end(), 0.0));
39
40 38635442 return result;
41 }
42
43 } // end namespace Dumux
44
45 #endif
46