Source code for spinn_front_end_common.interface.simulator_state

from enum import Enum


[docs]class Simulator_State(Enum): """ Different States the SimulATOR COULD BE IN """ INIT = (0, "init called") IN_RUN = (1, "inside run method") RUN_FOREVER = (2, "finish run method but running forever") FINISHED = (3, "run ended shutdown not called") SHUTDOWN = (4, "shutdown called") def __new__(cls, value, doc=""): obj = object.__new__(cls) obj._value_ = value return obj def __init__(self, value, doc=""): self._value_ = value self.__doc__ = doc