mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 12:02:47 -05:00
Add spanning tree path to cosets.
This commit is contained in:
@@ -1,2 +1,5 @@
|
||||
add_executable(bench bench.cpp)
|
||||
target_link_libraries(bench PRIVATE tc)
|
||||
|
||||
add_executable(path path.cpp)
|
||||
target_link_libraries(path PRIVATE tc)
|
||||
|
||||
17
example/path.cpp
Normal file
17
example/path.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "solver.h"
|
||||
#include "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;
|
||||
}
|
||||
Reference in New Issue
Block a user