forked from Bogoe/pn2ccs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths02-vending-machine.pnml
More file actions
127 lines (127 loc) · 3.18 KB
/
s02-vending-machine.pnml
File metadata and controls
127 lines (127 loc) · 3.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<pnml xmlns="http://www.pnml.org/version-2009/grammar/pnml">
<net id="n1" type="http://www.pnml.org/version-2009/grammar/ptnet">
<name>
<text>s02-vending-machine</text>
</name>
<page id="top-level">
<place id="p1">
<name>
<text>p1</text>
</name>
<graphics>
<position x="170" y="200" />
</graphics>
<initialMarking>
<text>1</text>
</initialMarking>
</place>
<place id="p2">
<name>
<text>p2</text>
</name>
<graphics>
<position x="350" y="150" />
</graphics>
<initialMarking>
<text>0</text>
</initialMarking>
</place>
<place id="p3">
<name>
<text>p3</text>
</name>
<graphics>
<position x="350" y="240" />
</graphics>
<initialMarking>
<text>0</text>
</initialMarking>
</place>
<place id="p4">
<name>
<text>p4</text>
</name>
<graphics>
<position x="530" y="150" />
</graphics>
<initialMarking>
<text>0</text>
</initialMarking>
</place>
<place id="p5">
<name>
<text>p5</text>
</name>
<graphics>
<position x="530" y="240" />
</graphics>
<initialMarking>
<text>0</text>
</initialMarking>
</place>
<place id="p6">
<name>
<text>p6</text>
</name>
<graphics>
<position x="710" y="200" />
</graphics>
<initialMarking>
<text>0</text>
</initialMarking>
</place>
<transition id="t1">
<name>
<text>coin</text>
</name>
<graphics>
<position x="260" y="200" />
</graphics>
</transition>
<transition id="t2">
<name>
<text>coffee</text>
</name>
<graphics>
<position x="440" y="120" />
</graphics>
</transition>
<transition id="t3">
<name>
<text>tea</text>
</name>
<graphics>
<position x="440" y="180" />
</graphics>
</transition>
<transition id="t4">
<name>
<text>cup</text>
</name>
<graphics>
<position x="440" y="240" />
</graphics>
</transition>
<transition id="t5">
<name>
<text>serve</text>
</name>
<graphics>
<position x="620" y="200" />
</graphics>
</transition>
<arc id="e0" source="p1" target="t1"></arc>
<arc id="e1" source="t1" target="p2"></arc>
<arc id="e2" source="t1" target="p3"></arc>
<arc id="e3" source="p3" target="t4"></arc>
<arc id="e4" source="t4" target="p5"></arc>
<arc id="e5" source="p5" target="t5"></arc>
<arc id="e6" source="p2" target="t3"></arc>
<arc id="e7" source="p2" target="t2"></arc>
<arc id="e8" source="p4" target="t5"></arc>
<arc id="e9" source="t3" target="p4"></arc>
<arc id="e10" source="t2" target="p4"></arc>
<arc id="e11" source="t5" target="p6"></arc>
</page>
</net>
</pnml>