1
0

tc::solve() no longer a method of tc::Group.

Group::solve() to tc::solve(Group)
This commit is contained in:
David Allemang
2021-10-31 22:12:15 -04:00
parent d67768d85c
commit d4c2ffb8f3
5 changed files with 15 additions and 20 deletions

View File

@@ -5,7 +5,7 @@
int main() {
auto cube = tc::group::B(3);
auto vars = cube.solve();
auto vars = tc::solve(cube);
std::string start;
std::vector<std::string> names = {"a", "b", "c"};