Thickenings

This commit is contained in:
Florian Stecker
2016-06-09 21:11:20 +02:00
commit 53811ef32a
5 changed files with 782 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
all: thickenings
thickenings: thickenings.o coxeter.o
gcc -g -o thickenings thickenings.o coxeter.o -lgsl -lcblas
thickenings.o: thickenings.c coxeter.h
gcc -g -c thickenings.c -std=gnu99
coxeter.o: coxeter.c coxeter.h
gcc -g -c coxeter.c -std=gnu99
clean:
rm -f thickenings thickenings.o coxeter.o