Source code for pacman.model.graphs.common.edge_traffic_type

from enum import Enum


[docs]class EdgeTrafficType(Enum): """ Indicates the traffic type of an Edge in a graph """ MULTICAST = 1 FIXED_ROUTE = 2