Skip to content

A python package with function to help with graph theory coloring and more

License

Notifications You must be signed in to change notification settings

fras2560/graph-helper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

graph-helper

A python package with algorithms to help with graph theory coloring and more.

Algorithms

color: colors a graph

from algorithms import color
>>> color(G)

contains: checks if a graph contains an induced subgraph

from algorithms import contains
>>> contains(G)

critical: checks if the graph is critical

from algorithms import critical
>>> critical(G)

clique_cutset: check if a graph has a clique cutset

from algorithms import clique_cutset
>>> clique_cutset(G)

strong_stable_set: check if a graph has a strong stable set

from algorithms import strong_stable_set
>>> strong_stable_set(G)

Install Dependencies

pip install networkx

Dependencies

  • Networkx - NetworkX is a Python language software package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks.

Contact

Feel free to contact me for ideas and help at fras2560@mylaurier.ca

License

Apache

About

A python package with function to help with graph theory coloring and more

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages