How to use the cellular-automaton.conways_game_of_life.Live function in cellular-automaton

To help you get started, we’ve selected a few cellular-automaton examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github AllAlgorithms / python / cellular-automaton / conways_game_of_life.py View on Github external
    @classmethod
    def from_str(cls, string):
        if string == Live.string_form:
            return Live()
        return Dead()
github AllAlgorithms / python / cellular-automaton / conways_game_of_life.py View on Github external
def next_state(self, neighbor_count):
        if neighbor_count == 3:
            return Live()
        return Dead()