import enumerate.c and generators.c, prepare Makefile

This commit is contained in:
Florian Stecker
2022-06-13 12:05:34 +02:00
parent 3309c37955
commit 15681c308b
12 changed files with 178 additions and 38 deletions

9
generators.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef GENERATORS_H
#define GENERATORS_H
#include "mat.h"
void generators_triangle_reflection_generic(mat *gen, NUMBER rho1, NUMBER rho2, NUMBER rho3, mpq_t q);
int generators_triangle_reflection_group(mat *gen, int p1, int p2, int p3, int q1, int q2, int q3, mpq_t q);
#endif