diff --git a/examples/conways_game_of_life_fast/model.py b/examples/conways_game_of_life_fast/model.py index ecbfb9121..97c470221 100644 --- a/examples/conways_game_of_life_fast/model.py +++ b/examples/conways_game_of_life_fast/model.py @@ -24,7 +24,6 @@ def __init__(self, width=10, height=10, alive_fraction=0.2): self.datacollector.collect(self) def step(self): - self._advance_time() # Define a kernel for counting neighbors. The kernel has 1s around the center cell (which is 0). # This setup allows us to count the live neighbors of each cell when we apply convolution. kernel = np.array([[1, 1, 1],