Skip to content

Commit

Permalink
Trac #25797: Implement graftal lace cellular automata
Browse files Browse the repository at this point in the history
Following https://arxiv.org/abs/1805.11532, we implement graftal lace
cellular automata (GLCA).

URL: https://trac.sagemath.org/25797
Reported by: tscrim
Ticket author(s): Travis Scrimshaw
Reviewer(s): Frédéric Chapoton
  • Loading branch information
Release Manager committed May 3, 2020
2 parents 17e1266 + bded57c commit 1b35823
Show file tree
Hide file tree
Showing 4 changed files with 486 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/doc/en/reference/dynamics/cellular_automata.rst
Expand Up @@ -7,4 +7,5 @@ Cellular Automata
../sage/dynamics/cellular_automata/catalog

../sage/dynamics/cellular_automata/elementary
../sage/dynamics/cellular_automata/glca
../sage/dynamics/cellular_automata/solitons
3 changes: 3 additions & 0 deletions src/doc/en/reference/references/index.rst
Expand Up @@ -3029,6 +3029,9 @@ REFERENCES:
subcodes of the second order binary Reed-Muller codes*.
Information and Control, 18, pp. 369-394, 1971.
.. [Kas2018] András Kaszanyitzky. *The GraftalLace Cellular Automata*.
Preprint, :arxiv:`1805.11532`.
.. [Kat1991] Nicholas M. Katz, *Exponential sums and differential equations*,
Princeton University Press, Princeton NJ, 1991.
Expand Down
4 changes: 4 additions & 0 deletions src/sage/dynamics/cellular_automata/catalog.py
Expand Up @@ -12,6 +12,8 @@
- :class:`cellular_automata.Elementary
<sage.dynamics.cellular_automata.elementary.ElementaryCellularAutomata>`
- :class:`cellular_automata.GraftalLace
<sage.dynamics.cellular_automata.glca.GraftalLaceCellularAutomata>`
- :class:`cellular_automata.PeriodicSoliton
<sage.dynamics.cellular_automata.solitons.PeriodicSolitonCellularAutomata>`
- :class:`cellular_automata.Soliton
Expand All @@ -21,6 +23,8 @@
from sage.misc.lazy_import import lazy_import
lazy_import('sage.dynamics.cellular_automata.elementary',
'ElementaryCellularAutomata', 'Elementary',)
lazy_import('sage.dynamics.cellular_automata.glca',
'GraftalLaceCellularAutomata', 'GraftalLace',)
lazy_import('sage.dynamics.cellular_automata.solitons',
'SolitonCellularAutomata', 'Soliton')
lazy_import('sage.dynamics.cellular_automata.solitons',
Expand Down

0 comments on commit 1b35823

Please sign in to comment.