point generation working; still needs broken into functions though.

This commit is contained in:
2020-01-04 15:01:33 -05:00
parent 5026daefec
commit 624edb3bbb
6 changed files with 130 additions and 11 deletions

View File

@@ -26,5 +26,7 @@ namespace tc {
[[nodiscard]] int get(int coset, int gen) const;
[[nodiscard]] int get(int idx) const;
[[nodiscard]] int size() const;
};
}

View File

@@ -21,6 +21,8 @@ namespace tc {
void setmult(Rel rel);
[[nodiscard]] Rel rel(int a, int b) const;
[[nodiscard]] std::vector<Rel> get_rels() const;
[[nodiscard]] Group product(const Group &other) const;