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,10 +1,10 @@
p0:Place
p1:Place
p0:PNPlace
p1:PNPlace
t0:Transition
:arc (p0 -> t0)
:arc (t0 -> p1)
t0:PNTransition
:pn_arc (p0 -> t0)
:pn_arc (t0 -> p1)
t1:Transition
:arc (p1 -> t1)
:arc (t1 -> p0)
t1:PNTransition
:pn_arc (p1 -> t1)
:pn_arc (t1 -> p0)