1
0

Make TC header-only

One header per class, except for Group and SubGroup which are coupled.

- Action
- Cosets
- Path
- Rel
This commit is contained in:
David Allemang
2021-10-30 23:06:51 -04:00
parent 14ea270f62
commit 3194181e1b
13 changed files with 413 additions and 470 deletions

View File

@@ -8,7 +8,7 @@
template<class G>
void test(const G &group) {
auto s = std::clock();
auto cosets = group.solve();
auto cosets = group.solve({0});
auto e = std::clock();
double diff = (double) (e - s) / CLOCKS_PER_SEC;