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
|
all: enumerate
|
||||||
|
|
||||||
enumerate: generate.o weyl.o thickenings.o
|
enumerate: enumerate.o weyl.o thickenings.o
|
||||||
gcc $(OPTIONS) -o generate generate.o thickenings.o weyl.o
|
gcc $(OPTIONS) -o enumerate enumerate.o thickenings.o weyl.o
|
||||||
|
|
||||||
generate.o: generate.c $(HEADERS)
|
enumerate.o: enumerate.c $(HEADERS)
|
||||||
gcc $(OPTIONS) -c generate.c
|
gcc $(OPTIONS) -c enumerate.c
|
||||||
|
|
||||||
thickenings.o: thickenings.c $(HEADERS)
|
thickenings.o: thickenings.c $(HEADERS)
|
||||||
gcc $(OPTIONS) -c thickenings.c
|
gcc $(OPTIONS) -c thickenings.c
|
||||||
@ -21,4 +21,4 @@ weyl.o: weyl.c $(HEADERS)
|
|||||||
gcc $(OPTIONS) -c weyl.c
|
gcc $(OPTIONS) -c weyl.c
|
||||||
|
|
||||||
clean:
|
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");
|
printf("\n");
|
||||||
wl = dq->cosets[i].min->wordlength;
|
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");
|
fprintf(stdout, "\n\n");
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user