A NetworkX extension for calculating graph invariants.
GrinPy is an extension for NetworkX used for calculating graph invariants of simple graphs.
NP-hard invariants included are:
- Chromatic number
- Clique number
- Independence number
- Domination number
- Total domination number
- Connected domination number
- Independent domination number
- Power domination number
- Zero forcing number
- Total zero forcing number
- Connected zero forcing number
- Minimum maximal matching number
- Generalized k versions of almost all of the above invariants
Other invariants included are:
- Annihilation number
- Matching number
- Residue
- Slater number
- Sub-k-domination number
- Topological indices, like the Randić and Zagreb indices
In addition to the graph invariants listed above, we have included some simple checks for structural properties of a graph:
is_triangle_free
is_bull_free
is_claw_free
Full documentation is available at https://grinpy.rtfd.io.
You can install GrinPy from the command line with pip
:
pip install grinpy
Here is a sample of how to calculate the independence number:
>>> import grinpy as gp
>>> G = gp.petersen_graph()
>>> gp.independence_number(G)
4
GrinPy automatically imports NetworkX and provides all of the NetworkX classes and methods in the same interface.
The motivation for this project is to filter a database of graphs into an ordered tree of subsets. This database will be used in an experimental automated conjecturing program. In creating the required packages for this database, we realized that a Python package for calculating graph invariants would be useful for professional research and for graph theory education.
Released under the 3-Clause BSD license (see LICENSE.txt
):
Copyright (C) 2017-2019 GrinPy Developers
David Amos <somacdivad@gmail.com>
Randy Davila <davilar@uhd.edu>