WIP: Copy tc logic from toddcox-faster

This commit is contained in:
David Allemang
2022-02-23 18:36:51 -05:00
parent 22976a9778
commit 63eb9e47b4
8 changed files with 730 additions and 1 deletions

11
src/tctest.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <tc/core.hpp>
#include <tc/groups.hpp>
#include <Eigen/Eigen>
#include <iostream>
int main() {
auto group = tc::group::H(4);
auto cos = group.solve({});
std::cout << cos.size() << std::endl;
}