A Python Library for Graph Coloring
Project description
GCol
GCol is an open-source Python library for graph coloring, built on top of NetworkX. It provides easy-to-use, high-performance algorithms for node coloring, edge coloring, face coloring, equitable coloring, weighted coloring, precoloring, and maximum independent set identification. It also offers several tools for solution visualization.
In general, graph coloring problems are NP-hard. This library therefore offers both exponential-time exact algorithms and polynomial-time heuristic algorithms.
Quick Start
To install the GCol library, type the following at the command prompt:
python -m pip install gcol
or execute the following in a notebook:
!python -m pip install gcol
To start using this library, try executing the following code.
import networkx as nx
import matplotlib.pyplot as plt
import gcol
G = nx.dodecahedral_graph()
c = gcol.node_coloring(G)
print("Here is a node coloring of graph G:", c)
nx.draw_networkx(G, node_color=gcol.get_node_colors(G, c))
plt.show()
Textbook
The algorithms and techniques used in this library come from the 2021 textbook by Lewis, R. (2021) A Guide to Graph Colouring: Algorithms and Applications, Springer Cham. (2nd Edition). In bibtex, this book is cited as:
@book{10.1007/978-3-030-81054-2,
author = {Lewis, R. M. R.},
title = {A Guide to Graph Colouring: Algorithms and Applications},
year = {2021},
isbn = {978-3-030-81056-6},
publisher = {Springer Cham},
edition = {2nd}
}
A short description of this library is also published in the Journal of Open Source Software:
@article{10.21105/joss.07871,
author = {Lewis, R. and Palmer, G.},
title = {GCol: A High-Performance Python Library for Graph Colouring},
journal = {Journal of Open Source Software},
year = {2025},
volume = {10},
number = {108},
pages = {7871},
doi = {10.21105/joss.07871}
}
Support
The GCol repository is hosted on
github. If you have any questions
or issues, please ask them on stackoverflow,
adding the tag graph-coloring. All documentation is listed on
this website or, if you prefer in,
this pdf.
If you have any suggestions for this library or notice any bugs, please
contact the author using the contact details at www.rhydlewis.eu.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gcol-2.1.tar.gz.
File metadata
- Download URL: gcol-2.1.tar.gz
- Upload date:
- Size: 42.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
197e5372d9f4482bd25e0f485d215a19266b2b4992adf865372e5a9c1bccd11b
|
|
| MD5 |
c80717a02b7a4743c3390c97e661412d
|
|
| BLAKE2b-256 |
a3748c1ff4926bfb6baa9b24fa8a5dd3d1aaced58ba90408a71a77017496217a
|
File details
Details for the file gcol-2.1-py3-none-any.whl.
File metadata
- Download URL: gcol-2.1-py3-none-any.whl
- Upload date:
- Size: 45.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
761b7eded21a08a47c96ba8f7253f0b94a890a32c54af25d9691eed35077273e
|
|
| MD5 |
aa148bf9b3fccc0b164255a1b6c32646
|
|
| BLAKE2b-256 |
d6c760b766669ad4b6789e759864ad48268eaca196364bd133c5c0dbeab316db
|