trains0.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  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. Adapted by Jovian HERSEMEULE - 2020
  7. */
  8. const int NAB = 3;
  9. const int NBA = 3;
  10. const int N = 6;
  11. typedef int[0,NAB-1] id_tAB;
  12. typedef int[0,NBA-1] id_tBA;
  13. int ab=0, ba=0;
  14. chan accesAB[NAB], accesBA[NBA], libAB[NAB], libBA[NBA], requestAB[NAB], requestBA[NBA];
  15. </declaration>
  16. <template>
  17. <name>TrainBA</name>
  18. <parameter>const id_tBA id</parameter>
  19. <declaration>clock x;</declaration>
  20. <location id="id0" x="-51" y="0">
  21. <name x="-51" y="17">A</name>
  22. </location>
  23. <location id="id1" x="93" y="0">
  24. <name x="84" y="17">BA</name>
  25. <label kind="invariant" x="110" y="-8">x&lt;=10</label>
  26. </location>
  27. <location id="id2" x="93" y="-127">
  28. <name x="93" y="-161">B</name>
  29. </location>
  30. <location id="id3" x="-51" y="-127">
  31. <name x="-59" y="-161">Safe</name>
  32. </location>
  33. <init ref="id3"/>
  34. <transition>
  35. <source ref="id0"/>
  36. <target ref="id3"/>
  37. <label kind="synchronisation" x="-51" y="-68">libBA[id] !</label>
  38. </transition>
  39. <transition>
  40. <source ref="id1"/>
  41. <target ref="id0"/>
  42. </transition>
  43. <transition>
  44. <source ref="id2"/>
  45. <target ref="id1"/>
  46. <label kind="synchronisation" x="101" y="-85">accesBA[id] ?</label>
  47. <label kind="assignment" x="101" y="-68">x:=0</label>
  48. </transition>
  49. <transition>
  50. <source ref="id3"/>
  51. <target ref="id2"/>
  52. <label kind="synchronisation" x="-33" y="-144">requestBA[id] !</label>
  53. </transition>
  54. </template>
  55. <template>
  56. <name x="40" y="16">TrainAB</name>
  57. <parameter>const id_tAB id</parameter>
  58. <declaration>clock x;</declaration>
  59. <location id="id4" x="127" y="93">
  60. <name x="116" y="65">Safe</name>
  61. </location>
  62. <location id="id5" x="280" y="93">
  63. <name x="279" y="65">A</name>
  64. </location>
  65. <location id="id6" x="127" y="229">
  66. <name x="124" y="243">B</name>
  67. </location>
  68. <location id="id7" x="280" y="229">
  69. <name x="270" y="243">AB</name>
  70. <label kind="invariant" x="296" y="218">x&lt;=10</label>
  71. </location>
  72. <init ref="id4"/>
  73. <transition>
  74. <source ref="id6"/>
  75. <target ref="id4"/>
  76. <label kind="synchronisation" x="127" y="144">libAB[id] !</label>
  77. </transition>
  78. <transition>
  79. <source ref="id7"/>
  80. <target ref="id6"/>
  81. </transition>
  82. <transition>
  83. <source ref="id5"/>
  84. <target ref="id7"/>
  85. <label kind="synchronisation" x="280" y="144">accesAB[id] ?</label>
  86. <label kind="assignment" x="280" y="161">x:=0</label>
  87. </transition>
  88. <transition>
  89. <source ref="id4"/>
  90. <target ref="id5"/>
  91. <label kind="synchronisation" x="145" y="76">requestAB[id] !</label>
  92. </transition>
  93. </template>
  94. <template>
  95. <name x="40" y="16">CTRL</name>
  96. <declaration>id_tAB list[N+1];
  97. int[0,N] len;
  98. // Put an element at the end of the queue
  99. void enqueue(id_tAB element)
  100. {
  101. list[len++] = element;
  102. }
  103. // Remove the front element of the queue
  104. void dequeue()
  105. {
  106. int i = 0;
  107. len -= 1;
  108. while (i &lt; len)
  109. {
  110. list[i] = list[i + 1];
  111. i++;
  112. }
  113. list[i] = 0;
  114. }
  115. // Returns the front element of the queue
  116. id_tAB front()
  117. {
  118. return list[0];
  119. }
  120. // Returns the last element of the queue
  121. id_tAB tail()
  122. {
  123. return list[len - 1];
  124. }</declaration>
  125. <location id="id8" x="314" y="102">
  126. <name x="331" y="94">Free</name>
  127. </location>
  128. <location id="id9" x="212" y="-68">
  129. <name x="221" y="-59">OnlyAB</name>
  130. <label kind="comments" x="280" y="-59">At least one train on AB ;
  131. and no train blocked on B</label>
  132. </location>
  133. <location id="id10" x="212" y="263">
  134. <name x="229" y="238">OnlyBA</name>
  135. </location>
  136. <location id="id11" x="-153" y="-68">
  137. <name x="-272" y="-68">RequestFromB</name>
  138. <label kind="comments" x="-493" y="-102">Waiting for AB trains to leave shared section;
  139. some other trains are waiting on B.</label>
  140. </location>
  141. <location id="id12" x="-153" y="263">
  142. <name x="-280" y="254">RequestFromA</name>
  143. </location>
  144. <init ref="id8"/>
  145. <transition>
  146. <source ref="id8"/>
  147. <target ref="id9"/>
  148. <label kind="select" x="144" y="17">e:id_tAB</label>
  149. <label kind="synchronisation" x="102" y="34">requestAB[e] ?</label>
  150. <nail x="212" y="59"/>
  151. </transition>
  152. <transition>
  153. <source ref="id8"/>
  154. <target ref="id10"/>
  155. <label kind="select" x="144" y="136">e:id_tBA</label>
  156. <label kind="synchronisation" x="102" y="153">requestBA[e] ?</label>
  157. <nail x="212" y="144"/>
  158. </transition>
  159. <transition>
  160. <source ref="id12"/>
  161. <target ref="id9"/>
  162. <label kind="guard" x="-221" y="136">ba == 0</label>
  163. <nail x="-153" y="144"/>
  164. </transition>
  165. <transition>
  166. <source ref="id10"/>
  167. <target ref="id8"/>
  168. <label kind="guard" x="263" y="186">ba == 0</label>
  169. </transition>
  170. <transition>
  171. <source ref="id12"/>
  172. <target ref="id12"/>
  173. <label kind="select" x="-153" y="322">e:id_tBA</label>
  174. <label kind="synchronisation" x="-153" y="339">libBA[e] ?</label>
  175. <label kind="assignment" x="-153" y="356">ba --</label>
  176. <nail x="-85" y="322"/>
  177. <nail x="-153" y="322"/>
  178. </transition>
  179. <transition>
  180. <source ref="id10"/>
  181. <target ref="id12"/>
  182. <label kind="select" x="-8" y="229">e:id_tAB</label>
  183. <label kind="synchronisation" x="-8" y="246">requestAB[e] ?</label>
  184. </transition>
  185. <transition>
  186. <source ref="id10"/>
  187. <target ref="id10"/>
  188. <label kind="select" x="93" y="339">e:id_tBA</label>
  189. <label kind="synchronisation" x="93" y="356">requestBA[e] ?</label>
  190. <nail x="170" y="331"/>
  191. <nail x="102" y="331"/>
  192. </transition>
  193. <transition>
  194. <source ref="id9"/>
  195. <target ref="id9"/>
  196. <label kind="select" x="93" y="-229">e:id_tAB</label>
  197. <label kind="synchronisation" x="93" y="-212">requestAB[e] ?</label>
  198. <nail x="178" y="-187"/>
  199. <nail x="102" y="-187"/>
  200. </transition>
  201. <transition>
  202. <source ref="id11"/>
  203. <target ref="id10"/>
  204. <label kind="guard" x="-221" y="42">ab == 0</label>
  205. <nail x="-153" y="50"/>
  206. </transition>
  207. <transition>
  208. <source ref="id11"/>
  209. <target ref="id11"/>
  210. <label kind="select" x="-144" y="-238">e:id_tAB</label>
  211. <label kind="synchronisation" x="-144" y="-221">libAB[e] ?</label>
  212. <label kind="assignment" x="-144" y="-204">ab--</label>
  213. <nail x="-68" y="-187"/>
  214. <nail x="-153" y="-187"/>
  215. </transition>
  216. <transition>
  217. <source ref="id9"/>
  218. <target ref="id11"/>
  219. <label kind="select" x="8" y="-102">e:id_tBA</label>
  220. <label kind="synchronisation" x="8" y="-85">requestBA[e] ?</label>
  221. </transition>
  222. <transition>
  223. <source ref="id10"/>
  224. <target ref="id10"/>
  225. <label kind="select" x="221" y="339">e:id_tBA</label>
  226. <label kind="synchronisation" x="221" y="356">libBA[e] ?</label>
  227. <label kind="assignment" x="221" y="373">ba --</label>
  228. <nail x="280" y="331"/>
  229. <nail x="212" y="331"/>
  230. </transition>
  231. <transition>
  232. <source ref="id10"/>
  233. <target ref="id10"/>
  234. <label kind="select" x="357" y="263">e:id_tBA</label>
  235. <label kind="synchronisation" x="357" y="280">accesBA[e] !</label>
  236. <label kind="assignment" x="357" y="297">ba ++</label>
  237. <nail x="348" y="263"/>
  238. <nail x="348" y="331"/>
  239. </transition>
  240. <transition>
  241. <source ref="id9"/>
  242. <target ref="id9"/>
  243. <label kind="select" x="340" y="-153">e:id_tAB</label>
  244. <label kind="synchronisation" x="340" y="-136">accesAB[e] !</label>
  245. <label kind="assignment" x="340" y="-119">ab++</label>
  246. <nail x="331" y="-68"/>
  247. <nail x="331" y="-178"/>
  248. </transition>
  249. <transition>
  250. <source ref="id9"/>
  251. <target ref="id9"/>
  252. <label kind="select" x="212" y="-238">e:id_tAB</label>
  253. <label kind="synchronisation" x="212" y="-221">libAB[e] ?</label>
  254. <label kind="assignment" x="212" y="-204">ab--</label>
  255. <nail x="289" y="-187"/>
  256. <nail x="212" y="-187"/>
  257. </transition>
  258. <transition>
  259. <source ref="id9"/>
  260. <target ref="id8"/>
  261. <label kind="guard" x="272" y="8">ab == 0</label>
  262. </transition>
  263. </template>
  264. <system>system TrainAB, TrainBA, CTRL;
  265. </system>
  266. <queries>
  267. <query>
  268. <formula>E&lt;&gt; TrainBA(1).BA</formula>
  269. <comment></comment>
  270. </query>
  271. <query>
  272. <formula>E&lt;&gt; TrainBA(2).BA
  273. </formula>
  274. <comment>
  275. </comment>
  276. </query>
  277. <query>
  278. <formula>A[] forall (i : id_tBA) forall (j : id_tAB) TrainBA(i).BA &amp;&amp; TrainAB(j).AB imply i == j
  279. </formula>
  280. <comment>
  281. </comment>
  282. </query>
  283. <query>
  284. <formula>TrainBA(1).B --&gt; TrainBA(1).BA
  285. </formula>
  286. <comment>
  287. </comment>
  288. </query>
  289. <query>
  290. <formula>A&lt;&gt; TrainBA(1).BA
  291. </formula>
  292. <comment>
  293. </comment>
  294. </query>
  295. <query>
  296. <formula>A[] not deadlock</formula>
  297. <comment></comment>
  298. </query>
  299. <query>
  300. <formula>E&lt;&gt; TrainBA(1).BA &amp; TrainBA(2).BA
  301. </formula>
  302. <comment>
  303. </comment>
  304. </query>
  305. </queries>
  306. </nta>