We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6be0d8a commit d1c5ff9Copy full SHA for d1c5ff9
.github/workflows/macos.yml
@@ -1,14 +1,6 @@
1
name: macOS
2
3
-on:
4
- push:
5
- branches:
6
- - main
7
- - develop
8
- pull_request:
9
10
11
- workflow_dispatch:
+on: [workflow_dispatch]
12
13
concurrency:
14
group: ${{ github.workflow }}-${{ github.ref }}
src/bistellar-flip.cpp
@@ -69,9 +69,9 @@ try
69
manifolds::Manifold_3 const manifold{
70
foliated_triangulations::FoliatedTriangulation_3{dt, 0, 1}
71
};
72
- #ifdef ENABLE_VISUALIZATION
73
- CGAL::draw(manifold.get_delaunay());
74
- #endif
+#ifdef ENABLE_VISUALIZATION
+ CGAL::draw(manifold.get_delaunay());
+#endif
75
fmt::print("After bistellar flip.\n");
76
manifold.print_cells();
77
utilities::print_delaunay(dt);
0 commit comments