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
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
|
(my_list_induction
(less_wf 0
(less_wf-1 nil 3667405436
("" (expand "well_founded?")
(("" (skolem 1 P)
(("" (flatten)
(("" (skolem -1 Y)
(("" (expand "less")
(("" (lemma naturalnumbers.wf_nat)
(("" (expand "well_founded?")
((""
(inst -1 "(LAMBDA(n:nat):EXISTS(l:(P)):length(l)=n)")
(("" (split)
(("1" (skosimp*)
(("1" (typepred y!1)
(("1" (skolem -1 L)
(("1" (inst 1 L)
(("1" (skolem 1 G)
(("1"
(inst -2 "length(G)")
(("1" (assert) nil nil)
("2"
(typepred G)
(("2" (inst 1 G) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
("2" (grind)
(("2" (inst 1 "length(Y)")
(("2" (inst 1 Y) nil nil)) nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((well_founded? const-decl "bool" orders nil)
(less const-decl "bool" my_list_induction nil)
(NOT const-decl "[bool -> bool]" booleans nil)
(P skolem-const-decl "pred[list[X]]" my_list_induction nil)
(G skolem-const-decl "(P)" my_list_induction nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(length def-decl "nat" list_props nil)
(= const-decl "[T, T -> boolean]" equalities nil)
(list type-decl nil list_adt nil)
(X formal-type-decl nil my_list_induction nil)
(pred type-eq-decl nil defined_types nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil)
(wf_nat formula-decl nil naturalnumbers nil))
shostak))
(list_length_induction 0
(list_length_induction-1 nil 3667403384
("" (lemma "wf_induction[list[X],less].wf_induction")
(("1" (propax) nil nil) ("2" (rewrite less_wf) nil nil)) nil)
((less_wf formula-decl nil my_list_induction nil)
(pred type-eq-decl nil defined_types nil)
(well_founded? const-decl "bool" orders nil)
(wf_induction formula-decl nil wf_induction nil)
(X formal-type-decl nil my_list_induction nil)
(list type-decl nil list_adt nil)
(boolean nonempty-type-decl nil booleans nil)
(bool nonempty-type-eq-decl nil booleans nil)
(less const-decl "bool" my_list_induction nil))
shostak)))
(my_list_props
(occ_TCC1 0
(occ_TCC1-1 nil 3667035231 ("" (termination-tcc) nil nil)
((real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(nnint_plus_posint_is_posint application-judgement "posint"
integers nil)
(length def-decl "nat" list_props nil))
nil))
(occ_TCC2 0
(occ_TCC2-1 nil 3667035231 ("" (termination-tcc) nil nil)
((real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(nnint_plus_posint_is_posint application-judgement "posint"
integers nil)
(length def-decl "nat" list_props nil))
nil))
(occ_nth 0
(occ_nth-1 nil 3667035247
("" (induct l)
(("1" (grind) nil nil)
("2" (skolem 1 (HD TL))
(("2" (flatten)
(("2" (expand nth 1)
(("2" (skeep)
(("2" (expand occ -2)
(("2" (lift-if)
(("2" (split -2)
(("1" (flatten)
(("1" (inst 1 0)
(("1" (assert) (("1" (grind) nil nil)) nil))
nil))
nil)
("2" (flatten)
(("2" (inst -2 x)
(("2" (assert)
(("2" (skolem -2 I)
(("2" (flatten)
(("2" (inst 2 "I+1")
(("2"
(assert)
(("2" (grind) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((nnint_plus_posint_is_posint application-judgement "posint"
integers nil)
(real_gt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(+ const-decl "[numfield, numfield -> numfield]" number_fields nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(list_induction formula-decl nil list_adt nil)
(X formal-type-decl nil my_list_props nil)
(nth def-decl "T" list_props nil)
(below type-eq-decl nil nat_types nil)
(= const-decl "[T, T -> boolean]" equalities nil)
(length def-decl "nat" list_props nil)
(< const-decl "bool" reals nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(occ def-decl "nat" my_list_props nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(> const-decl "bool" reals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number nonempty-type-decl nil numbers nil)
(IMPLIES const-decl "[bool, bool -> bool]" booleans nil)
(bool nonempty-type-eq-decl nil booleans nil)
(boolean nonempty-type-decl nil booleans nil)
(list type-decl nil list_adt nil))
shostak))
(nth_occ 0
(nth_occ-1 nil 3667036386
("" (induct l)
(("1" (grind) nil nil)
("2" (skolem 1 (HD TL))
(("2" (flatten)
(("2" (skeep)
(("2" (expand nth 1)
(("2" (lift-if 1)
(("2" (expand occ 1)
(("2" (split 1)
(("1" (assert)
(("1" (flatten) (("1" (assert) nil nil)) nil)) nil)
("2" (flatten)
(("2" (lift-if 2)
(("2" (split 2)
(("1" (flatten)
(("1" (inst -2 "i-1")
(("1" (split -2)
(("1" (assert) nil nil)
("2"
(expand length -2)
(("2" (assert) nil nil))
nil))
nil)
("2" (assert) nil nil))
nil))
nil)
("2" (flatten)
(("2" (inst -1 "i-1")
(("1" (split)
(("1" (propax) nil nil)
("2"
(expand length -1)
(("2" (assert) nil nil))
nil))
nil)
("2" (assert) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((real_gt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(- const-decl "[numfield, numfield -> numfield]" number_fields nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(int_minus_int_is_int application-judgement "int" integers nil)
(real_ge_is_total_order name-judgement "(total_order?[real])"
real_props nil)
(list_induction formula-decl nil list_adt nil)
(X formal-type-decl nil my_list_props nil)
(nth def-decl "T" list_props nil)
(below type-eq-decl nil nat_types nil)
(occ def-decl "nat" my_list_props nil)
(> const-decl "bool" reals nil)
(length def-decl "nat" list_props nil)
(< const-decl "bool" reals nil)
(IMPLIES const-decl "[bool, bool -> bool]" booleans nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number nonempty-type-decl nil numbers nil)
(boolean nonempty-type-decl nil booleans nil)
(list type-decl nil list_adt nil))
shostak))
(perm_null 0
(perm_null-1 nil 3667035958
("" (skeep)
(("" (lemma "list_cons_eta[X]")
(("" (inst -1 l)
(("1" (replace -1 -2 rl)
(("1" (expand "perm?")
(("1" (inst -2 "car(l)")
(("1" (expand "occ") (("1" (assert) nil nil)) nil)) nil))
nil))
nil)
("2" (assert) nil nil))
nil))
nil))
nil)
((X formal-type-decl nil my_list_props nil)
(list_cons_eta formula-decl nil list_adt nil)
(car adt-accessor-decl "[(cons?) -> T]" list_adt nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(occ def-decl "nat" my_list_props nil)
(perm? const-decl "bool" my_list_props nil)
(list type-decl nil list_adt nil)
(boolean nonempty-type-decl nil booleans nil)
(cons? adt-recognizer-decl "[list -> boolean]" list_adt nil))
shostak))
(perm_commutative 0
(perm_commutative-1 nil 3667035748
("" (skeep)
(("" (expand "perm?")
(("" (skeep) (("" (inst -1 x) (("" (assert) nil nil)) nil)) nil))
nil))
nil)
((perm? const-decl "bool" my_list_props nil)
(X formal-type-decl nil my_list_props nil))
shostak))
(append_occ 0
(append_occ-1 nil 3667035804
("" (induct l1)
(("1" (grind) nil nil)
("2" (skolem 1 (HD TL))
(("2" (flatten)
(("2" (skeep)
(("2" (skeep)
(("2" (expand append 1)
(("2" (expand occ 1 (1 2))
(("2" (lift-if)
(("2" (inst -1 l2)
(("2" (inst -1 x) (("2" (assert) nil nil)) nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(list_induction formula-decl nil list_adt nil)
(X formal-type-decl nil my_list_props nil)
(+ const-decl "[numfield, numfield -> numfield]" number_fields nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(append def-decl "list[T]" list_props nil)
(occ def-decl "nat" my_list_props nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(= const-decl "[T, T -> boolean]" equalities nil)
(number nonempty-type-decl nil numbers nil)
(boolean nonempty-type-decl nil booleans nil)
(list type-decl nil list_adt nil))
shostak))
(length_append 0
(length_append-1 nil 3667457451 ("" (induct-and-simplify l1) nil nil)
((list type-decl nil list_adt nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil)
(= const-decl "[T, T -> boolean]" equalities nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(real nonempty-type-from-decl nil reals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(rational nonempty-type-from-decl nil rationals nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(int nonempty-type-eq-decl nil integers nil)
(bool nonempty-type-eq-decl nil booleans nil)
(>= const-decl "bool" reals nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(length def-decl "nat" list_props nil)
(append def-decl "list[T]" list_props nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(+ const-decl "[numfield, numfield -> numfield]" number_fields nil)
(X formal-type-decl nil my_list_props nil)
(list_induction formula-decl nil list_adt nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(nnint_plus_posint_is_posint application-judgement "posint"
integers nil))
shostak))
(nth_append_TCC1 0
(nth_append_TCC1-1 nil 3667447307
("" (skeep)
(("" (lemma length_append)
(("" (inst? -1) (("" (assert) nil nil)) nil)) nil))
nil)
((length_append formula-decl nil my_list_props nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(list type-decl nil list_adt nil)
(X formal-type-decl nil my_list_props nil))
nil))
(nth_append_TCC2 0
(nth_append_TCC2-1 nil 3667447307 ("" (subtype-tcc) nil nil)
((boolean nonempty-type-decl nil booleans nil)
(bool nonempty-type-eq-decl nil booleans nil)
(NOT const-decl "[bool -> bool]" booleans nil)
(number nonempty-type-decl nil numbers nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(real nonempty-type-from-decl nil reals nil)
(>= const-decl "bool" reals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(rational nonempty-type-from-decl nil rationals nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(int nonempty-type-eq-decl nil integers nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(int_minus_int_is_int application-judgement "int" integers nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(real_ge_is_total_order name-judgement "(total_order?[real])"
real_props nil)
(minus_odd_is_odd application-judgement "odd_int" integers nil))
nil))
(nth_append 0
(nth_append-1 nil 3667447318
("" (induct l1)
(("1" (grind) nil nil)
("2" (skolem 1 (H T))
(("2" (flatten)
(("2" (skeep)
(("2" (skeep)
(("2" (inst -1 l2)
(("2" (expand append 1)
(("2" (lift-if 1)
(("2" (split 1)
(("1" (flatten 1)
(("1" (expand nth 1)
(("1" (lift-if)
(("1" (split)
(("1" (propax) nil nil)
("2" (flatten)
(("2"
(inst -2 "i-1")
(("1"
(expand length -3 1)
(("1"
(split -2)
(("1"
(lift-if -1)
(("1"
(split -1)
(("1" (flatten -1) nil nil)
("2"
(flatten -1)
(("2" (grind) nil nil))
nil))
nil))
nil)
("2"
(assert 1)
(("2" (grind 1) nil nil))
nil))
nil))
nil)
("2"
(expand length -1)
(("2"
(expand length -2 1)
(("2" (assert) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
("2" (flatten)
(("2" (assert 1) (("2" (grind 1) nil nil)) nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
("3" (skeep 1) (("3" (grind 1) nil nil)) nil)
("4" (skeep 1)
(("4" (lemma length_append)
(("4" (inst? -1)
(("4" (replace -1 1) (("4" (propax) nil nil)) nil)) nil))
nil))
nil))
nil)
((minus_odd_is_odd application-judgement "odd_int" integers nil)
(int_minus_int_is_int application-judgement "int" integers nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(append def-decl "list[T]" list_props nil)
(length def-decl "nat" list_props nil)
(+ const-decl "[numfield, numfield -> numfield]" number_fields nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(< const-decl "bool" reals nil)
(IMPLIES const-decl "[bool, bool -> bool]" booleans nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil)
(list type-decl nil list_adt nil)
(- const-decl "[numfield, numfield -> numfield]" number_fields nil)
(NOT const-decl "[bool -> bool]" booleans nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(= const-decl "[T, T -> boolean]" equalities nil)
(below type-eq-decl nil nat_types nil)
(nth def-decl "T" list_props nil)
(IF const-decl "[boolean, T, T -> T]" if_def nil)
(X formal-type-decl nil my_list_props nil)
(list_induction formula-decl nil list_adt nil)
(real_ge_is_total_order name-judgement "(total_order?[real])"
real_props nil)
(i skolem-const-decl "nat" my_list_props nil)
(nnint_plus_posint_is_posint application-judgement "posint"
integers nil)
(int_plus_int_is_int application-judgement "int" integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(length_append formula-decl nil my_list_props nil))
shostak)))
(SPLIT
(split_TCC1 0
(split_TCC1-1 nil 3667407453 ("" (termination-tcc) nil nil)
((boolean nonempty-type-decl nil booleans nil)
(bool nonempty-type-eq-decl nil booleans nil)
(NOT const-decl "[bool -> bool]" booleans nil)
(number nonempty-type-decl nil numbers nil)
(PRED type-eq-decl nil defined_types nil)
(list type-decl nil list_adt nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(real nonempty-type-from-decl nil reals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(rational nonempty-type-from-decl nil rationals nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(>= const-decl "bool" reals nil)
(int nonempty-type-eq-decl nil integers nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(real_ge_is_total_order name-judgement "(total_order?[real])"
real_props nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(nnint_plus_posint_is_posint application-judgement "posint"
integers nil)
(length def-decl "nat" list_props nil))
nil))
(split_length 0
(split_length-1 nil 3667407485 ("" (induct-and-simplify l) nil nil)
((list type-decl nil list_adt nil)
(PRED type-eq-decl nil defined_types nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(= const-decl "[T, T -> boolean]" equalities nil)
(length def-decl "nat" list_props nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(+ const-decl "[numfield, numfield -> numfield]" number_fields nil)
(split def-decl "[list[nat], list[nat]]" SPLIT nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil)
(list_induction formula-decl nil list_adt nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(nnint_plus_posint_is_posint application-judgement "posint"
integers nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil))
shostak))
(split_occ 0
(split_occ-1 nil 3667407525 ("" (induct-and-simplify l) nil nil)
((list type-decl nil list_adt nil)
(PRED type-eq-decl nil defined_types nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(= const-decl "[T, T -> boolean]" equalities nil)
(occ def-decl "nat" my_list_props nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(+ const-decl "[numfield, numfield -> numfield]" number_fields nil)
(split def-decl "[list[nat], list[nat]]" SPLIT nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil)
(list_induction formula-decl nil list_adt nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil))
shostak))
(split_lwb_upb 0
(split_lwb_upb-1 nil 3667407762
("" (assert)
(("" (induct l)
(("1" (grind) nil nil)
("2" (skolem 1 (H T))
(("2" (flatten) (("2" (postpone) nil nil)) nil)) nil))
nil))
nil)
((list type-decl nil list_adt nil)
(PRED type-eq-decl nil defined_types nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(upb const-decl "bool" SPLIT nil)
(split def-decl "[list[nat], list[nat]]" SPLIT nil)
(lwb const-decl "bool" SPLIT nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil)
(list_induction formula-decl nil list_adt nil)
(length def-decl "nat" list_props nil)
(nth def-decl "T" list_props nil)
(real_ge_is_total_order name-judgement "(total_order?[real])"
real_props nil)
(int_minus_int_is_int application-judgement "int" integers nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(- const-decl "[numfield, numfield -> numfield]" number_fields nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil))
shostak)))
(QS
(qs_TCC1 0
(qs_TCC1-1 nil 3329457968
("" (skosimp*)
(("" (lemma split_length)
(("" (inst? -1)
(("" (assert)
(("" (replace -2)
(("" (expand length 1 2) (("" (assert) nil nil)) nil))
nil))
nil))
nil))
nil))
nil)
((split_length formula-decl nil SPLIT nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(length def-decl "nat" list_props nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(PRED type-eq-decl nil defined_types nil)
(list type-decl nil list_adt nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil))
nil))
(qs_TCC2 0
(qs_TCC2-1 nil 3329457968
("" (skosimp*)
(("" (replace -1)
(("" (expand length 1 2)
(("" (lemma split_length)
(("" (inst? -1) (("" (assert) nil nil)) nil)) nil))
nil))
nil))
nil)
((split_length formula-decl nil SPLIT nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(PRED type-eq-decl nil defined_types nil)
(list type-decl nil list_adt nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil)
(length def-decl "nat" list_props nil))
nil)))
(SORTED
(sorted?_TCC1 0
(sorted?_TCC1-1 nil 3667449016 ("" (termination-tcc) nil nil)
((boolean nonempty-type-decl nil booleans nil)
(bool nonempty-type-eq-decl nil booleans nil)
(NOT const-decl "[bool -> bool]" booleans nil)
(number nonempty-type-decl nil numbers nil)
(PRED type-eq-decl nil defined_types nil)
(list type-decl nil list_adt nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(real nonempty-type-from-decl nil reals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(rational nonempty-type-from-decl nil rationals nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(>= const-decl "bool" reals nil)
(int nonempty-type-eq-decl nil integers nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(real_ge_is_total_order name-judgement "(total_order?[real])"
real_props nil))
nil))
(sorted_append 0
(sorted_append-1 nil 3667449025
("" (skeep)
(("" (expand sorted? 1)
(("" (skeep)
(("" (lemma nth_append)
(("" (inst -1 l1 l2 i)
(("" (lemma nth_append)
(("" (inst -1 l1 l2 j)
(("" (split -2)
(("1" (lift-if -1)
(("1" (split -1)
(("1" (flatten -1)
(("1" (replace -2 1)
(("1" (split -3)
(("1" (lift-if -1)
(("1"
(split -1)
(("1"
(flatten -1)
(("1"
(replace -2 1)
(("1"
(expand sorted? -5)
(("1"
(inst -5 i j)
(("1"
(split -5)
(("1" (propax) nil nil)
("2" (propax) nil nil)
("3" (propax) nil nil))
nil))
nil))
nil))
nil))
nil)
("2"
(flatten -1)
(("2"
(lemma length_append)
(("2"
(inst -1 l1 l2)
(("2"
(replace -1 -10)
(("2"
(assert)
(("2" (grind 1) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
("2" (lemma length_append)
(("2"
(inst -1 l1 l2)
(("2"
(replace -1 -9)
(("2" (propax) nil nil))
nil))
nil))
nil))
nil))
nil))
nil)
("2" (flatten -1)
(("2" (replace -1 2)
(("2" (split -2)
(("1" (lift-if -1)
(("1"
(split -1)
(("1"
(flatten -1)
(("1" (assert) nil nil))
nil)
("2"
(flatten -1)
(("2"
(lemma length_append)
(("2"
(inst -1 l1 l2)
(("2"
(replace -1 -9)
(("2"
(assert 1)
(("2"
(replace -2 3)
(("2"
(assert 3)
(("2"
(expand sorted? -5)
(("2"
(inst
-5
(i-length (l1))
(j-length (l1)))
(("1"
(split -5)
(("1"
(propax)
nil
nil)
("2"
(assert 1)
(("2"
(grind 1)
nil
nil))
nil)
("3"
(grind 1)
nil
nil))
nil)
("2"
(assert)
nil
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
("2" (lemma length_append)
(("2"
(inst -1 l1 l2)
(("2"
(replace -1 -8)
(("2" (propax) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
("2" (split -1)
(("1" (lift-if -1)
(("1" (split -1)
(("1" (flatten -1)
(("1" (assert 1) (("1" (grind 1) nil nil))
nil))
nil)
("2" (lemma length_append)
(("2" (inst -1 l1 l2)
(("2" (replace -1 -8)
(("2"
(assert 1)
(("2" (grind 1) nil nil))
nil))
nil))
nil))
nil))
nil))
nil)
("2" (lemma length_append)
(("2" (inst -1 l1 l2)
(("2" (replace -1 -7) (("2" (propax) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((list type-decl nil list_adt nil)
(PRED type-eq-decl nil defined_types nil)
(every adt-def-decl "boolean" list_adt nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(int_plus_int_is_int application-judgement "int" integers nil)
(i skolem-const-decl "nat" SORTED nil)
(l1 skolem-const-decl "list[nat]" SORTED nil)
(length_append formula-decl nil my_list_props nil)
(nth def-decl "T" list_props nil) (upb const-decl "bool" SPLIT nil)
(lwb const-decl "bool" SPLIT nil)
(length def-decl "nat" list_props nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(- const-decl "[numfield, numfield -> numfield]" number_fields nil)
(real_ge_is_total_order name-judgement "(total_order?[real])"
real_props nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(int_minus_int_is_int application-judgement "int" integers nil)
(minus_odd_is_odd application-judgement "odd_int" integers nil)
(real_le_is_total_order name-judgement "(total_order?[real])"
real_props nil)
(nth_append formula-decl nil my_list_props nil)
(number nonempty-type-decl nil numbers nil)
(boolean nonempty-type-decl nil booleans nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(real nonempty-type-from-decl nil reals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(rational nonempty-type-from-decl nil rationals nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(int nonempty-type-eq-decl nil integers nil)
(bool nonempty-type-eq-decl nil booleans nil)
(>= const-decl "bool" reals nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(sorted? const-decl "bool" SORTED nil))
shostak)))
(QS_props
(qs_perm 0
(qs_perm-1 nil 3658125991
("" (lemma list_length_induction)
(("" (inst? -1)
(("" (copy -1)
(("" (split -1)
(("1" (propax) nil nil)
("2" (skeep 1)
(("2" (expand qs 1)
(("2" (lift-if 1)
(("2" (split 1)
(("1" (flatten 1) (("1" (grind 1) nil nil)) nil)
("2" (flatten 1)
(("2" (assert 2)
(("2" (expand perm? 2)
(("2" (skeep 2)
(("2" (lemma append_occ)
(("2"
(inst -1 "qs(split(car(g),cdr(g))`1)"
"cons(car(g),qs(split(car(g),cdr(g))`2))"
x)
(("2"
(replace -1 2)
(("2"
(lemma split_occ)
(("2"
(inst -1 "car(g)" "cdr(g)")
(("2"
(assert -1)
(("2"
(inst -1 x)
(("2"
(lemma split_length)
(("2"
(inst -1 "car(g)" "cdr(g)")
(("2"
(assert -1)
(("2"
(expand occ 2 3)
(("2"
(lift-if 2)
(("2"
(split 2)
(("1"
(flatten 1)
nil
nil)
("2"
(flatten 1)
(("2"
(split 2)
(("1"
(flatten 1)
(("1"
(expand
occ
1
2)
(("1"
(lift-if
1)
(("1"
(split
1)
(("1"
(flatten
1)
(("1"
(assert
1)
(("1"
(copy
-6)
(("1"
(inst
-1
"split(car(g),cdr(g))`1")
(("1"
(split
-1)
(("1"
(inst
-7
"split(car(g),cdr(g))`2")
(("1"
(split
-7)
(("1"
(expand
perm?
(-1
-2))
(("1"
(inst
-1
x)
(("1"
(inst
-2
x)
(("1"
(replace
-1
1)
(("1"
(replace
-2
1)
(("1"
(assert
1)
(("1"
(replace
-6
1)
(("1"
(propax)
nil
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
("2"
(expand
less
1)
(("2"
(grind
1)
nil
nil))
nil))
nil))
nil)
("2"
(grind
1)
nil
nil))
nil))
nil))
nil))
nil))
nil)
("2"
(flatten
1)
nil
nil))
nil))
nil))
nil))
nil)
("2"
(flatten 1)
(("2"
(expand
occ
2
2)
(("2"
(lift-if
2)
(("2"
(split
2)
(("1"
(flatten
1)
nil
nil)
("2"
(flatten
1)
(("2"
(copy
-4)
(("2"
(inst
-1
"split(car(g),cdr(g))`1")
(("2"
(inst
-5
"split(car(g),cdr(g))`2")
(("2"
(split
-1)
(("1"
(expand
perm?
-1)
(("1"
(inst
-1
x)
(("1"
(replace
-1
2)
(("1"
(split
-5)
(("1"
(expand
perm?
-1)
(("1"
(inst
-1
x)
(("1"
(replace
-1
2)
(("1"
(replace
-4
2)
(("1"
(propax)
nil
nil))
nil))
nil))
nil))
nil)
("2"
(grind
1)
nil
nil))
nil))
nil))
nil))
nil)
("2"
(grind
1)
nil
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((list type-decl nil list_adt nil)
(PRED type-eq-decl nil defined_types nil)
(every adt-def-decl "boolean" list_adt nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(pred type-eq-decl nil defined_types nil)
(perm? const-decl "bool" my_list_props nil)
(qs def-decl "list[nat]" QS nil)
(occ def-decl "nat" my_list_props nil)
(split def-decl "[list[nat], list[nat]]" SPLIT nil)
(cons? adt-recognizer-decl "[list -> boolean]" list_adt nil)
(car adt-accessor-decl "[(cons?) -> T]" list_adt nil)
(cdr adt-accessor-decl "[(cons?) -> list]" list_adt nil)
(cons adt-constructor-decl "[[T, list] -> (cons?)]" list_adt nil)
(split_occ formula-decl nil SPLIT nil)
(split_length formula-decl nil SPLIT nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(length def-decl "nat" list_props nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(less const-decl "bool" my_list_induction nil)
(nnint_plus_posint_is_posint application-judgement "posint"
integers nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(append_occ formula-decl nil my_list_props nil)
(list_length_induction formula-decl nil my_list_induction nil)
(number nonempty-type-decl nil numbers nil)
(boolean nonempty-type-decl nil booleans nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(real nonempty-type-from-decl nil reals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(rational nonempty-type-from-decl nil rationals nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(int nonempty-type-eq-decl nil integers nil)
(bool nonempty-type-eq-decl nil booleans nil)
(>= const-decl "bool" reals nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil))
shostak))
(occ_upb 0
(occ_upb-1 nil 3658132514
("" (induct l)
(("1" (grind) nil nil)
("2" (skolem 1 (H T))
(("2" (flatten)
(("2" (skeep)
(("2" (skeep)
(("2" (inst? -1)
(("2" (split)
(("1" (expand occ -3)
(("1" (lift-if)
(("1" (split)
(("1" (flatten)
(("1" (expand upb -4)
(("1" (inst -4 0)
(("1" (expand length -4)
(("1"
(assert)
(("1"
(split)
(("1" (grind) nil nil)
("2" (grind) nil nil))
nil))
nil))
nil))
nil))
nil))
nil)
("2" (flatten)
(("2" (inst -2 x) (("2" (assert) nil nil))
nil))
nil))
nil))
nil))
nil)
("2" (expand upb -1)
(("2" (expand upb 1)
(("2" (skeep)
(("2" (inst -2 "i+1")
(("2" (split)
(("1" (expand nth -1)
(("1" (propax) nil nil)) nil)
("2" (expand length 1)
(("2" (assert) nil nil)) nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((numfield nonempty-type-eq-decl nil number_fields nil)
(+ const-decl "[numfield, numfield -> numfield]" number_fields nil)
(nnint_plus_posint_is_posint application-judgement "posint"
integers nil)
(nth def-decl "T" list_props nil)
(real_gt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(length def-decl "nat" list_props nil)
(list_induction formula-decl nil list_adt nil)
(number nonempty-type-decl nil numbers nil)
(boolean nonempty-type-decl nil booleans nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(real nonempty-type-from-decl nil reals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(rational nonempty-type-from-decl nil rationals nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(int nonempty-type-eq-decl nil integers nil)
(bool nonempty-type-eq-decl nil booleans nil)
(>= const-decl "bool" reals nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(< const-decl "bool" reals nil)
(occ def-decl "nat" my_list_props nil)
(> const-decl "bool" reals nil) (upb const-decl "bool" SPLIT nil)
(IMPLIES const-decl "[bool, bool -> bool]" booleans nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(PRED type-eq-decl nil defined_types nil)
(list type-decl nil list_adt nil))
shostak))
(occ_lwb 0
(occ_lwb-1 nil 3658137865
("" (induct l)
(("1" (grind) nil nil)
("2" (skolem 1 (H T))
(("2" (flatten)
(("2" (skolem 1 N)
(("2" (flatten)
(("2" (skolem 1 X)
(("2" (flatten)
(("2" (inst? -1)
(("2" (split)
(("1" (expand occ -3)
(("1" (lift-if)
(("1" (split)
(("1" (expand "lwb")
(("1" (inst -3 0)
(("1"
(expand length -3)
(("1"
(assert)
(("1"
(split)
(("1" (grind) nil nil)
("2" (assert) nil nil))
nil))
nil))
nil))
nil))
nil)
("2" (flatten)
(("2" (inst -2 X) (("2" (assert) nil nil))
nil))
nil))
nil))
nil))
nil)
("2" (expand lwb -1)
(("2" (expand lwb 1)
(("2" (skolem 1 I)
(("2" (flatten)
(("2" (inst -3 "I+1")
(("2"
(expand length -3)
(("2"
(assert)
(("2"
(expand nth 1)
(("2" (propax) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((nnint_plus_posint_is_posint application-judgement "posint"
integers nil)
(+ const-decl "[numfield, numfield -> numfield]" number_fields nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(nth def-decl "T" list_props nil)
(real_gt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(length def-decl "nat" list_props nil)
(list_induction formula-decl nil list_adt nil)
(number nonempty-type-decl nil numbers nil)
(boolean nonempty-type-decl nil booleans nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(real nonempty-type-from-decl nil reals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(rational nonempty-type-from-decl nil rationals nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(int nonempty-type-eq-decl nil integers nil)
(bool nonempty-type-eq-decl nil booleans nil)
(>= const-decl "bool" reals nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(< const-decl "bool" reals nil)
(NOT const-decl "[bool -> bool]" booleans nil)
(occ def-decl "nat" my_list_props nil)
(> const-decl "bool" reals nil) (lwb const-decl "bool" SPLIT nil)
(IMPLIES const-decl "[bool, bool -> bool]" booleans nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(PRED type-eq-decl nil defined_types nil)
(list type-decl nil list_adt nil))
nil))
(upb_perm 0
(upb_perm-1 nil 3658132945
("" (skosimp*)
(("" (lemma occ_upb)
(("" (inst? -1)
(("" (assert)
(("" (expand "upb")
(("" (skosimp*)
(("" (expand "perm?")
(("" (lemma nth_occ)
(("" (inst? -1)
(("" (assert)
(("" (inst? -3)
(("" (lemma occ_nth)
(("" (inst -1 l!1 "nth(lp!1, i!1)")
(("" (assert)
((""
(skosimp*)
((""
(inst? -4)
(("" (assert) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((occ_upb formula-decl nil QS_props nil)
(nth_occ formula-decl nil my_list_props nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(occ_nth formula-decl nil my_list_props nil)
(real_gt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(< const-decl "bool" reals nil)
(length def-decl "nat" list_props nil)
(below type-eq-decl nil nat_types nil)
(nth def-decl "T" list_props nil)
(perm? const-decl "bool" my_list_props nil)
(upb const-decl "bool" SPLIT nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(PRED type-eq-decl nil defined_types nil)
(list type-decl nil list_adt nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil))
shostak))
(lwb_perm 0
(lwb_perm-1 nil 3658138209
("" (skosimp*)
(("" (lemma occ_lwb)
(("" (inst? -1)
(("" (assert)
(("" (expand "lwb")
(("" (skosimp*)
(("" (expand "perm?")
(("" (lemma nth_occ)
(("" (inst? -1)
(("" (assert)
(("" (inst? -3)
(("" (lemma occ_nth)
(("" (inst -1 l!1 "nth(lp!1, i!1)")
(("" (assert)
((""
(skosimp*)
((""
(inst? -4)
(("" (assert) nil nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil))
nil)
((occ_lwb formula-decl nil QS_props nil)
(nth_occ formula-decl nil my_list_props nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(occ_nth formula-decl nil my_list_props nil)
(real_gt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(< const-decl "bool" reals nil)
(length def-decl "nat" list_props nil)
(below type-eq-decl nil nat_types nil)
(nth def-decl "T" list_props nil)
(perm? const-decl "bool" my_list_props nil)
(lwb const-decl "bool" SPLIT nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(PRED type-eq-decl nil defined_types nil)
(list type-decl nil list_adt nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil)
(>= const-decl "bool" reals nil)
(bool nonempty-type-eq-decl nil booleans nil)
(int nonempty-type-eq-decl nil integers nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(rational nonempty-type-from-decl nil rationals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(real nonempty-type-from-decl nil reals nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(boolean nonempty-type-decl nil booleans nil)
(number nonempty-type-decl nil numbers nil))
nil))
(qs_sorted 0
(qs_sorted-1 nil 3658128963
("" (lemma list_length_induction) (("" (postpone) nil nil)) nil)
((list type-decl nil list_adt nil)
(PRED type-eq-decl nil defined_types nil)
(AND const-decl "[bool, bool -> bool]" booleans nil)
(pred type-eq-decl nil defined_types nil)
(sorted? const-decl "bool" SORTED nil)
(qs def-decl "list[nat]" QS nil)
(split_lwb_upb formula-decl nil SPLIT nil)
(cdr adt-accessor-decl "[(cons?) -> list]" list_adt nil)
(car adt-accessor-decl "[(cons?) -> T]" list_adt nil)
(cons? adt-recognizer-decl "[list -> boolean]" list_adt nil)
(split_length formula-decl nil SPLIT nil)
(sorted_append formula-decl nil SORTED nil)
(lwb_perm formula-decl nil QS_props nil)
(qs_perm formula-decl nil QS_props nil)
(perm_commutative formula-decl nil my_list_props nil)
(nth def-decl "T" list_props nil)
(real_lt_is_strict_total_order name-judgement
"(strict_total_order?[real])" real_props nil)
(posint_plus_nnint_is_posint application-judgement "posint"
integers nil)
(real_le_is_total_order name-judgement "(total_order?[real])"
real_props nil)
(numfield nonempty-type-eq-decl nil number_fields nil)
(- const-decl "[numfield, numfield -> numfield]" number_fields nil)
(int_minus_int_is_int application-judgement "int" integers nil)
(real_ge_is_total_order name-judgement "(total_order?[real])"
real_props nil)
(lwb const-decl "bool" SPLIT nil)
(upb_perm formula-decl nil QS_props nil)
(less const-decl "bool" my_list_induction nil)
(split def-decl "[list[nat], list[nat]]" SPLIT nil)
(cons adt-constructor-decl "[[T, list] -> (cons?)]" list_adt nil)
(nnint_plus_nnint_is_nnint application-judgement "nonneg_int"
integers nil)
(length def-decl "nat" list_props nil)
(list_length_induction formula-decl nil my_list_induction nil)
(number nonempty-type-decl nil numbers nil)
(boolean nonempty-type-decl nil booleans nil)
(number_field_pred const-decl "[number -> boolean]" number_fields
nil)
(number_field nonempty-type-from-decl nil number_fields nil)
(real_pred const-decl "[number_field -> boolean]" reals nil)
(real nonempty-type-from-decl nil reals nil)
(rational_pred const-decl "[real -> boolean]" rationals nil)
(rational nonempty-type-from-decl nil rationals nil)
(integer_pred const-decl "[rational -> boolean]" integers nil)
(int nonempty-type-eq-decl nil integers nil)
(bool nonempty-type-eq-decl nil booleans nil)
(>= const-decl "bool" reals nil)
(nat nonempty-type-eq-decl nil naturalnumbers nil))
shostak)))
|