1
0

Make tc::Group an Eigen::Matrix (Schafli Matrix)

Makes tc::Group a direct subclass of Eigen::Matrix. Group should represent a Schlafli matrix.

Added a note that tc::solve assumes the matrix to be for a coxeter group.

In theory we could also implement the "normal" todd-coxeter and allow any Schlafli matrix as input.
This commit is contained in:
David Allemang
2021-11-01 16:58:48 -04:00
parent 6585d79ed9
commit 24d4d1873a
4 changed files with 172 additions and 213 deletions

View File

@@ -15,7 +15,7 @@ void test(const G &group) {
int order = cosets.order();
std::cout
<< std::setw(7) << group.name() << ", "
<< std::setw(7) << group.name << ", "
<< std::setw(7) << order << ", "
<< std::fixed << std::setprecision(6) << diff << "s"
<< std::endl;