-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathBoundsOperations.fs
More file actions
422 lines (373 loc) · 17.3 KB
/
BoundsOperations.fs
File metadata and controls
422 lines (373 loc) · 17.3 KB
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
module BoundsOperations
open Microsoft.Z3
open GlobalOptions
open Util
open Literal
open BitVector
open Interval
open TheoryRelation
open NumeralDB
open BoundsValuation
open BooleanValuation
let unboundedVariables (t:TheoryRelation) (bounds:Ref<BoundsValuation>)=
let mutable args = []
for i in 0 .. t.numArguments do
let arg = t.getArgument i
if not (t.isArgumentNumeral i) &&
(((!bounds).get arg).isFull) &&
(List.filter (fun x -> x = arg) args).Length = 0 then
args <- arg :: args
args
let numUnboundedVariables (t:TheoryRelation) (bounds:Ref<BoundsValuation>) =
List.length (unboundedVariables t bounds)
let getArgumentBounds (t:TheoryRelation) (bounds:Ref<BoundsValuation>) (pNumerals:Ref<NumeralDB>) (i:int) =
assert (0 <= i && i <= t.numArguments)
if t.isArgumentNumeral i then
Interval.RLEToInterval ((!pNumerals).getNumeral (abs (t.getArgument i)))
else
(!bounds).get (t.getArgument i)
let getRhsBounds (t:TheoryRelation) (bounds:Ref<BoundsValuation>) (numerals:Ref<NumeralDB>) =
getArgumentBounds t bounds numerals t.numArguments
let tbndsGetNewValueAdd (width:int) (position:int) (polarity:Val) (pBounds:Ref<BoundsValuation>) (nums:Ref<NumeralDB>) =
match polarity with
| True ->
match position with
| 0 -> // ?x + y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.Sub z y)
let r = q.Intersection x
r)
| 1 -> // x + ?y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.Sub z x)
let r = q.Intersection y
r)
| 2 -> // x + y = ?z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.Add x y)
let r = q.Intersection z
r)
| _ -> UNREACHABLE("Bogus position")
| _ ->
(fun (bounds:Interval list) -> Interval.Full width) // No news.
let tbndsGetNewValueSub (width:int) (position:int) (polarity:Val) (pBounds:Ref<BoundsValuation>) (nums:Ref<NumeralDB>) =
match polarity with
| True ->
match position with
| 0 -> // ?x - y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.Add z y)
let r = q.Intersection x
r)
| 1 -> // x - ?y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let y = bounds.Tail.Head
y) // TODO: Refine
| 2 -> // x - y = ?z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.Sub x y)
let r = q.Intersection z
r)
| _ -> UNREACHABLE("Bogus position")
| _ ->
(fun (bounds:Interval list) -> Interval.Full width) // No news.
let tbndsGetNewValueMul (width:int) (position:int) (polarity:Val) (pBounds:Ref<BoundsValuation>) (nums:Ref<NumeralDB>) =
match polarity with
| True ->
match position with
| 0 -> // ?x * y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
x) // TODO: Refine
| 1 -> // x * ?y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let y = bounds.Tail.Head
y) // TODO: Refine
| 2 -> // x * y = ?z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.Mul x y)
let r = q.Intersection z
r)
| _ -> UNREACHABLE("Bogus position")
| _ ->
(fun (bounds:Interval list) -> Interval.Full width) // No news.
let tbndsGetNewValueUDiv (width:int) (position:int) (polarity:Val) (pBounds:Ref<BoundsValuation>) (nums:Ref<NumeralDB>) =
match polarity with
| True ->
match position with
| 0 -> // ?x u/ y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
x) // TODO: Refine
| 1 -> // x u/ ?y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let y = bounds.Tail.Head
y) // TODO: Refine
| 2 -> // x u/ y = ?z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.UDiv x y)
let r = q.Intersection z
r)
| _ -> UNREACHABLE("Bogus position")
| _ ->
(fun (bounds:Interval list) -> Interval.Full width) // No news.
let tbndsGetNewValueSDiv (width:int) (position:int) (polarity:Val) (pBounds:Ref<BoundsValuation>) (nums:Ref<NumeralDB>) =
match polarity with
| True ->
match position with
| 0 -> // ?x u/ y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
x) // TODO: Refine
| 1 -> // x u/ ?y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let y = bounds.Tail.Head
y) // TODO: Refine
| 2 -> // x u/ y = ?z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.SDiv x y)
let r = q.Intersection z
r)
| _ -> UNREACHABLE("Bogus position")
| _ ->
(fun (bounds:Interval list) -> Interval.Full width) // No news.
let tbndsGetNewValueConcat (width:int) (position:int) (polarity:Val) (pBounds:Ref<BoundsValuation>) (nums:Ref<NumeralDB>) =
match polarity with
| True ->
match position with
| 0 -> // ?x concat y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.Extract (z.Dimension - 1) y.Dimension z)
let r = q.Intersection x
r)
| 1 -> // x concat ?y = z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
// CMW: This is wwrong:
// let q = (Interval.Extract (y.Dimension - 1) 0 z)
// let r = q.Intersection y
// We can't simply extract y from z, because those values
// are not the lower/upper bound on y. The best
// we can do is to keep the old interval for y.
y)
| 2 -> // xconcat y = ?z
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 3)
let x = bounds.Head
let y = bounds.Tail.Head
let z = bounds.Tail.Tail.Head
let q = (Interval.Concat x y)
let r = q.Intersection z
r)
| _ -> UNREACHABLE("Bogus position")
| _ ->
(fun (bounds:Interval list) -> Interval.Full width) // No news.
let tbndsGetNewValue (tRel:TheoryRelation) (position:int) (polarity:Val) (pBounds:Ref<BoundsValuation>) (nums:Ref<NumeralDB>) =
let parms = tRel.getParameterList
assert(polarity <> Undefined)
if tRel.isSimpleRelation then
match (tRel.getRelationOP) with
| (Z3_decl_kind.Z3_OP_EQ) ->
match (polarity, position) with
| (False, _) ->
// CMW: Theoretically there could be only one particular
// value left in the domain of the variable(s), but it
// seems too expensive to check that here. Thus, we return
// the origin intervals, i.e., "nothing changed"
(fun (bounds:Interval list) ->
let x = bounds.Head
let y = bounds.Tail.Head
if position = 0 then
if y.isSingleton then
x.RemoveValue y.Lower
else
x
else
if x.isSingleton then
y.RemoveValue x.Lower
else
y)
| (True, p) when 0 <= p && p <= 1-> // ?x = y -> propagate x -> y or y -> x
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 2)
let x = bounds.Head
let y = bounds.Tail.Head
if p = 0 then y else x)
| _ -> UNREACHABLE("")
| (Z3_decl_kind.Z3_OP_ULEQ) ->
match (polarity, position) with
| (True, 0) -> // ?x <= y -> propagate upper bound of y
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 2)
let x = bounds.Head
let y = bounds.Tail.Head
Interval(BitVector.AllZero x.Dimension,
y.Upper)
.Intersection x)
| (True, 1) -> // x <= ?y -> propagate lower bound of x
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 2)
let x = bounds.Head
let y = bounds.Tail.Head
Interval(x.Lower,
BitVector.AllOne x.Dimension)
.Intersection y)
| (False, 0) -> // ?x > y -> propagate lower bound of y + 1
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 2)
let x = bounds.Head
let y = bounds.Tail.Head
Interval(BitVector.bvAdd y.Lower (BitVector.One y.Dimension),
BitVector.AllOne x.Dimension)
.Intersection x)
| (False, 1) -> // x > ?y -> propagate upper bound of x - 1
(fun (bounds:Interval list) ->
assert (bounds.Length >= position)
assert (bounds.Length = 2)
let x = bounds.Head
let y = bounds.Tail.Head
Interval(BitVector.AllZero x.Dimension,
BitVector.bvSub x.Upper (BitVector.One x.Dimension))
.Intersection y)
| _ -> UNREACHABLE("unexpected polarity and/or position")
| _ -> UNREACHABLE("unexpected relation op")
else // Non-simple cases.
let bvop = tRel.getBVOP
let missing_arg = tRel.getArgument position
let missing_dim = if missing_arg < 0 then ((!nums).getNumeral -missing_arg).Length
else ((!pBounds).get missing_arg).Dimension
match (tRel.getRelationOP, bvop, polarity) with
| (Z3_decl_kind.Z3_OP_EQ, Z3_decl_kind.Z3_OP_BADD, _) ->
tbndsGetNewValueAdd missing_dim position polarity pBounds nums
| (Z3_decl_kind.Z3_OP_EQ, Z3_decl_kind.Z3_OP_BSUB, _) ->
tbndsGetNewValueSub missing_dim position polarity pBounds nums
| (Z3_decl_kind.Z3_OP_EQ, Z3_decl_kind.Z3_OP_BMUL, _) ->
tbndsGetNewValueMul missing_dim position polarity pBounds nums
| (Z3_decl_kind.Z3_OP_EQ, Z3_decl_kind.Z3_OP_BUDIV, _) ->
tbndsGetNewValueUDiv missing_dim position polarity pBounds nums
| (Z3_decl_kind.Z3_OP_EQ, Z3_decl_kind.Z3_OP_BSDIV, _) ->
tbndsGetNewValueSDiv missing_dim position polarity pBounds nums
| (Z3_decl_kind.Z3_OP_EQ, Z3_decl_kind.Z3_OP_CONCAT, _) ->
tbndsGetNewValueConcat missing_dim position polarity pBounds nums
| _ ->
match (tRel.getRelationOP) with
| (Z3_decl_kind.Z3_OP_EQ) ->
match (polarity, position) with
| (False, _)
| (True, _) ->
// CMW: For now, we know nothing.
(fun (bounds:Interval list) -> Interval.Full missing_dim)
| _ -> UNREACHABLE("unexpected polarity and/or position")
| (Z3_decl_kind.Z3_OP_ULEQ) ->
match (polarity, position) with
| (False, _)
| (True, _) ->
// CMW: For now, we know nothing.
(fun (bounds:Interval list) -> Interval.Full missing_dim)
| _ -> UNREACHABLE("unexpected polarity and/or position")
| _ -> UNREACHABLE("unexpected relation op")
let getLhsBounds (t:TheoryRelation) (pBounds:Ref<BoundsValuation>) (pNumerals:Ref<NumeralDB>) =
if t.isSimpleRelation then
if t.isArgumentNumeral 0 then
Interval.RLEToInterval ((!pNumerals).getNumeral (abs (t.getArgument 0)))
else
(!pBounds).get (t.getArgument 0)
else
let rhs_size = (getArgumentBounds t pBounds pNumerals t.numArguments).Dimension
let args = [for i in 0 .. t.numArguments - 1 do yield getArgumentBounds t pBounds pNumerals i ] @
[ Interval.Full rhs_size ] // RHS replaced with full interval; slow, but sound.
let nb = (tbndsGetNewValue t t.numArguments True pBounds pNumerals) args
nb
let tbndsGetNewValues (t:TheoryRelation) (polarity:Val) (pBounds:Ref<BoundsValuation>) (pNumerals:Ref<NumeralDB>) =
// Note that this function depends on bounds only (no BitVectorValuation, only Intervals).
let mutable newBounds = []
let argBnds = [for i in 0 .. t.numArguments do yield getArgumentBounds t pBounds pNumerals i ]
for j in 0 .. t.numArguments do
if not (t.isArgumentNumeral j) then
newBounds <- newBounds @ [ (t.getArgument j, (tbndsGetNewValue t j polarity pBounds pNumerals) argBnds) ]
if DBG then
printf " | > "
if t.hasBVOP then printf "%s" (t.getBVOP.ToString())
for p in List.toArray (t.getParameterList) do
printf " %s" (p.ToString())
for i in 0 .. argBnds.Length - 2 do
printf " %s" (argBnds.[i].ToString())
printf " %s" (if t.getRelationOP = Z3_decl_kind.Z3_OP_ULEQ then "<=" else "=")
printfn " %s" (argBnds.[argBnds.Length - 1].ToString())
//bounds implied by this constraint alone)
for nb in newBounds do
printfn " | ==> %s:bv in %s" ((fst nb).ToString()) ((snd nb).ToString())
// CMW: Intersection is done here, so whatever comes out of tbndsGetNewValues
// represents the final new Interval for var. I'd prefer it to be done in
// tbndsGetNewValue (the name implies that the final "new value" will come out of it).
// At the moment, intersection is done twice; here and in tbndsGetNewValues until
// further notice.
List.map (fun (var, intrvl) -> (var, ((!pBounds).get var).Intersection intrvl)) newBounds