Crates.io | netcrab |
lib.rs | netcrab |
version | 1.0.0 |
source | src |
created_at | 2023-05-29 17:17:39.434333 |
updated_at | 2023-05-29 17:17:39.434333 |
description | A simple library for creating and exporting Petri nets |
homepage | https://github.com/hlisdero/netcrab/ |
repository | https://github.com/hlisdero/netcrab/ |
max_upload_size | |
id | 877233 |
size | 92,913 |
The main implementation is found in petri_net.rs
. It uses two BTreeMap
to store the places and transitions. References to places and transitions are named PlaceRef
and TransitionRef
respectively. Places and transitions are labeled with String
. The net keeps the places in order, which allows the iterators to be deterministic.
References to the places and transitions are returned when adding them to the net. These references can later be used to add arcs and to access the markings.
Note: References can be cloned. One may have as many references to a place or transition as desired.
To get a local copy up and running follow these simple example steps.
Clone the repo
git clone https://github.com/hlisdero/netcrab.git
Build the project with cargo
cargo build
Run the tests to check that everything works with cargo
cargo test
Creating a custom Petri net with a single place and a single transition forming a loop:
use netcrab::net::PetriNet;
let mut net = PetriNet::new();
let place_ref = net.add_place("Example place");
let transition_ref = net.add_transition("Example transition");
let result = net.add_arc_place_transition(&place_ref, &transition_ref);
assert!(result.is_ok());
let result = net.add_arc_transition_place(&transition_ref, &place_ref);
assert!(result.is_ok());
Note: For more examples, please refer to the unit tests in each module.
Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the terms of both the MIT license and the Apache License (Version 2.0). See LICENSE-MIT, LICENSE-APACHE for more information.
Project Link: https://github.com/hlisdero/netcrab
Based on the original work by Tom Meyer found in https://github.com/Skasselbard/PetriToStar.
This README.md
is based on the template provided by Best-README-Template