GCC Code Coverage Report


Directory: ../../../builds/dumux-repositories/
File: /builds/dumux-repositories/dumux/dumux/multidomain/facet/enrichmenthelper.hh
Date: 2024-05-04 19:09:25
Exec Total Coverage
Lines: 85 87 97.7%
Functions: 14 14 100.0%
Branches: 228 367 62.1%

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 /*!
9 * \file
10 * \ingroup FacetCoupling
11 * \copydoc Dumux::VertexEnrichmentHelper
12 */
13 #ifndef DUMUX_VERTEX_ENRICHMENT_HELPER_HH
14 #define DUMUX_VERTEX_ENRICHMENT_HELPER_HH
15
16 #include <cmath>
17 #include <vector>
18 #include <unordered_map>
19 #include <unordered_set>
20
21 #include <dune/common/exceptions.hh>
22 #include <dune/common/reservedvector.hh>
23
24 #include <dune/grid/common/mcmgmapper.hh>
25
26 #include <dumux/common/math.hh>
27 #include <dumux/common/indextraits.hh>
28
29 namespace Dumux {
30
31 /*!
32 * \ingroup FacetCoupling
33 * \brief Specialization of the enrichment helper class for 2d grids.
34 * In this case, we look for two-dimensional bulk grid elements that
35 * are enclosed by (lie in between) two 1-dimensional facet grid elements.
36 *
37 * \tparam GridView The grid view of the domain for which nodal dofs should be enriched.
38 * \tparam CodimOneGridView The grid view of a (dim-1)-dimensional grid conforming
39 * with the facets of this grid view, indicating on which facets
40 * nodal dofs should be enriched.
41 */
42 template< class GridView, class CodimOneGridView >
43 class VertexEnrichmentHelper
44 {
45 static constexpr int dim = GridView::dimension;
46 static constexpr int dimWorld = GridView::dimensionworld;
47 static_assert(dim == 2 || dim == 3, "Grid dimension must be two or three");
48 static_assert(dimWorld == int(CodimOneGridView::dimensionworld), "world dimension mismatch");
49
50 using Intersection = typename GridView::Intersection;
51 using MCMGMapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>;
52 using GridIndexType = typename IndexTraits<GridView>::GridIndex;
53 using Element = typename GridView::template Codim<0>::Entity;
54 using GlobalPosition = typename Element::Geometry::GlobalCoordinate;
55
56 using ElementPath = std::vector< GridIndexType >;
57 using NodalElementPaths = std::vector< std::vector<ElementPath> >;
58
59 public:
60
61 /*!
62 * \brief Enriches the dof map subject to a (dim-1)-dimensional grid.
63 * \note This assumes conforming grids and assumes the index map to be
64 * initialized for the bulk grid already!
65 *
66 * \param indexMap The index map which is to be updated
67 * \param vertexMarkers Markers if vertices should be enriched
68 * \param gridView A view on the grid for which vertices should be enriched
69 * \param vertexMapper Maps vertices of the given grid view
70 * \param elementMapper Maps elements of the given grid view
71 * \param codimOneGridView The view on the facet-conforming grid of codim 1
72 * \param codimOneGridAdapter Adapter class that allows access to information on the d-
73 * dimensional grid for entities of the (d-1)-dimensional grid
74 * \return the number of dofs after enrichment
75 */
76 template< class IndexMap, class CodimOneGridAdapter >
77 28 static std::size_t enrich(IndexMap& indexMap,
78 const std::vector<bool>& vertexMarkers,
79 const GridView& gridView,
80 const MCMGMapper& vertexMapper,
81 const MCMGMapper& elementMapper,
82 const CodimOneGridView& codimOneGridView,
83 const CodimOneGridAdapter& codimOneGridAdapter)
84 {
85 // determine the bulk element paths around vertices marked for enrichment
86
3/6
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 24 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 24 times.
✗ Branch 8 not taken.
56 NodalElementPaths nodalPaths(gridView.size(dim));
87
13/14
✓ Branch 1 taken 113 times.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 579 times.
✓ Branch 4 taken 26 times.
✓ Branch 5 taken 491 times.
✓ Branch 6 taken 1 times.
✓ Branch 7 taken 24 times.
✓ Branch 8 taken 491 times.
✓ Branch 9 taken 53705 times.
✓ Branch 10 taken 24 times.
✓ Branch 11 taken 53705 times.
✓ Branch 12 taken 24 times.
✓ Branch 14 taken 53705 times.
✗ Branch 15 not taken.
112626 for (const auto& e : elements(gridView))
88 {
89
1/2
✓ Branch 1 taken 54196 times.
✗ Branch 2 not taken.
56299 const auto eIdx = elementMapper.index(e);
90
91
2/6
✓ Branch 1 taken 54284 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 54196 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
112598 std::vector<unsigned int> handledFacets;
92
1/2
✓ Branch 1 taken 54284 times.
✗ Branch 2 not taken.
56299 const auto refElement = referenceElement(e);
93
14/18
✓ Branch 1 taken 54284 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 491 times.
✓ Branch 5 taken 260253 times.
✗ Branch 6 not taken.
✓ Branch 7 taken 491 times.
✗ Branch 8 not taken.
✓ Branch 9 taken 2455 times.
✓ Branch 10 taken 16 times.
✓ Branch 11 taken 206236 times.
✓ Branch 12 taken 264 times.
✓ Branch 13 taken 32 times.
✓ Branch 14 taken 56 times.
✓ Branch 15 taken 731 times.
✓ Branch 16 taken 3505 times.
✓ Branch 17 taken 52164 times.
✓ Branch 19 taken 1964 times.
✗ Branch 20 not taken.
602105 for (const auto& is : intersections(gridView, e))
94 {
95 // do not start path search on boundary intersections
96
4/4
✓ Branch 0 taken 1988 times.
✓ Branch 1 taken 201884 times.
✓ Branch 2 taken 6540 times.
✓ Branch 3 taken 272 times.
218984 if (!is.neighbor())
97 5664 continue;
98
99 // if facet has been handled already, skip rest (necessary for e.g. Dune::FoamGrid)
100
9/13
✗ Branch 0 not taken.
✓ Branch 1 taken 201876 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 264 times.
✓ Branch 4 taken 201612 times.
✓ Branch 5 taken 1724 times.
✗ Branch 6 not taken.
✓ Branch 7 taken 1956 times.
✓ Branch 8 taken 32 times.
✓ Branch 9 taken 201844 times.
✓ Branch 10 taken 32 times.
✓ Branch 11 taken 201612 times.
✗ Branch 12 not taken.
426828 if (std::find(handledFacets.begin(), handledFacets.end(), is.indexInInside()) != handledFacets.end())
101 continue;
102
103 // first, get indices of all vertices of this intersection
104
4/6
✓ Branch 1 taken 203568 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 1724 times.
✓ Branch 4 taken 232 times.
✓ Branch 5 taken 1724 times.
✗ Branch 6 not taken.
210764 const auto numCorners = is.geometry().corners();
105
3/6
✓ Branch 1 taken 203568 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 203568 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 203568 times.
✗ Branch 7 not taken.
843056 std::vector<GridIndexType> faceVertexIndices(numCorners);
106
2/2
✓ Branch 0 taken 419272 times.
✓ Branch 1 taken 203568 times.
651392 for (int i = 0; i < numCorners; ++i)
107
4/7
✗ Branch 0 not taken.
✓ Branch 1 taken 414100 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 5172 times.
✓ Branch 4 taken 464 times.
✓ Branch 5 taken 413636 times.
✗ Branch 6 not taken.
445800 faceVertexIndices[i] = vertexMapper.subIndex( e,
108 refElement.subEntity(is.indexInInside(), 1, i, dim),
109 dim );
110
111 // start path search on intersections that lie on a facet grid element
112
3/4
✓ Branch 1 taken 203568 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 1896 times.
✓ Branch 4 taken 201672 times.
210764 if (codimOneGridAdapter.composeFacetElement(faceVertexIndices))
113 {
114
3/8
✗ Branch 0 not taken.
✓ Branch 1 taken 1896 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 16 times.
✓ Branch 4 taken 1880 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
2152 handledFacets.push_back(is.indexInInside());
115
2/2
✓ Branch 0 taken 4160 times.
✓ Branch 1 taken 1896 times.
6808 for (int i = 0; i < numCorners; ++i)
116 {
117 // set up path only around those vertices that are to be enriched
118
2/2
✓ Branch 0 taken 3994 times.
✓ Branch 1 taken 166 times.
4720 const auto vIdxGlobal = faceVertexIndices[i];
119
4/4
✓ Branch 0 taken 3994 times.
✓ Branch 1 taken 166 times.
✓ Branch 2 taken 3994 times.
✓ Branch 3 taken 166 times.
9440 if (!vertexMarkers[vIdxGlobal])
120 continue;
121
122 // construct the path only if element is not yet contained in another path
123 4522 bool found = false;
124
4/4
✓ Branch 0 taken 4344 times.
✓ Branch 1 taken 1700 times.
✓ Branch 2 taken 4344 times.
✓ Branch 3 taken 1700 times.
20430 for (const auto& path : nodalPaths[vIdxGlobal])
125
4/4
✓ Branch 4 taken 2050 times.
✓ Branch 5 taken 2294 times.
✓ Branch 6 taken 2050 times.
✓ Branch 7 taken 2294 times.
20248 if (std::find(path.begin(), path.end(), eIdx) != path.end())
126 { found = true; break; }
127
128
2/2
✓ Branch 0 taken 1700 times.
✓ Branch 1 taken 2294 times.
4522 if (!found)
129 {
130
2/6
✓ Branch 1 taken 1700 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 1700 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
3604 ElementPath path;
131
132 // Reserve enough memory so that reallocation during the recursive search
133 // does not happen and references are invalidated. Memory is not an issue
134 // here as after enrichment the container is thrown away again.
135 // TODO improve this!?
136
1/2
✓ Branch 1 taken 1700 times.
✗ Branch 2 not taken.
1802 path.reserve(150);
137
1/2
✓ Branch 1 taken 1700 times.
✗ Branch 2 not taken.
1802 path.push_back(eIdx);
138
1/2
✓ Branch 1 taken 1700 times.
✗ Branch 2 not taken.
1802 continuePathSearch_(path, gridView, elementMapper, vertexMapper, codimOneGridAdapter, e, refElement, is, vIdxGlobal);
139
2/4
✓ Branch 1 taken 1700 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 1700 times.
✗ Branch 5 not taken.
3604 nodalPaths[vIdxGlobal].emplace_back(std::move(path));
140 }
141 }
142 }
143 }
144 }
145
146 // determine the offsets for each bulk vertex index on the basis of the paths found per vertex
147
6/13
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 2 times.
✓ Branch 4 taken 24 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 1 times.
✓ Branch 7 taken 24 times.
✗ Branch 8 not taken.
✗ Branch 9 not taken.
✓ Branch 10 taken 24 times.
✗ Branch 11 not taken.
✗ Branch 13 not taken.
✗ Branch 14 not taken.
84 std::vector<std::size_t> bulkVertexIndexOffsets(gridView.size(dim), 0);
148
12/14
✓ Branch 1 taken 82 times.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 210 times.
✓ Branch 4 taken 26 times.
✓ Branch 5 taken 153 times.
✓ Branch 6 taken 1 times.
✓ Branch 7 taken 24 times.
✓ Branch 8 taken 153 times.
✓ Branch 9 taken 24 times.
✓ Branch 10 taken 48985 times.
✓ Branch 11 taken 153 times.
✗ Branch 12 not taken.
✓ Branch 16 taken 48985 times.
✗ Branch 17 not taken.
49831 for (const auto& v : vertices(gridView))
149 {
150
1/2
✓ Branch 1 taken 153 times.
✗ Branch 2 not taken.
49778 const auto vIdx = vertexMapper.index(v);
151
4/4
✓ Branch 0 taken 855 times.
✓ Branch 1 taken 48340 times.
✓ Branch 2 taken 855 times.
✓ Branch 3 taken 48340 times.
99556 if (vertexMarkers[vIdx])
152 3636 bulkVertexIndexOffsets[vIdx] = nodalPaths[vIdx].size()-1;
153 }
154
155 // ... and accumulate the offsets
156 28 std::size_t sumOffset = 0;
157 28 std::size_t size = 0;
158
4/4
✓ Branch 0 taken 49195 times.
✓ Branch 1 taken 26 times.
✓ Branch 2 taken 49195 times.
✓ Branch 3 taken 26 times.
99640 for (auto& nodalOffset : bulkVertexIndexOffsets)
159 {
160 49778 const auto os = nodalOffset;
161 49778 nodalOffset = sumOffset;
162 49778 sumOffset += os;
163
2/2
✓ Branch 0 taken 815 times.
✓ Branch 1 taken 48380 times.
49778 size += (os == 0) ? 1 : os + 1;
164 }
165
166 // Now, finally set up the new index map
167
13/14
✓ Branch 1 taken 113 times.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 579 times.
✓ Branch 4 taken 26 times.
✓ Branch 5 taken 491 times.
✓ Branch 6 taken 89 times.
✓ Branch 7 taken 24 times.
✓ Branch 8 taken 491 times.
✓ Branch 9 taken 53705 times.
✓ Branch 10 taken 24 times.
✓ Branch 11 taken 54196 times.
✓ Branch 12 taken 24 times.
✓ Branch 14 taken 53705 times.
✗ Branch 15 not taken.
111959 for (const auto& e : elements(gridView))
168 {
169
2/4
✓ Branch 1 taken 54284 times.
✗ Branch 2 not taken.
✓ Branch 5 taken 53705 times.
✗ Branch 6 not taken.
111931 const auto& eg = e.geometry();
170
1/2
✓ Branch 1 taken 54196 times.
✗ Branch 2 not taken.
56299 const auto eIdx = elementMapper.index(e);
171
4/4
✓ Branch 0 taken 208392 times.
✓ Branch 1 taken 54284 times.
✓ Branch 2 taken 208392 times.
✓ Branch 3 taken 54284 times.
272663 for (int i = 0; i < eg.corners(); ++i)
172 {
173
1/2
✓ Branch 1 taken 208392 times.
✗ Branch 2 not taken.
216364 const auto origVIdx = vertexMapper.subIndex(e, i, dim);
174
175 // it the node itself is not enriched, simply add offset
176
4/4
✓ Branch 0 taken 203124 times.
✓ Branch 1 taken 5268 times.
✓ Branch 2 taken 203124 times.
✓ Branch 3 taken 5268 times.
432728 if (!vertexMarkers[origVIdx])
177 840208 indexMap[eIdx][i] += bulkVertexIndexOffsets[origVIdx];
178
179 // find the local index of the path the element belongs to
180 else
181 {
182 6312 bool found = false;
183 6312 const auto& paths = nodalPaths[ origVIdx ];
184
2/4
✓ Branch 0 taken 7617 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 7617 times.
✗ Branch 3 not taken.
9041 for (int pathIdx = 0; pathIdx < paths.size(); ++pathIdx)
185 {
186 9041 const auto& curPath = paths[pathIdx];
187
4/4
✓ Branch 4 taken 5268 times.
✓ Branch 5 taken 2349 times.
✓ Branch 6 taken 5268 times.
✓ Branch 7 taken 2349 times.
36164 if ( std::find(curPath.begin(), curPath.end(), eIdx) != curPath.end() )
188 {
189 18936 indexMap[eIdx][i] += bulkVertexIndexOffsets[origVIdx] + pathIdx;
190 6312 found = true;
191 break;
192 }
193 }
194
195 if (!found)
196 DUNE_THROW(Dune::InvalidStateException, "Element not found in any path");
197 }
198 }
199 }
200
201 // return the number of dofs after enrichment
202
1/2
✓ Branch 0 taken 26 times.
✗ Branch 1 not taken.
56 return size;
203 }
204
205 private:
206 template< class ReferenceElement, class CodimOneGridAdapter >
207 5268 static void continuePathSearch_(ElementPath& path,
208 const GridView& gridView,
209 const MCMGMapper& elementMapper,
210 const MCMGMapper& vertexMapper,
211 const CodimOneGridAdapter& codimOneGridAdapter,
212 const Element& element,
213 const ReferenceElement& refElement,
214 const Intersection& prevIntersection,
215 GridIndexType vIdxGlobal)
216 {
217 // on 2d/3d grids, we need to find 1/2 more intersections at vertex
218 static constexpr int numIsToFind = dim == 3 ? 2 : 1;
219
220 // keep track of facets handled already while searching
221 5268 unsigned int foundCounter = 0;
222
2/6
✓ Branch 1 taken 4224 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 2184 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
10918 std::vector<unsigned int> handledFacets;
223
10/15
✓ Branch 1 taken 4224 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 324 times.
✓ Branch 5 taken 14982 times.
✗ Branch 6 not taken.
✓ Branch 7 taken 324 times.
✗ Branch 8 not taken.
✓ Branch 9 taken 1415 times.
✓ Branch 10 taken 13004 times.
✗ Branch 11 not taken.
✓ Branch 13 taken 11082 times.
✓ Branch 14 taken 929 times.
✓ Branch 15 taken 280 times.
✓ Branch 17 taken 1091 times.
✗ Branch 18 not taken.
41886 for (const auto& is : intersections(gridView, element))
224 {
225 // skip if on previous intersection again
226
8/8
✓ Branch 0 taken 929 times.
✓ Branch 1 taken 13284 times.
✓ Branch 2 taken 929 times.
✓ Branch 3 taken 280 times.
✓ Branch 4 taken 13933 times.
✓ Branch 5 taken 280 times.
✓ Branch 6 taken 9428 times.
✓ Branch 7 taken 3576 times.
20484 if (is.indexInInside() == prevIntersection.indexInInside())
227 7140 continue;
228
229 // skip intersection if handled already (necessary for e.g. Dune::FoamGrid)
230
3/5
✓ Branch 0 taken 929 times.
✓ Branch 1 taken 9428 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 9428 times.
✗ Branch 4 not taken.
29723 if (std::count(handledFacets.begin(), handledFacets.end(), is.indexInInside()))
231 continue;
232
233 // determine all vertex indices of this face
234
3/6
✓ Branch 1 taken 10357 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 929 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 929 times.
✗ Branch 6 not taken.
13282 const auto numCorners = is.geometry().corners();
235
3/6
✓ Branch 1 taken 10357 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 10357 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 6395 times.
✗ Branch 7 not taken.
43530 std::vector<GridIndexType> faceVertexIndices(numCorners);
236
2/2
✓ Branch 0 taken 23527 times.
✓ Branch 1 taken 10357 times.
45500 for (int i = 0; i < numCorners; ++i)
237
3/6
✓ Branch 1 taken 20740 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 2787 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 20740 times.
✗ Branch 6 not taken.
35005 faceVertexIndices[i] = vertexMapper.subIndex( element,
238 refElement.subEntity(is.indexInInside(), 1, i, dim),
239 dim );
240
241 // we found another intersection at the vertex if it contains the vertex around which we rotate
242
4/4
✓ Branch 4 taken 5196 times.
✓ Branch 5 taken 5161 times.
✓ Branch 6 taken 5196 times.
✓ Branch 7 taken 5161 times.
53128 if (std::find(faceVertexIndices.begin(), faceVertexIndices.end(), vIdxGlobal) != faceVertexIndices.end())
243 {
244 7232 foundCounter++;
245
2/6
✓ Branch 1 taken 5196 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 5196 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
7880 handledFacets.push_back(is.indexInInside());
246
247 // keep searching in the outside element only if ...
248 // ... this is a not (processor) boundary
249
3/4
✓ Branch 0 taken 648 times.
✓ Branch 1 taken 4494 times.
✓ Branch 2 taken 702 times.
✗ Branch 3 not taken.
7932 if (!is.neighbor())
250
1/2
✓ Branch 0 taken 1922 times.
✗ Branch 1 not taken.
2356 continue;
251
252 // ... this face does not lie on the facet grid
253
3/4
✓ Branch 1 taken 5142 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 3274 times.
✓ Branch 4 taken 1868 times.
7170 if (codimOneGridAdapter.composeFacetElement(faceVertexIndices))
254 continue;
255
256 // ... outside element is not contained yet in path
257
1/2
✓ Branch 1 taken 3274 times.
✗ Branch 2 not taken.
6913 const auto outsideElement = is.outside();
258
1/2
✓ Branch 1 taken 3274 times.
✗ Branch 2 not taken.
4876 const auto outsideElemIdx = elementMapper.index(outsideElement);
259
4/4
✓ Branch 4 taken 2626 times.
✓ Branch 5 taken 648 times.
✓ Branch 6 taken 2626 times.
✓ Branch 7 taken 648 times.
19504 if (std::find(path.begin(), path.end(), outsideElemIdx) == path.end())
260 {
261
1/2
✓ Branch 1 taken 2626 times.
✗ Branch 2 not taken.
3568 const auto idxInOutside = is.indexInOutside();
262
1/2
✓ Branch 1 taken 2626 times.
✗ Branch 2 not taken.
3568 const auto outsideRefElement = referenceElement(outsideElement);
263
1/2
✓ Branch 1 taken 2626 times.
✗ Branch 2 not taken.
3568 path.push_back(outsideElemIdx);
264
265 // on 2d grids, there is only going to be one more
266
10/15
✓ Branch 1 taken 2626 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 298 times.
✓ Branch 5 taken 8234 times.
✗ Branch 6 not taken.
✓ Branch 7 taken 298 times.
✗ Branch 8 not taken.
✓ Branch 9 taken 1207 times.
✓ Branch 10 taken 7828 times.
✓ Branch 11 taken 298 times.
✓ Branch 12 taken 729 times.
✓ Branch 13 taken 5906 times.
✗ Branch 14 not taken.
✓ Branch 17 taken 909 times.
✗ Branch 18 not taken.
26810 for (const auto& outsideIs : intersections(gridView, outsideElement))
267 {
268
5/5
✓ Branch 0 taken 298 times.
✓ Branch 1 taken 8557 times.
✓ Branch 2 taken 298 times.
✓ Branch 3 taken 3057 times.
✓ Branch 4 taken 5500 times.
13077 if (outsideIs.indexInInside() == idxInOutside)
269 {
270 // if this is the last intersection to find, return
271
2/2
✓ Branch 0 taken 2040 times.
✓ Branch 1 taken 586 times.
3568 if (foundCounter == numIsToFind)
272
1/2
✓ Branch 1 taken 2040 times.
✗ Branch 2 not taken.
2443 return continuePathSearch_(path,
273 gridView,
274 elementMapper,
275 vertexMapper,
276 codimOneGridAdapter,
277 outsideElement,
278 outsideRefElement,
279 outsideIs,
280 2443 vIdxGlobal);
281
282 // otherwise, put one more search on stack
283 else
284
1/2
✓ Branch 1 taken 586 times.
✗ Branch 2 not taken.
1125 continuePathSearch_(path,
285 gridView,
286 elementMapper,
287 vertexMapper,
288 codimOneGridAdapter,
289 outsideElement,
290 outsideRefElement,
291 outsideIs,
292 vIdxGlobal);
293 }
294 }
295 }
296 }
297 }
298
299
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2184 times.
2825 if (foundCounter != numIsToFind)
300 DUNE_THROW(Dune::InvalidStateException, "Found " << foundCounter << " instead of " << numIsToFind << " intersections around vertex");
301 }
302 };
303
304 } // end namespace Dumux
305
306 #endif
307