Skip to main content

A simple base implementation of a Directed Acyclic Graph, intended to be subclassed for more specific functionality.

Project description

base-dag

A simple base implementation of a DAG. Users should feel free to subclass this DAG class to provide their desired functionality. The API is intended to be similar to the NetworkX API, though not an exact replica. Note that multiple edges between the same two nodes are not supported by this package.

Creating a DAG.

from base_dag import DAG

# Initialize the DAG
dag = DAG()

# Add nodes and edges
dag.add_nodes_from([1, 2])
dag.add_node(3)
dag.add_edge((1, 2))
dag.add_edge((2, 3))

# Remove nodes and edges
dag.remove_edge((2, 3))
dag.remove_node(3)

Other Operations

Successors and Predecessors

successors = dag.successors(1) # [2]
predecessors = dag.predecessors(2) # [1]

Indegree and Outdegree

in_degree = dag.indegree(2) # 1
out_degree = dag.outdegree(1) # 1

Descendants

descendants = dag.descendants(1) # [2]
ancestors = dag.ancestors(2) # [1]

All nodes & edges

all_nodes = dag.nodes()
all_edges = dag.edges()

Subgraph

# Re-add a third node.
dag.add_node(3)
# Extract the subgraph of nodes 1 and 2.
sub_dag = dag.subgraph([1, 2])

Reverse

# Reverse the direction of the edges in the graph in place, without affecting the nodes at all.
dag.reverse()

Topological sort

sorted_nodes = dag.topological_sort()

Topological generations

generations = dag.topological_generations()

Sorted topological generations

sorted_generations = dag.sorted_topological_generations()

has_path

has_path = dag.has_path(1, 2) # True

is_acyclic

is_acyclic = dag.is_acyclic() # True

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

base_dag-0.1.1.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

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

base_dag-0.1.1-py2.py3-none-any.whl (4.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file base_dag-0.1.1.tar.gz.

File metadata

  • Download URL: base_dag-0.1.1.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for base_dag-0.1.1.tar.gz
Algorithm Hash digest
SHA256 fd936231fa657d4f223612a4e763ae6a188c60641ce480b6fd11553774299683
MD5 48ea3ac910629d5cd0f0f1a13108a237
BLAKE2b-256 5de22e1faced923a229e59d588989a9d71b4e2b13dd8c4f820180071f008308a

See more details on using hashes here.

File details

Details for the file base_dag-0.1.1-py2.py3-none-any.whl.

File metadata

  • Download URL: base_dag-0.1.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 4.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for base_dag-0.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b88ba379f11d615a0328043147d8dbb126e65ab0a8299584dea900c2ffeb2981
MD5 fbd05e3c62d2146499f40177334de9bd
BLAKE2b-256 0fd29484ecc98b0971b047f7246be9f29adfbaf66d114f4793272b2bfcabc2cc

See more details on using hashes here.

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