Skip to content

Commit 31f9b42

Browse files
committed
fix(Result): missing nb_issues() method
1 parent 96d7cd6 commit 31f9b42

File tree

56 files changed

+289
-13
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+289
-13
lines changed

include/geode/inspector/brep_inspector.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ namespace geode
4040
BRepMeshesInspectionResult meshes;
4141
BRepTopologyInspectionResult topology;
4242

43+
[[nodiscard]] index_t nb_issues() const;
44+
4345
[[nodiscard]] std::string string() const;
4446

4547
[[nodiscard]] std::string inspection_type() const;

include/geode/inspector/criterion/adjacency/brep_meshes_adjacency.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ namespace geode
5252
"BRep Block mesh with polyhedron facets adjacencies issues"
5353
};
5454

55+
[[nodiscard]] index_t nb_issues() const;
56+
5557
[[nodiscard]] std::string string() const;
5658

5759
[[nodiscard]] std::string inspection_type() const;

include/geode/inspector/criterion/adjacency/section_meshes_adjacency.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ namespace geode
4848
"Section Surface mesh polygon edges adjacencies issues"
4949
};
5050

51+
[[nodiscard]] index_t nb_issues() const;
52+
5153
[[nodiscard]] std::string string() const;
5254

5355
[[nodiscard]] std::string inspection_type() const;

include/geode/inspector/criterion/brep_meshes_inspector.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ namespace geode
4444
BRepMeshesManifoldInspectionResult meshes_non_manifolds;
4545
BRepMeshesNegativeElementsInspectionResult meshes_negative_elements;
4646

47+
[[nodiscard]] index_t nb_issues() const;
48+
4749
[[nodiscard]] std::string string() const;
4850

4951
[[nodiscard]] std::string inspection_type() const;

include/geode/inspector/criterion/colocation/component_meshes_colocation.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ namespace geode
4444
"Model component meshes with colocated points"
4545
};
4646

47+
[[nodiscard]] index_t nb_issues() const;
48+
4749
[[nodiscard]] std::string string() const;
4850

4951
[[nodiscard]] std::string inspection_type() const;

include/geode/inspector/criterion/colocation/unique_vertices_colocation.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ namespace geode
4747
"different positions"
4848
};
4949

50+
[[nodiscard]] index_t nb_issues() const;
51+
5052
[[nodiscard]] std::string string() const;
5153

5254
[[nodiscard]] std::string inspection_type() const;

include/geode/inspector/criterion/degeneration/brep_meshes_degeneration.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ namespace geode
5151
"BRep component meshes with degenerated polyhedra"
5252
};
5353

54+
[[nodiscard]] index_t nb_issues() const;
55+
5456
[[nodiscard]] std::string string() const;
5557

5658
[[nodiscard]] std::string inspection_type() const;

include/geode/inspector/criterion/degeneration/section_meshes_degeneration.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ namespace geode
4848
"Section component meshes with degenerated polygons"
4949
};
5050

51+
[[nodiscard]] index_t nb_issues() const;
52+
5153
[[nodiscard]] std::string string() const;
5254

5355
[[nodiscard]] std::string inspection_type() const;

include/geode/inspector/criterion/intersections/model_intersections.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ namespace geode
4545
std::pair< ComponentMeshElement, ComponentMeshElement > >
4646
elements_intersections{ "Surface intersections." };
4747

48+
[[nodiscard]] index_t nb_issues() const;
49+
4850
[[nodiscard]] std::string string() const;
4951

5052
[[nodiscard]] std::string inspection_type() const;

include/geode/inspector/criterion/manifold/brep_meshes_manifold.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ namespace geode
7676
"BRep non manifold facets"
7777
};
7878

79+
[[nodiscard]] index_t nb_issues() const;
80+
7981
[[nodiscard]] std::string string() const;
8082

8183
[[nodiscard]] std::string inspection_type() const;

0 commit comments

Comments
 (0)