Searched defs:Coloring (Results 1 – 1 of 1) sorted by relevance
102 struct Coloring { struct103 using Node = int;104 using MapType = std::map<Node, ColorKind>;105 static constexpr Node Ignore = Node(-1);107 Coloring(ArrayRef<Node> Ord) : Order(Ord) { in Coloring() argument113 const MapType &colors() const { in colors()117 ColorKind other(ColorKind Color) { in other()126 ArrayRef<Node> Order;127 MapType Colors;128 std::set<Node> Needed;[all …]