compute complex traces

This commit is contained in:
Florian Stecker
2022-06-14 14:22:22 +02:00
parent 15681c308b
commit 244784794d
11 changed files with 446 additions and 59 deletions

View File

@@ -4,6 +4,15 @@
#include "mat.h"
#include "coxeter.h"
struct tracedata {
int id;
NUMBER tr;
NUMBER trinv;
};
void enumerate_coxeter_group(group_t *group, mat *gen, mat *matrices);
int enumerate_coxeter_group_traces(group_t *group, mat *gen, struct tracedata **traces_out);
void enumerate_tracedata_clear(struct tracedata *traces, int n);
#endif