first attempt at a general triangulation algorithm

This commit is contained in:
2020-01-07 14:37:41 -05:00
parent 4d4ef45956
commit d34d3e6af5
4 changed files with 180 additions and 27 deletions

View File

@@ -28,6 +28,10 @@ namespace tc {
[[nodiscard]] Group product(const Group &other) const;
[[nodiscard]] Group power(int p) const;
[[nodiscard]] Group shrink(const std::vector<int> &gens) const;
[[nodiscard]] bool trivial() const;
};
Group operator*(const Group &g, const Group &h);