-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathchoose.rs
266 lines (224 loc) · 6.81 KB
/
choose.rs
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
#![feature(rustc_private)]
#[macro_use]
mod common;
use common::*;
// choose
test_verify_one_file! {
#[test] test1 verus_code! {
spec fn f(i: int) -> bool {
5 <= i
}
proof fn test_choose() {
let i = choose|i: int| f(i);
assert(f(7));
assert(5 <= i);
}
proof fn test_choose_inference() {
let i = choose|i| f(i);
assert(f(7));
assert(5 <= i);
}
proof fn test_choose_eq() {
let i1 = choose|i: int| f(i) && (1 + 1 == 2);
let i2 = choose|i: int| f(i) && (2 + 2 == 4);
assert(i1 == i2);
}
} => Ok(())
}
test_verify_one_file! {
#[test] test1_fails1 verus_code! {
spec fn f(i: int) -> bool {
5 <= i
}
proof fn test_choose() {
let i = choose|i: int| f(i);
assert(5 <= i); // FAILS
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test1_fails2 verus_code! {
spec fn f(i: int) -> bool {
5 <= i
}
proof fn test_choose() {
let i = choose|i: int| f(i);
assert(f(7));
assert(i == 7); // FAILS
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test1_fails3 verus_code! {
spec fn f(i: int) -> bool {
5 <= i
}
proof fn test_choose_eq() {
let i1 = choose|i: int| f(i) && (2 + 2 == 4);
let i2 = choose|i: int| (2 + 2 == 4) && f(i);
// requires extensional equality
assert(i1 == i2); // FAILS
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_refine verus_code! {
spec fn cnatf(n: nat) -> bool {
true
}
spec fn cintf(n: int) -> bool {
true
}
proof fn cnat() {
assert((choose|n: nat| cnatf(n)) >= 0);
assert((choose|n: nat| cintf(n as int) && n < 0) >= 0);
}
} => Ok(())
}
test_verify_one_file! {
#[test] test_refine_fail1 verus_code! {
spec fn cintf(n: int) -> bool {
true
}
proof fn cnat() {
assert(cintf(-10));
assert((choose|n: nat| cintf(n as int) && n < 0) < 0); // FAILS
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_refine2 verus_code! {
spec fn cnatf(n: nat) -> bool {
true
}
proof fn cnat() {
assert(cnatf(10));
assert((choose|n: nat| cnatf(n) && n >= 10) >= 10);
}
} => Ok(())
}
test_verify_one_file! {
#[test] test1_choose_with_closure_illegal verus_code! {
spec fn f(i: int, j: int) -> bool {
i <= j
}
proof fn test_choose() {
let (i, j): (int, int) = choose(|i: int, j: int| f(i, j));
assert(f(7, 8));
assert(i <= j);
}
} => Err(e) => assert_vir_error_msg(e, "forall, choose, and exists do not allow parentheses")
}
// choose_tuple
test_verify_one_file! {
#[test] test1_tuple verus_code! {
spec fn f(i: int, j: int) -> bool {
i <= j
}
proof fn test_choose() {
let (i, j): (int, int) = choose|i: int, j: int| f(i, j);
assert(f(7, 8));
assert(i <= j);
}
proof fn test_choose_eq() {
let (i1, j1): (int, int) = choose|i: int, j: int| f(i, j) && (1 + 1 == 2);
let (i2, j2): (int, int) = choose|i: int, j: int| f(i, j) && (2 + 2 == 4);
assert(i1 == i2);
assert(j1 == j2);
}
} => Ok(())
}
test_verify_one_file! {
#[test] test1_fails1_tuple verus_code! {
spec fn f(i: int, j: int) -> bool {
i <= j
}
proof fn test_choose() {
let (i, j): (int, int) = choose|i: int, j: int| f(i, j);
assert(i <= j); // FAILS
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test1_fails2_tuple verus_code! {
spec fn f(i: int, j: int) -> bool {
i <= j
}
proof fn test_choose() {
let (i, j): (int, int) = choose|i: int, j: int| f(i, j);
assert(f(7, 8));
assert(i == 7); // FAILS
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test1_fails3_tuple verus_code! {
spec fn f(i: int, j: int) -> bool {
i <= j
}
proof fn test_choose_eq() {
let (i1, j1): (int, int) = choose|i: int, j: int| f(i, j) && (2 + 2 == 4);
let (i2, j2): (int, int) = choose|i: int, j: int| (2 + 2 == 4) && f(i, j);
// requires extensional equality
assert(i1 == i2); // FAILS
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_refine_tuple verus_code! {
spec fn cnatf(m: nat, n: nat) -> bool {
true
}
spec fn cintf(m: int, n: int) -> bool {
true
}
proof fn cnat() {
assert(choose_tuple::<(nat, nat), _>(|m: nat, n: nat| cnatf(m, n)).0 >= 0);
assert(choose_tuple::<(nat, nat), _>(|m: nat, n: nat| cintf(m as int, n as int) && m < 0 && n < 0).0 >= 0);
}
} => Ok(())
}
test_verify_one_file! {
#[test] test_refine_fail1_tuple verus_code! {
spec fn cintf(m: int, n: int) -> bool {
true
}
proof fn cnat() {
assert(cintf(-10, -10));
assert(choose_tuple::<(nat, nat), _>(|m: nat, n: nat| cintf(m as int, n as int) && m < 0 && n < 0).0 < 0); // FAILS
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_refine2_tuple verus_code! {
spec fn cnatf(m: nat, n: nat) -> bool {
true
}
proof fn cnat() {
assert(cnatf(10, 10));
assert(choose_tuple::<(nat, nat), _>(|m: nat, n: nat| cnatf(m, n) && m >= 10 && n >= 10).0 >= 10);
}
} => Ok(())
}
test_verify_one_file! {
#[test] test1_choose_tuple_wrong_type verus_code! {
spec fn f(i: int, j: int) -> bool {
i <= j
}
proof fn test_choose() {
let (i, j): (int, nat) = choose_tuple(|i: int, j: int| f(i, j));
}
} => Err(err) => assert_vir_error_msg(err, "expected choose_tuple to have type")
}
test_verify_one_file! {
#[test] test1_choose_tuple_no_ascription_regression_1183 verus_code! {
spec fn less_than(x: int, y: int) -> bool {
x < y
}
proof fn test_choose_succeeds2() {
assert(less_than(3, 7)); // promote i = 3, i = 7 as a witness
let (x, y) = choose|i: int, j: int| less_than(i, j);
assert(x < y);
}
} => Ok(())
}