cgt 0.9.0

Combinatorial Game Theory framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
.PHONY: test-domineering-search
test-domineering-search:
	$(eval OUT_FILE := $(shell mktemp))
	cargo run -p cgt_cli --			\
		domineering exhaustive-search	\
		--width 4			\
		--height 5			\
		--progress-interval 1		\
		--output-path $(OUT_FILE)
	sort -o $(OUT_FILE) $(OUT_FILE)
	diff $(OUT_FILE) ./test-data/out4x5-sorted.json