Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
be-next committed Dec 26, 2023
1 parent 2bc2ad9 commit af8e289
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/core/lookup_table_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,7 @@ impl LookupTableBuilder {
.into_iter()
.for_each(|(neighborhood, next_state)| {
lookup_table
.set(
neighborhood[0],
neighborhood[1],
neighborhood[2],
next_state,
)
.set(neighborhood[0], neighborhood[1], neighborhood[2], next_state)
.unwrap();
});

Expand Down

0 comments on commit af8e289

Please sign in to comment.