moved process.c to old

This commit is contained in:
Florian Stecker 2017-01-31 20:24:53 +01:00
parent 91377101ff
commit 0078da79a7
4 changed files with 6 additions and 6 deletions

View File

@ -8,11 +8,11 @@ OPTIONS=-m64 -march=native -std=gnu99 -D_GNU_SOURCE $(SPECIAL_OPTIONS)
all: enumerate
enumerate: generate.o weyl.o thickenings.o
gcc $(OPTIONS) -o generate generate.o thickenings.o weyl.o
enumerate: enumerate.o weyl.o thickenings.o
gcc $(OPTIONS) -o enumerate enumerate.o thickenings.o weyl.o
generate.o: generate.c $(HEADERS)
gcc $(OPTIONS) -c generate.c
enumerate.o: enumerate.c $(HEADERS)
gcc $(OPTIONS) -c enumerate.c
thickenings.o: thickenings.c $(HEADERS)
gcc $(OPTIONS) -c thickenings.c
@ -21,4 +21,4 @@ weyl.o: weyl.c $(HEADERS)
gcc $(OPTIONS) -c weyl.c
clean:
rm -f generate thickenings.o weyl.o generate.o
rm -f enumerate thickenings.o weyl.o enumerate.o

View File

@ -242,7 +242,7 @@ int main(int argc, const char *argv[])
printf("\n");
wl = dq->cosets[i].min->wordlength;
}
fprintf(stdout, "\n%s ", alphabetize(dq->cosets[i].min, stringbuffer));
fprintf(stdout, "%s ", alphabetize(dq->cosets[i].min, stringbuffer));
}
fprintf(stdout, "\n\n");
}