mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 12:02:47 -05:00
18 lines
376 B
C++
18 lines
376 B
C++
#include "tc/solver.h"
|
|
#include "tc/groups.h"
|
|
|
|
#include <ctime>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
auto cube = tc::group::B(3);
|
|
auto vars = tc::solve(cube, {});
|
|
|
|
for (int target = 1; target < vars.len; target++) {
|
|
auto &action = vars.path[target];
|
|
std::cout << action.coset << " " << action.gen << " " << target << std::endl;
|
|
}
|
|
|
|
return 0;
|
|
}
|