moved process.c to old
This commit is contained in:
parent
91377101ff
commit
0078da79a7
10
Makefile
10
Makefile
@ -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
|
||||
|
@ -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");
|
||||
}
|
Loading…
Reference in New Issue
Block a user