starting new triangulation technique. verified working with edges.

This commit is contained in:
2020-01-07 16:27:35 -05:00
parent 050475b66b
commit 7f73604075
5 changed files with 111 additions and 126 deletions

View File

@@ -7,6 +7,7 @@ namespace tc {
struct Action {
int coset = -1;
int gen = -1;
int target = -1;
};
struct Cosets {

View File

@@ -29,8 +29,6 @@ namespace tc {
[[nodiscard]] Group power(int p) const;
[[nodiscard]] Group shrink(const std::vector<int> &gens) const;
[[nodiscard]] bool trivial() const;
};