discreteness

This commit is contained in:
Florian Stecker
2018-08-04 13:15:33 +02:00
parent 5c26fec87d
commit 664b106c0a
3 changed files with 10 additions and 5 deletions

View File

@@ -8,7 +8,6 @@
#define POINCARE 1
#define LOOP(i) for(int i = 0; i < 3; i++)
void cartan_matrix(gsl_matrix *cartan, double a1, double a2, double a3, double s)
{
gsl_matrix_set(cartan, 0, 0, -2);
@@ -193,7 +192,7 @@ int main()
gsl_matrix *frame;
workspace_t *ws;
int elements = 5000;
int p = 3, q = 3, r = 5;
int p = 5, q = 5, r = 5;
group = malloc(elements*sizeof(groupelement_t));
matrices = malloc(elements*sizeof(gsl_matrix*));