-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.q
86 lines (52 loc) · 1006 Bytes
/
queries.q
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
//This file was generated from (Academic) UPPAAL 4.1.20-stratego-10 (rev. 37ECAAA437FE60EE), October 2022
/*
*/
strategy term = control: A<> positive
/*
*/
strategy max = maxE (final_gas) [t<=200] : <> positive under term
/*
*/
strategy step_strat = minE (steps) [t<=200] : <> positive under term
/*
*/
strategy both = maxE (-12*steps+final_gas) [t<=200] : <> positive under term
/*
*/
E[#<=30; 100] (max: final_gas) under max
/*
*/
E[#<=30; 100] (max: final_gas) under step_strat
/*
*/
E[#<=30; 100] (max: final_gas) under both
/*
*/
E[#<=30; 100] (max: steps) under max
/*
*/
E[#<=30; 100] (max: steps) under step_strat
/*
*/
E[#<=30; 100] (max: steps) under both
/*
*/
E[#<=30; 100] (min: e) under max
/*
*/
E[#<=30; 100] (min: e) under step_strat
/*
*/
E[#<=30; 100] (min: e) under both
/*
*/
simulate [#<=60; 100] {e} under max
/*
*/
simulate [#<=60; 100] {e} under step_strat
/*
*/
simulate [#<=60; 100] {e} under both
/*
*/
control: A[] e > -35 under term