Class CellularAutomata

java.lang.Object
org.episteme.social.geography.urban.CellularAutomata

public class CellularAutomata extends Object
A generalized Cellular Automata model for simulating urban growth, land use change, or traffic flow.
Since:
1.0
Author:
Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
  • Constructor Details

    • CellularAutomata

      public CellularAutomata(int width, int height)
  • Method Details

    • setState

      public void setState(int x, int y, int state)
    • getState

      public int getState(int x, int y)
    • step

      public void step(CellularAutomata.Rule rule)