Source code for pacman.model.constraints.key_allocator_constraints.abstract_key_allocator_constraint

from six import add_metaclass

from spinn_utilities.abstract_base import AbstractBase
from pacman.model.constraints import AbstractConstraint


[docs]@add_metaclass(AbstractBase) class AbstractKeyAllocatorConstraint(AbstractConstraint): """ A constraint on key allocation """ __slots__ = []