trains0.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE nta PUBLIC '-//Uppaal Team//DTD Flat System 1.1//EN' 'http://www.it.uu.se/research/group/darts/uppaal/flat-1_2.dtd'>
  3. <nta>
  4. <declaration>/*
  5. OR - 2019
  6. */
  7. const int NAB = 3; // # trains
  8. const int NBA = 3;
  9. const int N = 6;
  10. typedef int[0,NAB-1] id_tAB;
  11. typedef int[0,NBA-1] id_tBA;
  12. int ab=0, ba=0;
  13. chan accesAB[NAB], accesBA[NBA], libAB[NAB], libBA[NBA];
  14. </declaration>
  15. <template>
  16. <name>TrainBA</name>
  17. <parameter>const id_tBA id</parameter>
  18. <declaration>clock x;</declaration>
  19. <location id="id0" x="-51" y="0">
  20. <name x="-51" y="17">A</name>
  21. </location>
  22. <location id="id1" x="34" y="0">
  23. <name x="25" y="17">BA</name>
  24. <label kind="invariant" x="51" y="-8">x&lt;=10</label>
  25. </location>
  26. <location id="id2" x="34" y="-127">
  27. <name x="34" y="-161">B</name>
  28. </location>
  29. <location id="id3" x="-51" y="-127">
  30. <name x="-59" y="-161">Safe</name>
  31. </location>
  32. <init ref="id3"/>
  33. <transition>
  34. <source ref="id0"/>
  35. <target ref="id3"/>
  36. <label kind="synchronisation" x="-51" y="-68">libBA[id] !</label>
  37. </transition>
  38. <transition>
  39. <source ref="id1"/>
  40. <target ref="id0"/>
  41. </transition>
  42. <transition>
  43. <source ref="id2"/>
  44. <target ref="id1"/>
  45. <label kind="synchronisation" x="42" y="-85">accesBA[id] ?</label>
  46. <label kind="assignment" x="42" y="-68">x:=0</label>
  47. </transition>
  48. <transition>
  49. <source ref="id3"/>
  50. <target ref="id2"/>
  51. </transition>
  52. </template>
  53. <template>
  54. <name x="40" y="16">TrainAB</name>
  55. <parameter>const id_tAB id</parameter>
  56. <declaration>clock x;</declaration>
  57. <location id="id4" x="127" y="93">
  58. <name x="116" y="65">Safe</name>
  59. </location>
  60. <location id="id5" x="212" y="93">
  61. <name x="211" y="65">A</name>
  62. </location>
  63. <location id="id6" x="127" y="229">
  64. <name x="124" y="243">B</name>
  65. </location>
  66. <location id="id7" x="212" y="229">
  67. <name x="202" y="243">AB</name>
  68. <label kind="invariant" x="228" y="218">x&lt;=10</label>
  69. </location>
  70. <init ref="id4"/>
  71. <transition>
  72. <source ref="id6"/>
  73. <target ref="id4"/>
  74. <label kind="synchronisation" x="127" y="144">libAB[id] !</label>
  75. </transition>
  76. <transition>
  77. <source ref="id7"/>
  78. <target ref="id6"/>
  79. </transition>
  80. <transition>
  81. <source ref="id5"/>
  82. <target ref="id7"/>
  83. <label kind="synchronisation" x="212" y="144">accesAB[id] ?</label>
  84. <label kind="assignment" x="212" y="161">x:=0</label>
  85. </transition>
  86. <transition>
  87. <source ref="id4"/>
  88. <target ref="id5"/>
  89. </transition>
  90. </template>
  91. <template>
  92. <name x="40" y="16">CTRL</name>
  93. <declaration>id_tAB list[N+1];
  94. int[0,N] len;
  95. // Put an element at the end of the queue
  96. void enqueue(id_tAB element)
  97. {
  98. list[len++] = element;
  99. }
  100. // Remove the front element of the queue
  101. void dequeue()
  102. {
  103. int i = 0;
  104. len -= 1;
  105. while (i &lt; len)
  106. {
  107. list[i] = list[i + 1];
  108. i++;
  109. }
  110. list[i] = 0;
  111. }
  112. // Returns the front element of the queue
  113. id_tAB front()
  114. {
  115. return list[0];
  116. }
  117. // Returns the last element of the queue
  118. id_tAB tail()
  119. {
  120. return list[len - 1];
  121. }</declaration>
  122. <location id="id8" x="-102" y="51">
  123. <name x="-153" y="43">Free</name>
  124. </location>
  125. <location id="id9" x="212" y="-68">
  126. <name x="178" y="-59">AB</name>
  127. <label kind="comments" x="34" y="-59">At least one on AB</label>
  128. </location>
  129. <location id="id10" x="212" y="187">
  130. <name x="178" y="161">BA</name>
  131. <label kind="comments" x="34" y="161">At least one on BA</label>
  132. </location>
  133. <init ref="id8"/>
  134. <transition>
  135. <source ref="id10"/>
  136. <target ref="id10"/>
  137. <label kind="select" x="221" y="263">e:id_tBA</label>
  138. <label kind="synchronisation" x="221" y="280">libBA[e] ?</label>
  139. <label kind="assignment" x="221" y="297">ba --</label>
  140. <nail x="280" y="255"/>
  141. <nail x="212" y="255"/>
  142. </transition>
  143. <transition>
  144. <source ref="id10"/>
  145. <target ref="id10"/>
  146. <label kind="select" x="357" y="187">e:id_tBA</label>
  147. <label kind="synchronisation" x="357" y="204">accesBA[e] !</label>
  148. <label kind="assignment" x="357" y="221">ba ++</label>
  149. <nail x="348" y="187"/>
  150. <nail x="348" y="255"/>
  151. </transition>
  152. <transition>
  153. <source ref="id9"/>
  154. <target ref="id9"/>
  155. <label kind="select" x="408" y="-153">e:id_tAB</label>
  156. <label kind="synchronisation" x="408" y="-136">accesAB[e] !</label>
  157. <label kind="assignment" x="408" y="-119">ab++</label>
  158. <label kind="comments" x="408" y="-178">One more train on AB</label>
  159. <nail x="399" y="-68"/>
  160. <nail x="399" y="-178"/>
  161. </transition>
  162. <transition>
  163. <source ref="id9"/>
  164. <target ref="id9"/>
  165. <label kind="select" x="136" y="-161">e:id_tAB</label>
  166. <label kind="synchronisation" x="136" y="-144">libAB[e] ?</label>
  167. <label kind="assignment" x="136" y="-127">ab--</label>
  168. <label kind="comments" x="59" y="-187">One train leaves AB</label>
  169. <nail x="289" y="-187"/>
  170. <nail x="212" y="-187"/>
  171. </transition>
  172. <transition>
  173. <source ref="id10"/>
  174. <target ref="id8"/>
  175. <label kind="guard" x="-170" y="136">ba == 0</label>
  176. <label kind="comments" x="-221" y="161">No train on BA</label>
  177. <nail x="-102" y="187"/>
  178. </transition>
  179. <transition>
  180. <source ref="id8"/>
  181. <target ref="id10"/>
  182. <label kind="select" x="221" y="102">e:id_tBA</label>
  183. <label kind="synchronisation" x="221" y="119">accesBA[e] !</label>
  184. <label kind="assignment" x="221" y="136">ba++</label>
  185. <label kind="comments" x="221" y="76">First train on BA</label>
  186. <nail x="212" y="85"/>
  187. </transition>
  188. <transition>
  189. <source ref="id9"/>
  190. <target ref="id8"/>
  191. <label kind="guard" x="-169" y="-85">ab == 0</label>
  192. <label kind="comments" x="-221" y="-59">No train on AB</label>
  193. <nail x="-101" y="-68"/>
  194. </transition>
  195. <transition>
  196. <source ref="id8"/>
  197. <target ref="id9"/>
  198. <label kind="select" x="221" y="0">e:id_tAB</label>
  199. <label kind="synchronisation" x="221" y="17">accesAB[e] !</label>
  200. <label kind="assignment" x="221" y="34">ab++</label>
  201. <label kind="comments" x="221" y="-25">First train on AB</label>
  202. <nail x="212" y="17"/>
  203. </transition>
  204. </template>
  205. <system>system TrainAB, TrainBA, CTRL;
  206. </system>
  207. <queries>
  208. <query>
  209. <formula>E&lt;&gt; TrainBA(1).BA</formula>
  210. <comment></comment>
  211. </query>
  212. <query>
  213. <formula>E&lt;&gt; TrainBA(2).BA
  214. </formula>
  215. <comment>
  216. </comment>
  217. </query>
  218. <query>
  219. <formula>A[] forall (i : id_tBA) forall (j : id_tAB) TrainBA(i).BA &amp;&amp; TrainAB(j).AB imply i == j
  220. </formula>
  221. <comment>
  222. </comment>
  223. </query>
  224. <query>
  225. <formula>TrainBA(1).B --&gt; TrainBA(1).BA
  226. </formula>
  227. <comment>
  228. </comment>
  229. </query>
  230. <query>
  231. <formula>A&lt;&gt; TrainBA(1).BA
  232. </formula>
  233. <comment>
  234. </comment>
  235. </query>
  236. <query>
  237. <formula>E&lt;&gt; TrainBA(1).BA &amp; TrainBA(2).BA
  238. </formula>
  239. <comment>
  240. </comment>
  241. </query>
  242. </queries>
  243. </nta>