diff options
| author | Simon Tatham <anakin@pobox.com> | 2023-06-17 11:11:26 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2023-06-17 11:11:26 +0100 |
| commit | 86466959e8dc127513c1dc5c702492c8107c4b20 (patch) | |
| tree | afda0e46ca7ba33f239916bd99db1805c0982d71 /spectre.c | |
| parent | a33d9fad02d6319cb9061119a6165ed5493a3ba5 (diff) | |
| download | puzzles-86466959e8dc127513c1dc5c702492c8107c4b20.zip puzzles-86466959e8dc127513c1dc5c702492c8107c4b20.tar.gz puzzles-86466959e8dc127513c1dc5c702492c8107c4b20.tar.bz2 puzzles-86466959e8dc127513c1dc5c702492c8107c4b20.tar.xz | |
Spectre tiling: add a comment with some reference URLs.
I meant to fold this into yesterday's main commit, but there's always
something that gets forgotten.
Diffstat (limited to 'spectre.c')
| -rw-r--r-- | spectre.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,6 +1,13 @@ /* * Code to generate patches of the aperiodic 'spectre' tiling * discovered in 2023. + * + * Resources about the tiling from its discoverers: + * https://cs.uwaterloo.ca/~csk/spectre/ + * https://arxiv.org/abs/2305.17743 + * + * Writeup of the generation algorithm: + * https://www.chiark.greenend.org.uk/~sgtatham/quasiblog/aperiodic-spectre/ */ #include <assert.h> |