diff --git a/_apply__move_8hpp.html b/_apply__move_8hpp.html index 8d78dbb20..e6490f274 100644 --- a/_apply__move_8hpp.html +++ b/_apply__move_8hpp.html @@ -83,16 +83,16 @@

Apply Pachner moves to foliated Delaunay triangulations. More...

#include <spdlog/spdlog.h>
+#include <expected>
#include <functional>
#include <string>
-#include <tl/expected.hpp>
#include <tl/function_ref.hpp>
+ Include dependency graph for Apply_move.hpp:
@@ -108,7 +108,7 @@ - + @@ -125,7 +125,7 @@

-template<typename ManifoldType , typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
+template<typename ManifoldType , typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>

Functions

template<typename ManifoldType , typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
template<typename ManifoldType , typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
constexpr auto apply_move (ManifoldType &&t_manifold, FunctionType t_move) noexcept -> decltype(auto)
 An applicative function similar to std::apply, but on manifolds. More...
 
- - + + @@ -1038,7 +1038,7 @@

diff --git a/_ergodic__moves__3_8hpp__incl.map b/_ergodic__moves__3_8hpp__incl.map index c4d76f675..4f1253931 100644 --- a/_ergodic__moves__3_8hpp__incl.map +++ b/_ergodic__moves__3_8hpp__incl.map @@ -1,6 +1,6 @@ - + diff --git a/_ergodic__moves__3_8hpp__incl.md5 b/_ergodic__moves__3_8hpp__incl.md5 index cd9947dce..ce96c0543 100644 --- a/_ergodic__moves__3_8hpp__incl.md5 +++ b/_ergodic__moves__3_8hpp__incl.md5 @@ -1 +1 @@ -2a6e5d5e95c3ffe757bd002bdfe67d40 \ No newline at end of file +5cd037be0ea8be0f939b4134a2d8700f \ No newline at end of file diff --git a/_ergodic__moves__3_8hpp__incl.svg b/_ergodic__moves__3_8hpp__incl.svg index 212d17fb7..a9489702b 100644 --- a/_ergodic__moves__3_8hpp__incl.svg +++ b/_ergodic__moves__3_8hpp__incl.svg @@ -69,16 +69,16 @@ var sectionId = 'dynsection-0'; Node2 - -tl/expected.hpp + +expected Node1->Node2 - - + + diff --git a/_ergodic__moves__3_8hpp__incl_org.svg b/_ergodic__moves__3_8hpp__incl_org.svg index ab8433aa6..0e95afedc 100644 --- a/_ergodic__moves__3_8hpp__incl_org.svg +++ b/_ergodic__moves__3_8hpp__incl_org.svg @@ -23,16 +23,16 @@ Node2 - -tl/expected.hpp + +expected Node1->Node2 - - + + diff --git a/_ergodic__moves__3_8hpp_source.html b/_ergodic__moves__3_8hpp_source.html index efcf82f85..265c9ddc8 100644 --- a/_ergodic__moves__3_8hpp_source.html +++ b/_ergodic__moves__3_8hpp_source.html @@ -87,7 +87,7 @@
14 #ifndef CDT_PLUSPLUS_ERGODIC_MOVES_3_HPP
15 #define CDT_PLUSPLUS_ERGODIC_MOVES_3_HPP
16 
-
17 #include <tl/expected.hpp>
+
17 #include <expected>
18 
19 #include "Manifold.hpp"
20 #include "Move_tracker.hpp"
@@ -95,7 +95,7 @@
22 namespace ergodic_moves
23 {
24  using Manifold = manifolds::Manifold_3;
-
25  using Expected = tl::expected<Manifold, std::string>;
+
25  using Expected = std::expected<Manifold, std::string>;
26  using Cell_handle = Cell_handle_t<3>;
27  using Cell_container = std::vector<Cell_handle>;
28  using Edge_handle = Edge_handle_t<3>;
@@ -152,7 +152,7 @@
101  // We've run out of (2,2) cells
102  std::string const msg = "No (2,3) move possible.\n";
103  spdlog::warn(msg);
-
104  return tl::make_unexpected(msg);
+
104  return std::unexpected(msg);
105  }
106 
113  [[nodiscard]] inline auto try_32_move(Manifold& t_manifold,
@@ -180,7 +180,7 @@
143  // We've run out of edges to try
144  std::string const msg = "No (3,2) move possible.\n";
145  spdlog::warn(msg);
-
146  return tl::make_unexpected(msg);
+
146  return std::unexpected(msg);
147  } // do_32_move()
148 
154  [[nodiscard]] inline auto find_adjacent_31_cell(Cell_handle const& t_cell)
@@ -229,7 +229,7 @@
211 #ifndef NDEBUG
212  spdlog::trace(msg);
213 #endif
-
214  return tl::make_unexpected(msg);
+
214  return std::unexpected(msg);
215  }
216 
217  // Get indices of vertices of common face with respect to bottom cell
@@ -254,7 +254,7 @@
236 #ifndef NDEBUG
237  spdlog::trace(msg);
238 #endif
-
239  return tl::make_unexpected(msg);
+
239  return std::unexpected(msg);
240  }
241 
242  // Do the (2,6) move
@@ -275,7 +275,7 @@
257 #ifndef NDEBUG
258  spdlog::trace(msg);
259 #endif
-
260  return tl::make_unexpected(msg);
+
260  return std::unexpected(msg);
261  }
262 
263  // Each incident cell should be combinatorially and geometrically valid
@@ -293,7 +293,7 @@
275 #ifndef NDEBUG
276  spdlog::trace(msg);
277 #endif
-
278  return tl::make_unexpected(msg);
+
278  return std::unexpected(msg);
279  }
280 
281  // Now assign a geometric point to the center vertex
@@ -329,7 +329,7 @@
311 #ifndef NDEBUG
312  spdlog::trace(msg);
313 #endif
-
314  return tl::make_unexpected(msg);
+
314  return std::unexpected(msg);
315  }
316 
317  return t_manifold;
@@ -342,7 +342,7 @@
324  // We've run out of (1,3) simplices to try
325  std::string const msg = "No (2,6) move possible.\n";
326  spdlog::warn(msg);
-
327  return tl::make_unexpected(msg);
+
327  return std::unexpected(msg);
328  } // do_26_move()
329 
338  [[nodiscard]] inline auto is_62_movable(Manifold const& manifold,
@@ -470,7 +470,7 @@
478  // We've run out of vertices to try
479  std::string const msg = "No (6,2) move possible.\n";
480  spdlog::warn(msg);
-
481  return tl::make_unexpected(msg);
+
481  return std::unexpected(msg);
482  } // do_62_move()
483 
490  [[nodiscard]] inline auto incident_cells_from_edge(
@@ -776,7 +776,7 @@
834  // We've run out of edges to try
835  std::string const msg = "No (4,4) move possible.\n";
836  spdlog::warn(msg);
-
837  return tl::make_unexpected(msg);
+
837  return std::unexpected(msg);
838  } // do_44_move()
839 
845  [[nodiscard]] inline auto check_move(Manifold const& t_before,
@@ -876,7 +876,7 @@ diff --git a/_ergodic__moves__3__test_8cpp.html b/_ergodic__moves__3__test_8cpp.html index 325a7d537..96d8062e4 100644 --- a/_ergodic__moves__3__test_8cpp.html +++ b/_ergodic__moves__3__test_8cpp.html @@ -213,7 +213,7 @@

diff --git a/_ergodic__moves__3__test_8cpp__incl.map b/_ergodic__moves__3__test_8cpp__incl.map index 0c52af5f1..4b37254ba 100644 --- a/_ergodic__moves__3__test_8cpp__incl.map +++ b/_ergodic__moves__3__test_8cpp__incl.map @@ -3,7 +3,7 @@ - + diff --git a/_ergodic__moves__3__test_8cpp__incl.md5 b/_ergodic__moves__3__test_8cpp__incl.md5 index 26ee620e3..4a0dd6d97 100644 --- a/_ergodic__moves__3__test_8cpp__incl.md5 +++ b/_ergodic__moves__3__test_8cpp__incl.md5 @@ -1 +1 @@ -4edec92ed2c8a51646f481be2770b092 \ No newline at end of file +9408100715479416285fd6c880f00c03 \ No newline at end of file diff --git a/_ergodic__moves__3__test_8cpp__incl.svg b/_ergodic__moves__3__test_8cpp__incl.svg index d20802260..eea0c60c7 100644 --- a/_ergodic__moves__3__test_8cpp__incl.svg +++ b/_ergodic__moves__3__test_8cpp__incl.svg @@ -114,16 +114,16 @@ var sectionId = 'dynsection-0'; Node3 - -tl/expected.hpp + +expected Node2->Node3 - - + + diff --git a/_ergodic__moves__3__test_8cpp__incl_org.svg b/_ergodic__moves__3__test_8cpp__incl_org.svg index d1e54a969..f0f8f030b 100644 --- a/_ergodic__moves__3__test_8cpp__incl_org.svg +++ b/_ergodic__moves__3__test_8cpp__incl_org.svg @@ -68,16 +68,16 @@ Node3 - -tl/expected.hpp + +expected Node2->Node3 - - + + diff --git a/_ergodic__moves__3__test_8cpp_source.html b/_ergodic__moves__3__test_8cpp_source.html index a729ef95a..3cd3f6dc8 100644 --- a/_ergodic__moves__3__test_8cpp_source.html +++ b/_ergodic__moves__3__test_8cpp_source.html @@ -646,7 +646,7 @@ diff --git a/_foliated__triangulation_8hpp.html b/_foliated__triangulation_8hpp.html index 20901a589..c98b640b5 100644 --- a/_foliated__triangulation_8hpp.html +++ b/_foliated__triangulation_8hpp.html @@ -2073,7 +2073,7 @@

diff --git a/_foliated__triangulation_8hpp_source.html b/_foliated__triangulation_8hpp_source.html index 98337a5ba..dc2996a8b 100644 --- a/_foliated__triangulation_8hpp_source.html +++ b/_foliated__triangulation_8hpp_source.html @@ -1391,7 +1391,7 @@ diff --git a/_foliated__triangulation__test_8cpp.html b/_foliated__triangulation__test_8cpp.html index e39d64e0e..3e898b399 100644 --- a/_foliated__triangulation__test_8cpp.html +++ b/_foliated__triangulation__test_8cpp.html @@ -165,7 +165,7 @@

diff --git a/_foliated__triangulation__test_8cpp_source.html b/_foliated__triangulation__test_8cpp_source.html index 535234340..8b82b2f0d 100644 --- a/_foliated__triangulation__test_8cpp_source.html +++ b/_foliated__triangulation__test_8cpp_source.html @@ -1019,7 +1019,7 @@ diff --git a/_function__ref__test_8cpp.html b/_function__ref__test_8cpp.html index ce8877b6a..754f9d332 100644 --- a/_function__ref__test_8cpp.html +++ b/_function__ref__test_8cpp.html @@ -111,7 +111,7 @@ diff --git a/_function__ref__test_8cpp__incl.map b/_function__ref__test_8cpp__incl.map index 59c51d0ee..c710b1869 100644 --- a/_function__ref__test_8cpp__incl.map +++ b/_function__ref__test_8cpp__incl.map @@ -3,7 +3,7 @@ - + diff --git a/_function__ref__test_8cpp__incl.md5 b/_function__ref__test_8cpp__incl.md5 index 9786f79f4..d81c42228 100644 --- a/_function__ref__test_8cpp__incl.md5 +++ b/_function__ref__test_8cpp__incl.md5 @@ -1 +1 @@ -13247a3e701625392ce8417d31db41e8 \ No newline at end of file +7465e26b1f6ebfc30e2bb7babe520b3f \ No newline at end of file diff --git a/_function__ref__test_8cpp__incl.svg b/_function__ref__test_8cpp__incl.svg index 8cab8366c..da657f812 100644 --- a/_function__ref__test_8cpp__incl.svg +++ b/_function__ref__test_8cpp__incl.svg @@ -114,16 +114,16 @@ var sectionId = 'dynsection-0'; Node5 - -tl/expected.hpp + +expected Node4->Node5 - - + + diff --git a/_function__ref__test_8cpp__incl_org.svg b/_function__ref__test_8cpp__incl_org.svg index 8d29c91db..1978f05da 100644 --- a/_function__ref__test_8cpp__incl_org.svg +++ b/_function__ref__test_8cpp__incl_org.svg @@ -68,16 +68,16 @@ Node5 - -tl/expected.hpp + +expected Node4->Node5 - - + + diff --git a/_function__ref__test_8cpp_source.html b/_function__ref__test_8cpp_source.html index b73b25cfe..5ab6152a8 100644 --- a/_function__ref__test_8cpp_source.html +++ b/_function__ref__test_8cpp_source.html @@ -148,7 +148,7 @@
74 {
75  GIVEN("A simple lambda stored in a function_ref.")
76  {
-
77  auto const increment = [](int incr) { return ++incr; };
+
77  auto const increment = [](int incr) { return ++incr; };
78  tl::function_ref<int(int)> const lambda_ref(increment);
79  WHEN("Function_ref is called with 0.")
80  {
@@ -161,7 +161,7 @@
87  auto constexpr desired_timeslices = 4;
88  Manifold_3 manifold(desired_simplices, desired_timeslices);
89  REQUIRE(manifold.is_correct());
-
90  tl::function_ref<tl::expected<Manifold_3, std::string>(Manifold_3&)> const
+
90  tl::function_ref<std::expected<Manifold_3, std::string>(Manifold_3&)> const
91  complex_ref(ergodic_moves::do_23_move);
92  WHEN("The function_ref is invoked.")
93  {
@@ -216,7 +216,7 @@ diff --git a/_geometry_8hpp.html b/_geometry_8hpp.html index 9bf47a504..f5af7bdb6 100644 --- a/_geometry_8hpp.html +++ b/_geometry_8hpp.html @@ -128,7 +128,7 @@ diff --git a/_geometry_8hpp_source.html b/_geometry_8hpp_source.html index 8b2f36eb1..2df7ddd6e 100644 --- a/_geometry_8hpp_source.html +++ b/_geometry_8hpp_source.html @@ -179,7 +179,7 @@ diff --git a/_geometry__test_8cpp.html b/_geometry__test_8cpp.html index 41d937264..560055563 100644 --- a/_geometry__test_8cpp.html +++ b/_geometry__test_8cpp.html @@ -115,7 +115,7 @@ diff --git a/_geometry__test_8cpp_source.html b/_geometry__test_8cpp_source.html index 7617128b8..1625e8034 100644 --- a/_geometry__test_8cpp_source.html +++ b/_geometry__test_8cpp_source.html @@ -269,7 +269,7 @@ diff --git a/_manifold_8hpp.html b/_manifold_8hpp.html index 3fccf16c9..570c2c33d 100644 --- a/_manifold_8hpp.html +++ b/_manifold_8hpp.html @@ -198,7 +198,7 @@

diff --git a/_manifold_8hpp_source.html b/_manifold_8hpp_source.html index 5a2d61e48..300011331 100644 --- a/_manifold_8hpp_source.html +++ b/_manifold_8hpp_source.html @@ -557,7 +557,7 @@ diff --git a/_manifold__test_8cpp.html b/_manifold__test_8cpp.html index bda81c5a6..e2dc7f422 100644 --- a/_manifold__test_8cpp.html +++ b/_manifold__test_8cpp.html @@ -246,7 +246,7 @@

diff --git a/_manifold__test_8cpp_source.html b/_manifold__test_8cpp_source.html index 607c40c5b..810eeb315 100644 --- a/_manifold__test_8cpp_source.html +++ b/_manifold__test_8cpp_source.html @@ -868,7 +868,7 @@ diff --git a/_metropolis_8hpp.html b/_metropolis_8hpp.html index fb29c15f6..01e07e621 100644 --- a/_metropolis_8hpp.html +++ b/_metropolis_8hpp.html @@ -132,7 +132,7 @@ diff --git a/_metropolis_8hpp__incl.map b/_metropolis_8hpp__incl.map index 683e43d7c..c107c75c4 100644 --- a/_metropolis_8hpp__incl.map +++ b/_metropolis_8hpp__incl.map @@ -1,20 +1,20 @@ - - - - + + + + - - - - - + + + + + - - + + @@ -48,5 +48,5 @@ - + diff --git a/_metropolis_8hpp__incl.md5 b/_metropolis_8hpp__incl.md5 index 393b3054c..2bec5d8ac 100644 --- a/_metropolis_8hpp__incl.md5 +++ b/_metropolis_8hpp__incl.md5 @@ -1 +1 @@ -a22eb74b5b43201ecb86a8a7d22428a8 \ No newline at end of file +fbdb60f48d3d14434e8b5b30d84ab1c6 \ No newline at end of file diff --git a/_metropolis_8hpp__incl.svg b/_metropolis_8hpp__incl.svg index 2f3ec9c24..3ae31ae47 100644 --- a/_metropolis_8hpp__incl.svg +++ b/_metropolis_8hpp__incl.svg @@ -83,61 +83,61 @@ var sectionId = 'dynsection-0'; Node50 - -S3Action.hpp + +S3Action.hpp Node1->Node50 - - + + Node3 - -Move_command.hpp + +Move_command.hpp Node2->Node3 - - + + Node4 - -Apply_move.hpp + +Apply_move.hpp Node3->Node4 - - + + Node10 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node3->Node10 - - + + @@ -151,89 +151,89 @@ var sectionId = 'dynsection-0'; Node4->Node5 - - + + Node6 - -functional + +expected Node4->Node6 - - + + Node7 - -string + +functional Node4->Node7 - - + + Node8 - -tl/expected.hpp + +string Node4->Node8 - - + + Node9 - -tl/function_ref.hpp + +tl/function_ref.hpp Node4->Node9 - - + + - + -Node10->Node8 - - +Node10->Node6 + + Node11 - -Manifold.hpp + +Manifold.hpp Node10->Node11 - - + + @@ -247,8 +247,8 @@ var sectionId = 'dynsection-0'; Node10->Node47 - - + + @@ -262,38 +262,38 @@ var sectionId = 'dynsection-0'; Node11->Node12 - - + + Node13 - -unordered_set + +unordered_set Node11->Node13 - - + + Node14 - -utility + +utility Node11->Node14 - - + + @@ -307,8 +307,8 @@ var sectionId = 'dynsection-0'; Node11->Node15 - - + + @@ -484,9 +484,9 @@ var sectionId = 'dynsection-0'; - + -Node27->Node7 +Node27->Node8 @@ -804,7 +804,7 @@ var sectionId = 'dynsection-0'; Node47->Node38 - + @@ -840,23 +840,23 @@ var sectionId = 'dynsection-0'; Node50->Node24 - - + + Node51 - -mpfr.h + +mpfr.h Node50->Node51 - - + + diff --git a/_metropolis_8hpp__incl_org.svg b/_metropolis_8hpp__incl_org.svg index de7b7ea76..1957c02af 100644 --- a/_metropolis_8hpp__incl_org.svg +++ b/_metropolis_8hpp__incl_org.svg @@ -37,61 +37,61 @@ Node50 - -S3Action.hpp + +S3Action.hpp Node1->Node50 - - + + Node3 - -Move_command.hpp + +Move_command.hpp Node2->Node3 - - + + Node4 - -Apply_move.hpp + +Apply_move.hpp Node3->Node4 - - + + Node10 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node3->Node10 - - + + @@ -105,89 +105,89 @@ Node4->Node5 - - + + Node6 - -functional + +expected Node4->Node6 - - + + Node7 - -string + +functional Node4->Node7 - - + + Node8 - -tl/expected.hpp + +string Node4->Node8 - - + + Node9 - -tl/function_ref.hpp + +tl/function_ref.hpp Node4->Node9 - - + + - + -Node10->Node8 - - +Node10->Node6 + + Node11 - -Manifold.hpp + +Manifold.hpp Node10->Node11 - - + + @@ -201,8 +201,8 @@ Node10->Node47 - - + + @@ -216,38 +216,38 @@ Node11->Node12 - - + + Node13 - -unordered_set + +unordered_set Node11->Node13 - - + + Node14 - -utility + +utility Node11->Node14 - - + + @@ -261,8 +261,8 @@ Node11->Node15 - - + + @@ -438,9 +438,9 @@ - + -Node27->Node7 +Node27->Node8 @@ -758,7 +758,7 @@ Node47->Node38 - + @@ -794,23 +794,23 @@ Node50->Node24 - - + + Node51 - -mpfr.h + +mpfr.h Node50->Node51 - - + + diff --git a/_metropolis_8hpp_source.html b/_metropolis_8hpp_source.html index 5dd10d1c6..828440e70 100644 --- a/_metropolis_8hpp_source.html +++ b/_metropolis_8hpp_source.html @@ -541,7 +541,7 @@ diff --git a/_metropolis__test_8cpp.html b/_metropolis__test_8cpp.html index 7fe616fe8..996dcaae8 100644 --- a/_metropolis__test_8cpp.html +++ b/_metropolis__test_8cpp.html @@ -150,7 +150,7 @@

diff --git a/_metropolis__test_8cpp__incl.map b/_metropolis__test_8cpp__incl.map index 508bb3dfa..6930408e7 100644 --- a/_metropolis__test_8cpp__incl.map +++ b/_metropolis__test_8cpp__incl.map @@ -1,24 +1,24 @@ - - - - - + + + + + - + - - - - + + + + - - + + @@ -48,5 +48,5 @@ - + diff --git a/_metropolis__test_8cpp__incl.md5 b/_metropolis__test_8cpp__incl.md5 index b18c858e2..2d2a4c281 100644 --- a/_metropolis__test_8cpp__incl.md5 +++ b/_metropolis__test_8cpp__incl.md5 @@ -1 +1 @@ -d4f88ed94c4f16dfac32d5f32f9508dc \ No newline at end of file +52c6842c5c1df95ac5d718ee2a4988ea \ No newline at end of file diff --git a/_metropolis__test_8cpp__incl.svg b/_metropolis__test_8cpp__incl.svg index e45b3fae0..6f02e0acf 100644 --- a/_metropolis__test_8cpp__incl.svg +++ b/_metropolis__test_8cpp__incl.svg @@ -59,8 +59,8 @@ var sectionId = 'dynsection-0'; Node1 - -tests/Metropolis_test.cpp + +tests/Metropolis_test.cpp @@ -68,61 +68,61 @@ var sectionId = 'dynsection-0'; Node2 - -Metropolis.hpp + +Metropolis.hpp Node1->Node2 - - + + Node53 - -doctest/doctest.h + +doctest/doctest.h Node1->Node53 - - + + Node3 - -Move_strategy.hpp + +Move_strategy.hpp Node2->Node3 - - + + Node51 - -S3Action.hpp + +S3Action.hpp Node2->Node51 - - + + @@ -136,23 +136,23 @@ var sectionId = 'dynsection-0'; Node3->Node4 - - + + Node5 - -Apply_move.hpp + +Apply_move.hpp Node4->Node5 - - + + @@ -181,74 +181,74 @@ var sectionId = 'dynsection-0'; Node5->Node6 - - + + Node7 - -functional + +expected Node5->Node7 - - + + Node8 - -string + +functional Node5->Node8 - - + + Node9 - -tl/expected.hpp + +string Node5->Node9 - - + + Node10 - -tl/function_ref.hpp + +tl/function_ref.hpp Node5->Node10 - - + + - + -Node11->Node9 - - +Node11->Node7 + + @@ -329,31 +329,31 @@ var sectionId = 'dynsection-0'; Node16 - -Geometry.hpp + +Geometry.hpp Node12->Node16 - - + + Node17 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node16->Node17 - - + + @@ -367,8 +367,8 @@ var sectionId = 'dynsection-0'; Node17->Node18 - - + + @@ -382,8 +382,8 @@ var sectionId = 'dynsection-0'; Node17->Node19 - - + + @@ -397,8 +397,8 @@ var sectionId = 'dynsection-0'; Node17->Node28 - - + + @@ -483,9 +483,9 @@ var sectionId = 'dynsection-0'; - + -Node28->Node8 +Node28->Node9 @@ -803,8 +803,8 @@ var sectionId = 'dynsection-0'; Node48->Node39 - - + + @@ -839,23 +839,23 @@ var sectionId = 'dynsection-0'; Node51->Node25 - - + + Node52 - -mpfr.h + +mpfr.h Node51->Node52 - - + + diff --git a/_metropolis__test_8cpp__incl_org.svg b/_metropolis__test_8cpp__incl_org.svg index 685eac46f..446ecf4fe 100644 --- a/_metropolis__test_8cpp__incl_org.svg +++ b/_metropolis__test_8cpp__incl_org.svg @@ -13,8 +13,8 @@ Node1 - -tests/Metropolis_test.cpp + +tests/Metropolis_test.cpp @@ -22,61 +22,61 @@ Node2 - -Metropolis.hpp + +Metropolis.hpp Node1->Node2 - - + + Node53 - -doctest/doctest.h + +doctest/doctest.h Node1->Node53 - - + + Node3 - -Move_strategy.hpp + +Move_strategy.hpp Node2->Node3 - - + + Node51 - -S3Action.hpp + +S3Action.hpp Node2->Node51 - - + + @@ -90,23 +90,23 @@ Node3->Node4 - - + + Node5 - -Apply_move.hpp + +Apply_move.hpp Node4->Node5 - - + + @@ -135,74 +135,74 @@ Node5->Node6 - - + + Node7 - -functional + +expected Node5->Node7 - - + + Node8 - -string + +functional Node5->Node8 - - + + Node9 - -tl/expected.hpp + +string Node5->Node9 - - + + Node10 - -tl/function_ref.hpp + +tl/function_ref.hpp Node5->Node10 - - + + - + -Node11->Node9 - - +Node11->Node7 + + @@ -283,31 +283,31 @@ Node16 - -Geometry.hpp + +Geometry.hpp Node12->Node16 - - + + Node17 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node16->Node17 - - + + @@ -321,8 +321,8 @@ Node17->Node18 - - + + @@ -336,8 +336,8 @@ Node17->Node19 - - + + @@ -351,8 +351,8 @@ Node17->Node28 - - + + @@ -437,9 +437,9 @@ - + -Node28->Node8 +Node28->Node9 @@ -757,8 +757,8 @@ Node48->Node39 - - + + @@ -793,23 +793,23 @@ Node51->Node25 - - + + Node52 - -mpfr.h + +mpfr.h Node51->Node52 - - + + diff --git a/_metropolis__test_8cpp_source.html b/_metropolis__test_8cpp_source.html index b6331513d..3600c373e 100644 --- a/_metropolis__test_8cpp_source.html +++ b/_metropolis__test_8cpp_source.html @@ -281,7 +281,7 @@ diff --git a/_move__always_8hpp.html b/_move__always_8hpp.html index 276e190e9..e7a095429 100644 --- a/_move__always_8hpp.html +++ b/_move__always_8hpp.html @@ -127,7 +127,7 @@ diff --git a/_move__always_8hpp__incl.map b/_move__always_8hpp__incl.map index 9637801e5..21028a574 100644 --- a/_move__always_8hpp__incl.map +++ b/_move__always_8hpp__incl.map @@ -1,21 +1,21 @@ - - - - - + + + + + - - - - - - - - - - - + + + + + + + + + + + @@ -46,6 +46,6 @@ - - + + diff --git a/_move__always_8hpp__incl.md5 b/_move__always_8hpp__incl.md5 index 28ca93c6b..c4f077b0b 100644 --- a/_move__always_8hpp__incl.md5 +++ b/_move__always_8hpp__incl.md5 @@ -1 +1 @@ -cef029b0831c3ae51e77c43d5cd17ff2 \ No newline at end of file +5661742220f7c0472bcaaea5d6e818a3 \ No newline at end of file diff --git a/_move__always_8hpp__incl.svg b/_move__always_8hpp__incl.svg index 44761b9a0..f77b50b84 100644 --- a/_move__always_8hpp__incl.svg +++ b/_move__always_8hpp__incl.svg @@ -59,8 +59,8 @@ var sectionId = 'dynsection-0'; Node1 - -include/Move_always.hpp + +include/Move_always.hpp @@ -68,61 +68,61 @@ var sectionId = 'dynsection-0'; Node2 - -Move_strategy.hpp + +Move_strategy.hpp Node1->Node2 - - + + Node3 - -Move_command.hpp + +Move_command.hpp Node2->Node3 - - + + Node4 - -Apply_move.hpp + +Apply_move.hpp Node3->Node4 - - + + Node10 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node3->Node10 - - + + @@ -136,179 +136,179 @@ var sectionId = 'dynsection-0'; Node4->Node5 - - + + Node6 - -functional + +expected Node4->Node6 - - + + Node7 - -string + +functional Node4->Node7 - - + + Node8 - -tl/expected.hpp + +string Node4->Node8 - - + + Node9 - -tl/function_ref.hpp + +tl/function_ref.hpp Node4->Node9 - - + + - + -Node10->Node8 - - +Node10->Node6 + + Node11 - -Manifold.hpp + +Manifold.hpp Node10->Node11 - - + + Node47 - -Move_tracker.hpp + +Move_tracker.hpp Node10->Node47 - - + + Node12 - -cstddef + +cstddef Node11->Node12 - - + + Node13 - -unordered_set + +unordered_set Node11->Node13 - - + + Node14 - -utility + +utility Node11->Node14 - - + + Node15 - -Geometry.hpp + +Geometry.hpp Node11->Node15 - - + + Node16 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node15->Node16 - - + + @@ -322,8 +322,8 @@ var sectionId = 'dynsection-0'; Node16->Node17 - - + + @@ -337,8 +337,8 @@ var sectionId = 'dynsection-0'; Node16->Node18 - - + + @@ -352,8 +352,8 @@ var sectionId = 'dynsection-0'; Node16->Node27 - - + + @@ -482,12 +482,12 @@ var sectionId = 'dynsection-0'; Node27->Node5 - + - + -Node27->Node7 +Node27->Node8 @@ -659,7 +659,7 @@ var sectionId = 'dynsection-0'; Node27->Node38 - + @@ -689,7 +689,7 @@ var sectionId = 'dynsection-0'; Node27->Node40 - + @@ -704,7 +704,7 @@ var sectionId = 'dynsection-0'; Node27->Node41 - + @@ -787,56 +787,56 @@ var sectionId = 'dynsection-0'; Node47->Node12 - - + + Node47->Node24 - - + + Node47->Node27 - - + + Node47->Node38 - - + + Node48 - -array + +array Node47->Node48 - - + + Node49 - -gsl/util + +gsl/util Node47->Node49 - - + + diff --git a/_move__always_8hpp__incl_org.svg b/_move__always_8hpp__incl_org.svg index 9ba7f7e63..497d27a7c 100644 --- a/_move__always_8hpp__incl_org.svg +++ b/_move__always_8hpp__incl_org.svg @@ -13,8 +13,8 @@ Node1 - -include/Move_always.hpp + +include/Move_always.hpp @@ -22,61 +22,61 @@ Node2 - -Move_strategy.hpp + +Move_strategy.hpp Node1->Node2 - - + + Node3 - -Move_command.hpp + +Move_command.hpp Node2->Node3 - - + + Node4 - -Apply_move.hpp + +Apply_move.hpp Node3->Node4 - - + + Node10 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node3->Node10 - - + + @@ -90,179 +90,179 @@ Node4->Node5 - - + + Node6 - -functional + +expected Node4->Node6 - - + + Node7 - -string + +functional Node4->Node7 - - + + Node8 - -tl/expected.hpp + +string Node4->Node8 - - + + Node9 - -tl/function_ref.hpp + +tl/function_ref.hpp Node4->Node9 - - + + - + -Node10->Node8 - - +Node10->Node6 + + Node11 - -Manifold.hpp + +Manifold.hpp Node10->Node11 - - + + Node47 - -Move_tracker.hpp + +Move_tracker.hpp Node10->Node47 - - + + Node12 - -cstddef + +cstddef Node11->Node12 - - + + Node13 - -unordered_set + +unordered_set Node11->Node13 - - + + Node14 - -utility + +utility Node11->Node14 - - + + Node15 - -Geometry.hpp + +Geometry.hpp Node11->Node15 - - + + Node16 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node15->Node16 - - + + @@ -276,8 +276,8 @@ Node16->Node17 - - + + @@ -291,8 +291,8 @@ Node16->Node18 - - + + @@ -306,8 +306,8 @@ Node16->Node27 - - + + @@ -436,12 +436,12 @@ Node27->Node5 - + - + -Node27->Node7 +Node27->Node8 @@ -613,7 +613,7 @@ Node27->Node38 - + @@ -643,7 +643,7 @@ Node27->Node40 - + @@ -658,7 +658,7 @@ Node27->Node41 - + @@ -741,56 +741,56 @@ Node47->Node12 - - + + Node47->Node24 - - + + Node47->Node27 - - + + Node47->Node38 - - + + Node48 - -array + +array Node47->Node48 - - + + Node49 - -gsl/util + +gsl/util Node47->Node49 - - + + diff --git a/_move__always_8hpp_source.html b/_move__always_8hpp_source.html index d999bd256..a52b4125b 100644 --- a/_move__always_8hpp_source.html +++ b/_move__always_8hpp_source.html @@ -252,7 +252,7 @@ diff --git a/_move__always__test_8cpp.html b/_move__always__test_8cpp.html index 0b158e7a4..26ec89b80 100644 --- a/_move__always__test_8cpp.html +++ b/_move__always__test_8cpp.html @@ -115,7 +115,7 @@ diff --git a/_move__always__test_8cpp__incl.map b/_move__always__test_8cpp__incl.map index 28b74d485..f13243634 100644 --- a/_move__always__test_8cpp__incl.map +++ b/_move__always__test_8cpp__incl.map @@ -1,16 +1,16 @@ - - - - - - - + + + + + + + - - - - + + + + diff --git a/_move__always__test_8cpp__incl.md5 b/_move__always__test_8cpp__incl.md5 index 06c5f9ed1..8f5052b4e 100644 --- a/_move__always__test_8cpp__incl.md5 +++ b/_move__always__test_8cpp__incl.md5 @@ -1 +1 @@ -8e384de3885aa6c106bb4fe26e1c6749 \ No newline at end of file +3cc6666196c20b302150c2d7ee763dda \ No newline at end of file diff --git a/_move__always__test_8cpp__incl.svg b/_move__always__test_8cpp__incl.svg index 537000884..49ceb5e08 100644 --- a/_move__always__test_8cpp__incl.svg +++ b/_move__always__test_8cpp__incl.svg @@ -59,8 +59,8 @@ var sectionId = 'dynsection-0'; Node1 - -tests/Move_always_test.cpp + +tests/Move_always_test.cpp @@ -68,91 +68,91 @@ var sectionId = 'dynsection-0'; Node2 - -Move_always.hpp + +Move_always.hpp Node1->Node2 - - + + Node51 - -doctest/doctest.h + +doctest/doctest.h Node1->Node51 - - + + Node3 - -Move_strategy.hpp + +Move_strategy.hpp Node2->Node3 - - + + Node4 - -Move_command.hpp + +Move_command.hpp Node3->Node4 - - + + Node5 - -Apply_move.hpp + +Apply_move.hpp Node4->Node5 - - + + Node11 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node4->Node11 - - + + @@ -166,74 +166,74 @@ var sectionId = 'dynsection-0'; Node5->Node6 - - + + Node7 - -functional + +expected Node5->Node7 - - + + Node8 - -string + +functional Node5->Node8 - - + + Node9 - -tl/expected.hpp + +string Node5->Node9 - - + + Node10 - -tl/function_ref.hpp + +tl/function_ref.hpp Node5->Node10 - - + + - + -Node11->Node9 - - +Node11->Node7 + + @@ -247,8 +247,8 @@ var sectionId = 'dynsection-0'; Node11->Node12 - - + + @@ -262,8 +262,8 @@ var sectionId = 'dynsection-0'; Node11->Node48 - - + + @@ -499,9 +499,9 @@ var sectionId = 'dynsection-0'; - + -Node28->Node8 +Node28->Node9 diff --git a/_move__always__test_8cpp__incl_org.svg b/_move__always__test_8cpp__incl_org.svg index a3585bb08..247553db2 100644 --- a/_move__always__test_8cpp__incl_org.svg +++ b/_move__always__test_8cpp__incl_org.svg @@ -13,8 +13,8 @@ Node1 - -tests/Move_always_test.cpp + +tests/Move_always_test.cpp @@ -22,91 +22,91 @@ Node2 - -Move_always.hpp + +Move_always.hpp Node1->Node2 - - + + Node51 - -doctest/doctest.h + +doctest/doctest.h Node1->Node51 - - + + Node3 - -Move_strategy.hpp + +Move_strategy.hpp Node2->Node3 - - + + Node4 - -Move_command.hpp + +Move_command.hpp Node3->Node4 - - + + Node5 - -Apply_move.hpp + +Apply_move.hpp Node4->Node5 - - + + Node11 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node4->Node11 - - + + @@ -120,74 +120,74 @@ Node5->Node6 - - + + Node7 - -functional + +expected Node5->Node7 - - + + Node8 - -string + +functional Node5->Node8 - - + + Node9 - -tl/expected.hpp + +string Node5->Node9 - - + + Node10 - -tl/function_ref.hpp + +tl/function_ref.hpp Node5->Node10 - - + + - + -Node11->Node9 - - +Node11->Node7 + + @@ -201,8 +201,8 @@ Node11->Node12 - - + + @@ -216,8 +216,8 @@ Node11->Node48 - - + + @@ -453,9 +453,9 @@ - + -Node28->Node8 +Node28->Node9 diff --git a/_move__always__test_8cpp_source.html b/_move__always__test_8cpp_source.html index 99fc60955..8f987be98 100644 --- a/_move__always__test_8cpp_source.html +++ b/_move__always__test_8cpp_source.html @@ -259,7 +259,7 @@ diff --git a/_move__command_8hpp.html b/_move__command_8hpp.html index e8b6e27ac..1d6ca32de 100644 --- a/_move__command_8hpp.html +++ b/_move__command_8hpp.html @@ -116,7 +116,7 @@ diff --git a/_move__command_8hpp__incl.map b/_move__command_8hpp__incl.map index 06dbc9b69..d58b4de98 100644 --- a/_move__command_8hpp__incl.map +++ b/_move__command_8hpp__incl.map @@ -1,19 +1,19 @@ - - - + + + - - - - - - - - - - - + + + + + + + + + + + @@ -44,6 +44,6 @@ - - + + diff --git a/_move__command_8hpp__incl.md5 b/_move__command_8hpp__incl.md5 index 3c80b2f4f..8047bc6dc 100644 --- a/_move__command_8hpp__incl.md5 +++ b/_move__command_8hpp__incl.md5 @@ -1 +1 @@ -168fa71907e1ff40b7e7b42931e72b68 \ No newline at end of file +f0966c1e0aa13c089821effe7b1f0782 \ No newline at end of file diff --git a/_move__command_8hpp__incl.svg b/_move__command_8hpp__incl.svg index c884d2220..321d40962 100644 --- a/_move__command_8hpp__incl.svg +++ b/_move__command_8hpp__incl.svg @@ -59,8 +59,8 @@ var sectionId = 'dynsection-0'; Node1 - -include/Move_command.hpp + +include/Move_command.hpp @@ -68,31 +68,31 @@ var sectionId = 'dynsection-0'; Node2 - -Apply_move.hpp + +Apply_move.hpp Node1->Node2 - - + + Node8 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node1->Node8 - - + + @@ -106,179 +106,179 @@ var sectionId = 'dynsection-0'; Node2->Node3 - - + + Node4 - -functional + +expected Node2->Node4 - - + + Node5 - -string + +functional Node2->Node5 - - + + Node6 - -tl/expected.hpp + +string Node2->Node6 - - + + Node7 - -tl/function_ref.hpp + +tl/function_ref.hpp Node2->Node7 - - + + - + -Node8->Node6 - - +Node8->Node4 + + Node9 - -Manifold.hpp + +Manifold.hpp Node8->Node9 - - + + Node45 - -Move_tracker.hpp + +Move_tracker.hpp Node8->Node45 - - + + Node10 - -cstddef + +cstddef Node9->Node10 - - + + Node11 - -unordered_set + +unordered_set Node9->Node11 - - + + Node12 - -utility + +utility Node9->Node12 - - + + Node13 - -Geometry.hpp + +Geometry.hpp Node9->Node13 - - + + Node14 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node13->Node14 - - + + @@ -292,8 +292,8 @@ var sectionId = 'dynsection-0'; Node14->Node15 - - + + @@ -307,8 +307,8 @@ var sectionId = 'dynsection-0'; Node14->Node16 - - + + @@ -322,8 +322,8 @@ var sectionId = 'dynsection-0'; Node14->Node25 - - + + @@ -452,12 +452,12 @@ var sectionId = 'dynsection-0'; Node25->Node3 - + - + -Node25->Node5 +Node25->Node6 @@ -629,7 +629,7 @@ var sectionId = 'dynsection-0'; Node25->Node36 - + @@ -659,7 +659,7 @@ var sectionId = 'dynsection-0'; Node25->Node38 - + @@ -674,7 +674,7 @@ var sectionId = 'dynsection-0'; Node25->Node39 - + @@ -757,56 +757,56 @@ var sectionId = 'dynsection-0'; Node45->Node10 - - + + Node45->Node22 - - + + Node45->Node25 - - + + Node45->Node36 - - + + Node46 - -array + +array Node45->Node46 - - + + Node47 - -gsl/util + +gsl/util Node45->Node47 - - + + diff --git a/_move__command_8hpp__incl_org.svg b/_move__command_8hpp__incl_org.svg index b332c57c5..6abf6d0fb 100644 --- a/_move__command_8hpp__incl_org.svg +++ b/_move__command_8hpp__incl_org.svg @@ -13,8 +13,8 @@ Node1 - -include/Move_command.hpp + +include/Move_command.hpp @@ -22,31 +22,31 @@ Node2 - -Apply_move.hpp + +Apply_move.hpp Node1->Node2 - - + + Node8 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node1->Node8 - - + + @@ -60,179 +60,179 @@ Node2->Node3 - - + + Node4 - -functional + +expected Node2->Node4 - - + + Node5 - -string + +functional Node2->Node5 - - + + Node6 - -tl/expected.hpp + +string Node2->Node6 - - + + Node7 - -tl/function_ref.hpp + +tl/function_ref.hpp Node2->Node7 - - + + - + -Node8->Node6 - - +Node8->Node4 + + Node9 - -Manifold.hpp + +Manifold.hpp Node8->Node9 - - + + Node45 - -Move_tracker.hpp + +Move_tracker.hpp Node8->Node45 - - + + Node10 - -cstddef + +cstddef Node9->Node10 - - + + Node11 - -unordered_set + +unordered_set Node9->Node11 - - + + Node12 - -utility + +utility Node9->Node12 - - + + Node13 - -Geometry.hpp + +Geometry.hpp Node9->Node13 - - + + Node14 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node13->Node14 - - + + @@ -246,8 +246,8 @@ Node14->Node15 - - + + @@ -261,8 +261,8 @@ Node14->Node16 - - + + @@ -276,8 +276,8 @@ Node14->Node25 - - + + @@ -406,12 +406,12 @@ Node25->Node3 - + - + -Node25->Node5 +Node25->Node6 @@ -583,7 +583,7 @@ Node25->Node36 - + @@ -613,7 +613,7 @@ Node25->Node38 - + @@ -628,7 +628,7 @@ Node25->Node39 - + @@ -711,56 +711,56 @@ Node45->Node10 - - + + Node45->Node22 - - + + Node45->Node25 - - + + Node45->Node36 - - + + Node46 - -array + +array Node45->Node46 - - + + Node47 - -gsl/util + +gsl/util Node45->Node47 - - + + diff --git a/_move__command_8hpp_source.html b/_move__command_8hpp_source.html index 1c00313e9..e83294dc9 100644 --- a/_move__command_8hpp_source.html +++ b/_move__command_8hpp_source.html @@ -91,7 +91,7 @@
15 #include "Ergodic_moves_3.hpp"
16 
17 template <typename ManifoldType,
-
18  typename ExpectedType = tl::expected<ManifoldType, std::string>,
+
18  typename ExpectedType = std::expected<ManifoldType, std::string>,
19  typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
21 {
@@ -343,7 +343,7 @@ diff --git a/_move__command__test_8cpp.html b/_move__command__test_8cpp.html index cf5606ef5..25a08daa9 100644 --- a/_move__command__test_8cpp.html +++ b/_move__command__test_8cpp.html @@ -144,7 +144,7 @@

diff --git a/_move__command__test_8cpp__incl.map b/_move__command__test_8cpp__incl.map index 38244f2f5..07ceb2b67 100644 --- a/_move__command__test_8cpp__incl.map +++ b/_move__command__test_8cpp__incl.map @@ -1,22 +1,22 @@ - - - - - - + + + + + + - - - - - - - - - - - + + + + + + + + + + + @@ -47,6 +47,6 @@ - - + + diff --git a/_move__command__test_8cpp__incl.md5 b/_move__command__test_8cpp__incl.md5 index eac13932b..c3ac09517 100644 --- a/_move__command__test_8cpp__incl.md5 +++ b/_move__command__test_8cpp__incl.md5 @@ -1 +1 @@ -7726c3b132fffe723b44c5300f636d2d \ No newline at end of file +06bc78d27396ac107b20d519919b0363 \ No newline at end of file diff --git a/_move__command__test_8cpp__incl.svg b/_move__command__test_8cpp__incl.svg index f35eaa892..e5020f564 100644 --- a/_move__command__test_8cpp__incl.svg +++ b/_move__command__test_8cpp__incl.svg @@ -59,9 +59,9 @@ var sectionId = 'dynsection-0'; Node1 - -tests/Move_command -_test.cpp + +tests/Move_command +_test.cpp @@ -69,76 +69,76 @@ var sectionId = 'dynsection-0'; Node2 - -Move_command.hpp + +Move_command.hpp Node1->Node2 - - + + Node49 - -doctest/doctest.h + +doctest/doctest.h Node1->Node49 - - + + Node50 - -fmt/ranges.h + +fmt/ranges.h Node1->Node50 - - + + Node3 - -Apply_move.hpp + +Apply_move.hpp Node2->Node3 - - + + Node9 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node2->Node9 - - + + @@ -152,179 +152,179 @@ var sectionId = 'dynsection-0'; Node3->Node4 - - + + Node5 - -functional + +expected Node3->Node5 - - + + Node6 - -string + +functional Node3->Node6 - - + + Node7 - -tl/expected.hpp + +string Node3->Node7 - - + + Node8 - -tl/function_ref.hpp + +tl/function_ref.hpp Node3->Node8 - - + + - + -Node9->Node7 - - +Node9->Node5 + + Node10 - -Manifold.hpp + +Manifold.hpp Node9->Node10 - - + + Node46 - -Move_tracker.hpp + +Move_tracker.hpp Node9->Node46 - - + + Node11 - -cstddef + +cstddef Node10->Node11 - - + + Node12 - -unordered_set + +unordered_set Node10->Node12 - - + + Node13 - -utility + +utility Node10->Node13 - - + + Node14 - -Geometry.hpp + +Geometry.hpp Node10->Node14 - - + + Node15 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node14->Node15 - - + + @@ -338,8 +338,8 @@ var sectionId = 'dynsection-0'; Node15->Node16 - - + + @@ -353,8 +353,8 @@ var sectionId = 'dynsection-0'; Node15->Node17 - - + + @@ -368,8 +368,8 @@ var sectionId = 'dynsection-0'; Node15->Node26 - - + + @@ -498,12 +498,12 @@ var sectionId = 'dynsection-0'; Node26->Node4 - + - + -Node26->Node6 +Node26->Node7 @@ -675,7 +675,7 @@ var sectionId = 'dynsection-0'; Node26->Node37 - + @@ -705,7 +705,7 @@ var sectionId = 'dynsection-0'; Node26->Node39 - + @@ -720,7 +720,7 @@ var sectionId = 'dynsection-0'; Node26->Node40 - + @@ -803,56 +803,56 @@ var sectionId = 'dynsection-0'; Node46->Node11 - - + + Node46->Node23 - - + + Node46->Node26 - - + + Node46->Node37 - - + + Node47 - -array + +array Node46->Node47 - - + + Node48 - -gsl/util + +gsl/util Node46->Node48 - - + + diff --git a/_move__command__test_8cpp__incl_org.svg b/_move__command__test_8cpp__incl_org.svg index 8b11776d1..0a0c38bef 100644 --- a/_move__command__test_8cpp__incl_org.svg +++ b/_move__command__test_8cpp__incl_org.svg @@ -13,9 +13,9 @@ Node1 - -tests/Move_command -_test.cpp + +tests/Move_command +_test.cpp @@ -23,76 +23,76 @@ Node2 - -Move_command.hpp + +Move_command.hpp Node1->Node2 - - + + Node49 - -doctest/doctest.h + +doctest/doctest.h Node1->Node49 - - + + Node50 - -fmt/ranges.h + +fmt/ranges.h Node1->Node50 - - + + Node3 - -Apply_move.hpp + +Apply_move.hpp Node2->Node3 - - + + Node9 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node2->Node9 - - + + @@ -106,179 +106,179 @@ Node3->Node4 - - + + Node5 - -functional + +expected Node3->Node5 - - + + Node6 - -string + +functional Node3->Node6 - - + + Node7 - -tl/expected.hpp + +string Node3->Node7 - - + + Node8 - -tl/function_ref.hpp + +tl/function_ref.hpp Node3->Node8 - - + + - + -Node9->Node7 - - +Node9->Node5 + + Node10 - -Manifold.hpp + +Manifold.hpp Node9->Node10 - - + + Node46 - -Move_tracker.hpp + +Move_tracker.hpp Node9->Node46 - - + + Node11 - -cstddef + +cstddef Node10->Node11 - - + + Node12 - -unordered_set + +unordered_set Node10->Node12 - - + + Node13 - -utility + +utility Node10->Node13 - - + + Node14 - -Geometry.hpp + +Geometry.hpp Node10->Node14 - - + + Node15 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node14->Node15 - - + + @@ -292,8 +292,8 @@ Node15->Node16 - - + + @@ -307,8 +307,8 @@ Node15->Node17 - - + + @@ -322,8 +322,8 @@ Node15->Node26 - - + + @@ -452,12 +452,12 @@ Node26->Node4 - + - + -Node26->Node6 +Node26->Node7 @@ -629,7 +629,7 @@ Node26->Node37 - + @@ -659,7 +659,7 @@ Node26->Node39 - + @@ -674,7 +674,7 @@ Node26->Node40 - + @@ -757,56 +757,56 @@ Node46->Node11 - - + + Node46->Node23 - - + + Node46->Node26 - - + + Node46->Node37 - - + + Node47 - -array + +array Node46->Node47 - - + + Node48 - -gsl/util + +gsl/util Node46->Node48 - - + + diff --git a/_move__command__test_8cpp_source.html b/_move__command__test_8cpp_source.html index c81732013..0b581c03e 100644 --- a/_move__command__test_8cpp_source.html +++ b/_move__command__test_8cpp_source.html @@ -619,7 +619,7 @@ diff --git a/_move__strategy_8hpp.html b/_move__strategy_8hpp.html index c18cb592a..0d413baf6 100644 --- a/_move__strategy_8hpp.html +++ b/_move__strategy_8hpp.html @@ -126,7 +126,7 @@ diff --git a/_move__strategy_8hpp__incl.map b/_move__strategy_8hpp__incl.map index 9057982e2..058e63aca 100644 --- a/_move__strategy_8hpp__incl.map +++ b/_move__strategy_8hpp__incl.map @@ -1,20 +1,20 @@ - - - - + + + + - - - - - - - - - - - + + + + + + + + + + + @@ -45,6 +45,6 @@ - - + + diff --git a/_move__strategy_8hpp__incl.md5 b/_move__strategy_8hpp__incl.md5 index 4a53526d1..0e0cb287a 100644 --- a/_move__strategy_8hpp__incl.md5 +++ b/_move__strategy_8hpp__incl.md5 @@ -1 +1 @@ -e54d1b52732625502be86f66035d2665 \ No newline at end of file +1d9c31edc68bfbdab6524bf1699473f9 \ No newline at end of file diff --git a/_move__strategy_8hpp__incl.svg b/_move__strategy_8hpp__incl.svg index a3cfe01da..31dd4563d 100644 --- a/_move__strategy_8hpp__incl.svg +++ b/_move__strategy_8hpp__incl.svg @@ -59,8 +59,8 @@ var sectionId = 'dynsection-0'; Node1 - -include/Move_strategy.hpp + +include/Move_strategy.hpp @@ -68,46 +68,46 @@ var sectionId = 'dynsection-0'; Node2 - -Move_command.hpp + +Move_command.hpp Node1->Node2 - - + + Node3 - -Apply_move.hpp + +Apply_move.hpp Node2->Node3 - - + + Node9 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node2->Node9 - - + + @@ -121,179 +121,179 @@ var sectionId = 'dynsection-0'; Node3->Node4 - - + + Node5 - -functional + +expected Node3->Node5 - - + + Node6 - -string + +functional Node3->Node6 - - + + Node7 - -tl/expected.hpp + +string Node3->Node7 - - + + Node8 - -tl/function_ref.hpp + +tl/function_ref.hpp Node3->Node8 - - + + - + -Node9->Node7 - - +Node9->Node5 + + Node10 - -Manifold.hpp + +Manifold.hpp Node9->Node10 - - + + Node46 - -Move_tracker.hpp + +Move_tracker.hpp Node9->Node46 - - + + Node11 - -cstddef + +cstddef Node10->Node11 - - + + Node12 - -unordered_set + +unordered_set Node10->Node12 - - + + Node13 - -utility + +utility Node10->Node13 - - + + Node14 - -Geometry.hpp + +Geometry.hpp Node10->Node14 - - + + Node15 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node14->Node15 - - + + @@ -307,8 +307,8 @@ var sectionId = 'dynsection-0'; Node15->Node16 - - + + @@ -322,8 +322,8 @@ var sectionId = 'dynsection-0'; Node15->Node17 - - + + @@ -337,8 +337,8 @@ var sectionId = 'dynsection-0'; Node15->Node26 - - + + @@ -467,12 +467,12 @@ var sectionId = 'dynsection-0'; Node26->Node4 - + - + -Node26->Node6 +Node26->Node7 @@ -644,7 +644,7 @@ var sectionId = 'dynsection-0'; Node26->Node37 - + @@ -674,7 +674,7 @@ var sectionId = 'dynsection-0'; Node26->Node39 - + @@ -689,7 +689,7 @@ var sectionId = 'dynsection-0'; Node26->Node40 - + @@ -772,56 +772,56 @@ var sectionId = 'dynsection-0'; Node46->Node11 - - + + Node46->Node23 - - + + Node46->Node26 - - + + Node46->Node37 - - + + Node47 - -array + +array Node46->Node47 - - + + Node48 - -gsl/util + +gsl/util Node46->Node48 - - + + diff --git a/_move__strategy_8hpp__incl_org.svg b/_move__strategy_8hpp__incl_org.svg index 710ebf636..335b6a7c6 100644 --- a/_move__strategy_8hpp__incl_org.svg +++ b/_move__strategy_8hpp__incl_org.svg @@ -13,8 +13,8 @@ Node1 - -include/Move_strategy.hpp + +include/Move_strategy.hpp @@ -22,46 +22,46 @@ Node2 - -Move_command.hpp + +Move_command.hpp Node1->Node2 - - + + Node3 - -Apply_move.hpp + +Apply_move.hpp Node2->Node3 - - + + Node9 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node2->Node9 - - + + @@ -75,179 +75,179 @@ Node3->Node4 - - + + Node5 - -functional + +expected Node3->Node5 - - + + Node6 - -string + +functional Node3->Node6 - - + + Node7 - -tl/expected.hpp + +string Node3->Node7 - - + + Node8 - -tl/function_ref.hpp + +tl/function_ref.hpp Node3->Node8 - - + + - + -Node9->Node7 - - +Node9->Node5 + + Node10 - -Manifold.hpp + +Manifold.hpp Node9->Node10 - - + + Node46 - -Move_tracker.hpp + +Move_tracker.hpp Node9->Node46 - - + + Node11 - -cstddef + +cstddef Node10->Node11 - - + + Node12 - -unordered_set + +unordered_set Node10->Node12 - - + + Node13 - -utility + +utility Node10->Node13 - - + + Node14 - -Geometry.hpp + +Geometry.hpp Node10->Node14 - - + + Node15 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node14->Node15 - - + + @@ -261,8 +261,8 @@ Node15->Node16 - - + + @@ -276,8 +276,8 @@ Node15->Node17 - - + + @@ -291,8 +291,8 @@ Node15->Node26 - - + + @@ -421,12 +421,12 @@ Node26->Node4 - + - + -Node26->Node6 +Node26->Node7 @@ -598,7 +598,7 @@ Node26->Node37 - + @@ -628,7 +628,7 @@ Node26->Node39 - + @@ -643,7 +643,7 @@ Node26->Node40 - + @@ -726,56 +726,56 @@ Node46->Node11 - - + + Node46->Node23 - - + + Node46->Node26 - - + + Node46->Node37 - - + + Node47 - -array + +array Node46->Node47 - - + + Node48 - -gsl/util + +gsl/util Node46->Node48 - - + + diff --git a/_move__strategy_8hpp_source.html b/_move__strategy_8hpp_source.html index ffd968fc1..e5535d8fc 100644 --- a/_move__strategy_8hpp_source.html +++ b/_move__strategy_8hpp_source.html @@ -106,7 +106,7 @@ diff --git a/_move__tracker_8hpp.html b/_move__tracker_8hpp.html index 16f488b0b..9d11708c2 100644 --- a/_move__tracker_8hpp.html +++ b/_move__tracker_8hpp.html @@ -236,7 +236,7 @@

diff --git a/_move__tracker_8hpp_source.html b/_move__tracker_8hpp_source.html index 2e269322b..01ab6e00d 100644 --- a/_move__tracker_8hpp_source.html +++ b/_move__tracker_8hpp_source.html @@ -274,7 +274,7 @@ diff --git a/_move__tracker__test_8cpp.html b/_move__tracker__test_8cpp.html index 5f80b494c..f19a2f3ab 100644 --- a/_move__tracker__test_8cpp.html +++ b/_move__tracker__test_8cpp.html @@ -119,7 +119,7 @@ diff --git a/_move__tracker__test_8cpp_source.html b/_move__tracker__test_8cpp_source.html index 7af848ba1..ce7bc14d3 100644 --- a/_move__tracker__test_8cpp_source.html +++ b/_move__tracker__test_8cpp_source.html @@ -279,7 +279,7 @@ diff --git a/_periodic__3__complex_8hpp.html b/_periodic__3__complex_8hpp.html index b464625ec..184880736 100644 --- a/_periodic__3__complex_8hpp.html +++ b/_periodic__3__complex_8hpp.html @@ -173,7 +173,7 @@

diff --git a/_periodic__3__complex_8hpp_source.html b/_periodic__3__complex_8hpp_source.html index 60292fe70..c42fc2e07 100644 --- a/_periodic__3__complex_8hpp_source.html +++ b/_periodic__3__complex_8hpp_source.html @@ -125,7 +125,7 @@ diff --git a/_periodic__3__triangulations_8hpp.html b/_periodic__3__triangulations_8hpp.html index 04cdf7f63..d0bc9a506 100644 --- a/_periodic__3__triangulations_8hpp.html +++ b/_periodic__3__triangulations_8hpp.html @@ -234,7 +234,7 @@

diff --git a/_periodic__3__triangulations_8hpp_source.html b/_periodic__3__triangulations_8hpp_source.html index 93eada3f4..7f0d2a86a 100644 --- a/_periodic__3__triangulations_8hpp_source.html +++ b/_periodic__3__triangulations_8hpp_source.html @@ -144,7 +144,7 @@ diff --git a/_s3_action_8hpp.html b/_s3_action_8hpp.html index ae9208e1d..f05b407df 100644 --- a/_s3_action_8hpp.html +++ b/_s3_action_8hpp.html @@ -356,7 +356,7 @@

diff --git a/_s3_action_8hpp_source.html b/_s3_action_8hpp_source.html index 962580d9e..f5b27b977 100644 --- a/_s3_action_8hpp_source.html +++ b/_s3_action_8hpp_source.html @@ -449,7 +449,7 @@ diff --git a/_s3_action__test_8cpp.html b/_s3_action__test_8cpp.html index 37d9f3488..01da2fca0 100644 --- a/_s3_action__test_8cpp.html +++ b/_s3_action__test_8cpp.html @@ -111,7 +111,7 @@ diff --git a/_s3_action__test_8cpp_source.html b/_s3_action__test_8cpp_source.html index 782f3d1d8..35e75db9e 100644 --- a/_s3_action__test_8cpp_source.html +++ b/_s3_action__test_8cpp_source.html @@ -187,7 +187,7 @@ diff --git a/_settings_8hpp.html b/_settings_8hpp.html index 54fc7602a..9eb00c5df 100644 --- a/_settings_8hpp.html +++ b/_settings_8hpp.html @@ -241,7 +241,7 @@

diff --git a/_settings_8hpp_source.html b/_settings_8hpp_source.html index 754a45663..f5138df96 100644 --- a/_settings_8hpp_source.html +++ b/_settings_8hpp_source.html @@ -133,7 +133,7 @@ diff --git a/_settings__test_8cpp.html b/_settings__test_8cpp.html index fcf88473e..20ca253fb 100644 --- a/_settings__test_8cpp.html +++ b/_settings__test_8cpp.html @@ -102,7 +102,7 @@ diff --git a/_settings__test_8cpp_source.html b/_settings__test_8cpp_source.html index 424309d44..0577a825b 100644 --- a/_settings__test_8cpp_source.html +++ b/_settings__test_8cpp_source.html @@ -140,7 +140,7 @@ diff --git a/_tetrahedron__test_8cpp.html b/_tetrahedron__test_8cpp.html index 16141ea9a..09acb967b 100644 --- a/_tetrahedron__test_8cpp.html +++ b/_tetrahedron__test_8cpp.html @@ -124,7 +124,7 @@ diff --git a/_tetrahedron__test_8cpp_source.html b/_tetrahedron__test_8cpp_source.html index 011906d87..8dac3c8d8 100644 --- a/_tetrahedron__test_8cpp_source.html +++ b/_tetrahedron__test_8cpp_source.html @@ -343,7 +343,7 @@ diff --git a/_torus__d_8hpp.html b/_torus__d_8hpp.html index c78403dce..4695a96c9 100644 --- a/_torus__d_8hpp.html +++ b/_torus__d_8hpp.html @@ -190,7 +190,7 @@

diff --git a/_torus__d_8hpp_source.html b/_torus__d_8hpp_source.html index 239998ded..c973bea22 100644 --- a/_torus__d_8hpp_source.html +++ b/_torus__d_8hpp_source.html @@ -118,7 +118,7 @@ diff --git a/_torus__test_8cpp.html b/_torus__test_8cpp.html index 571eebca7..5942fb627 100644 --- a/_torus__test_8cpp.html +++ b/_torus__test_8cpp.html @@ -146,7 +146,7 @@

diff --git a/_torus__test_8cpp_source.html b/_torus__test_8cpp_source.html index d1ed54948..268b568a8 100644 --- a/_torus__test_8cpp_source.html +++ b/_torus__test_8cpp_source.html @@ -131,7 +131,7 @@ diff --git a/_triangulation__traits_8hpp.html b/_triangulation__traits_8hpp.html index d60280bda..9a1fe9437 100644 --- a/_triangulation__traits_8hpp.html +++ b/_triangulation__traits_8hpp.html @@ -120,7 +120,7 @@ diff --git a/_triangulation__traits_8hpp_source.html b/_triangulation__traits_8hpp_source.html index f9415c595..4c1829bf4 100644 --- a/_triangulation__traits_8hpp_source.html +++ b/_triangulation__traits_8hpp_source.html @@ -137,7 +137,7 @@ diff --git a/_utilities_8hpp.html b/_utilities_8hpp.html index 45e4b39ee..a3a7f9041 100644 --- a/_utilities_8hpp.html +++ b/_utilities_8hpp.html @@ -903,7 +903,7 @@

diff --git a/_utilities_8hpp_source.html b/_utilities_8hpp_source.html index 22ff7351e..89347b26d 100644 --- a/_utilities_8hpp_source.html +++ b/_utilities_8hpp_source.html @@ -446,7 +446,7 @@ diff --git a/_utilities__test_8cpp.html b/_utilities__test_8cpp.html index d19ae85cb..a96b0d3b3 100644 --- a/_utilities__test_8cpp.html +++ b/_utilities__test_8cpp.html @@ -133,7 +133,7 @@ diff --git a/_utilities__test_8cpp_source.html b/_utilities__test_8cpp_source.html index a5a0b3481..237de4d67 100644 --- a/_utilities__test_8cpp_source.html +++ b/_utilities__test_8cpp_source.html @@ -467,7 +467,7 @@ diff --git a/_vertex__test_8cpp.html b/_vertex__test_8cpp.html index a039af29b..8dfcb9da6 100644 --- a/_vertex__test_8cpp.html +++ b/_vertex__test_8cpp.html @@ -176,7 +176,7 @@

diff --git a/_vertex__test_8cpp_source.html b/_vertex__test_8cpp_source.html index a4efe9197..08d2379b4 100644 --- a/_vertex__test_8cpp_source.html +++ b/_vertex__test_8cpp_source.html @@ -330,7 +330,7 @@ diff --git a/annotated.html b/annotated.html index b5bdb53ec..bc7b0f5d4 100644 --- a/annotated.html +++ b/annotated.html @@ -99,7 +99,7 @@ diff --git a/bistellar-flip_8cpp.html b/bistellar-flip_8cpp.html index bd65d65b3..bfd3830a5 100644 --- a/bistellar-flip_8cpp.html +++ b/bistellar-flip_8cpp.html @@ -184,7 +184,7 @@

diff --git a/bistellar-flip_8cpp__incl.map b/bistellar-flip_8cpp__incl.map index d79e298fe..3bc5c4814 100644 --- a/bistellar-flip_8cpp__incl.map +++ b/bistellar-flip_8cpp__incl.map @@ -5,7 +5,7 @@ - + diff --git a/bistellar-flip_8cpp__incl.md5 b/bistellar-flip_8cpp__incl.md5 index e59825ff6..9c7bc22e0 100644 --- a/bistellar-flip_8cpp__incl.md5 +++ b/bistellar-flip_8cpp__incl.md5 @@ -1 +1 @@ -852f224b0ff831cd1fed42d920733714 \ No newline at end of file +c5e243aadb26bdb82992496e96ff333a \ No newline at end of file diff --git a/bistellar-flip_8cpp__incl.svg b/bistellar-flip_8cpp__incl.svg index 7dd4fb04e..69d3b9f13 100644 --- a/bistellar-flip_8cpp__incl.svg +++ b/bistellar-flip_8cpp__incl.svg @@ -143,16 +143,16 @@ var sectionId = 'dynsection-0'; Node7 - -tl/expected.hpp + +expected Node6->Node7 - - + + diff --git a/bistellar-flip_8cpp__incl_org.svg b/bistellar-flip_8cpp__incl_org.svg index 51ca2bb86..139b2afe1 100644 --- a/bistellar-flip_8cpp__incl_org.svg +++ b/bistellar-flip_8cpp__incl_org.svg @@ -97,16 +97,16 @@ Node7 - -tl/expected.hpp + +expected Node6->Node7 - - + + diff --git a/bistellar-flip_8cpp_source.html b/bistellar-flip_8cpp_source.html index e125a476c..f95049b75 100644 --- a/bistellar-flip_8cpp_source.html +++ b/bistellar-flip_8cpp_source.html @@ -205,7 +205,7 @@ diff --git a/bug.html b/bug.html index 395ea712b..ba9b6950d 100644 --- a/bug.html +++ b/bug.html @@ -81,7 +81,7 @@ diff --git a/cdt-opt_8cpp.html b/cdt-opt_8cpp.html index acff8e35b..76a70e012 100644 --- a/cdt-opt_8cpp.html +++ b/cdt-opt_8cpp.html @@ -137,7 +137,7 @@

diff --git a/cdt-opt_8cpp__incl.map b/cdt-opt_8cpp__incl.map index 58698956c..1135f15da 100644 --- a/cdt-opt_8cpp__incl.map +++ b/cdt-opt_8cpp__incl.map @@ -5,13 +5,13 @@ - + - - - - + + + + diff --git a/cdt-opt_8cpp__incl.md5 b/cdt-opt_8cpp__incl.md5 index 6d44eebaf..b9a06390c 100644 --- a/cdt-opt_8cpp__incl.md5 +++ b/cdt-opt_8cpp__incl.md5 @@ -1 +1 @@ -02e79bfd5fc2e0d801e7894162fc66eb \ No newline at end of file +042b4476f9c1e3ba0c1b6bfa413d57ab \ No newline at end of file diff --git a/cdt-opt_8cpp__incl.svg b/cdt-opt_8cpp__incl.svg index 383068b38..263ecccbf 100644 --- a/cdt-opt_8cpp__incl.svg +++ b/cdt-opt_8cpp__incl.svg @@ -143,16 +143,16 @@ var sectionId = 'dynsection-0'; Node5 - -Apply_move.hpp + +Apply_move.hpp Node4->Node5 - - + + @@ -181,74 +181,74 @@ var sectionId = 'dynsection-0'; Node5->Node6 - - + + Node7 - -functional + +expected Node5->Node7 - - + + Node8 - -string + +functional Node5->Node8 - - + + Node9 - -tl/expected.hpp + +string Node5->Node9 - - + + Node10 - -tl/function_ref.hpp + +tl/function_ref.hpp Node5->Node10 - - + + - + -Node11->Node9 - - +Node11->Node7 + + @@ -483,9 +483,9 @@ var sectionId = 'dynsection-0'; - + -Node28->Node8 +Node28->Node9 diff --git a/cdt-opt_8cpp__incl_org.svg b/cdt-opt_8cpp__incl_org.svg index 91d11682c..c84e82ffb 100644 --- a/cdt-opt_8cpp__incl_org.svg +++ b/cdt-opt_8cpp__incl_org.svg @@ -97,16 +97,16 @@ Node5 - -Apply_move.hpp + +Apply_move.hpp Node4->Node5 - - + + @@ -135,74 +135,74 @@ Node5->Node6 - - + + Node7 - -functional + +expected Node5->Node7 - - + + Node8 - -string + +functional Node5->Node8 - - + + Node9 - -tl/expected.hpp + +string Node5->Node9 - - + + Node10 - -tl/function_ref.hpp + +tl/function_ref.hpp Node5->Node10 - - + + - + -Node11->Node9 - - +Node11->Node7 + + @@ -437,9 +437,9 @@ - + -Node28->Node8 +Node28->Node9 diff --git a/cdt-opt_8cpp_source.html b/cdt-opt_8cpp_source.html index 5f4773df5..10ed6f51e 100644 --- a/cdt-opt_8cpp_source.html +++ b/cdt-opt_8cpp_source.html @@ -151,7 +151,7 @@ diff --git a/cdt-viewer_8cpp.html b/cdt-viewer_8cpp.html index 6a030f746..823d03945 100644 --- a/cdt-viewer_8cpp.html +++ b/cdt-viewer_8cpp.html @@ -173,7 +173,7 @@

diff --git a/cdt-viewer_8cpp_source.html b/cdt-viewer_8cpp_source.html index d888bae43..753cee3ea 100644 --- a/cdt-viewer_8cpp_source.html +++ b/cdt-viewer_8cpp_source.html @@ -238,7 +238,7 @@ diff --git a/cdt_8cpp.html b/cdt_8cpp.html index 69ea6db48..bc5cee5c0 100644 --- a/cdt_8cpp.html +++ b/cdt_8cpp.html @@ -183,7 +183,7 @@

diff --git a/cdt_8cpp__incl.map b/cdt_8cpp__incl.map index b46e34279..9d42beab2 100644 --- a/cdt_8cpp__incl.map +++ b/cdt_8cpp__incl.map @@ -1,25 +1,25 @@ - - - - - - - - - + + + + + + + + + - - - - - + + + + + - - - - + + + + @@ -48,5 +48,5 @@ - + diff --git a/cdt_8cpp__incl.md5 b/cdt_8cpp__incl.md5 index 149e4afac..b66a1caed 100644 --- a/cdt_8cpp__incl.md5 +++ b/cdt_8cpp__incl.md5 @@ -1 +1 @@ -9fa2f24aff754f59b2070aa0a70adf9f \ No newline at end of file +7e27fb679c7919871919b4efbe7bfc41 \ No newline at end of file diff --git a/cdt_8cpp__incl.svg b/cdt_8cpp__incl.svg index aaa9466f4..d47ffc990 100644 --- a/cdt_8cpp__incl.svg +++ b/cdt_8cpp__incl.svg @@ -59,8 +59,8 @@ var sectionId = 'dynsection-0'; Node1 - -src/cdt.cpp + +src/cdt.cpp @@ -68,121 +68,121 @@ var sectionId = 'dynsection-0'; Node2 - -CGAL/Real_timer.h + +CGAL/Real_timer.h Node1->Node2 - - + + Node3 - -docopt.h + +docopt.h Node1->Node3 - - + + Node4 - -Metropolis.hpp + +Metropolis.hpp Node1->Node4 - - + + Node5 - -Move_strategy.hpp + +Move_strategy.hpp Node4->Node5 - - + + Node53 - -S3Action.hpp + +S3Action.hpp Node4->Node53 - - + + Node6 - -Move_command.hpp + +Move_command.hpp Node5->Node6 - - + + Node7 - -Apply_move.hpp + +Apply_move.hpp Node6->Node7 - - + + Node13 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node6->Node13 - - + + @@ -196,89 +196,89 @@ var sectionId = 'dynsection-0'; Node7->Node8 - - + + Node9 - -functional + +expected Node7->Node9 - - + + Node10 - -string + +functional Node7->Node10 - - + + Node11 - -tl/expected.hpp + +string Node7->Node11 - - + + Node12 - -tl/function_ref.hpp + +tl/function_ref.hpp Node7->Node12 - - + + - + -Node13->Node11 - - +Node13->Node9 + + Node14 - -Manifold.hpp + +Manifold.hpp Node13->Node14 - - + + @@ -292,8 +292,8 @@ var sectionId = 'dynsection-0'; Node13->Node50 - - + + @@ -307,68 +307,68 @@ var sectionId = 'dynsection-0'; Node14->Node15 - - + + Node16 - -unordered_set + +unordered_set Node14->Node16 - - + + Node17 - -utility + +utility Node14->Node17 - - + + Node18 - -Geometry.hpp + +Geometry.hpp Node14->Node18 - - + + Node19 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node18->Node19 - - + + @@ -382,8 +382,8 @@ var sectionId = 'dynsection-0'; Node19->Node20 - - + + @@ -397,8 +397,8 @@ var sectionId = 'dynsection-0'; Node19->Node21 - - + + @@ -412,8 +412,8 @@ var sectionId = 'dynsection-0'; Node19->Node30 - - + + @@ -481,9 +481,9 @@ var sectionId = 'dynsection-0'; - + -Node30->Node10 +Node30->Node11 @@ -837,23 +837,23 @@ var sectionId = 'dynsection-0'; Node53->Node27 - - + + Node54 - -mpfr.h + +mpfr.h Node53->Node54 - - + + diff --git a/cdt_8cpp__incl_org.svg b/cdt_8cpp__incl_org.svg index 67bd5dfd1..c2254f8e5 100644 --- a/cdt_8cpp__incl_org.svg +++ b/cdt_8cpp__incl_org.svg @@ -13,8 +13,8 @@ Node1 - -src/cdt.cpp + +src/cdt.cpp @@ -22,121 +22,121 @@ Node2 - -CGAL/Real_timer.h + +CGAL/Real_timer.h Node1->Node2 - - + + Node3 - -docopt.h + +docopt.h Node1->Node3 - - + + Node4 - -Metropolis.hpp + +Metropolis.hpp Node1->Node4 - - + + Node5 - -Move_strategy.hpp + +Move_strategy.hpp Node4->Node5 - - + + Node53 - -S3Action.hpp + +S3Action.hpp Node4->Node53 - - + + Node6 - -Move_command.hpp + +Move_command.hpp Node5->Node6 - - + + Node7 - -Apply_move.hpp + +Apply_move.hpp Node6->Node7 - - + + Node13 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node6->Node13 - - + + @@ -150,89 +150,89 @@ Node7->Node8 - - + + Node9 - -functional + +expected Node7->Node9 - - + + Node10 - -string + +functional Node7->Node10 - - + + Node11 - -tl/expected.hpp + +string Node7->Node11 - - + + Node12 - -tl/function_ref.hpp + +tl/function_ref.hpp Node7->Node12 - - + + - + -Node13->Node11 - - +Node13->Node9 + + Node14 - -Manifold.hpp + +Manifold.hpp Node13->Node14 - - + + @@ -246,8 +246,8 @@ Node13->Node50 - - + + @@ -261,68 +261,68 @@ Node14->Node15 - - + + Node16 - -unordered_set + +unordered_set Node14->Node16 - - + + Node17 - -utility + +utility Node14->Node17 - - + + Node18 - -Geometry.hpp + +Geometry.hpp Node14->Node18 - - + + Node19 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node18->Node19 - - + + @@ -336,8 +336,8 @@ Node19->Node20 - - + + @@ -351,8 +351,8 @@ Node19->Node21 - - + + @@ -366,8 +366,8 @@ Node19->Node30 - - + + @@ -435,9 +435,9 @@ - + -Node30->Node10 +Node30->Node11 @@ -791,23 +791,23 @@ Node53->Node27 - - + + Node54 - -mpfr.h + +mpfr.h Node53->Node54 - - + + diff --git a/cdt_8cpp_source.html b/cdt_8cpp_source.html index 9d8c62669..a4ab7f925 100644 --- a/cdt_8cpp_source.html +++ b/cdt_8cpp_source.html @@ -284,7 +284,7 @@ diff --git a/class_move_command-members.html b/class_move_command-members.html index 230d00039..daca199b7 100644 --- a/class_move_command-members.html +++ b/class_move_command-members.html @@ -102,7 +102,7 @@

@@ -184,7 +184,7 @@

diff --git a/_apply__move_8hpp__incl.map b/_apply__move_8hpp__incl.map index 3d1de6c71..930c54adf 100644 --- a/_apply__move_8hpp__incl.map +++ b/_apply__move_8hpp__incl.map @@ -1,8 +1,8 @@ - + - - - - + + + + diff --git a/_apply__move_8hpp__incl.md5 b/_apply__move_8hpp__incl.md5 index 11663298d..094a5e902 100644 --- a/_apply__move_8hpp__incl.md5 +++ b/_apply__move_8hpp__incl.md5 @@ -1 +1 @@ -aaa83ac029a4af0a5d2eb3e629431527 \ No newline at end of file +9b52e81e3867feb1a65d282be907d8a0 \ No newline at end of file diff --git a/_apply__move_8hpp__incl.svg b/_apply__move_8hpp__incl.svg index 8e8300180..b3d3b3a40 100644 --- a/_apply__move_8hpp__incl.svg +++ b/_apply__move_8hpp__incl.svg @@ -4,17 +4,17 @@ - + include/Apply_move.hpp - + Node1 - -include/Apply_move.hpp + +include/Apply_move.hpp @@ -30,68 +30,68 @@ Node1->Node2 - - + + Node3 - -functional + +expected Node1->Node3 - - + + Node4 - -string + +functional Node1->Node4 - - + + Node5 - -tl/expected.hpp + +string Node1->Node5 - - + + Node6 - -tl/function_ref.hpp + +tl/function_ref.hpp Node1->Node6 - - + + diff --git a/_apply__move_8hpp_source.html b/_apply__move_8hpp_source.html index 68f48038e..dafb03f71 100644 --- a/_apply__move_8hpp_source.html +++ b/_apply__move_8hpp_source.html @@ -89,13 +89,13 @@
13 
14 #include <spdlog/spdlog.h>
15 
-
16 #include <functional>
-
17 #include <string>
-
18 #include <tl/expected.hpp>
+
16 #include <expected>
+
17 #include <functional>
+
18 #include <string>
19 #include <tl/function_ref.hpp>
20 
30 template <typename ManifoldType,
-
31  typename ExpectedType = tl::expected<ManifoldType, std::string>,
+
31  typename ExpectedType = std::expected<ManifoldType, std::string>,
32  typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
33 auto constexpr apply_move(ManifoldType&& t_manifold,
34  FunctionType t_move) noexcept -> decltype(auto)
@@ -119,7 +119,7 @@ diff --git a/_apply__move__test_8cpp.html b/_apply__move__test_8cpp.html index f10f1bb5e..e42290c93 100644 --- a/_apply__move__test_8cpp.html +++ b/_apply__move__test_8cpp.html @@ -111,7 +111,7 @@ diff --git a/_apply__move__test_8cpp__incl.map b/_apply__move__test_8cpp__incl.map index eccdaca66..e9c799c5c 100644 --- a/_apply__move__test_8cpp__incl.map +++ b/_apply__move__test_8cpp__incl.map @@ -1,20 +1,20 @@ - - - - + + + + - - - - - - - - - - - + + + + + + + + + + + @@ -45,6 +45,6 @@ - - + + diff --git a/_apply__move__test_8cpp__incl.md5 b/_apply__move__test_8cpp__incl.md5 index 2dfbf4bf7..f3d434882 100644 --- a/_apply__move__test_8cpp__incl.md5 +++ b/_apply__move__test_8cpp__incl.md5 @@ -1 +1 @@ -4110a39a1579abd5b8ab8d1f4f41ec59 \ No newline at end of file +296c274db9a8d2c57fb6c0ce03d66e87 \ No newline at end of file diff --git a/_apply__move__test_8cpp__incl.svg b/_apply__move__test_8cpp__incl.svg index 0a487b81d..19d273c78 100644 --- a/_apply__move__test_8cpp__incl.svg +++ b/_apply__move__test_8cpp__incl.svg @@ -59,8 +59,8 @@ var sectionId = 'dynsection-0'; Node1 - -tests/Apply_move_test.cpp + +tests/Apply_move_test.cpp @@ -68,46 +68,46 @@ var sectionId = 'dynsection-0'; Node2 - -Apply_move.hpp + +Apply_move.hpp Node1->Node2 - - + + Node8 - -doctest/doctest.h + +doctest/doctest.h Node1->Node8 - - + + Node9 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node1->Node9 - - + + @@ -121,179 +121,179 @@ var sectionId = 'dynsection-0'; Node2->Node3 - - + + Node4 - -functional + +expected Node2->Node4 - - + + Node5 - -string + +functional Node2->Node5 - - + + Node6 - -tl/expected.hpp + +string Node2->Node6 - - + + Node7 - -tl/function_ref.hpp + +tl/function_ref.hpp Node2->Node7 - - + + - + -Node9->Node6 - - +Node9->Node4 + + Node10 - -Manifold.hpp + +Manifold.hpp Node9->Node10 - - + + Node46 - -Move_tracker.hpp + +Move_tracker.hpp Node9->Node46 - - + + Node11 - -cstddef + +cstddef Node10->Node11 - - + + Node12 - -unordered_set + +unordered_set Node10->Node12 - - + + Node13 - -utility + +utility Node10->Node13 - - + + Node14 - -Geometry.hpp + +Geometry.hpp Node10->Node14 - - + + Node15 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node14->Node15 - - + + @@ -307,8 +307,8 @@ var sectionId = 'dynsection-0'; Node15->Node16 - - + + @@ -322,8 +322,8 @@ var sectionId = 'dynsection-0'; Node15->Node17 - - + + @@ -337,8 +337,8 @@ var sectionId = 'dynsection-0'; Node15->Node26 - - + + @@ -467,13 +467,13 @@ var sectionId = 'dynsection-0'; Node26->Node3 - + - + -Node26->Node5 - +Node26->Node6 + @@ -689,7 +689,7 @@ var sectionId = 'dynsection-0'; Node26->Node40 - + @@ -704,7 +704,7 @@ var sectionId = 'dynsection-0'; Node26->Node41 - + @@ -772,56 +772,56 @@ var sectionId = 'dynsection-0'; Node46->Node11 - - + + Node46->Node23 - - + + Node46->Node26 - - + + Node46->Node37 - - + + Node47 - -array + +array Node46->Node47 - - + + Node48 - -gsl/util + +gsl/util Node46->Node48 - - + + diff --git a/_apply__move__test_8cpp__incl_org.svg b/_apply__move__test_8cpp__incl_org.svg index 5c108ef97..edc26157f 100644 --- a/_apply__move__test_8cpp__incl_org.svg +++ b/_apply__move__test_8cpp__incl_org.svg @@ -13,8 +13,8 @@ Node1 - -tests/Apply_move_test.cpp + +tests/Apply_move_test.cpp @@ -22,46 +22,46 @@ Node2 - -Apply_move.hpp + +Apply_move.hpp Node1->Node2 - - + + Node8 - -doctest/doctest.h + +doctest/doctest.h Node1->Node8 - - + + Node9 - -Ergodic_moves_3.hpp + +Ergodic_moves_3.hpp Node1->Node9 - - + + @@ -75,179 +75,179 @@ Node2->Node3 - - + + Node4 - -functional + +expected Node2->Node4 - - + + Node5 - -string + +functional Node2->Node5 - - + + Node6 - -tl/expected.hpp + +string Node2->Node6 - - + + Node7 - -tl/function_ref.hpp + +tl/function_ref.hpp Node2->Node7 - - + + - + -Node9->Node6 - - +Node9->Node4 + + Node10 - -Manifold.hpp + +Manifold.hpp Node9->Node10 - - + + Node46 - -Move_tracker.hpp + +Move_tracker.hpp Node9->Node46 - - + + Node11 - -cstddef + +cstddef Node10->Node11 - - + + Node12 - -unordered_set + +unordered_set Node10->Node12 - - + + Node13 - -utility + +utility Node10->Node13 - - + + Node14 - -Geometry.hpp + +Geometry.hpp Node10->Node14 - - + + Node15 - -Foliated_triangulation.hpp + +Foliated_triangulation.hpp Node14->Node15 - - + + @@ -261,8 +261,8 @@ Node15->Node16 - - + + @@ -276,8 +276,8 @@ Node15->Node17 - - + + @@ -291,8 +291,8 @@ Node15->Node26 - - + + @@ -421,13 +421,13 @@ Node26->Node3 - + - + -Node26->Node5 - +Node26->Node6 + @@ -643,7 +643,7 @@ Node26->Node40 - + @@ -658,7 +658,7 @@ Node26->Node41 - + @@ -726,56 +726,56 @@ Node46->Node11 - - + + Node46->Node23 - - + + Node46->Node26 - - + + Node46->Node37 - - + + Node47 - -array + +array Node46->Node47 - - + + Node48 - -gsl/util + +gsl/util Node46->Node48 - - + + diff --git a/_apply__move__test_8cpp_source.html b/_apply__move__test_8cpp_source.html index c4d02991f..d58d107e7 100644 --- a/_apply__move__test_8cpp_source.html +++ b/_apply__move__test_8cpp_source.html @@ -270,7 +270,7 @@ diff --git a/_ergodic__moves__3_8hpp.html b/_ergodic__moves__3_8hpp.html index a1ded3b4c..5c42a4a67 100644 --- a/_ergodic__moves__3_8hpp.html +++ b/_ergodic__moves__3_8hpp.html @@ -83,7 +83,7 @@

Pachner moves on 2+1 dimensional foliated Delaunay triangulations. More...

-
#include <tl/expected.hpp>
+
#include <expected>
#include "Manifold.hpp"
#include "Move_tracker.hpp"
@@ -122,9 +122,9 @@

using ergodic_moves::Edge_handle = Edge_handle_t< 3 >
 
-using ergodic_moves::Expected = tl::expected< Manifold, std::string >
 
+using ergodic_moves::Expected = std::expected< Manifold, std::string >
 
using ergodic_moves::Manifold = manifolds::Manifold_3
 
diff --git a/class_move_command.html b/class_move_command.html index 7e938361e..598343fd0 100644 --- a/class_move_command.html +++ b/class_move_command.html @@ -173,7 +173,7 @@  

Detailed Description

-

template<typename ManifoldType, typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
+

template<typename ManifoldType, typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
class MoveCommand< ManifoldType, ExpectedType, FunctionType >

@@ -185,7 +185,7 @@

-template<typename ManifoldType , typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
+template<typename ManifoldType , typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
@@ -224,7 +224,7 @@

-template<typename ManifoldType , typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
+template<typename ManifoldType , typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
@@ -266,7 +266,7 @@

-template<typename ManifoldType , typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
+template<typename ManifoldType , typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
@@ -299,7 +299,7 @@

-template<typename ManifoldType , typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
+template<typename ManifoldType , typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
@@ -334,7 +334,7 @@

-template<typename ManifoldType , typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
+template<typename ManifoldType , typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
@@ -367,7 +367,7 @@

-template<typename ManifoldType , typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
+template<typename ManifoldType , typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
@@ -399,7 +399,7 @@

-template<typename ManifoldType , typename ExpectedType = tl::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
+template<typename ManifoldType , typename ExpectedType = std::expected<ManifoldType, std::string>, typename FunctionType = tl::function_ref<ExpectedType(ManifoldType&)>>
@@ -431,7 +431,7 @@

diff --git a/class_move_strategy.html b/class_move_strategy.html index 0fc00dceb..a2c3dc40b 100644 --- a/class_move_strategy.html +++ b/class_move_strategy.html @@ -106,7 +106,7 @@ diff --git a/class_move_strategy_3_01_strategies_1_1_m_e_t_r_o_p_o_l_i_s_00_01_manifold_type_01_4-members.html b/class_move_strategy_3_01_strategies_1_1_m_e_t_r_o_p_o_l_i_s_00_01_manifold_type_01_4-members.html index 67413d75d..785cb2598 100644 --- a/class_move_strategy_3_01_strategies_1_1_m_e_t_r_o_p_o_l_i_s_00_01_manifold_type_01_4-members.html +++ b/class_move_strategy_3_01_strategies_1_1_m_e_t_r_o_p_o_l_i_s_00_01_manifold_type_01_4-members.html @@ -112,7 +112,7 @@

diff --git a/class_move_strategy_3_01_strategies_1_1_m_e_t_r_o_p_o_l_i_s_00_01_manifold_type_01_4.html b/class_move_strategy_3_01_strategies_1_1_m_e_t_r_o_p_o_l_i_s_00_01_manifold_type_01_4.html index 1463e80ef..20b384a92 100644 --- a/class_move_strategy_3_01_strategies_1_1_m_e_t_r_o_p_o_l_i_s_00_01_manifold_type_01_4.html +++ b/class_move_strategy_3_01_strategies_1_1_m_e_t_r_o_p_o_l_i_s_00_01_manifold_type_01_4.html @@ -964,7 +964,7 @@

diff --git a/class_move_strategy_3_01_strategies_1_1_m_o_v_e___a_l_w_a_y_s_00_01_manifold_type_01_4-members.html b/class_move_strategy_3_01_strategies_1_1_m_o_v_e___a_l_w_a_y_s_00_01_manifold_type_01_4-members.html index 0c6f8a57d..760e8c9a1 100644 --- a/class_move_strategy_3_01_strategies_1_1_m_o_v_e___a_l_w_a_y_s_00_01_manifold_type_01_4-members.html +++ b/class_move_strategy_3_01_strategies_1_1_m_o_v_e___a_l_w_a_y_s_00_01_manifold_type_01_4-members.html @@ -94,7 +94,7 @@

diff --git a/class_move_strategy_3_01_strategies_1_1_m_o_v_e___a_l_w_a_y_s_00_01_manifold_type_01_4.html b/class_move_strategy_3_01_strategies_1_1_m_o_v_e___a_l_w_a_y_s_00_01_manifold_type_01_4.html index 7a48953c1..c8a68f368 100644 --- a/class_move_strategy_3_01_strategies_1_1_m_o_v_e___a_l_w_a_y_s_00_01_manifold_type_01_4.html +++ b/class_move_strategy_3_01_strategies_1_1_m_o_v_e___a_l_w_a_y_s_00_01_manifold_type_01_4.html @@ -426,7 +426,7 @@

diff --git a/classes.html b/classes.html index 2355bcc18..a329d3529 100644 --- a/classes.html +++ b/classes.html @@ -91,7 +91,7 @@ diff --git a/classfoliated__triangulations_1_1_foliated_triangulation.html b/classfoliated__triangulations_1_1_foliated_triangulation.html index 2aaa202ee..cdc7280f1 100644 --- a/classfoliated__triangulations_1_1_foliated_triangulation.html +++ b/classfoliated__triangulations_1_1_foliated_triangulation.html @@ -103,7 +103,7 @@ diff --git a/classfoliated__triangulations_1_1_foliated_triangulation_3_013_01_4-members.html b/classfoliated__triangulations_1_1_foliated_triangulation_3_013_01_4-members.html index 67446056b..f54326602 100644 --- a/classfoliated__triangulations_1_1_foliated_triangulation_3_013_01_4-members.html +++ b/classfoliated__triangulations_1_1_foliated_triangulation_3_013_01_4-members.html @@ -166,7 +166,7 @@

diff --git a/classfoliated__triangulations_1_1_foliated_triangulation_3_013_01_4.html b/classfoliated__triangulations_1_1_foliated_triangulation_3_013_01_4.html index 8bc7731f1..f7e4e7090 100644 --- a/classfoliated__triangulations_1_1_foliated_triangulation_3_013_01_4.html +++ b/classfoliated__triangulations_1_1_foliated_triangulation_3_013_01_4.html @@ -2022,7 +2022,7 @@

diff --git a/classfoliated__triangulations_1_1_foliated_triangulation_3_014_01_4.html b/classfoliated__triangulations_1_1_foliated_triangulation_3_014_01_4.html index dc9303109..f7c5bf5d7 100644 --- a/classfoliated__triangulations_1_1_foliated_triangulation_3_014_01_4.html +++ b/classfoliated__triangulations_1_1_foliated_triangulation_3_014_01_4.html @@ -100,7 +100,7 @@ diff --git a/classmanifolds_1_1_manifold.html b/classmanifolds_1_1_manifold.html index 446a3288d..a6fa0912c 100644 --- a/classmanifolds_1_1_manifold.html +++ b/classmanifolds_1_1_manifold.html @@ -103,7 +103,7 @@ diff --git a/classmanifolds_1_1_manifold_3_013_01_4-members.html b/classmanifolds_1_1_manifold_3_013_01_4-members.html index 6bbf0c5a1..3587f5a75 100644 --- a/classmanifolds_1_1_manifold_3_013_01_4-members.html +++ b/classmanifolds_1_1_manifold_3_013_01_4-members.html @@ -146,7 +146,7 @@

diff --git a/classmanifolds_1_1_manifold_3_013_01_4.html b/classmanifolds_1_1_manifold_3_013_01_4.html index dec4c3721..30c90234a 100644 --- a/classmanifolds_1_1_manifold_3_013_01_4.html +++ b/classmanifolds_1_1_manifold_3_013_01_4.html @@ -1559,7 +1559,7 @@

diff --git a/classmanifolds_1_1_manifold_3_014_01_4-members.html b/classmanifolds_1_1_manifold_3_014_01_4-members.html index d619c7b4c..c42e24caa 100644 --- a/classmanifolds_1_1_manifold_3_014_01_4-members.html +++ b/classmanifolds_1_1_manifold_3_014_01_4-members.html @@ -86,7 +86,7 @@

diff --git a/classmanifolds_1_1_manifold_3_014_01_4.html b/classmanifolds_1_1_manifold_3_014_01_4.html index 256719a6d..cc6976f98 100644 --- a/classmanifolds_1_1_manifold_3_014_01_4.html +++ b/classmanifolds_1_1_manifold_3_014_01_4.html @@ -150,7 +150,7 @@

diff --git a/classmove__tracker_1_1_move_tracker-members.html b/classmove__tracker_1_1_move_tracker-members.html index e9aa23b93..6871bc098 100644 --- a/classmove__tracker_1_1_move_tracker-members.html +++ b/classmove__tracker_1_1_move_tracker-members.html @@ -116,7 +116,7 @@

diff --git a/classmove__tracker_1_1_move_tracker.html b/classmove__tracker_1_1_move_tracker.html index a7dfeecd5..92100f989 100644 --- a/classmove__tracker_1_1_move_tracker.html +++ b/classmove__tracker_1_1_move_tracker.html @@ -451,7 +451,7 @@

diff --git a/dir_000001_000000.html b/dir_000001_000000.html index 70a3bbfa9..0130d85c1 100644 --- a/dir_000001_000000.html +++ b/dir_000001_000000.html @@ -76,7 +76,7 @@

src → include Relation

File in srcIncludes file in include
bistellar-flip.cppErgodic_moves_3.hpp
cdt-opt.cppMetropolis.hpp
cdt-opt.cppMove_always.hpp
cdt-viewer.cppManifold.hpp
cdt-viewer.cppUtilities.hpp
cdt.cppMetropolis.hpp
initialize.cppManifold.hpp
diff --git a/dir_000002_000000.html b/dir_000002_000000.html index c6dc0e224..450842c18 100644 --- a/dir_000002_000000.html +++ b/dir_000002_000000.html @@ -76,7 +76,7 @@

tests → include Relation

File in testsIncludes file in include
Apply_move_test.cppApply_move.hpp
Apply_move_test.cppErgodic_moves_3.hpp
Ergodic_moves_3_test.cppErgodic_moves_3.hpp
Foliated_triangulation_test.cppFoliated_triangulation.hpp
Function_ref_test.cppErgodic_moves_3.hpp
Geometry_test.cppGeometry.hpp
Manifold_test.cppManifold.hpp
Metropolis_test.cppMetropolis.hpp
Move_always_test.cppMove_always.hpp
Move_command_test.cppMove_command.hpp
Move_tracker_test.cppManifold.hpp
Move_tracker_test.cppMove_tracker.hpp
S3Action_test.cppManifold.hpp
S3Action_test.cppS3Action.hpp
Settings_test.cppSettings.hpp
Tetrahedron_test.cppFoliated_triangulation.hpp
Torus_test.cppTorus_d.hpp
Utilities_test.cppManifold.hpp
Vertex_test.cppManifold.hpp
diff --git a/dir_59425e443f801f1f2fd8bbe4959a3ccf.html b/dir_59425e443f801f1f2fd8bbe4959a3ccf.html index ff3be4b70..3f857df8c 100644 --- a/dir_59425e443f801f1f2fd8bbe4959a3ccf.html +++ b/dir_59425e443f801f1f2fd8bbe4959a3ccf.html @@ -143,7 +143,7 @@ diff --git a/dir_68267d1309a1af8e8297ef4c3efbcdba.html b/dir_68267d1309a1af8e8297ef4c3efbcdba.html index fe5434e6c..a4156eb27 100644 --- a/dir_68267d1309a1af8e8297ef4c3efbcdba.html +++ b/dir_68267d1309a1af8e8297ef4c3efbcdba.html @@ -107,7 +107,7 @@ diff --git a/dir_d44c64559bbebec7f509842c48db8b23.html b/dir_d44c64559bbebec7f509842c48db8b23.html index b82d11884..31ec88be3 100644 --- a/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/dir_d44c64559bbebec7f509842c48db8b23.html @@ -135,7 +135,7 @@ diff --git a/files.html b/files.html index 041393bf5..6a690b75d 100644 --- a/files.html +++ b/files.html @@ -124,7 +124,7 @@ diff --git a/functions.html b/functions.html index e1cb1c56a..a317fa628 100644 --- a/functions.html +++ b/functions.html @@ -79,7 +79,7 @@

- a -

    diff --git a/functions_c.html b/functions_c.html index 6e5c60474..84f3ee847 100644 --- a/functions_c.html +++ b/functions_c.html @@ -104,7 +104,7 @@

    - c -

      diff --git a/functions_d.html b/functions_d.html index 2e12eb9f6..92a44dc3a 100644 --- a/functions_d.html +++ b/functions_d.html @@ -94,7 +94,7 @@

      - d -

        diff --git a/functions_e.html b/functions_e.html index f2832042a..8232471e6 100644 --- a/functions_e.html +++ b/functions_e.html @@ -94,7 +94,7 @@

        - e -

          diff --git a/functions_f.html b/functions_f.html index 2e2e05271..6972597f6 100644 --- a/functions_f.html +++ b/functions_f.html @@ -107,7 +107,7 @@

          - f -

            diff --git a/functions_func.html b/functions_func.html index 800e565d9..03a86bf0f 100644 --- a/functions_func.html +++ b/functions_func.html @@ -559,7 +559,7 @@

            - ~ -

              diff --git a/functions_g.html b/functions_g.html index 3afee04bf..726725eaa 100644 --- a/functions_g.html +++ b/functions_g.html @@ -153,7 +153,7 @@

              - g -

                diff --git a/functions_i.html b/functions_i.html index e8027d84f..7356ca308 100644 --- a/functions_i.html +++ b/functions_i.html @@ -123,7 +123,7 @@

                - i -

                  diff --git a/functions_k.html b/functions_k.html index d189fc72c..e8e21bda4 100644 --- a/functions_k.html +++ b/functions_k.html @@ -79,7 +79,7 @@

                  - k -

                    diff --git a/functions_l.html b/functions_l.html index c222dc7fe..55f80b3f9 100644 --- a/functions_l.html +++ b/functions_l.html @@ -79,7 +79,7 @@

                    - l -

                      diff --git a/functions_m.html b/functions_m.html index 4b4a50be1..75122a30c 100644 --- a/functions_m.html +++ b/functions_m.html @@ -164,7 +164,7 @@

                      - m -

                        diff --git a/functions_n.html b/functions_n.html index 0a7d75827..6ad07aa01 100644 --- a/functions_n.html +++ b/functions_n.html @@ -134,7 +134,7 @@

                        - n -

                          diff --git a/functions_o.html b/functions_o.html index 884b12341..454953e9e 100644 --- a/functions_o.html +++ b/functions_o.html @@ -90,7 +90,7 @@

                          - o -

                            diff --git a/functions_p.html b/functions_p.html index 565ca0d6b..ac648bf0b 100644 --- a/functions_p.html +++ b/functions_p.html @@ -115,7 +115,7 @@

                            - p -

                              diff --git a/functions_r.html b/functions_r.html index 507aa55f7..1c7ea0e98 100644 --- a/functions_r.html +++ b/functions_r.html @@ -82,7 +82,7 @@

                              - r -

                                diff --git a/functions_rela.html b/functions_rela.html index ebdba00a5..07ae5991b 100644 --- a/functions_rela.html +++ b/functions_rela.html @@ -79,7 +79,7 @@ diff --git a/functions_s.html b/functions_s.html index d26f58edd..0ad2ddc8e 100644 --- a/functions_s.html +++ b/functions_s.html @@ -96,7 +96,7 @@

                                - s -

                                  diff --git a/functions_t.html b/functions_t.html index f1ec7a767..219804f7b 100644 --- a/functions_t.html +++ b/functions_t.html @@ -107,7 +107,7 @@

                                  - t -

                                    diff --git a/functions_type.html b/functions_type.html index 6e8b62a6d..dc3588930 100644 --- a/functions_type.html +++ b/functions_type.html @@ -77,7 +77,7 @@ diff --git a/functions_u.html b/functions_u.html index 7b90b6d1e..358325dd0 100644 --- a/functions_u.html +++ b/functions_u.html @@ -85,7 +85,7 @@

                                    - u -

                                      diff --git a/functions_v.html b/functions_v.html index c013f533c..ef7eaab98 100644 --- a/functions_v.html +++ b/functions_v.html @@ -79,7 +79,7 @@

                                      - v -

                                        diff --git a/functions_vars.html b/functions_vars.html index 194f94fb5..cd6e8e2ac 100644 --- a/functions_vars.html +++ b/functions_vars.html @@ -193,7 +193,7 @@

                                        - t -

                                          diff --git a/functions_~.html b/functions_~.html index 2a8108b77..c2bbd806e 100644 --- a/functions_~.html +++ b/functions_~.html @@ -82,7 +82,7 @@

                                          - ~ -

                                            diff --git a/globals.html b/globals.html index 974e53aa4..a2813af5c 100644 --- a/globals.html +++ b/globals.html @@ -156,7 +156,7 @@ diff --git a/globals_enum.html b/globals_enum.html index 7ea4f31ee..c74746db4 100644 --- a/globals_enum.html +++ b/globals_enum.html @@ -83,7 +83,7 @@ diff --git a/globals_func.html b/globals_func.html index 93727a3fa..04169eb65 100644 --- a/globals_func.html +++ b/globals_func.html @@ -109,7 +109,7 @@ diff --git a/globals_type.html b/globals_type.html index d0483fdbd..6186a55f6 100644 --- a/globals_type.html +++ b/globals_type.html @@ -86,7 +86,7 @@ diff --git a/globals_vars.html b/globals_vars.html index 6b02670e7..b1722e929 100644 --- a/globals_vars.html +++ b/globals_vars.html @@ -100,7 +100,7 @@ diff --git a/graph_legend.html b/graph_legend.html index d0f142468..5276c569f 100644 --- a/graph_legend.html +++ b/graph_legend.html @@ -136,7 +136,7 @@ diff --git a/index.html b/index.html index ee32133b1..ffc2e673c 100644 --- a/index.html +++ b/index.html @@ -342,7 +342,7 @@

                                            diff --git a/initialize_8cpp.html b/initialize_8cpp.html index 3bb0f0151..3497bfaee 100644 --- a/initialize_8cpp.html +++ b/initialize_8cpp.html @@ -176,7 +176,7 @@

                                            diff --git a/initialize_8cpp_source.html b/initialize_8cpp_source.html index 8319b178f..606c09bdb 100644 --- a/initialize_8cpp_source.html +++ b/initialize_8cpp_source.html @@ -203,7 +203,7 @@ diff --git a/main_8cpp.html b/main_8cpp.html index a065d5c33..d3c2525ca 100644 --- a/main_8cpp.html +++ b/main_8cpp.html @@ -102,7 +102,7 @@ diff --git a/main_8cpp_source.html b/main_8cpp_source.html index 9c8a1c28a..ad4f6730a 100644 --- a/main_8cpp_source.html +++ b/main_8cpp_source.html @@ -90,7 +90,7 @@ diff --git a/md__l_i_c_e_n_s_e.html b/md__l_i_c_e_n_s_e.html index 7cceb01aa..3cbbba772 100644 --- a/md__l_i_c_e_n_s_e.html +++ b/md__l_i_c_e_n_s_e.html @@ -86,7 +86,7 @@ diff --git a/optimize-initialize_8py_source.html b/optimize-initialize_8py_source.html index a719363f3..c7374fb09 100644 --- a/optimize-initialize_8py_source.html +++ b/optimize-initialize_8py_source.html @@ -213,7 +213,7 @@ diff --git a/pages.html b/pages.html index 21bf854b6..419eac68b 100644 --- a/pages.html +++ b/pages.html @@ -83,7 +83,7 @@ diff --git a/struct_geometry.html b/struct_geometry.html index 6fba3a876..a47022744 100644 --- a/struct_geometry.html +++ b/struct_geometry.html @@ -107,7 +107,7 @@ diff --git a/struct_geometry_3_013_01_4-members.html b/struct_geometry_3_013_01_4-members.html index f54deac68..f774863e1 100644 --- a/struct_geometry_3_013_01_4-members.html +++ b/struct_geometry_3_013_01_4-members.html @@ -92,7 +92,7 @@

diff --git a/struct_geometry_3_013_01_4.html b/struct_geometry_3_013_01_4.html index 862b186bb..c584f729d 100644 --- a/struct_geometry_3_013_01_4.html +++ b/struct_geometry_3_013_01_4.html @@ -246,7 +246,7 @@

diff --git a/struct_geometry_3_014_01_4-members.html b/struct_geometry_3_014_01_4-members.html index a827933c0..c355428a1 100644 --- a/struct_geometry_3_014_01_4-members.html +++ b/struct_geometry_3_014_01_4-members.html @@ -84,7 +84,7 @@

diff --git a/struct_geometry_3_014_01_4.html b/struct_geometry_3_014_01_4.html index ccaa7770a..ff08dd6c1 100644 --- a/struct_geometry_3_014_01_4.html +++ b/struct_geometry_3_014_01_4.html @@ -112,7 +112,7 @@
diff --git a/struct_triangulation_traits.html b/struct_triangulation_traits.html index ff4340fed..5363ee5a7 100644 --- a/struct_triangulation_traits.html +++ b/struct_triangulation_traits.html @@ -93,7 +93,7 @@
diff --git a/struct_triangulation_traits_3_013_01_4-members.html b/struct_triangulation_traits_3_013_01_4-members.html index b632cf33e..e49bf8f96 100644 --- a/struct_triangulation_traits_3_013_01_4-members.html +++ b/struct_triangulation_traits_3_013_01_4-members.html @@ -94,7 +94,7 @@ diff --git a/struct_triangulation_traits_3_013_01_4.html b/struct_triangulation_traits_3_013_01_4.html index 5ef63d6e7..d963f94d5 100644 --- a/struct_triangulation_traits_3_013_01_4.html +++ b/struct_triangulation_traits_3_013_01_4.html @@ -166,7 +166,7 @@

diff --git a/test_8py_source.html b/test_8py_source.html index 1821700d8..6dd8d5461 100644 --- a/test_8py_source.html +++ b/test_8py_source.html @@ -129,7 +129,7 @@ diff --git a/todo.html b/todo.html index dfad5192e..7a8f0e1dc 100644 --- a/todo.html +++ b/todo.html @@ -91,7 +91,7 @@