Skip to content
Snippets Groups Projects
Select Git revision
  • b3b75a8a3e25879de2a5e368583fc286b6e6531a
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

CellularAutomaton.java

Blame
  • Forked from LABOUREL Arnaud / Game of life Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    CellularAutomaton.java 211 B
    package model;
    
    import java.util.Random;
    
    public interface CellularAutomaton<S extends State<S>> {
        int numberOfColumns();
        int numberOfRows();
        S defaultState();
        S randomState(Random generator);
    }