Searched defs:Coloring (Results 1 – 1 of 1) sorted by relevance
104 struct Coloring { struct105 using Node = int;106 using MapType = std::map<Node, ColorKind>;107 static constexpr Node Ignore = Node(-1);109 Coloring(ArrayRef<Node> Ord) : Order(Ord) { in Coloring() function115 const MapType &colors() const { in colors()119 ColorKind other(ColorKind Color) { in other()128 ArrayRef<Node> Order;129 MapType Colors;130 std::set<Node> Needed;[all …]