2022-06-13 10:05:34 +00:00
|
|
|
#ifndef GENERATORS_H
|
|
|
|
#define GENERATORS_H
|
|
|
|
|
|
|
|
#include "mat.h"
|
|
|
|
|
2022-06-14 12:22:22 +00:00
|
|
|
void generators_triangle_reflection_generic(mat *gen, NUMBER rho1, NUMBER rho2, NUMBER rho3, NUMBER q);
|
2022-06-13 10:05:34 +00:00
|
|
|
int generators_triangle_reflection_group(mat *gen, int p1, int p2, int p3, int q1, int q2, int q3, mpq_t q);
|
|
|
|
|
2022-06-14 12:22:22 +00:00
|
|
|
#ifdef QEXT
|
|
|
|
int generators_triangle_reflection_group_555_complex(mat *gen, int q1, int q2, int q3, mpq_t real, mpq_t imag);
|
|
|
|
#endif
|
|
|
|
|
2022-06-13 10:05:34 +00:00
|
|
|
#endif
|