Mine realisation of DAG
Project description
Mine DAG
Mine realisation of DAG
Install
pip install minedag
Usage
Initialize
from minedag import MineDag
# create structure
dag = MineDag()
# add nodes
dag.add_node(1)
dag.add_node(2)
dag.add_node(3)
dag.add_node(4)
# add edges
dag.add_edge(1, 2, weight=1)
dag.add_edge(1, 3, weight=2)
dag.add_edge(2, 4, weight=3)
dag.add_edge(3, 4, weight=4)
Use methods (not all presented here, for more read the sources):
dag.get_all_roots() # {1}
dag.get_leaves() # {4}
dag.get_all_srcs(2) # {1}
dag.get_all_dsts(2) # {4}
dag.get_layer_iterations({1}) # [{1}, {2, 3}, {4}]
dag.find_longest_way_to_any_leaf(1) # 4, [2, 4] - (weight, path)
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file minedag-1.3-py2.py3-none-any.whl
.
File metadata
- Download URL: minedag-1.3-py2.py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05288430e7de22745973df72dc7b8ce381238bc87836da961284d47e7c0d70e7 |
|
MD5 | 2bdd47c32fb29142acd1e0da8532f970 |
|
BLAKE2b-256 | 27c4ee9b0461ab1f77dc21f7357ae6fb4f5eab9cbde1d842fdcaa48ad80125e4 |