trains0.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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="238" y="-59">OnlyAB</name>
  130. <label kind="comments" x="297" 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="-484" y="-42">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="-272" y="246">RequestFromA</name>
  143. </location>
  144. <init ref="id8"/>
  145. <transition>
  146. <source ref="id11"/>
  147. <target ref="id11"/>
  148. <label kind="select" x="-263" y="-221">e:id_tAB</label>
  149. <label kind="synchronisation" x="-263" y="-204">accesAB[e]!</label>
  150. <nail x="-187" y="-187"/>
  151. <nail x="-263" y="-187"/>
  152. </transition>
  153. <transition>
  154. <source ref="id12"/>
  155. <target ref="id12"/>
  156. <label kind="select" x="-255" y="323">e:id_tBA</label>
  157. <label kind="synchronisation" x="-255" y="340">accesBA[e] !</label>
  158. <nail x="-196" y="323"/>
  159. <nail x="-256" y="323"/>
  160. </transition>
  161. <transition>
  162. <source ref="id8"/>
  163. <target ref="id9"/>
  164. <label kind="select" x="144" y="17">e:id_tAB</label>
  165. <label kind="synchronisation" x="102" y="34">requestAB[e] ?</label>
  166. <label kind="assignment" x="161" y="51">ab ++</label>
  167. <nail x="212" y="59"/>
  168. </transition>
  169. <transition>
  170. <source ref="id8"/>
  171. <target ref="id10"/>
  172. <label kind="select" x="144" y="136">e:id_tBA</label>
  173. <label kind="synchronisation" x="102" y="153">requestBA[e] ?</label>
  174. <label kind="assignment" x="161" y="170">ba ++</label>
  175. <nail x="212" y="144"/>
  176. </transition>
  177. <transition>
  178. <source ref="id12"/>
  179. <target ref="id9"/>
  180. <label kind="guard" x="-221" y="136">ba == 0</label>
  181. <nail x="-153" y="144"/>
  182. </transition>
  183. <transition>
  184. <source ref="id10"/>
  185. <target ref="id8"/>
  186. <label kind="guard" x="263" y="186">ba == 0</label>
  187. </transition>
  188. <transition>
  189. <source ref="id12"/>
  190. <target ref="id12"/>
  191. <label kind="select" x="-153" y="322">e:id_tBA</label>
  192. <label kind="synchronisation" x="-153" y="339">libBA[e] ?</label>
  193. <label kind="assignment" x="-153" y="356">ba --</label>
  194. <nail x="-85" y="322"/>
  195. <nail x="-153" y="322"/>
  196. </transition>
  197. <transition>
  198. <source ref="id10"/>
  199. <target ref="id12"/>
  200. <label kind="select" x="-42" y="212">e:id_tAB</label>
  201. <label kind="synchronisation" x="-42" y="229">requestAB[e] ?</label>
  202. <label kind="assignment" x="-42" y="246">ab ++</label>
  203. </transition>
  204. <transition>
  205. <source ref="id10"/>
  206. <target ref="id10"/>
  207. <label kind="select" x="323" y="263">e:id_tBA</label>
  208. <label kind="synchronisation" x="323" y="280">requestBA[e] ?</label>
  209. <label kind="assignment" x="323" y="298">ba ++</label>
  210. <nail x="314" y="323"/>
  211. <nail x="314" y="263"/>
  212. </transition>
  213. <transition>
  214. <source ref="id9"/>
  215. <target ref="id9"/>
  216. <label kind="select" x="331" y="-153">e:id_tAB</label>
  217. <label kind="synchronisation" x="331" y="-136">requestAB[e] ?</label>
  218. <label kind="assignment" x="331" y="-119">ab ++</label>
  219. <nail x="323" y="-153"/>
  220. <nail x="323" y="-68"/>
  221. </transition>
  222. <transition>
  223. <source ref="id11"/>
  224. <target ref="id10"/>
  225. <label kind="guard" x="-221" y="42">ab == 0</label>
  226. <nail x="-153" y="50"/>
  227. </transition>
  228. <transition>
  229. <source ref="id11"/>
  230. <target ref="id11"/>
  231. <label kind="select" x="-144" y="-238">e:id_tAB</label>
  232. <label kind="synchronisation" x="-144" y="-221">libAB[e] ?</label>
  233. <label kind="assignment" x="-144" y="-204">ab--</label>
  234. <nail x="-68" y="-187"/>
  235. <nail x="-153" y="-187"/>
  236. </transition>
  237. <transition>
  238. <source ref="id9"/>
  239. <target ref="id11"/>
  240. <label kind="select" x="-34" y="-119">e:id_tBA</label>
  241. <label kind="synchronisation" x="-34" y="-102">requestBA[e] ?</label>
  242. <label kind="assignment" x="-34" y="-85">ba ++</label>
  243. </transition>
  244. <transition>
  245. <source ref="id10"/>
  246. <target ref="id10"/>
  247. <label kind="select" x="221" y="339">e:id_tBA</label>
  248. <label kind="synchronisation" x="221" y="356">libBA[e] ?</label>
  249. <label kind="assignment" x="221" y="373">ba --</label>
  250. <nail x="280" y="331"/>
  251. <nail x="212" y="331"/>
  252. </transition>
  253. <transition>
  254. <source ref="id10"/>
  255. <target ref="id10"/>
  256. <label kind="select" x="110" y="340">e:id_tBA</label>
  257. <label kind="synchronisation" x="110" y="357">accesBA[e] !</label>
  258. <nail x="195" y="331"/>
  259. <nail x="110" y="331"/>
  260. </transition>
  261. <transition>
  262. <source ref="id9"/>
  263. <target ref="id9"/>
  264. <label kind="select" x="85" y="-229">e:id_tAB</label>
  265. <label kind="synchronisation" x="85" y="-212">accesAB[e] !</label>
  266. <nail x="187" y="-187"/>
  267. <nail x="85" y="-187"/>
  268. </transition>
  269. <transition>
  270. <source ref="id9"/>
  271. <target ref="id9"/>
  272. <label kind="select" x="212" y="-238">e:id_tAB</label>
  273. <label kind="synchronisation" x="212" y="-221">libAB[e] ?</label>
  274. <label kind="assignment" x="212" y="-204">ab--</label>
  275. <nail x="289" y="-187"/>
  276. <nail x="212" y="-187"/>
  277. </transition>
  278. <transition>
  279. <source ref="id9"/>
  280. <target ref="id8"/>
  281. <label kind="guard" x="272" y="8">ab == 0</label>
  282. </transition>
  283. </template>
  284. <system>system TrainAB, TrainBA, CTRL;
  285. </system>
  286. <queries>
  287. <query>
  288. <formula>E&lt;&gt; TrainBA(1).BA</formula>
  289. <comment></comment>
  290. </query>
  291. <query>
  292. <formula>E&lt;&gt; TrainBA(2).BA
  293. </formula>
  294. <comment>
  295. </comment>
  296. </query>
  297. <query>
  298. <formula>A[] forall (i : id_tBA) forall (j : id_tAB) TrainBA(i).BA &amp;&amp; TrainAB(j).AB imply i == j
  299. </formula>
  300. <comment>
  301. </comment>
  302. </query>
  303. <query>
  304. <formula>TrainBA(1).B --&gt; TrainBA(1).BA
  305. </formula>
  306. <comment>
  307. </comment>
  308. </query>
  309. <query>
  310. <formula>A&lt;&gt; TrainBA(1).BA
  311. </formula>
  312. <comment>
  313. </comment>
  314. </query>
  315. <query>
  316. <formula>A[] not deadlock</formula>
  317. <comment></comment>
  318. </query>
  319. <query>
  320. <formula>E&lt;&gt; TrainBA(1).BA &amp; TrainBA(2).BA
  321. </formula>
  322. <comment>
  323. </comment>
  324. </query>
  325. </queries>
  326. </nta>