Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sergey Kireev
nle
Commits
efa8e865
Commit
efa8e865
authored
Nov 17, 2021
by
Sergey Kireev
Browse files
error in nle_processing fixed
parent
da1538c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
nle_processing/sketch_NLE_CA/NLE_CA.pde
View file @
efa8e865
...
...
@@ -479,6 +479,8 @@ class NLE_CA extends CellularAutomaton {
void
do_move_group_NL
(
int
label
,
int
dir
)
{
exit
();
}
int
count_N_neighbors
(
int
bx
,
int
by
)
{
exit
();
return
0
;
}
boolean
may_absorb
(
int
bx
,
int
by
)
{
return
is_filled_L
(
bx
,
by
);
}
boolean
may_desorb
(
int
bx
,
int
by
)
{
return
count_N_neighbors
(
bx
,
by
)
<
minndes
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment