limit set cairo

This commit is contained in:
Florian Stecker
2018-08-08 16:24:03 +02:00
commit a373a8ccf7
9 changed files with 1040 additions and 0 deletions

21
triangle.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef TRIANGLE_H
#define TRIANGLE_H
#include <stdio.h>
#include <string.h>
#include <memory.h>
#include "queue.h"
typedef struct _groupelement {
int id;
int length;
struct _groupelement *adj[3];
struct _groupelement *parent;
struct _groupelement *inverse;
int letter;
} groupelement_t;
int generate_triangle_group(groupelement_t *group, int size, int k1, int k2, int k3);
#endif