Place/transition net (petri net) simulator that uses asyncio utilities as backend
Project description
SoyutNet
SoyutNet is a place/transition net (PT net, Petri net) simulator that uses Python's asyncio task and synchronization utilities as backend. (Soyut means abstract in Turkish.)
Its documentation can be found at https://soyutnet.readthedocs.io
Building
python3 -m venv venv
source venv/bin/activate
pip install -e '.[dev]'
pytest
Installing
python3 -m venv venv
source venv/bin/activate
pip install soyutnet
An example
This example simulates the PT net given in the diagram below.
import sys
import asyncio
import soyutnet
from soyutnet import SoyutNet
from soyutnet.constants import GENERIC_ID, GENERIC_LABEL
def main():
async def scheduled():
await asyncio.sleep(1)
soyutnet.terminate()
with SoyutNet(extra_routines=[scheduled()]) as net:
net.DEBUG_ENABLED = True
LABEL = 1
initial_tokens = {
GENERIC_LABEL: [GENERIC_ID],
LABEL: [1000, 990],
}
o1 = net.Observer(verbose=True)
p1 = net.Place("p1", initial_tokens=initial_tokens, observer=o1)
o2 = net.Observer(verbose=True)
p2 = net.Place("p2", observer=o2)
t1 = net.Transition("t1")
"""Define places and transitions (PTs)"""
_ = net.Arc(labels=(GENERIC_LABEL, LABEL))
p1 >> _ >> t1 >> _ >> p2
"""Connect PTs"""
records = net.registry.get_merged_records()
graph = net.registry.generate_graph(
indent=" ", label_names={LABEL: "🤔", GENERIC_LABEL: "🤌"}
)
print("\nRecorded events:")
{net.print(rec) for rec in records}
print("\nNet graph:")
print(graph, file=sys.stderr)
return records, graph
if __name__ == "__main__":
main()
outputs:
$ python tests/behavior/readme_example.py
loop(t1, 3): REC: O{(p1, 1)}: (112199.881220, ((0, 1, ), (1, 2, ), ), t1, )
loop(t1, 3): REC: O{(p1, 1)}: (112199.881402, ((0, 0, ), (1, 2, ), ), t1, )
loop(t1, 3): REC: O{(p1, 1)}: (112199.881550, ((0, 0, ), (1, 1, ), ), t1, )
Recorded events:
(p1, (112199.881220, ((0, 1, ), (1, 2, ), ), t1, ), )
(p1, (112199.881402, ((0, 0, ), (1, 2, ), ), t1, ), )
(p1, (112199.881550, ((0, 0, ), (1, 1, ), ), t1, ), )
Net graph:
digraph Net {
subgraph cluster_0 {
p1_0 [shape="circle",fontsize="20",style="filled",color="#000000",fillcolor="#dddddd",label="",xlabel="p1",height="1",width="1",penwidth=3];
p2_0 [shape="circle",fontsize="20",style="filled",color="#000000",fillcolor="#dddddd",label="",xlabel="p2",height="1",width="1",penwidth=3];
t1_0 [shape="box",fontsize="20",style="filled",color="#cccccc",fillcolor="#000000",label="",xlabel="t1",height="0.25",width="1.25",penwidth=3];
t1_0 -> p2_0 [fontsize="20",label="{🤌,🤔}",minlen="2",penwidth="3"];
p1_0 -> t1_0 [fontsize="20",label="{🤌,🤔}",minlen="2",penwidth="3"];
}
clusterrank=none;
}
How to interpret events
('p1', (188597.931257369, ((0, 1), (1, 2)), 't1'))
A list of place markings that show token counts for each label recorded just before a transition is fired:
[('<name of the place>', (<event timestamp in seconds>, ((<token label>, <token count>),), '<firing transition>')), ...]
How to generate the graph
sudo apt install graphviz # Which provides 'dot'
python tests/behavior/readme_example.py 2>&1 > /dev/null | dot -Tpng > readme_example.png
Outputs:
Credits
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
File details
Details for the file soyutnet-0.4.0.tar.gz
.
File metadata
- Download URL: soyutnet-0.4.0.tar.gz
- Upload date:
- Size: 472.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8060e4a1af09121db0b056fd324ec7a036a8a6e1439bc2efd42f253f4b03a7c6 |
|
MD5 | 55f92fbf3c7826c4145aeae4b0b27ebb |
|
BLAKE2b-256 | 3a970d3d03eff669140b2b675d521ed1bc46dc0cdc120b082ac3245efcece152 |
Provenance
The following attestation bundles were made for soyutnet-0.4.0.tar.gz
:
Publisher:
build.yml
on dmrokan/soyutnet
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
soyutnet-0.4.0.tar.gz
- Subject digest:
8060e4a1af09121db0b056fd324ec7a036a8a6e1439bc2efd42f253f4b03a7c6
- Sigstore transparency entry: 148129472
- Sigstore integration time:
- Predicate type:
File details
Details for the file soyutnet-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: soyutnet-0.4.0-py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5933b87dcd24bd337fd5ac457f8c902b9637245372851136571dcb81175b2cfa |
|
MD5 | 8ea717b274f49a305cdfc448ce022a9f |
|
BLAKE2b-256 | 6b958489e3f6118c90a33d8baf9760846cc238fd1a7fa418db6c3cb96de55bcd |
Provenance
The following attestation bundles were made for soyutnet-0.4.0-py3-none-any.whl
:
Publisher:
build.yml
on dmrokan/soyutnet
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
soyutnet-0.4.0-py3-none-any.whl
- Subject digest:
5933b87dcd24bd337fd5ac457f8c902b9637245372851136571dcb81175b2cfa
- Sigstore transparency entry: 148129480
- Sigstore integration time:
- Predicate type: