David Eppstein «Searching for Spaceships» 1999.

  • user warning: Got error 28 from storage engine query: SELECT t.* FROM term_node r INNER JOIN term_data t ON r.tid = t.tid INNER JOIN vocabulary v ON t.vid = v.vid WHERE r.nid = 294 ORDER BY v.weight, t.weight, t.name in /var/www/spaceplace/includes/database.mysqli.inc on line 121.
  • user warning: Got error 28 from storage engine query: SELECT c.cid as cid, c.pid, c.nid, c.subject, c.comment, c.format, c.timestamp, c.name, c.mail, c.homepage, u.uid, u.name AS registered_name, u.picture, u.data, c.score, c.users, c.thread, c.status FROM comments c INNER JOIN users u ON c.uid = u.uid WHERE c.nid = 294 AND c.status = 0 GROUP BY c.cid, c.pid, c.nid, c.subject, c.comment, c.format, c.timestamp, c.name, c.mail, u.picture, c.homepage, u.uid, u.name, u.picture, u.data, c.score, c.users, c.thread, c.status LIMIT 0, 10 in /var/www/spaceplace/includes/database.mysqli.inc on line 121.

spaceshipsdayandnight.jpg
John Conway’s Game of Life has inspired enthusiasts, due to the emergence of behavior from a simple system. A phenomenon in Life is the existence of gliders and spaceships, small patterns that move across space. When describing gliders, spaceships, and other early discoveries in Life, Martin Gardner wrote in 1970 that spaceships «are extremely hard to find.» Very small spaceships can be found by human experimentation, but finding larger ones requires more sophisticated methods. Can computer software aid in this search? The answer is yes. We describe here a program, 'gfind,' that can quickly find large low-period spaceships in Life and many related cellular automata.
highlifespaceships.jpg
worms.jpg
Among the interesting new patterns found by gfind are the 'weekender' 2c/7
spaceship in Conway’s Life, the “dragon” c/6 Life spaceship found by Paul Tooke and a c/7 spaceship in the Diamoeba rule (Figure 2, top). The middle section of the Diamoeba spaceship simulates a simple one-dimensional parity automaton and can be extended to arbitrary lengths. David Bell discovered that two back-to-back copies of these spaceships
form a pattern that fills space with live cells. The existence of infinite-growth patterns in Diamoeba had previously been posed as an open problem with a $50 bounty by Dean Hickerson in August 1993, and was later included in a list of related open problems by Gravner and Griffeath. Our program has also found new spaceships in well known rules such as HighLife and Day&Night as well as in thousands of unnamed rules.
turtlephases.jpg
spaceshipphases.jpg
As well as providing a useful tool for discovering cellular automaton behavior,
our work may be of interest for its use of state space search techniques. Recently,
Buckingham and Callahan wrote «So far, computers have primarily been used to speed up the design process and fill gaps left by a manual search. Much potential remains for increasing the level of automation, suggesting that Life may merit more attention from the computer search community.»
raygun.jpg
Spaceship searching provides a search problem with characteristics intriguingly different
from standard test cases such as the 15-puzzle or computer chess, including a large state space that fluctuates in width instead of growing exponentially at each level, a tendency for many branches of the search to lead to dead ends, and the lack of any kind of admissable estimate for the distance to a goal state.
lessfamiliar.jpg
Therefore, the search community may benefit from more attention to Life. The software described here, a database of spaceships in Life-like automata, and several programs for related computations can be found online at http:// www.ics.uci.edu/̃eppstein/ca/.
lifespaceships.jpg
spaceship3.jpg
The purpose here is to describe software that searches for spaceships in Conway’s
Game of Life and related two-dimensional cellular automata. The program
searches through a state space related to the de Bruijn graph of the automa-
ton, using a method that combines features of breadth first and iterative
deepening search, and includes fast bit-parallel graph reachability and path
enumeration algorithms for finding the successors of each state. Successful
results include a new 2c/7 spaceship in Life, found by searching a space
with 2126 states.

sources: collidoscope.com, arxiv.org, ics.uci.edu