diff --git a/src/core/lookup_table_builder.rs b/src/core/lookup_table_builder.rs index d68f737..e44ac9f 100644 --- a/src/core/lookup_table_builder.rs +++ b/src/core/lookup_table_builder.rs @@ -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(); });