-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
working but HORRIBLY messy and hacky
- Loading branch information
1 parent
bc6c502
commit d7e2a64
Showing
3 changed files
with
94 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
CANVAS_SIZE = 8 | ||
N_STEPS = 6000 | ||
N_STEPS = 8342 | ||
PLOT_MODE = "animate" | ||
CMAP = "Oranges" | ||
RULESET = "RLLR" | ||
# RULESET = "classic" # 'classic' or 'stateful' | ||
# INSTRUCTIONS = "RCCU" | ||
RULESET = 'stateful' | ||
INSTRUCTIONS = [ # triplet notation (write colour, turn instruction, next state) | ||
[(1, 'R', 0),(1, 'R', 1)], # one state per row, one colour per tuple | ||
[(0, 'N', 0),(0, 'N', 1)], | ||
] | ||
ANIMATION_INTERVAL = 1 | ||
PADDING_SIZE = 2 # expand in each direction by this amount of cells | ||
SAVE_ANIMATION = False | ||
FRAME_SKIP = 5 | ||
FRAME_SKIP = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters