blob: ea0e172824cfabe233f558140907487bda6217a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# ctak, ctaklm, and ct1986
## Overview
Details forthcoming, but at a glance:
1. ctak is a C library for the game of Tak
2. ctaklm is a line-mode interface to ctak and a computer opponent
(for 5x5)
3. ct1986 is a similar interface, but designed for a Raspberry Pi Zero
running buildroot and displaying output on a character LCD.
## Building for the native platform
make native
## Building for the Raspberry Pi Zero
Download and extract a recent version of buildroot into the working
directory. Edit `BUILDROOT_DIR=buildroot-2020.11.1` in `Makefile` to
point to the extracted directory.
make pi
## The computer opponent
### Adversarial tree search implementation
Details coming soon
### The convolutional neural network cnn1986
Details coming soon
## License
GPLv3+
|