You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2603 lines
39 KiB

  1. {
  2. "jani-version": 1,
  3. "name": "modelName",
  4. "type": "mdp",
  5. "actions": [
  6. {
  7. "name": "tick"
  8. },
  9. {
  10. "name": "tack"
  11. },
  12. {
  13. "name": "tock"
  14. }
  15. ],
  16. "variables": [
  17. {
  18. "name": "cr",
  19. "type": {
  20. "kind": "bounded",
  21. "base": "int",
  22. "lower-bound": 0,
  23. "upper-bound": 2
  24. },
  25. "initial-value": 0
  26. },
  27. {
  28. "name": "line_seized",
  29. "type": "bool",
  30. "initial-value": false
  31. },
  32. {
  33. "name": "gave_up",
  34. "type": "bool",
  35. "initial-value": false
  36. }
  37. ],
  38. "properties": [
  39. {
  40. "name": "LineSeized",
  41. "reach": "line_seized",
  42. "type": "probability-max-query"
  43. },
  44. {
  45. "name": "GaveUp",
  46. "reach": "gave_up",
  47. "type": "probability-max-query"
  48. }
  49. ],
  50. "automata": [
  51. {
  52. "name": "Clock",
  53. "variables": [],
  54. "locations": [
  55. {
  56. "name": "l_0"
  57. },
  58. {
  59. "name": "l_1"
  60. },
  61. {
  62. "name": "l_2"
  63. },
  64. {
  65. "name": "l_3"
  66. }
  67. ],
  68. "initial-location": "l_0",
  69. "edges": [
  70. {
  71. "location": "l_0",
  72. "action": "tick",
  73. "guard": true,
  74. "destinations": [
  75. {
  76. "probability": 1,
  77. "location": "l_1"
  78. }
  79. ]
  80. },
  81. {
  82. "location": "l_1",
  83. "action": "tack",
  84. "guard": true,
  85. "destinations": [
  86. {
  87. "probability": 1,
  88. "location": "l_2"
  89. }
  90. ]
  91. },
  92. {
  93. "location": "l_2",
  94. "guard": true,
  95. "destinations": [
  96. {
  97. "probability": 1,
  98. "location": "l_3",
  99. "assignments": [
  100. {
  101. "ref": "cr",
  102. "value": 0
  103. }
  104. ]
  105. }
  106. ]
  107. },
  108. {
  109. "location": "l_3",
  110. "action": "tock",
  111. "guard": true,
  112. "destinations": [
  113. {
  114. "probability": 1,
  115. "location": "l_0"
  116. }
  117. ]
  118. }
  119. ]
  120. },
  121. {
  122. "name": "Host",
  123. "variables": [
  124. {
  125. "name": "na",
  126. "type": {
  127. "kind": "bounded",
  128. "base": "int",
  129. "lower-bound": 0,
  130. "upper-bound": 3
  131. },
  132. "initial-value": 0
  133. },
  134. {
  135. "name": "ev",
  136. "type": {
  137. "kind": "bounded",
  138. "base": "int",
  139. "lower-bound": 0,
  140. "upper-bound": 4
  141. },
  142. "initial-value": 2
  143. },
  144. {
  145. "name": "wt",
  146. "type": {
  147. "kind": "bounded",
  148. "base": "int",
  149. "lower-bound": 0,
  150. "upper-bound": 4
  151. },
  152. "initial-value": 0
  153. }
  154. ],
  155. "locations": [
  156. {
  157. "name": "l_0"
  158. },
  159. {
  160. "name": "l_1"
  161. },
  162. {
  163. "name": "l_2"
  164. },
  165. {
  166. "name": "l_3"
  167. },
  168. {
  169. "name": "l_4"
  170. },
  171. {
  172. "name": "l_5"
  173. }
  174. ],
  175. "initial-location": "l_0",
  176. "edges": [
  177. {
  178. "location": "l_0",
  179. "action": "tick",
  180. "guard": {
  181. "op": ">",
  182. "args": [
  183. "wt",
  184. 0
  185. ]
  186. },
  187. "destinations": [
  188. {
  189. "probability": 1,
  190. "location": "l_1",
  191. "assignments": [
  192. {
  193. "ref": "wt",
  194. "value": {
  195. "op": "-",
  196. "args": [
  197. "wt",
  198. 1
  199. ]
  200. }
  201. }
  202. ]
  203. }
  204. ]
  205. },
  206. {
  207. "location": "l_0",
  208. "guard": {
  209. "op": "≤",
  210. "args": [
  211. "wt",
  212. 0
  213. ]
  214. },
  215. "destinations": [
  216. {
  217. "probability": 1,
  218. "location": "l_2",
  219. "assignments": [
  220. {
  221. "ref": "cr",
  222. "value": {
  223. "op": "min",
  224. "args": [
  225. 2,
  226. {
  227. "op": "+",
  228. "args": [
  229. "cr",
  230. 1
  231. ]
  232. }
  233. ]
  234. }
  235. }
  236. ]
  237. }
  238. ]
  239. },
  240. {
  241. "location": "l_1",
  242. "action": "tack",
  243. "guard": true,
  244. "destinations": [
  245. {
  246. "probability": 1,
  247. "location": "l_3"
  248. }
  249. ]
  250. },
  251. {
  252. "location": "l_2",
  253. "action": "tick",
  254. "guard": true,
  255. "destinations": [
  256. {
  257. "probability": 1,
  258. "location": "l_4"
  259. }
  260. ]
  261. },
  262. {
  263. "location": "l_3",
  264. "action": "tock",
  265. "guard": true,
  266. "destinations": [
  267. {
  268. "probability": 1,
  269. "location": "l_0"
  270. }
  271. ]
  272. },
  273. {
  274. "location": "l_4",
  275. "guard": {
  276. "op": "=",
  277. "args": [
  278. "cr",
  279. 1
  280. ]
  281. },
  282. "destinations": [
  283. {
  284. "probability": 1,
  285. "location": "l_5",
  286. "assignments": [
  287. {
  288. "ref": "line_seized",
  289. "value": true
  290. }
  291. ]
  292. }
  293. ]
  294. },
  295. {
  296. "location": "l_4",
  297. "guard": {
  298. "op": "∧",
  299. "args": [
  300. {
  301. "op": "≥",
  302. "args": [
  303. "na",
  304. 3
  305. ]
  306. },
  307. {
  308. "op": "≠",
  309. "args": [
  310. "cr",
  311. 1
  312. ]
  313. }
  314. ]
  315. },
  316. "destinations": [
  317. {
  318. "probability": 1,
  319. "location": "l_5",
  320. "assignments": [
  321. {
  322. "ref": "gave_up",
  323. "value": true
  324. }
  325. ]
  326. }
  327. ]
  328. },
  329. {
  330. "location": "l_4",
  331. "guard": {
  332. "op": "∧",
  333. "args": [
  334. {
  335. "op": "∧",
  336. "args": [
  337. {
  338. "op": "<",
  339. "args": [
  340. "na",
  341. 3
  342. ]
  343. },
  344. {
  345. "op": "≠",
  346. "args": [
  347. "cr",
  348. 1
  349. ]
  350. }
  351. ]
  352. },
  353. {
  354. "op": "=",
  355. "args": [
  356. {
  357. "op": "max",
  358. "args": [
  359. 0,
  360. {
  361. "op": "-",
  362. "args": [
  363. "ev",
  364. 1
  365. ]
  366. }
  367. ]
  368. },
  369. 0
  370. ]
  371. }
  372. ]
  373. },
  374. "destinations": [
  375. {
  376. "probability": 1,
  377. "location": "l_1",
  378. "assignments": [
  379. {
  380. "ref": "na",
  381. "value": {
  382. "op": "+",
  383. "args": [
  384. "na",
  385. 1
  386. ]
  387. }
  388. },
  389. {
  390. "ref": "wt",
  391. "value": 0
  392. },
  393. {
  394. "ref": "ev",
  395. "value": {
  396. "op": "min",
  397. "args": [
  398. {
  399. "op": "*",
  400. "args": [
  401. 2,
  402. "ev"
  403. ]
  404. },
  405. 4
  406. ]
  407. }
  408. }
  409. ]
  410. }
  411. ]
  412. },
  413. {
  414. "location": "l_4",
  415. "guard": {
  416. "op": "∧",
  417. "args": [
  418. {
  419. "op": "∧",
  420. "args": [
  421. {
  422. "op": "<",
  423. "args": [
  424. "na",
  425. 3
  426. ]
  427. },
  428. {
  429. "op": "≠",
  430. "args": [
  431. "cr",
  432. 1
  433. ]
  434. }
  435. ]
  436. },
  437. {
  438. "op": "=",
  439. "args": [
  440. {
  441. "op": "max",
  442. "args": [
  443. 0,
  444. {
  445. "op": "-",
  446. "args": [
  447. "ev",
  448. 1
  449. ]
  450. }
  451. ]
  452. },
  453. 1
  454. ]
  455. }
  456. ]
  457. },
  458. "destinations": [
  459. {
  460. "probability": {
  461. "op": "/",
  462. "args": [
  463. 1,
  464. 2
  465. ]
  466. },
  467. "location": "l_1",
  468. "assignments": [
  469. {
  470. "ref": "na",
  471. "value": {
  472. "op": "+",
  473. "args": [
  474. "na",
  475. 1
  476. ]
  477. }
  478. },
  479. {
  480. "ref": "wt",
  481. "value": 0
  482. },
  483. {
  484. "ref": "ev",
  485. "value": {
  486. "op": "min",
  487. "args": [
  488. {
  489. "op": "*",
  490. "args": [
  491. 2,
  492. "ev"
  493. ]
  494. },
  495. 4
  496. ]
  497. }
  498. }
  499. ]
  500. },
  501. {
  502. "probability": {
  503. "op": "/",
  504. "args": [
  505. 1,
  506. 2
  507. ]
  508. },
  509. "location": "l_1",
  510. "assignments": [
  511. {
  512. "ref": "na",
  513. "value": {
  514. "op": "+",
  515. "args": [
  516. "na",
  517. 1
  518. ]
  519. }
  520. },
  521. {
  522. "ref": "wt",
  523. "value": 1
  524. },
  525. {
  526. "ref": "ev",
  527. "value": {
  528. "op": "min",
  529. "args": [
  530. {
  531. "op": "*",
  532. "args": [
  533. 2,
  534. "ev"
  535. ]
  536. },
  537. 4
  538. ]
  539. }
  540. }
  541. ]
  542. }
  543. ]
  544. },
  545. {
  546. "location": "l_4",
  547. "guard": {
  548. "op": "∧",
  549. "args": [
  550. {
  551. "op": "∧",
  552. "args": [
  553. {
  554. "op": "<",
  555. "args": [
  556. "na",
  557. 3
  558. ]
  559. },
  560. {
  561. "op": "≠",
  562. "args": [
  563. "cr",
  564. 1
  565. ]
  566. }
  567. ]
  568. },
  569. {
  570. "op": "=",
  571. "args": [
  572. {
  573. "op": "max",
  574. "args": [
  575. 0,
  576. {
  577. "op": "-",
  578. "args": [
  579. "ev",
  580. 1
  581. ]
  582. }
  583. ]
  584. },
  585. 2
  586. ]
  587. }
  588. ]
  589. },
  590. "destinations": [
  591. {
  592. "probability": {
  593. "op": "/",
  594. "args": [
  595. 1,
  596. 3
  597. ]
  598. },
  599. "location": "l_1",
  600. "assignments": [
  601. {
  602. "ref": "na",
  603. "value": {
  604. "op": "+",
  605. "args": [
  606. "na",
  607. 1
  608. ]
  609. }
  610. },
  611. {
  612. "ref": "wt",
  613. "value": 0
  614. },
  615. {
  616. "ref": "ev",
  617. "value": {
  618. "op": "min",
  619. "args": [
  620. {
  621. "op": "*",
  622. "args": [
  623. 2,
  624. "ev"
  625. ]
  626. },
  627. 4
  628. ]
  629. }
  630. }
  631. ]
  632. },
  633. {
  634. "probability": {
  635. "op": "/",
  636. "args": [
  637. 1,
  638. 3
  639. ]
  640. },
  641. "location": "l_1",
  642. "assignments": [
  643. {
  644. "ref": "na",
  645. "value": {
  646. "op": "+",
  647. "args": [
  648. "na",
  649. 1
  650. ]
  651. }
  652. },
  653. {
  654. "ref": "wt",
  655. "value": 1
  656. },
  657. {
  658. "ref": "ev",
  659. "value": {
  660. "op": "min",
  661. "args": [
  662. {
  663. "op": "*",
  664. "args": [
  665. 2,
  666. "ev"
  667. ]
  668. },
  669. 4
  670. ]
  671. }
  672. }
  673. ]
  674. },
  675. {
  676. "probability": {
  677. "op": "/",
  678. "args": [
  679. 1,
  680. 3
  681. ]
  682. },
  683. "location": "l_1",
  684. "assignments": [
  685. {
  686. "ref": "na",
  687. "value": {
  688. "op": "+",
  689. "args": [
  690. "na",
  691. 1
  692. ]
  693. }
  694. },
  695. {
  696. "ref": "wt",
  697. "value": 2
  698. },
  699. {
  700. "ref": "ev",
  701. "value": {
  702. "op": "min",
  703. "args": [
  704. {
  705. "op": "*",
  706. "args": [
  707. 2,
  708. "ev"
  709. ]
  710. },
  711. 4
  712. ]
  713. }
  714. }
  715. ]
  716. }
  717. ]
  718. },
  719. {
  720. "location": "l_4",
  721. "guard": {
  722. "op": "∧",
  723. "args": [
  724. {
  725. "op": "∧",
  726. "args": [
  727. {
  728. "op": "<",
  729. "args": [
  730. "na",
  731. 3
  732. ]
  733. },
  734. {
  735. "op": "≠",
  736. "args": [
  737. "cr",
  738. 1
  739. ]
  740. }
  741. ]
  742. },
  743. {
  744. "op": "=",
  745. "args": [
  746. {
  747. "op": "max",
  748. "args": [
  749. 0,
  750. {
  751. "op": "-",
  752. "args": [
  753. "ev",
  754. 1
  755. ]
  756. }
  757. ]
  758. },
  759. 3
  760. ]
  761. }
  762. ]
  763. },
  764. "destinations": [
  765. {
  766. "probability": {
  767. "op": "/",
  768. "args": [
  769. 1,
  770. 4
  771. ]
  772. },
  773. "location": "l_1",
  774. "assignments": [
  775. {
  776. "ref": "na",
  777. "value": {
  778. "op": "+",
  779. "args": [
  780. "na",
  781. 1
  782. ]
  783. }
  784. },
  785. {
  786. "ref": "wt",
  787. "value": 0
  788. },
  789. {
  790. "ref": "ev",
  791. "value": {
  792. "op": "min",
  793. "args": [
  794. {
  795. "op": "*",
  796. "args": [
  797. 2,
  798. "ev"
  799. ]
  800. },
  801. 4
  802. ]
  803. }
  804. }
  805. ]
  806. },
  807. {
  808. "probability": {
  809. "op": "/",
  810. "args": [
  811. 1,
  812. 4
  813. ]
  814. },
  815. "location": "l_1",
  816. "assignments": [
  817. {
  818. "ref": "na",
  819. "value": {
  820. "op": "+",
  821. "args": [
  822. "na",
  823. 1
  824. ]
  825. }
  826. },
  827. {
  828. "ref": "wt",
  829. "value": 1
  830. },
  831. {
  832. "ref": "ev",
  833. "value": {
  834. "op": "min",
  835. "args": [
  836. {
  837. "op": "*",
  838. "args": [
  839. 2,
  840. "ev"
  841. ]
  842. },
  843. 4
  844. ]
  845. }
  846. }
  847. ]
  848. },
  849. {
  850. "probability": {
  851. "op": "/",
  852. "args": [
  853. 1,
  854. 4
  855. ]
  856. },
  857. "location": "l_1",
  858. "assignments": [
  859. {
  860. "ref": "na",
  861. "value": {
  862. "op": "+",
  863. "args": [
  864. "na",
  865. 1
  866. ]
  867. }
  868. },
  869. {
  870. "ref": "wt",
  871. "value": 2
  872. },
  873. {
  874. "ref": "ev",
  875. "value": {
  876. "op": "min",
  877. "args": [
  878. {
  879. "op": "*",
  880. "args": [
  881. 2,
  882. "ev"
  883. ]
  884. },
  885. 4
  886. ]
  887. }
  888. }
  889. ]
  890. },
  891. {
  892. "probability": {
  893. "op": "/",
  894. "args": [
  895. 1,
  896. 4
  897. ]
  898. },
  899. "location": "l_1",
  900. "assignments": [
  901. {
  902. "ref": "na",
  903. "value": {
  904. "op": "+",
  905. "args": [
  906. "na",
  907. 1
  908. ]
  909. }
  910. },
  911. {
  912. "ref": "wt",
  913. "value": 3
  914. },
  915. {
  916. "ref": "ev",
  917. "value": {
  918. "op": "min",
  919. "args": [
  920. {
  921. "op": "*",
  922. "args": [
  923. 2,
  924. "ev"
  925. ]
  926. },
  927. 4
  928. ]
  929. }
  930. }
  931. ]
  932. }
  933. ]
  934. }
  935. ]
  936. },
  937. {
  938. "name": "Host_1",
  939. "variables": [
  940. {
  941. "name": "na",
  942. "type": {
  943. "kind": "bounded",
  944. "base": "int",
  945. "lower-bound": 0,
  946. "upper-bound": 3
  947. },
  948. "initial-value": 0
  949. },
  950. {
  951. "name": "ev",
  952. "type": {
  953. "kind": "bounded",
  954. "base": "int",
  955. "lower-bound": 0,
  956. "upper-bound": 4
  957. },
  958. "initial-value": 2
  959. },
  960. {
  961. "name": "wt",
  962. "type": {
  963. "kind": "bounded",
  964. "base": "int",
  965. "lower-bound": 0,
  966. "upper-bound": 4
  967. },
  968. "initial-value": 0
  969. }
  970. ],
  971. "locations": [
  972. {
  973. "name": "l_0"
  974. },
  975. {
  976. "name": "l_1"
  977. },
  978. {
  979. "name": "l_2"
  980. },
  981. {
  982. "name": "l_3"
  983. },
  984. {
  985. "name": "l_4"
  986. },
  987. {
  988. "name": "l_5"
  989. }
  990. ],
  991. "initial-location": "l_0",
  992. "edges": [
  993. {
  994. "location": "l_0",
  995. "action": "tick",
  996. "guard": {
  997. "op": ">",
  998. "args": [
  999. "wt",
  1000. 0
  1001. ]
  1002. },
  1003. "destinations": [
  1004. {
  1005. "probability": 1,
  1006. "location": "l_1",
  1007. "assignments": [
  1008. {
  1009. "ref": "wt",
  1010. "value": {
  1011. "op": "-",
  1012. "args": [
  1013. "wt",
  1014. 1
  1015. ]
  1016. }
  1017. }
  1018. ]
  1019. }
  1020. ]
  1021. },
  1022. {
  1023. "location": "l_0",
  1024. "guard": {
  1025. "op": "≤",
  1026. "args": [
  1027. "wt",
  1028. 0
  1029. ]
  1030. },
  1031. "destinations": [
  1032. {
  1033. "probability": 1,
  1034. "location": "l_2",
  1035. "assignments": [
  1036. {
  1037. "ref": "cr",
  1038. "value": {
  1039. "op": "min",
  1040. "args": [
  1041. 2,
  1042. {
  1043. "op": "+",
  1044. "args": [
  1045. "cr",
  1046. 1
  1047. ]
  1048. }
  1049. ]
  1050. }
  1051. }
  1052. ]
  1053. }
  1054. ]
  1055. },
  1056. {
  1057. "location": "l_1",
  1058. "action": "tack",
  1059. "guard": true,
  1060. "destinations": [
  1061. {
  1062. "probability": 1,
  1063. "location": "l_3"
  1064. }
  1065. ]
  1066. },
  1067. {
  1068. "location": "l_2",
  1069. "action": "tick",
  1070. "guard": true,
  1071. "destinations": [
  1072. {
  1073. "probability": 1,
  1074. "location": "l_4"
  1075. }
  1076. ]
  1077. },
  1078. {
  1079. "location": "l_3",
  1080. "action": "tock",
  1081. "guard": true,
  1082. "destinations": [
  1083. {
  1084. "probability": 1,
  1085. "location": "l_0"
  1086. }
  1087. ]
  1088. },
  1089. {
  1090. "location": "l_4",
  1091. "guard": {
  1092. "op": "=",
  1093. "args": [
  1094. "cr",
  1095. 1
  1096. ]
  1097. },
  1098. "destinations": [
  1099. {
  1100. "probability": 1,
  1101. "location": "l_5",
  1102. "assignments": [
  1103. {
  1104. "ref": "line_seized",
  1105. "value": true
  1106. }
  1107. ]
  1108. }
  1109. ]
  1110. },
  1111. {
  1112. "location": "l_4",
  1113. "guard": {
  1114. "op": "∧",
  1115. "args": [
  1116. {
  1117. "op": "≥",
  1118. "args": [
  1119. "na",
  1120. 3
  1121. ]
  1122. },
  1123. {
  1124. "op": "≠",
  1125. "args": [
  1126. "cr",
  1127. 1
  1128. ]
  1129. }
  1130. ]
  1131. },
  1132. "destinations": [
  1133. {
  1134. "probability": 1,
  1135. "location": "l_5",
  1136. "assignments": [
  1137. {
  1138. "ref": "gave_up",
  1139. "value": true
  1140. }
  1141. ]
  1142. }
  1143. ]
  1144. },
  1145. {
  1146. "location": "l_4",
  1147. "guard": {
  1148. "op": "∧",
  1149. "args": [
  1150. {
  1151. "op": "∧",
  1152. "args": [
  1153. {
  1154. "op": "<",
  1155. "args": [
  1156. "na",
  1157. 3
  1158. ]
  1159. },
  1160. {
  1161. "op": "≠",
  1162. "args": [
  1163. "cr",
  1164. 1
  1165. ]
  1166. }
  1167. ]
  1168. },
  1169. {
  1170. "op": "=",
  1171. "args": [
  1172. {
  1173. "op": "max",
  1174. "args": [
  1175. 0,
  1176. {
  1177. "op": "-",
  1178. "args": [
  1179. "ev",
  1180. 1
  1181. ]
  1182. }
  1183. ]
  1184. },
  1185. 0
  1186. ]
  1187. }
  1188. ]
  1189. },
  1190. "destinations": [
  1191. {
  1192. "probability": 1,
  1193. "location": "l_1",
  1194. "assignments": [
  1195. {
  1196. "ref": "na",
  1197. "value": {
  1198. "op": "+",
  1199. "args": [
  1200. "na",
  1201. 1
  1202. ]
  1203. }
  1204. },
  1205. {
  1206. "ref": "wt",
  1207. "value": 0
  1208. },
  1209. {
  1210. "ref": "ev",
  1211. "value": {
  1212. "op": "min",
  1213. "args": [
  1214. {
  1215. "op": "*",
  1216. "args": [
  1217. 2,
  1218. "ev"
  1219. ]
  1220. },
  1221. 4
  1222. ]
  1223. }
  1224. }
  1225. ]
  1226. }
  1227. ]
  1228. },
  1229. {
  1230. "location": "l_4",
  1231. "guard": {
  1232. "op": "∧",
  1233. "args": [
  1234. {
  1235. "op": "∧",
  1236. "args": [
  1237. {
  1238. "op": "<",
  1239. "args": [
  1240. "na",
  1241. 3
  1242. ]
  1243. },
  1244. {
  1245. "op": "≠",
  1246. "args": [
  1247. "cr",
  1248. 1
  1249. ]
  1250. }
  1251. ]
  1252. },
  1253. {
  1254. "op": "=",
  1255. "args": [
  1256. {
  1257. "op": "max",
  1258. "args": [
  1259. 0,
  1260. {
  1261. "op": "-",
  1262. "args": [
  1263. "ev",
  1264. 1
  1265. ]
  1266. }
  1267. ]
  1268. },
  1269. 1
  1270. ]
  1271. }
  1272. ]
  1273. },
  1274. "destinations": [
  1275. {
  1276. "probability": {
  1277. "op": "/",
  1278. "args": [
  1279. 1,
  1280. 2
  1281. ]
  1282. },
  1283. "location": "l_1",
  1284. "assignments": [
  1285. {
  1286. "ref": "na",
  1287. "value": {
  1288. "op": "+",
  1289. "args": [
  1290. "na",
  1291. 1
  1292. ]
  1293. }
  1294. },
  1295. {
  1296. "ref": "wt",
  1297. "value": 0
  1298. },
  1299. {
  1300. "ref": "ev",
  1301. "value": {
  1302. "op": "min",
  1303. "args": [
  1304. {
  1305. "op": "*",
  1306. "args": [
  1307. 2,
  1308. "ev"
  1309. ]
  1310. },
  1311. 4
  1312. ]
  1313. }
  1314. }
  1315. ]
  1316. },
  1317. {
  1318. "probability": {
  1319. "op": "/",
  1320. "args": [
  1321. 1,
  1322. 2
  1323. ]
  1324. },
  1325. "location": "l_1",
  1326. "assignments": [
  1327. {
  1328. "ref": "na",
  1329. "value": {
  1330. "op": "+",
  1331. "args": [
  1332. "na",
  1333. 1
  1334. ]
  1335. }
  1336. },
  1337. {
  1338. "ref": "wt",
  1339. "value": 1
  1340. },
  1341. {
  1342. "ref": "ev",
  1343. "value": {
  1344. "op": "min",
  1345. "args": [
  1346. {
  1347. "op": "*",
  1348. "args": [
  1349. 2,
  1350. "ev"
  1351. ]
  1352. },
  1353. 4
  1354. ]
  1355. }
  1356. }
  1357. ]
  1358. }
  1359. ]
  1360. },
  1361. {
  1362. "location": "l_4",
  1363. "guard": {
  1364. "op": "∧",
  1365. "args": [
  1366. {
  1367. "op": "∧",
  1368. "args": [
  1369. {
  1370. "op": "<",
  1371. "args": [
  1372. "na",
  1373. 3
  1374. ]
  1375. },
  1376. {
  1377. "op": "≠",
  1378. "args": [
  1379. "cr",
  1380. 1
  1381. ]
  1382. }
  1383. ]
  1384. },
  1385. {
  1386. "op": "=",
  1387. "args": [
  1388. {
  1389. "op": "max",
  1390. "args": [
  1391. 0,
  1392. {
  1393. "op": "-",
  1394. "args": [
  1395. "ev",
  1396. 1
  1397. ]
  1398. }
  1399. ]
  1400. },
  1401. 2
  1402. ]
  1403. }
  1404. ]
  1405. },
  1406. "destinations": [
  1407. {
  1408. "probability": {
  1409. "op": "/",
  1410. "args": [
  1411. 1,
  1412. 3
  1413. ]
  1414. },
  1415. "location": "l_1",
  1416. "assignments": [
  1417. {
  1418. "ref": "na",
  1419. "value": {
  1420. "op": "+",
  1421. "args": [
  1422. "na",
  1423. 1
  1424. ]
  1425. }
  1426. },
  1427. {
  1428. "ref": "wt",
  1429. "value": 0
  1430. },
  1431. {
  1432. "ref": "ev",
  1433. "value": {
  1434. "op": "min",
  1435. "args": [
  1436. {
  1437. "op": "*",
  1438. "args": [
  1439. 2,
  1440. "ev"
  1441. ]
  1442. },
  1443. 4
  1444. ]
  1445. }
  1446. }
  1447. ]
  1448. },
  1449. {
  1450. "probability": {
  1451. "op": "/",
  1452. "args": [
  1453. 1,
  1454. 3
  1455. ]
  1456. },
  1457. "location": "l_1",
  1458. "assignments": [
  1459. {
  1460. "ref": "na",
  1461. "value": {
  1462. "op": "+",
  1463. "args": [
  1464. "na",
  1465. 1
  1466. ]
  1467. }
  1468. },
  1469. {
  1470. "ref": "wt",
  1471. "value": 1
  1472. },
  1473. {
  1474. "ref": "ev",
  1475. "value": {
  1476. "op": "min",
  1477. "args": [
  1478. {
  1479. "op": "*",
  1480. "args": [
  1481. 2,
  1482. "ev"
  1483. ]
  1484. },
  1485. 4
  1486. ]
  1487. }
  1488. }
  1489. ]
  1490. },
  1491. {
  1492. "probability": {
  1493. "op": "/",
  1494. "args": [
  1495. 1,
  1496. 3
  1497. ]
  1498. },
  1499. "location": "l_1",
  1500. "assignments": [
  1501. {
  1502. "ref": "na",
  1503. "value": {
  1504. "op": "+",
  1505. "args": [
  1506. "na",
  1507. 1
  1508. ]
  1509. }
  1510. },
  1511. {
  1512. "ref": "wt",
  1513. "value": 2
  1514. },
  1515. {
  1516. "ref": "ev",
  1517. "value": {
  1518. "op": "min",
  1519. "args": [
  1520. {
  1521. "op": "*",
  1522. "args": [
  1523. 2,
  1524. "ev"
  1525. ]
  1526. },
  1527. 4
  1528. ]
  1529. }
  1530. }
  1531. ]
  1532. }
  1533. ]
  1534. },
  1535. {
  1536. "location": "l_4",
  1537. "guard": {
  1538. "op": "∧",
  1539. "args": [
  1540. {
  1541. "op": "∧",
  1542. "args": [
  1543. {
  1544. "op": "<",
  1545. "args": [
  1546. "na",
  1547. 3
  1548. ]
  1549. },
  1550. {
  1551. "op": "≠",
  1552. "args": [
  1553. "cr",
  1554. 1
  1555. ]
  1556. }
  1557. ]
  1558. },
  1559. {
  1560. "op": "=",
  1561. "args": [
  1562. {
  1563. "op": "max",
  1564. "args": [
  1565. 0,
  1566. {
  1567. "op": "-",
  1568. "args": [
  1569. "ev",
  1570. 1
  1571. ]
  1572. }
  1573. ]
  1574. },
  1575. 3
  1576. ]
  1577. }
  1578. ]
  1579. },
  1580. "destinations": [
  1581. {
  1582. "probability": {
  1583. "op": "/",
  1584. "args": [
  1585. 1,
  1586. 4
  1587. ]
  1588. },
  1589. "location": "l_1",
  1590. "assignments": [
  1591. {
  1592. "ref": "na",
  1593. "value": {
  1594. "op": "+",
  1595. "args": [
  1596. "na",
  1597. 1
  1598. ]
  1599. }
  1600. },
  1601. {
  1602. "ref": "wt",
  1603. "value": 0
  1604. },
  1605. {
  1606. "ref": "ev",
  1607. "value": {
  1608. "op": "min",
  1609. "args": [
  1610. {
  1611. "op": "*",
  1612. "args": [
  1613. 2,
  1614. "ev"
  1615. ]
  1616. },
  1617. 4
  1618. ]
  1619. }
  1620. }
  1621. ]
  1622. },
  1623. {
  1624. "probability": {
  1625. "op": "/",
  1626. "args": [
  1627. 1,
  1628. 4
  1629. ]
  1630. },
  1631. "location": "l_1",
  1632. "assignments": [
  1633. {
  1634. "ref": "na",
  1635. "value": {
  1636. "op": "+",
  1637. "args": [
  1638. "na",
  1639. 1
  1640. ]
  1641. }
  1642. },
  1643. {
  1644. "ref": "wt",
  1645. "value": 1
  1646. },
  1647. {
  1648. "ref": "ev",
  1649. "value": {
  1650. "op": "min",
  1651. "args": [
  1652. {
  1653. "op": "*",
  1654. "args": [
  1655. 2,
  1656. "ev"
  1657. ]
  1658. },
  1659. 4
  1660. ]
  1661. }
  1662. }
  1663. ]
  1664. },
  1665. {
  1666. "probability": {
  1667. "op": "/",
  1668. "args": [
  1669. 1,
  1670. 4
  1671. ]
  1672. },
  1673. "location": "l_1",
  1674. "assignments": [
  1675. {
  1676. "ref": "na",
  1677. "value": {
  1678. "op": "+",
  1679. "args": [
  1680. "na",
  1681. 1
  1682. ]
  1683. }
  1684. },
  1685. {
  1686. "ref": "wt",
  1687. "value": 2
  1688. },
  1689. {
  1690. "ref": "ev",
  1691. "value": {
  1692. "op": "min",
  1693. "args": [
  1694. {
  1695. "op": "*",
  1696. "args": [
  1697. 2,
  1698. "ev"
  1699. ]
  1700. },
  1701. 4
  1702. ]
  1703. }
  1704. }
  1705. ]
  1706. },
  1707. {
  1708. "probability": {
  1709. "op": "/",
  1710. "args": [
  1711. 1,
  1712. 4
  1713. ]
  1714. },
  1715. "location": "l_1",
  1716. "assignments": [
  1717. {
  1718. "ref": "na",
  1719. "value": {
  1720. "op": "+",
  1721. "args": [
  1722. "na",
  1723. 1
  1724. ]
  1725. }
  1726. },
  1727. {
  1728. "ref": "wt",
  1729. "value": 3
  1730. },
  1731. {
  1732. "ref": "ev",
  1733. "value": {
  1734. "op": "min",
  1735. "args": [
  1736. {
  1737. "op": "*",
  1738. "args": [
  1739. 2,
  1740. "ev"
  1741. ]
  1742. },
  1743. 4
  1744. ]
  1745. }
  1746. }
  1747. ]
  1748. }
  1749. ]
  1750. }
  1751. ]
  1752. },
  1753. {
  1754. "name": "Host_2",
  1755. "variables": [
  1756. {
  1757. "name": "na",
  1758. "type": {
  1759. "kind": "bounded",
  1760. "base": "int",
  1761. "lower-bound": 0,
  1762. "upper-bound": 3
  1763. },
  1764. "initial-value": 0
  1765. },
  1766. {
  1767. "name": "ev",
  1768. "type": {
  1769. "kind": "bounded",
  1770. "base": "int",
  1771. "lower-bound": 0,
  1772. "upper-bound": 4
  1773. },
  1774. "initial-value": 2
  1775. },
  1776. {
  1777. "name": "wt",
  1778. "type": {
  1779. "kind": "bounded",
  1780. "base": "int",
  1781. "lower-bound": 0,
  1782. "upper-bound": 4
  1783. },
  1784. "initial-value": 0
  1785. }
  1786. ],
  1787. "locations": [
  1788. {
  1789. "name": "l_0"
  1790. },
  1791. {
  1792. "name": "l_1"
  1793. },
  1794. {
  1795. "name": "l_2"
  1796. },
  1797. {
  1798. "name": "l_3"
  1799. },
  1800. {
  1801. "name": "l_4"
  1802. },
  1803. {
  1804. "name": "l_5"
  1805. }
  1806. ],
  1807. "initial-location": "l_0",
  1808. "edges": [
  1809. {
  1810. "location": "l_0",
  1811. "action": "tick",
  1812. "guard": {
  1813. "op": ">",
  1814. "args": [
  1815. "wt",
  1816. 0
  1817. ]
  1818. },
  1819. "destinations": [
  1820. {
  1821. "probability": 1,
  1822. "location": "l_1",
  1823. "assignments": [
  1824. {
  1825. "ref": "wt",
  1826. "value": {
  1827. "op": "-",
  1828. "args": [
  1829. "wt",
  1830. 1
  1831. ]
  1832. }
  1833. }
  1834. ]
  1835. }
  1836. ]
  1837. },
  1838. {
  1839. "location": "l_0",
  1840. "guard": {
  1841. "op": "≤",
  1842. "args": [
  1843. "wt",
  1844. 0
  1845. ]
  1846. },
  1847. "destinations": [
  1848. {
  1849. "probability": 1,
  1850. "location": "l_2",
  1851. "assignments": [
  1852. {
  1853. "ref": "cr",
  1854. "value": {
  1855. "op": "min",
  1856. "args": [
  1857. 2,
  1858. {
  1859. "op": "+",
  1860. "args": [
  1861. "cr",
  1862. 1
  1863. ]
  1864. }
  1865. ]
  1866. }
  1867. }
  1868. ]
  1869. }
  1870. ]
  1871. },
  1872. {
  1873. "location": "l_1",
  1874. "action": "tack",
  1875. "guard": true,
  1876. "destinations": [
  1877. {
  1878. "probability": 1,
  1879. "location": "l_3"
  1880. }
  1881. ]
  1882. },
  1883. {
  1884. "location": "l_2",
  1885. "action": "tick",
  1886. "guard": true,
  1887. "destinations": [
  1888. {
  1889. "probability": 1,
  1890. "location": "l_4"
  1891. }
  1892. ]
  1893. },
  1894. {
  1895. "location": "l_3",
  1896. "action": "tock",
  1897. "guard": true,
  1898. "destinations": [
  1899. {
  1900. "probability": 1,
  1901. "location": "l_0"
  1902. }
  1903. ]
  1904. },
  1905. {
  1906. "location": "l_4",
  1907. "guard": {
  1908. "op": "=",
  1909. "args": [
  1910. "cr",
  1911. 1
  1912. ]
  1913. },
  1914. "destinations": [
  1915. {
  1916. "probability": 1,
  1917. "location": "l_5",
  1918. "assignments": [
  1919. {
  1920. "ref": "line_seized",
  1921. "value": true
  1922. }
  1923. ]
  1924. }
  1925. ]
  1926. },
  1927. {
  1928. "location": "l_4",
  1929. "guard": {
  1930. "op": "∧",
  1931. "args": [
  1932. {
  1933. "op": "≥",
  1934. "args": [
  1935. "na",
  1936. 3
  1937. ]
  1938. },
  1939. {
  1940. "op": "≠",
  1941. "args": [
  1942. "cr",
  1943. 1
  1944. ]
  1945. }
  1946. ]
  1947. },
  1948. "destinations": [
  1949. {
  1950. "probability": 1,
  1951. "location": "l_5",
  1952. "assignments": [
  1953. {
  1954. "ref": "gave_up",
  1955. "value": true
  1956. }
  1957. ]
  1958. }
  1959. ]
  1960. },
  1961. {
  1962. "location": "l_4",
  1963. "guard": {
  1964. "op": "∧",
  1965. "args": [
  1966. {
  1967. "op": "∧",
  1968. "args": [
  1969. {
  1970. "op": "<",
  1971. "args": [
  1972. "na",
  1973. 3
  1974. ]
  1975. },
  1976. {
  1977. "op": "≠",
  1978. "args": [
  1979. "cr",
  1980. 1
  1981. ]
  1982. }
  1983. ]
  1984. },
  1985. {
  1986. "op": "=",
  1987. "args": [
  1988. {
  1989. "op": "max",
  1990. "args": [
  1991. 0,
  1992. {
  1993. "op": "-",
  1994. "args": [
  1995. "ev",
  1996. 1
  1997. ]
  1998. }
  1999. ]
  2000. },
  2001. 0
  2002. ]
  2003. }
  2004. ]
  2005. },
  2006. "destinations": [
  2007. {
  2008. "probability": 1,
  2009. "location": "l_1",
  2010. "assignments": [
  2011. {
  2012. "ref": "na",
  2013. "value": {
  2014. "op": "+",
  2015. "args": [
  2016. "na",
  2017. 1
  2018. ]
  2019. }
  2020. },
  2021. {
  2022. "ref": "wt",
  2023. "value": 0
  2024. },
  2025. {
  2026. "ref": "ev",
  2027. "value": {
  2028. "op": "min",
  2029. "args": [
  2030. {
  2031. "op": "*",
  2032. "args": [
  2033. 2,
  2034. "ev"
  2035. ]
  2036. },
  2037. 4
  2038. ]
  2039. }
  2040. }
  2041. ]
  2042. }
  2043. ]
  2044. },
  2045. {
  2046. "location": "l_4",
  2047. "guard": {
  2048. "op": "∧",
  2049. "args": [
  2050. {
  2051. "op": "∧",
  2052. "args": [
  2053. {
  2054. "op": "<",
  2055. "args": [
  2056. "na",
  2057. 3
  2058. ]
  2059. },
  2060. {
  2061. "op": "≠",
  2062. "args": [
  2063. "cr",
  2064. 1
  2065. ]
  2066. }
  2067. ]
  2068. },
  2069. {
  2070. "op": "=",
  2071. "args": [
  2072. {
  2073. "op": "max",
  2074. "args": [
  2075. 0,
  2076. {
  2077. "op": "-",
  2078. "args": [
  2079. "ev",
  2080. 1
  2081. ]
  2082. }
  2083. ]
  2084. },
  2085. 1
  2086. ]
  2087. }
  2088. ]
  2089. },
  2090. "destinations": [
  2091. {
  2092. "probability": {
  2093. "op": "/",
  2094. "args": [
  2095. 1,
  2096. 2
  2097. ]
  2098. },
  2099. "location": "l_1",
  2100. "assignments": [
  2101. {
  2102. "ref": "na",
  2103. "value": {
  2104. "op": "+",
  2105. "args": [
  2106. "na",
  2107. 1
  2108. ]
  2109. }
  2110. },
  2111. {
  2112. "ref": "wt",
  2113. "value": 0
  2114. },
  2115. {
  2116. "ref": "ev",
  2117. "value": {
  2118. "op": "min",
  2119. "args": [
  2120. {
  2121. "op": "*",
  2122. "args": [
  2123. 2,
  2124. "ev"
  2125. ]
  2126. },
  2127. 4
  2128. ]
  2129. }
  2130. }
  2131. ]
  2132. },
  2133. {
  2134. "probability": {
  2135. "op": "/",
  2136. "args": [
  2137. 1,
  2138. 2
  2139. ]
  2140. },
  2141. "location": "l_1",
  2142. "assignments": [
  2143. {
  2144. "ref": "na",
  2145. "value": {
  2146. "op": "+",
  2147. "args": [
  2148. "na",
  2149. 1
  2150. ]
  2151. }
  2152. },
  2153. {
  2154. "ref": "wt",
  2155. "value": 1
  2156. },
  2157. {
  2158. "ref": "ev",
  2159. "value": {
  2160. "op": "min",
  2161. "args": [
  2162. {
  2163. "op": "*",
  2164. "args": [
  2165. 2,
  2166. "ev"
  2167. ]
  2168. },
  2169. 4
  2170. ]
  2171. }
  2172. }
  2173. ]
  2174. }
  2175. ]
  2176. },
  2177. {
  2178. "location": "l_4",
  2179. "guard": {
  2180. "op": "∧",
  2181. "args": [
  2182. {
  2183. "op": "∧",
  2184. "args": [
  2185. {
  2186. "op": "<",
  2187. "args": [
  2188. "na",
  2189. 3
  2190. ]
  2191. },
  2192. {
  2193. "op": "≠",
  2194. "args": [
  2195. "cr",
  2196. 1
  2197. ]
  2198. }
  2199. ]
  2200. },
  2201. {
  2202. "op": "=",
  2203. "args": [
  2204. {
  2205. "op": "max",
  2206. "args": [
  2207. 0,
  2208. {
  2209. "op": "-",
  2210. "args": [
  2211. "ev",
  2212. 1
  2213. ]
  2214. }
  2215. ]
  2216. },
  2217. 2
  2218. ]
  2219. }
  2220. ]
  2221. },
  2222. "destinations": [
  2223. {
  2224. "probability": {
  2225. "op": "/",
  2226. "args": [
  2227. 1,
  2228. 3
  2229. ]
  2230. },
  2231. "location": "l_1",
  2232. "assignments": [
  2233. {
  2234. "ref": "na",
  2235. "value": {
  2236. "op": "+",
  2237. "args": [
  2238. "na",
  2239. 1
  2240. ]
  2241. }
  2242. },
  2243. {
  2244. "ref": "wt",
  2245. "value": 0
  2246. },
  2247. {
  2248. "ref": "ev",
  2249. "value": {
  2250. "op": "min",
  2251. "args": [
  2252. {
  2253. "op": "*",
  2254. "args": [
  2255. 2,
  2256. "ev"
  2257. ]
  2258. },
  2259. 4
  2260. ]
  2261. }
  2262. }
  2263. ]
  2264. },
  2265. {
  2266. "probability": {
  2267. "op": "/",
  2268. "args": [
  2269. 1,
  2270. 3
  2271. ]
  2272. },
  2273. "location": "l_1",
  2274. "assignments": [
  2275. {
  2276. "ref": "na",
  2277. "value": {
  2278. "op": "+",
  2279. "args": [
  2280. "na",
  2281. 1
  2282. ]
  2283. }
  2284. },
  2285. {
  2286. "ref": "wt",
  2287. "value": 1
  2288. },
  2289. {
  2290. "ref": "ev",
  2291. "value": {
  2292. "op": "min",
  2293. "args": [
  2294. {
  2295. "op": "*",
  2296. "args": [
  2297. 2,
  2298. "ev"
  2299. ]
  2300. },
  2301. 4
  2302. ]
  2303. }
  2304. }
  2305. ]
  2306. },
  2307. {
  2308. "probability": {
  2309. "op": "/",
  2310. "args": [
  2311. 1,
  2312. 3
  2313. ]
  2314. },
  2315. "location": "l_1",
  2316. "assignments": [
  2317. {
  2318. "ref": "na",
  2319. "value": {
  2320. "op": "+",
  2321. "args": [
  2322. "na",
  2323. 1
  2324. ]
  2325. }
  2326. },
  2327. {
  2328. "ref": "wt",
  2329. "value": 2
  2330. },
  2331. {
  2332. "ref": "ev",
  2333. "value": {
  2334. "op": "min",
  2335. "args": [
  2336. {
  2337. "op": "*",
  2338. "args": [
  2339. 2,
  2340. "ev"
  2341. ]
  2342. },
  2343. 4
  2344. ]
  2345. }
  2346. }
  2347. ]
  2348. }
  2349. ]
  2350. },
  2351. {
  2352. "location": "l_4",
  2353. "guard": {
  2354. "op": "∧",
  2355. "args": [
  2356. {
  2357. "op": "∧",
  2358. "args": [
  2359. {
  2360. "op": "<",
  2361. "args": [
  2362. "na",
  2363. 3
  2364. ]
  2365. },
  2366. {
  2367. "op": "≠",
  2368. "args": [
  2369. "cr",
  2370. 1
  2371. ]
  2372. }
  2373. ]
  2374. },
  2375. {
  2376. "op": "=",
  2377. "args": [
  2378. {
  2379. "op": "max",
  2380. "args": [
  2381. 0,
  2382. {
  2383. "op": "-",
  2384. "args": [
  2385. "ev",
  2386. 1
  2387. ]
  2388. }
  2389. ]
  2390. },
  2391. 3
  2392. ]
  2393. }
  2394. ]
  2395. },
  2396. "destinations": [
  2397. {
  2398. "probability": {
  2399. "op": "/",
  2400. "args": [
  2401. 1,
  2402. 4
  2403. ]
  2404. },
  2405. "location": "l_1",
  2406. "assignments": [
  2407. {
  2408. "ref": "na",
  2409. "value": {
  2410. "op": "+",
  2411. "args": [
  2412. "na",
  2413. 1
  2414. ]
  2415. }
  2416. },
  2417. {
  2418. "ref": "wt",
  2419. "value": 0
  2420. },
  2421. {
  2422. "ref": "ev",
  2423. "value": {
  2424. "op": "min",
  2425. "args": [
  2426. {
  2427. "op": "*",
  2428. "args": [
  2429. 2,
  2430. "ev"
  2431. ]
  2432. },
  2433. 4
  2434. ]
  2435. }
  2436. }
  2437. ]
  2438. },
  2439. {
  2440. "probability": {
  2441. "op": "/",
  2442. "args": [
  2443. 1,
  2444. 4
  2445. ]
  2446. },
  2447. "location": "l_1",
  2448. "assignments": [
  2449. {
  2450. "ref": "na",
  2451. "value": {
  2452. "op": "+",
  2453. "args": [
  2454. "na",
  2455. 1
  2456. ]
  2457. }
  2458. },
  2459. {
  2460. "ref": "wt",
  2461. "value": 1
  2462. },
  2463. {
  2464. "ref": "ev",
  2465. "value": {
  2466. "op": "min",
  2467. "args": [
  2468. {
  2469. "op": "*",
  2470. "args": [
  2471. 2,
  2472. "ev"
  2473. ]
  2474. },
  2475. 4
  2476. ]
  2477. }
  2478. }
  2479. ]
  2480. },
  2481. {
  2482. "probability": {
  2483. "op": "/",
  2484. "args": [
  2485. 1,
  2486. 4
  2487. ]
  2488. },
  2489. "location": "l_1",
  2490. "assignments": [
  2491. {
  2492. "ref": "na",
  2493. "value": {
  2494. "op": "+",
  2495. "args": [
  2496. "na",
  2497. 1
  2498. ]
  2499. }
  2500. },
  2501. {
  2502. "ref": "wt",
  2503. "value": 2
  2504. },
  2505. {
  2506. "ref": "ev",
  2507. "value": {
  2508. "op": "min",
  2509. "args": [
  2510. {
  2511. "op": "*",
  2512. "args": [
  2513. 2,
  2514. "ev"
  2515. ]
  2516. },
  2517. 4
  2518. ]
  2519. }
  2520. }
  2521. ]
  2522. },
  2523. {
  2524. "probability": {
  2525. "op": "/",
  2526. "args": [
  2527. 1,
  2528. 4
  2529. ]
  2530. },
  2531. "location": "l_1",
  2532. "assignments": [
  2533. {
  2534. "ref": "na",
  2535. "value": {
  2536. "op": "+",
  2537. "args": [
  2538. "na",
  2539. 1
  2540. ]
  2541. }
  2542. },
  2543. {
  2544. "ref": "wt",
  2545. "value": 3
  2546. },
  2547. {
  2548. "ref": "ev",
  2549. "value": {
  2550. "op": "min",
  2551. "args": [
  2552. {
  2553. "op": "*",
  2554. "args": [
  2555. 2,
  2556. "ev"
  2557. ]
  2558. },
  2559. 4
  2560. ]
  2561. }
  2562. }
  2563. ]
  2564. }
  2565. ]
  2566. }
  2567. ]
  2568. }
  2569. ],
  2570. "system": {
  2571. "composition": "parallel",
  2572. "elements": [
  2573. {
  2574. "composition": "parallel",
  2575. "elements": [
  2576. {
  2577. "composition": "parallel",
  2578. "elements": [
  2579. "Clock",
  2580. "Host"
  2581. ],
  2582. "alphabet": [
  2583. "tick",
  2584. "tack",
  2585. "tock"
  2586. ]
  2587. },
  2588. "Host_1"
  2589. ],
  2590. "alphabet": [
  2591. "tick",
  2592. "tack",
  2593. "tock"
  2594. ]
  2595. },
  2596. "Host_2"
  2597. ],
  2598. "alphabet": [
  2599. "tick",
  2600. "tack",
  2601. "tock"
  2602. ]
  2603. }
  2604. }