summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sygus/cegis-unif-inv-eq-fair.sy
blob: 7d1c3523428821bd7de860318df10fa560a4bffa (plain)
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
; EXPECT: unsat
; COMMAND-LINE: --sygus-unif --sygus-bool-ite-return-const --sygus-out=status
(set-logic LIA)

(define-fun
  __node_init_Sofar_0 (
    (Sofar.usr.X@0 Bool)
    (Sofar.usr.Sofar@0 Bool)
    (Sofar.res.init_flag@0 Bool)
  ) Bool
  
  (and (= Sofar.usr.Sofar@0 Sofar.usr.X@0) Sofar.res.init_flag@0)
)

(define-fun
  __node_trans_Sofar_0 (
    (Sofar.usr.X@1 Bool)
    (Sofar.usr.Sofar@1 Bool)
    (Sofar.res.init_flag@1 Bool)
    (Sofar.usr.X@0 Bool)
    (Sofar.usr.Sofar@0 Bool)
    (Sofar.res.init_flag@0 Bool)
  ) Bool
  
  (and
   (= Sofar.usr.Sofar@1 (and Sofar.usr.X@1 Sofar.usr.Sofar@0))
   (not Sofar.res.init_flag@1))
)

(define-fun
  __node_init_excludes2_0 (
    (excludes2.usr.X1@0 Bool)
    (excludes2.usr.X2@0 Bool)
    (excludes2.usr.excludes@0 Bool)
    (excludes2.res.init_flag@0 Bool)
  ) Bool
  
  (and
   (=
    excludes2.usr.excludes@0
    (not (and excludes2.usr.X1@0 excludes2.usr.X2@0)))
   excludes2.res.init_flag@0)
)

(define-fun
  __node_trans_excludes2_0 (
    (excludes2.usr.X1@1 Bool)
    (excludes2.usr.X2@1 Bool)
    (excludes2.usr.excludes@1 Bool)
    (excludes2.res.init_flag@1 Bool)
    (excludes2.usr.X1@0 Bool)
    (excludes2.usr.X2@0 Bool)
    (excludes2.usr.excludes@0 Bool)
    (excludes2.res.init_flag@0 Bool)
  ) Bool
  
  (and
   (=
    excludes2.usr.excludes@1
    (not (and excludes2.usr.X1@1 excludes2.usr.X2@1)))
   (not excludes2.res.init_flag@1))
)

(define-fun
  __node_init_voiture_0 (
    (voiture.usr.m@0 Bool)
    (voiture.usr.s@0 Bool)
    (voiture.usr.toofast@0 Bool)
    (voiture.usr.stop@0 Bool)
    (voiture.usr.bump@0 Bool)
    (voiture.usr.dist@0 Int)
    (voiture.usr.speed@0 Int)
    (voiture.usr.time@0 Int)
    (voiture.usr.move@0 Bool)
    (voiture.usr.second@0 Bool)
    (voiture.usr.meter@0 Bool)
    (voiture.res.init_flag@0 Bool)
    (voiture.res.abs_0@0 Bool)
  ) Bool
  
  (and
   (= voiture.usr.speed@0 0)
   (= voiture.usr.toofast@0 (>= voiture.usr.speed@0 3))
   (= voiture.usr.move@0 true)
   (= voiture.usr.time@0 0)
   (= voiture.usr.dist@0 0)
   (= voiture.usr.bump@0 (= voiture.usr.dist@0 10))
   (= voiture.usr.stop@0 (>= voiture.usr.time@0 4))
   (=
    voiture.res.abs_0@0
    (and
     (and
      (and voiture.usr.move@0 (not voiture.usr.stop@0))
      (not voiture.usr.toofast@0))
     (not voiture.usr.bump@0)))
   (= voiture.usr.second@0 false)
   (= voiture.usr.meter@0 false)
   voiture.res.init_flag@0)
)

(define-fun
  __node_trans_voiture_0 (
    (voiture.usr.m@1 Bool)
    (voiture.usr.s@1 Bool)
    (voiture.usr.toofast@1 Bool)
    (voiture.usr.stop@1 Bool)
    (voiture.usr.bump@1 Bool)
    (voiture.usr.dist@1 Int)
    (voiture.usr.speed@1 Int)
    (voiture.usr.time@1 Int)
    (voiture.usr.move@1 Bool)
    (voiture.usr.second@1 Bool)
    (voiture.usr.meter@1 Bool)
    (voiture.res.init_flag@1 Bool)
    (voiture.res.abs_0@1 Bool)
    (voiture.usr.m@0 Bool)
    (voiture.usr.s@0 Bool)
    (voiture.usr.toofast@0 Bool)
    (voiture.usr.stop@0 Bool)
    (voiture.usr.bump@0 Bool)
    (voiture.usr.dist@0 Int)
    (voiture.usr.speed@0 Int)
    (voiture.usr.time@0 Int)
    (voiture.usr.move@0 Bool)
    (voiture.usr.second@0 Bool)
    (voiture.usr.meter@0 Bool)
    (voiture.res.init_flag@0 Bool)
    (voiture.res.abs_0@0 Bool)
  ) Bool
  
  (and
   (= voiture.usr.meter@1 (and voiture.usr.m@1 (not voiture.usr.s@1)))
   (= voiture.usr.second@1 voiture.usr.s@1)
   (= voiture.usr.move@1 voiture.res.abs_0@0)
   (=
    voiture.usr.speed@1
    (ite
     (or (not voiture.usr.move@1) voiture.usr.second@1)
     0
     (ite
      (and voiture.usr.move@1 voiture.usr.meter@1)
      (+ (- voiture.usr.speed@0 1) 1)
      voiture.usr.speed@0)))
   (= voiture.usr.toofast@1 (>= voiture.usr.speed@1 3))
   (=
    voiture.usr.time@1
    (ite voiture.usr.second@1 (+ voiture.usr.time@0 1) voiture.usr.time@0))
   (=
    voiture.usr.dist@1
    (ite
     (and voiture.usr.move@1 voiture.usr.meter@1)
     (+ voiture.usr.dist@0 1)
     voiture.usr.dist@0))
   (= voiture.usr.bump@1 (= voiture.usr.dist@1 10))
   (= voiture.usr.stop@1 (>= voiture.usr.time@1 4))
   (=
    voiture.res.abs_0@1
    (and
     (and
      (and voiture.usr.move@1 (not voiture.usr.stop@1))
      (not voiture.usr.toofast@1))
     (not voiture.usr.bump@1)))
   (not voiture.res.init_flag@1))
)

(define-fun
  __node_init_top_0 (
    (top.usr.m@0 Bool)
    (top.usr.s@0 Bool)
    (top.usr.OK@0 Bool)
    (top.res.init_flag@0 Bool)
    (top.res.abs_0@0 Bool)
    (top.res.abs_1@0 Bool)
    (top.res.abs_2@0 Bool)
    (top.res.abs_3@0 Int)
    (top.res.abs_4@0 Int)
    (top.res.abs_5@0 Int)
    (top.res.abs_6@0 Bool)
    (top.res.abs_7@0 Bool)
    (top.res.abs_8@0 Bool)
    (top.res.abs_9@0 Bool)
    (top.res.abs_10@0 Bool)
    (top.res.inst_3@0 Bool)
    (top.res.inst_2@0 Bool)
    (top.res.inst_1@0 Bool)
    (top.res.inst_0@0 Bool)
  ) Bool
  
  (let
   ((X1 Bool top.res.abs_10@0))
   (let
    ((X2 Int top.res.abs_4@0))
    (and
     (= top.usr.OK@0 (=> X1 (< X2 4)))
     (__node_init_voiture_0
      top.usr.m@0
      top.usr.s@0
      top.res.abs_0@0
      top.res.abs_1@0
      top.res.abs_2@0
      top.res.abs_3@0
      top.res.abs_4@0
      top.res.abs_5@0
      top.res.abs_6@0
      top.res.abs_7@0
      top.res.abs_8@0
      top.res.inst_3@0
      top.res.inst_2@0)
     (__node_init_Sofar_0 top.res.abs_9@0 top.res.abs_10@0 top.res.inst_1@0)
     (__node_init_excludes2_0
      top.usr.m@0
      top.usr.s@0
      top.res.abs_9@0
      top.res.inst_0@0)
     top.res.init_flag@0)))
)

(define-fun
  __node_trans_top_0 (
    (top.usr.m@1 Bool)
    (top.usr.s@1 Bool)
    (top.usr.OK@1 Bool)
    (top.res.init_flag@1 Bool)
    (top.res.abs_0@1 Bool)
    (top.res.abs_1@1 Bool)
    (top.res.abs_2@1 Bool)
    (top.res.abs_3@1 Int)
    (top.res.abs_4@1 Int)
    (top.res.abs_5@1 Int)
    (top.res.abs_6@1 Bool)
    (top.res.abs_7@1 Bool)
    (top.res.abs_8@1 Bool)
    (top.res.abs_9@1 Bool)
    (top.res.abs_10@1 Bool)
    (top.res.inst_3@1 Bool)
    (top.res.inst_2@1 Bool)
    (top.res.inst_1@1 Bool)
    (top.res.inst_0@1 Bool)
    (top.usr.m@0 Bool)
    (top.usr.s@0 Bool)
    (top.usr.OK@0 Bool)
    (top.res.init_flag@0 Bool)
    (top.res.abs_0@0 Bool)
    (top.res.abs_1@0 Bool)
    (top.res.abs_2@0 Bool)
    (top.res.abs_3@0 Int)
    (top.res.abs_4@0 Int)
    (top.res.abs_5@0 Int)
    (top.res.abs_6@0 Bool)
    (top.res.abs_7@0 Bool)
    (top.res.abs_8@0 Bool)
    (top.res.abs_9@0 Bool)
    (top.res.abs_10@0 Bool)
    (top.res.inst_3@0 Bool)
    (top.res.inst_2@0 Bool)
    (top.res.inst_1@0 Bool)
    (top.res.inst_0@0 Bool)
  ) Bool
  
  (let
   ((X1 Bool top.res.abs_10@1))
   (let
    ((X2 Int top.res.abs_4@1))
    (and
     (= top.usr.OK@1 (=> X1 (< X2 4)))
     (__node_trans_voiture_0
      top.usr.m@1
      top.usr.s@1
      top.res.abs_0@1
      top.res.abs_1@1
      top.res.abs_2@1
      top.res.abs_3@1
      top.res.abs_4@1
      top.res.abs_5@1
      top.res.abs_6@1
      top.res.abs_7@1
      top.res.abs_8@1
      top.res.inst_3@1
      top.res.inst_2@1
      top.usr.m@0
      top.usr.s@0
      top.res.abs_0@0
      top.res.abs_1@0
      top.res.abs_2@0
      top.res.abs_3@0
      top.res.abs_4@0
      top.res.abs_5@0
      top.res.abs_6@0
      top.res.abs_7@0
      top.res.abs_8@0
      top.res.inst_3@0
      top.res.inst_2@0)
     (__node_trans_Sofar_0
      top.res.abs_9@1
      top.res.abs_10@1
      top.res.inst_1@1
      top.res.abs_9@0
      top.res.abs_10@0
      top.res.inst_1@0)
     (__node_trans_excludes2_0
      top.usr.m@1
      top.usr.s@1
      top.res.abs_9@1
      top.res.inst_0@1
      top.usr.m@0
      top.usr.s@0
      top.res.abs_9@0
      top.res.inst_0@0)
     (not top.res.init_flag@1))))
)



(synth-inv str_invariant(
  (top.usr.m Bool)
  (top.usr.s Bool)
  (top.usr.OK Bool)
  (top.res.init_flag Bool)
  (top.res.abs_0 Bool)
  (top.res.abs_1 Bool)
  (top.res.abs_2 Bool)
  (top.res.abs_3 Int)
  (top.res.abs_4 Int)
  (top.res.abs_5 Int)
  (top.res.abs_6 Bool)
  (top.res.abs_7 Bool)
  (top.res.abs_8 Bool)
  (top.res.abs_9 Bool)
  (top.res.abs_10 Bool)
  (top.res.inst_3 Bool)
  (top.res.inst_2 Bool)
  (top.res.inst_1 Bool)
  (top.res.inst_0 Bool)
))


(declare-primed-var top.usr.m Bool)
(declare-primed-var top.usr.s Bool)
(declare-primed-var top.usr.OK Bool)
(declare-primed-var top.res.init_flag Bool)
(declare-primed-var top.res.abs_0 Bool)
(declare-primed-var top.res.abs_1 Bool)
(declare-primed-var top.res.abs_2 Bool)
(declare-primed-var top.res.abs_3 Int)
(declare-primed-var top.res.abs_4 Int)
(declare-primed-var top.res.abs_5 Int)
(declare-primed-var top.res.abs_6 Bool)
(declare-primed-var top.res.abs_7 Bool)
(declare-primed-var top.res.abs_8 Bool)
(declare-primed-var top.res.abs_9 Bool)
(declare-primed-var top.res.abs_10 Bool)
(declare-primed-var top.res.inst_3 Bool)
(declare-primed-var top.res.inst_2 Bool)
(declare-primed-var top.res.inst_1 Bool)
(declare-primed-var top.res.inst_0 Bool)

(define-fun
  init (
    (top.usr.m Bool)
    (top.usr.s Bool)
    (top.usr.OK Bool)
    (top.res.init_flag Bool)
    (top.res.abs_0 Bool)
    (top.res.abs_1 Bool)
    (top.res.abs_2 Bool)
    (top.res.abs_3 Int)
    (top.res.abs_4 Int)
    (top.res.abs_5 Int)
    (top.res.abs_6 Bool)
    (top.res.abs_7 Bool)
    (top.res.abs_8 Bool)
    (top.res.abs_9 Bool)
    (top.res.abs_10 Bool)
    (top.res.inst_3 Bool)
    (top.res.inst_2 Bool)
    (top.res.inst_1 Bool)
    (top.res.inst_0 Bool)
  ) Bool
  
  (let
   ((X1 Bool top.res.abs_10))
   (let
    ((X2 Int top.res.abs_4))
    (and
     (= top.usr.OK (=> X1 (< X2 4)))
     (__node_init_voiture_0
      top.usr.m
      top.usr.s
      top.res.abs_0
      top.res.abs_1
      top.res.abs_2
      top.res.abs_3
      top.res.abs_4
      top.res.abs_5
      top.res.abs_6
      top.res.abs_7
      top.res.abs_8
      top.res.inst_3
      top.res.inst_2)
     (__node_init_Sofar_0 top.res.abs_9 top.res.abs_10 top.res.inst_1)
     (__node_init_excludes2_0
      top.usr.m
      top.usr.s
      top.res.abs_9
      top.res.inst_0)
     top.res.init_flag)))
)

(define-fun
  trans (
    
    ;; Current state.
    (top.usr.m Bool)
    (top.usr.s Bool)
    (top.usr.OK Bool)
    (top.res.init_flag Bool)
    (top.res.abs_0 Bool)
    (top.res.abs_1 Bool)
    (top.res.abs_2 Bool)
    (top.res.abs_3 Int)
    (top.res.abs_4 Int)
    (top.res.abs_5 Int)
    (top.res.abs_6 Bool)
    (top.res.abs_7 Bool)
    (top.res.abs_8 Bool)
    (top.res.abs_9 Bool)
    (top.res.abs_10 Bool)
    (top.res.inst_3 Bool)
    (top.res.inst_2 Bool)
    (top.res.inst_1 Bool)
    (top.res.inst_0 Bool)
    
    ;; Next state.
    (top.usr.m! Bool)
    (top.usr.s! Bool)
    (top.usr.OK! Bool)
    (top.res.init_flag! Bool)
    (top.res.abs_0! Bool)
    (top.res.abs_1! Bool)
    (top.res.abs_2! Bool)
    (top.res.abs_3! Int)
    (top.res.abs_4! Int)
    (top.res.abs_5! Int)
    (top.res.abs_6! Bool)
    (top.res.abs_7! Bool)
    (top.res.abs_8! Bool)
    (top.res.abs_9! Bool)
    (top.res.abs_10! Bool)
    (top.res.inst_3! Bool)
    (top.res.inst_2! Bool)
    (top.res.inst_1! Bool)
    (top.res.inst_0! Bool)
  
  ) Bool
  
  (let
   ((X1 Bool top.res.abs_10!))
   (let
    ((X2 Int top.res.abs_4!))
    (and
     (= top.usr.OK! (=> X1 (< X2 4)))
     (__node_trans_voiture_0
      top.usr.m!
      top.usr.s!
      top.res.abs_0!
      top.res.abs_1!
      top.res.abs_2!
      top.res.abs_3!
      top.res.abs_4!
      top.res.abs_5!
      top.res.abs_6!
      top.res.abs_7!
      top.res.abs_8!
      top.res.inst_3!
      top.res.inst_2!
      top.usr.m
      top.usr.s
      top.res.abs_0
      top.res.abs_1
      top.res.abs_2
      top.res.abs_3
      top.res.abs_4
      top.res.abs_5
      top.res.abs_6
      top.res.abs_7
      top.res.abs_8
      top.res.inst_3
      top.res.inst_2)
     (__node_trans_Sofar_0
      top.res.abs_9!
      top.res.abs_10!
      top.res.inst_1!
      top.res.abs_9
      top.res.abs_10
      top.res.inst_1)
     (__node_trans_excludes2_0
      top.usr.m!
      top.usr.s!
      top.res.abs_9!
      top.res.inst_0!
      top.usr.m
      top.usr.s
      top.res.abs_9
      top.res.inst_0)
     (not top.res.init_flag!))))
)

(define-fun
  prop (
    (top.usr.m Bool)
    (top.usr.s Bool)
    (top.usr.OK Bool)
    (top.res.init_flag Bool)
    (top.res.abs_0 Bool)
    (top.res.abs_1 Bool)
    (top.res.abs_2 Bool)
    (top.res.abs_3 Int)
    (top.res.abs_4 Int)
    (top.res.abs_5 Int)
    (top.res.abs_6 Bool)
    (top.res.abs_7 Bool)
    (top.res.abs_8 Bool)
    (top.res.abs_9 Bool)
    (top.res.abs_10 Bool)
    (top.res.inst_3 Bool)
    (top.res.inst_2 Bool)
    (top.res.inst_1 Bool)
    (top.res.inst_0 Bool)
  ) Bool
  
  top.usr.OK
)

(inv-constraint str_invariant init trans prop)

(check-synth)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback