forked from networkx/networkx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'greedy-coloring' of git://github.com/itu-sass-s2014/net…
…workx into greedy_color Conflicts: networkx/algorithms/__init__.py
- Loading branch information
Showing
6 changed files
with
1,136 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from networkx.algorithms.coloring.greedy_coloring import * | ||
__all__ = ['greedy_color'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,282 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
Greedy graph coloring using various strategies. | ||
""" | ||
# Copyright (C) 2014 by | ||
# Christian Olsson <[email protected]> | ||
# Jan Aagaard Meier <[email protected]> | ||
# Henrik Haugbølle <[email protected]> | ||
# All rights reserved. | ||
# BSD license. | ||
import networkx as nx | ||
import random | ||
import itertools | ||
from . import greedy_coloring_with_interchange as _interchange | ||
|
||
__author__ = "\n".join(["Christian Olsson <[email protected]>", | ||
"Jan Aagaard Meier <[email protected]>", | ||
"Henrik Haugbølle <[email protected]>"]) | ||
__all__ = [ | ||
'greedy_color', | ||
'strategy_largest_first', | ||
'strategy_random_sequential', | ||
'strategy_smallest_last', | ||
'strategy_independent_set', | ||
'strategy_connected_sequential', | ||
'strategy_connected_sequential_dfs', | ||
'strategy_connected_sequential_bfs', | ||
'strategy_saturation_largest_first' | ||
] | ||
|
||
def min_degree_node(G): | ||
return min(G, key=G.degree) | ||
|
||
def max_degree_node(G): | ||
return max(G, key=G.degree) | ||
|
||
""" | ||
Largest first (lf) ordering. Ordering the nodes by largest degree | ||
first. | ||
""" | ||
def strategy_largest_first(G, colors): | ||
nodes = G.nodes() | ||
nodes.sort(key=lambda node: -G.degree(node)) | ||
|
||
return nodes | ||
|
||
""" | ||
Random sequential (RS) ordering. Scrambles nodes into random ordering. | ||
""" | ||
def strategy_random_sequential(G, colors): | ||
nodes = G.nodes() | ||
random.shuffle(nodes) | ||
|
||
return nodes | ||
|
||
""" | ||
Smallest last (sl). Picking the node with smallest degree first, | ||
subtracting it from the graph, and starting over with the new smallest | ||
degree node. When the graph is empty, the reverse ordering of the one | ||
built is returned. | ||
""" | ||
def strategy_smallest_last(G, colors): | ||
len_g = len(G) | ||
available_g = G.copy() | ||
nodes = [None]*len_g | ||
|
||
for i in range(len_g): | ||
node = min_degree_node(available_g) | ||
|
||
available_g.remove_node(node) | ||
nodes[len_g - i - 1] = node | ||
|
||
return nodes | ||
|
||
""" | ||
Greedy independent set ordering (GIS). Generates a maximal independent | ||
set of nodes, and assigns color C to all nodes in this set. This set | ||
of nodes is now removed from the graph, and the algorithm runs again. | ||
""" | ||
def strategy_independent_set(G, colors): | ||
len_g = len(G) | ||
no_colored = 0 | ||
k = 0 | ||
|
||
uncolored_g = G.copy() | ||
while no_colored < len_g: # While there are uncolored nodes | ||
available_g = uncolored_g.copy() | ||
|
||
while len(available_g): # While there are still nodes available | ||
node = min_degree_node(available_g) | ||
colors[node] = k # assign color to values | ||
|
||
no_colored += 1 | ||
uncolored_g.remove_node(node) | ||
# Remove node and its neighbors from available | ||
available_g.remove_nodes_from(available_g.neighbors(node) + [node]) | ||
k += 1 | ||
return None | ||
|
||
""" | ||
Connected sequential ordering (CS). Yield nodes in such an order, that | ||
each node, except the first one, has at least one neighbour in the | ||
preceeding sequence. The sequence is generated using BFS) | ||
""" | ||
def strategy_connected_sequential_bfs(G, colors): | ||
return strategy_connected_sequential(G, colors, 'bfs') | ||
|
||
""" | ||
Connected sequential ordering (CS). Yield nodes in such an order, that | ||
each node, except the first one, has at least one neighbour in the | ||
preceeding sequence. The sequence is generated using DFS) | ||
""" | ||
def strategy_connected_sequential_dfs(G, colors): | ||
return strategy_connected_sequential(G, colors, 'dfs') | ||
|
||
""" | ||
Connected sequential ordering (CS). Yield nodes in such an order, that | ||
each node, except the first one, has at least one neighbour in the | ||
preceeding sequence. The sequence can be generated using both BFS and | ||
DFS search (using the strategy_connected_sequential_bfs and | ||
strategy_connected_sequential_dfs method). The default is bfs. | ||
""" | ||
def strategy_connected_sequential(G, colors, traversal='bfs'): | ||
for component_graph in nx.connected_component_subgraphs(G): | ||
source = component_graph.nodes()[0] | ||
|
||
yield source # Pick the first node as source | ||
|
||
if traversal == 'bfs': | ||
tree = nx.bfs_edges(component_graph, source) | ||
elif traversal == 'dfs': | ||
tree = nx.dfs_edges(component_graph, source) | ||
else: | ||
raise nx.NetworkXError( | ||
'Please specify bfs or dfs for connected sequential ordering') | ||
|
||
for (_, end) in tree: | ||
yield end # Then yield nodes in the order traversed by either BFS or DFS | ||
|
||
""" | ||
Saturation largest first (SLF). Also known as degree saturation (DSATUR). | ||
""" | ||
def strategy_saturation_largest_first(G, colors): | ||
len_g = len(G) | ||
no_colored = 0 | ||
distinct_colors = {} | ||
|
||
for node in G.nodes_iter(): | ||
distinct_colors[node] = set() | ||
|
||
while no_colored != len_g: | ||
if no_colored == 0: | ||
# When sat. for all nodes is 0, yield the node with highest degree | ||
no_colored += 1 | ||
node = max_degree_node(G) | ||
yield node | ||
for neighbour in G.neighbors_iter(node): | ||
distinct_colors[neighbour].add(0) | ||
else: | ||
highest_saturation = -1 | ||
highest_saturation_nodes = [] | ||
|
||
for node, distinct in distinct_colors.items(): | ||
if node not in colors: # If the node is not already colored | ||
saturation = len(distinct) | ||
if saturation > highest_saturation: | ||
highest_saturation = saturation | ||
highest_saturation_nodes = [node] | ||
elif saturation == highest_saturation: | ||
highest_saturation_nodes.append(node) | ||
|
||
if len(highest_saturation_nodes) == 1: | ||
node = highest_saturation_nodes[0] | ||
else: | ||
# Return the node with highest degree | ||
max_degree = -1 | ||
max_node = None | ||
|
||
for node in highest_saturation_nodes: | ||
degree = G.degree(node) | ||
if degree > max_degree: | ||
max_node = node | ||
max_degree = degree | ||
|
||
node = max_node | ||
|
||
no_colored += 1 | ||
yield node | ||
color = colors[node] | ||
for neighbour in G.neighbors_iter(node): | ||
distinct_colors[neighbour].add(color) | ||
|
||
|
||
"""Color a graph using various strategies of greedy graph coloring. | ||
The strategies are described in [1]. | ||
Attempts to color a graph using as few colors as possible, where no | ||
neighbours of a node can have same color as the node itself. | ||
Parameters | ||
---------- | ||
G : NetworkX graph | ||
strategy : function(G, colors) | ||
A function that provides the coloring strategy, by returning nodes | ||
in the ordering they should be colored. G is the graph, and colors | ||
is a dict of the currently assigned colors, keyed by nodes. | ||
You can pass your own ordering function, or use one of the built in: | ||
* strategy_largest_first | ||
* strategy_random_sequential | ||
* strategy_smallest_last | ||
* strategy_independent_set | ||
* strategy_connected_sequential (an alias of the BFS version) | ||
* strategy_connected_sequential_bfs | ||
* strategy_connected_sequential_dfs | ||
* strategy_saturation_largest_first (also know as DSATUR) | ||
interchange: boolean | ||
Will use the color interchange algorithm described by [2] if set | ||
to true. | ||
Note that saturation largest first and independent set do not | ||
work with interchange. Furthermore, if you use interchange with | ||
your own strategy function, you cannot rely on the values in the | ||
colors argument | ||
Returns | ||
------- | ||
A dictionary with keys representing nodes and values representing | ||
corresponding coloring. | ||
Examples | ||
-------- | ||
>>> G = nx.random_regular_graph(2, 4) | ||
>>> d = nx.coloring.greedy_color(G, strategy=nx.coloring.strategy_largest_first) | ||
>>> d | ||
{0: 0, 1: 1, 2: 0, 3: 1} | ||
References | ||
---------- | ||
.. [1] Adrian Kosowski, and Krzysztof Manuszewski, | ||
Classical Coloring of Graphs, Graph Colorings, 2-19, 2004, | ||
ISBN 0-8218-3458-4. | ||
[2] Maciej M. Syslo, Marsingh Deo, Janusz S. Kowalik, | ||
Discrete Optimization Algorithms with Pascal Programs, 415-424, 1983 | ||
ISBN 0-486-45353-7 | ||
""" | ||
def greedy_color(G, strategy=strategy_largest_first, interchange=False): | ||
colors = dict() # dictionary to keep track of the colors of the nodes | ||
|
||
if len(G): | ||
if interchange and ( | ||
strategy == strategy_independent_set or | ||
strategy == strategy_saturation_largest_first): | ||
raise nx.NetworkXPointlessConcept( | ||
'Interchange is not applicable for GIS and SLF') | ||
|
||
nodes = strategy(G, colors) | ||
|
||
if nodes: | ||
if interchange: | ||
return (_interchange | ||
.greedy_coloring_with_interchange(G, nodes)) | ||
else: | ||
for node in nodes: | ||
# set to keep track of colors of neighbours | ||
neighbour_colors = set() | ||
|
||
for neighbour in G.neighbors_iter(node): | ||
if neighbour in colors: | ||
neighbour_colors.add(colors[neighbour]) | ||
|
||
for color in itertools.count(): | ||
if color not in neighbour_colors: | ||
break | ||
|
||
# assign the node the newly found color | ||
colors[node] = color | ||
|
||
return colors |
Oops, something went wrong.