Searched defs:Coloring (Results 1 – 1 of 1) sorted by relevance
108 struct Coloring { struct109 using Node = int;110 using MapType = std::map<Node, ColorKind>;111 static constexpr Node Ignore = Node(-1);113 Coloring(ArrayRef<Node> Ord) : Order(Ord) { in Coloring() argument119 const MapType &colors() const { in colors()123 ColorKind other(ColorKind Color) { in other()132 ArrayRef<Node> Order;133 MapType Colors;134 std::set<Node> Needed;[all …]