Source code for pydistsim.algorithm.network_algorithm

from pydistsim.algorithm.base_algorithm import BaseAlgorithm


[docs] class NetworkAlgorithm(BaseAlgorithm): """ Abstract base class for specific centralized algorithms. This class is used as base class holding real network algorithm classes in its __subclassess__ for easy instantiation Method __init__ and run should be implemented in subclass. """ def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self._is_halted = False def step(self, check_restrictions: bool, step: int): if check_restrictions: self.check_restrictions() self._is_halted = True return self.run() def run(self): raise NotImplementedError
[docs] def is_halted(self): return self._is_halted