rename types in Petri Net formalism to prevent naming collisions when merging with 'Port' formalism

This commit is contained in:
Joeri Exelmans 2024-11-22 15:20:16 +01:00
parent 6ac8e30747
commit 5962a476c0
10 changed files with 69 additions and 69 deletions

View file

@ -1,13 +1,13 @@
# A place with no tokens:
p:RAM_Place
ps:RAM_PlaceState {
p:RAM_PNPlace
ps:RAM_PNPlaceState {
RAM_numTokens = `get_value(this) == 0`;
}
:RAM_of (ps -> p)
:RAM_pn_of (ps -> p)
# An incoming arc from that place to our transition:
t:RAM_Transition
t:RAM_PNTransition
:RAM_arc (p -> t)
:RAM_pn_arc (p -> t)