Skip to main content

A Python package for graph computation functions

Project description

GraphCalc

Documentation Status PyPI version License: MIT

Overview

graphcalc is a Python package for performing a variety of graph computations, including maximum clique detection, chromatic number calculation, and vertex cover identification. It is built on top of networkx and provides efficient implementations of fundamental graph theory algorithms.

Features

  • Maximum Clique: Finds the maximum clique in a given graph.
  • Chromatic Number: Computes the minimum number of colors required for graph coloring.
  • Vertex and Edge Cover: Determines vertex and edge covers.
  • Matching and Independence: Calculates maximum matching and independent sets.
  • Domination Number and its Variants: Calculates the domination number, total domination number, and many other domination variants.
  • Degree Sequence Invariants: Calculates the residue, annihilaiton number, the slater number and more!
  • Zero Forcing: Calculates the zero forcing number, the total zero forcing number, the positive semidefinite zero forcing number, and the power domination number.

Installation

To install graphcalc, make sure you have Python 3.7 or higher, then install it:

pip install graphcalc

Linear and Integer Programming Solvers

Many of the NP-hard graph invariant computations of GraphCalc depend on third-party solvers.At least one of the following is required if you intend to use solver-based functions (e.g., gc.maximum_independent_set(G)):

  • CBC (recommended):
brew install cbc      # macOS
sudo apt install coinor-cbc  # Debian/Ubuntu

GraphCalc will attempt to automatically detect the solver if it is installed. You can also manually specify the solver in API calls.

Example Graph Usage

from graphcalc import (
    independence_number,
    domination_number,
    zero_forcing_number,
)
from graphcalc.generators import petersen_graph

# Calculate and print the independence number of the Petersen graph.
G = petersen_graph()
print(f"Petersen graph independence number = {independence_number(G)}")

# Calculate and print the domination number of the Petersen graph.
print(f"Petersen graph domination number = {domination_number(G)}")

# Calculate and print the zero forcing number of the Petersen graph.
print(f"Petersen graph zero forcing number = {zero_forcing_number(G)}")

Example Polytope Usage

import graphcalc as gc
from graphcalc.polytopes.generators import (
    cube_graph,
    octahedron_graph,
    dodecahedron_graph,
    tetrahedron_graph,
    icosahedron_graph,
    convex_polytopes_text_example,
)

# Generate polytope graphs (cubes, octahedra, etc.)
G1 = cube_graph()
G2 = octahedron_graph()
G3 = dodecahedron_graph()
G4 = tetrahedron_graph()
G5 = icosahedron_graph()
G6 = convex_polytopes_text_example(1)
G7 = convex_polytopes_text_example(2)


# Function names to compute
function_names = [
    "order", # number of vertices
    "size", # number of edges
    "p_vector",
    "independence_number",
    "vertex_cover_number",
    "maximum_degree",
    "average_degree",
    "minimum_degree",
    "spectral_radius",
    "diameter",
    "radius",
    "girth",
    "algebraic_connectivity",
    "largest_laplacian_eigenvalue",
    "second_largest_adjacency_eigenvalue",
    "smallest_adjacency_eigenvalue",
    "fullerene",
    ]

# Compute properties for multiple polytopes
graphs = [G1, G2, G3, G4, G5, G6, G7]
df = gc.compute_knowledge_table(function_names, graphs)

Creating Simple Graphs, Polytope Graphs, and Simple Polytope Graphs

import graphcalc as gc

# Draw a simple graph
G = gc.SimpleGraph(name="Example Graph")
G.add_edges_from([(0, 1), (1, 2), (2, 3)])
G.draw()

Author

Randy Davila, PhD Email: rrd6@rice.edu

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

graphcalc-1.2.5.tar.gz (44.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

graphcalc-1.2.5-py3-none-any.whl (44.4 kB view details)

Uploaded Python 3

File details

Details for the file graphcalc-1.2.5.tar.gz.

File metadata

  • Download URL: graphcalc-1.2.5.tar.gz
  • Upload date:
  • Size: 44.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for graphcalc-1.2.5.tar.gz
Algorithm Hash digest
SHA256 11ff1fb76626bf14b9eb3a665f204fc09bf6f23f9bbc2c1ab943a6ccb5b2244f
MD5 6fffefb4e64030cbf967c279e057a4c5
BLAKE2b-256 fbff3dc6084bc3fb0cff15bbf8ad1477a878f0e2e24bfff06e72720f5257c07a

See more details on using hashes here.

Provenance

The following attestation bundles were made for graphcalc-1.2.5.tar.gz:

Publisher: release.yml on RandyRDavila/GraphCalc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file graphcalc-1.2.5-py3-none-any.whl.

File metadata

  • Download URL: graphcalc-1.2.5-py3-none-any.whl
  • Upload date:
  • Size: 44.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for graphcalc-1.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 a589988669e4ff2497b5a201cc14eba8d58625ae4eb5ee5d3047ad9d12bae57f
MD5 c5653f52061b9e4b6e8f3fba446bb9bf
BLAKE2b-256 4205c30ab8c395e17031039739a292f7af5612f2cc628bc768d0c2adc6ef7892

See more details on using hashes here.

Provenance

The following attestation bundles were made for graphcalc-1.2.5-py3-none-any.whl:

Publisher: release.yml on RandyRDavila/GraphCalc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page