1
0

add subgroup

This commit is contained in:
2020-01-07 23:06:48 -05:00
parent dc1ced7dcc
commit 462ebf7c25
4 changed files with 38 additions and 13 deletions

View File

@@ -17,7 +17,7 @@ int main() {
tc::group::E(7),
tc::group::B(6),
tc::group::B(7),
tc::group::B(8),
tc::group::B(8)
};
for (const auto &group : groups) {

View File

@@ -9,7 +9,7 @@ int main() {
for (size_t target = 1; target < vars.size(); target++) {
auto &action = vars.path[target];
std::cout << action.coset << " * " << action.gen << " = " << target << std::endl;
std::cout << action.from_idx << " * " << action.gen << " = " << target << std::endl;
}
return 0;