1
0

WIP: complex solver uses Eigen::Array

This commit is contained in:
David Allemang
2021-11-12 23:07:42 -05:00
parent 840928136e
commit 897f7fe38b
3 changed files with 33 additions and 61 deletions

View File

@@ -9,11 +9,11 @@ template<class G>
void test(const G &group, unsigned int N) {
auto s = std::clock();
auto combos = tc::combinations(group.gens, N - 1);
auto data = tc::merge(tc::hull(group, combos, {}));
auto data = tc::merge(tc::hull(group, combos));
auto e = std::clock();
double diff = (double) (e - s) / CLOCKS_PER_SEC;
int count = data.size();
int count = data.cols();
std::cout
<< std::setw(2) << N << ", "