enumerate-balanced-ideals/coxeter.h

19 lines
332 B
C
Raw Normal View History

2016-06-09 19:11:20 +00:00
#ifndef COXETER_H
#define COXETER_H
typedef struct {
char series;
int rank;
} simple_type_t;
typedef struct {
int n;
simple_type_t *factors;
} semisimple_type_t;
void generate_coxeter_graph(semisimple_type_t type, int *result);
int coxeter_order(semisimple_type_t type);
int coxeter_rank(semisimple_type_t type);
#endif