Select Git revision
splay_operation.h
-
Martin Mareš authoredMartin Mareš authored
Makefile 336 B
STUDENT_ID ?= PLEASE_SET_STUDENT_ID
.PHONY: test
test: splay_experiment.py
@rm -rf out && mkdir out
@for test in sequential random subset ; do \
for mode in std naive ; do \
echo t-$$test-$$mode ; \
./splay_experiment.py $$test $(STUDENT_ID) $$mode >out/t-$$test-$$mode ; \
done ; \
done
.PHONY: clean
clean:
rm -rf out