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,25 +1,25 @@
general_1_s:PlaceState {
general_1_s:PNPlaceState {
numTokens = 1;
}
general_2_s:PlaceState {
general_2_s:PNPlaceState {
numTokens = 1;
}
critical_1_s:PlaceState {
critical_1_s:PNPlaceState {
numTokens = 0;
}
critical_2_s:PlaceState {
critical_2_s:PNPlaceState {
numTokens = 0;
}
semaphore_s:PlaceState {
semaphore_s:PNPlaceState {
numTokens = 1;
}
:of (general_1_s -> general_1)
:of (general_2_s -> general_2)
:of (critical_1_s -> critical_1)
:of (critical_2_s -> critical_2)
:of (semaphore_s -> semaphore)
:pn_of (general_1_s -> general_1)
:pn_of (general_2_s -> general_2)
:pn_of (critical_1_s -> critical_1)
:pn_of (critical_2_s -> critical_2)
:pn_of (semaphore_s -> semaphore)