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)
Subgraph
# Re-add a third node.
dag.add_node(3)
# Extract the subgraph of nodes 1 and 2.
sub_dag = dag.subgraph([1, 2])
Other Operations
All nodes & edges
all_nodes = dag.nodes() # (1, 2, 3)
all_edges = dag.edges() # ( (1, 2), (2, 3) )
Successors and Predecessors
successors = dag.successors(1) # [2]
predecessors = dag.predecessors(2) # [1]
Descendants and Ancestors
descendants = dag.descendants(1) # [2, 3]
ancestors = dag.ancestors(2) # [1]
Indegree and Outdegree
in_degree = dag.indegree(2) # 1
out_degree = dag.outdegree(1) # 1
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, 3) # True
is_acyclic
is_acyclic = dag.is_acyclic() # True
Project details
Release history Release notifications | RSS feed
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 base_dag-0.1.10.tar.gz.
File metadata
- Download URL: base_dag-0.1.10.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f3115e5c9580b5ac7cfa9937a1f5db69eb2d6b4418faacd25b28d62a69ff99a
|
|
| MD5 |
e2f0ec623442826207d32e1d7c07e77e
|
|
| BLAKE2b-256 |
4d31768a099b16df5f7697a20c7b7214ae31dd7452a3460982c349b5d49b42b2
|
File details
Details for the file base_dag-0.1.10-py2.py3-none-any.whl.
File metadata
- Download URL: base_dag-0.1.10-py2.py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ed2b2016893ab108fc4e65775c0cae7066d4f653aa58c4f5e8ca3df916f48e3
|
|
| MD5 |
a76a40a4710e129603816c65412a876e
|
|
| BLAKE2b-256 |
0898ac59a07cf63a465980ebfb845fd0ff3c0626571bd5b289f5f7a6a0e54f15
|