From: Amélia Coutard-Sander Date: Wed, 7 Jan 2026 13:38:51 +0000 (+0100) Subject: Noms plus propres pour les automates X-Git-Url: https://git.f4mnq.fr/?a=commitdiff_plain;h=b0c2370d4bfcb31b470f81e43e39f1dbc7c90ab3;p=cells.git Noms plus propres pour les automates --- diff --git a/automata/automata/life.ml b/automata/automata/life.ml index 37df929..7ad5883 100644 --- a/automata/automata/life.ml +++ b/automata/automata/life.ml @@ -13,7 +13,7 @@ * with this program. If not, see . *) -let name = "life" +let name = "Conway's Game of Life" type t = Dead | Alive diff --git a/automata/automata/wireworld.ml b/automata/automata/wireworld.ml index e6a02ee..f05b7f2 100644 --- a/automata/automata/wireworld.ml +++ b/automata/automata/wireworld.ml @@ -13,7 +13,7 @@ * with this program. If not, see . *) -let name = "wireworld" +let name = "Wireworld" type t = Empty | Conductor | Head | Tail