GCC Code Coverage Report


Directory: ./
File: Geometry/neighVolumesOfFaces.cpp
Date: 2024-04-14 07:32:34
Exec Total Coverage
Lines: 0 3 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // ______ ______ _ _ _____ ______
2 // | ____| ____| | (_)/ ____| | ____|
3 // | |__ | |__ | | _| (___ ___| |__
4 // | __| | __| | | | |\___ \ / __| __|
5 // | | | |____| |____| |____) | (__| |____
6 // |_| |______|______|_|_____/ \___|______|
7 // Finite Elements for Life Sciences and Engineering
8 //
9 // License: LGL2.1 License
10 // FELiScE default license: LICENSE in root folder
11 //
12 // Main authors: J. Foulon & V. Martin
13 //
14
15
16 #include <Geometry/neighVolumesOfFaces.hpp>
17
18 namespace felisce
19 {
20 void NeighVolumesOfFaces::print( std::ostream& outstr, int verbose ) const {
21 IGNORE_UNUSED_VERBOSE;
22
23 outstr << GeometricMeshRegion::eltEnumToFelNameGeoEle[m_typeVolume].first
24 << "->" << m_idVolume << " id loc " << m_idLocalFace << " || ";
25 }
26 }
27