2 * demo/coloring.cc - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Research Group on Combinatorial Optimization, EGRES).
7 * Permission to use, modify and distribute this software is granted
8 * provided that this copyright notice appears in all copies. For
9 * precise terms see the accompanying LICENSE file.
11 * This software is provided "AS IS" with no warranty of any kind,
12 * express or implied, and with no claim as to its suitability for any
19 #include <lemon/smart_graph.h>
20 #include <lemon/bin_heap.h>
21 #include <lemon/graph_reader.h>
22 #include <lemon/graph_to_eps.h>
29 using namespace lemon;
33 typedef UndirSmartGraph Graph;
34 typedef Graph::Node Node;
35 typedef Graph::NodeIt NodeIt;
36 typedef Graph::UndirEdge UndirEdge;
37 typedef Graph::IncEdgeIt IncEdgeIt;
39 std::cout << "Six coloring of a plan graph" << std::endl;
40 std::cout << "Input file: coloring.lgf" << std::endl;
41 std::cout << "Output file: coloring.eps" << std::endl;
45 UndirGraphReader<Graph> reader("coloring.lgf", graph);
46 Graph::NodeMap<xy<double> > coords(graph);
47 reader.readNodeMap("coords", coords);
51 Graph::NodeMap<int> color(graph, -2);
53 Graph::NodeMap<int> heapMap(graph, -1);
54 BinHeap<Node, int, Graph::NodeMap<int> > heap(heapMap);
56 for (NodeIt it(graph); it != INVALID; ++it) {
57 heap.push(it, countOutEdges(graph, it));
62 while (!heap.empty()) {
63 Node node = heap.top();
66 order.push_back(node);
67 for (IncEdgeIt it(graph, node); it != INVALID; ++it) {
68 Node target = graph.runningNode(it);
69 if (color[target] == -2) {
70 heap.decrease(target, heap[target] - 1);
75 for (int i = order.size() - 1; i >= 0; --i) {
77 for (IncEdgeIt it(graph, order[i]); it != INVALID; ++it) {
78 Node target = graph.runningNode(it);
79 if (color[target] != -1) {
80 forbidden.insert(color[target]);
84 while (forbidden.find(current) != forbidden.end()) ++current;
85 color[order[i]] = current;
90 graphToEps(graph, "coloring.eps").
91 title("Six Colored Plan Graph").copyright("(C) 2005 LEMON Project").
92 coords(coords).nodeColors(composeMap(colorSet, color)).
93 nodeScale(5.0).scaleToA4().run();