Rules
Contents
Rules#
Theory#
Here, the focus will be put on graphs with the following properties:
binary:
d-regular:
simple:
The rules that will be considered must:
keep these properties invariant,
be local to a vertex and its neighborhood,
include only one type of topology altering operation called division.
The division operation consists of replacing a vertex by a complete subgraph of order
The state of a vertex being either dead or alive, and there being from 0 to
This ordering makes it possible to compute a configuration vector
Every d-regular rule must specify, for each configuration, whether the vertex will be alive or dead at
Every d-regular rule can thus be labeled by a unique rule number
Note
This labeling system, inspired by the Wolfram code [2], is such that a rule number in its binary form displays the behavior of the rule. Starting from the right, the
Implementation#
The application of a rule to a graph will come in several steps which are strictly equivalent to the rule being applied all at once. The first step consists of computing a configuration vector
With @ the operator applying a function to every element of a vector,
A division vector
Divisions can now be performed one by one as a combination of simple operations on matrices. The first 1 in
Tip
Implementing GRA rules must leverage a sparse array format to be efficient.
Minimal graphs#
Once a rule is defined, it is possible to search for interesting initial graphs. Here are some possible criteria :
configuration-complete: the graph contains every possible local configuration,
color-symetric: the graph stays the same under color-reversal,
small: the graph contains the smallest number of vertices.
Note
The order of such a graph must necessarily exceed by at least two the number of possible configurations. Indeed, we saw that a d-regular graph has
The function minimal_regular_graphs(d)
computes the list of every d-regular graphs meeting the listed criteria.
import gra
graphs3 = gra.minimal_regular_graphs(3)
graphs4 = gra.minimal_regular_graphs(4)
100% -> 11 graphs found
graphs4[0].plot()
Rules and rule plots#
The Rule
class must be provided a degree and a rule number. The .plot()
method can be used to generate a graphical representation of a rule’s action on a graph.
rule = gra.Rule(3,2238)
rule.plot()

We can now use this rule to evolve one of our 3-regular graphs.
rule(graphs3[1].clone()).plot()
# or equivalently: graphs[1].clone().evolve(rule).plot()
The .jump()
method can be used to checkout the graph obtained by applying the rule n times.
graphs3[1].clone().jump(rule,120).plot()
# or equivalently: rule.jump(graphs[1].clone(),120).plot()