-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmv_to_tptp.annot
27533 lines (27533 loc) · 609 KB
/
smv_to_tptp.annot
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
"smv_to_tptp.ml" 5 37 41 "smv_to_tptp.ml" 5 37 56
type(
string -> string list -> string
)
ident(
def str_of_md2_name "smv_to_tptp.ml" 13 209 209 "smv_to_tptp.ml" 1 0 -1
)
"smv_to_tptp.ml" 5 37 57 "smv_to_tptp.ml" 5 37 58
type(
string
)
ident(
def f "smv_to_tptp.ml" 5 37 59 "smv_to_tptp.ml" 11 198 207
)
"smv_to_tptp.ml" 5 37 59 "smv_to_tptp.ml" 5 37 66
type(
string list
)
ident(
def var_lst "smv_to_tptp.ml" 6 69 71 "smv_to_tptp.ml" 11 198 207
)
"smv_to_tptp.ml" 6 69 77 "smv_to_tptp.ml" 6 69 84
type(
string list
)
ident(
int_ref var_lst "smv_to_tptp.ml" 5 37 59 "smv_to_tptp.ml" 5 37 66
)
"smv_to_tptp.ml" 7 90 94 "smv_to_tptp.ml" 7 90 96
type(
string list
)
"smv_to_tptp.ml" 7 90 100 "smv_to_tptp.ml" 7 90 101
type(
string
)
ident(
int_ref f "smv_to_tptp.ml" 5 37 57 "smv_to_tptp.ml" 5 37 58
)
"smv_to_tptp.ml" 7 90 101 "smv_to_tptp.ml" 7 90 102
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 7 90 102 "smv_to_tptp.ml" 7 90 106
type(
string
)
"smv_to_tptp.ml" 7 90 100 "smv_to_tptp.ml" 7 90 106
call(
tail
)
type(
string
)
"smv_to_tptp.ml" 8 107 112 "smv_to_tptp.ml" 8 107 113
type(
string
)
ident(
def h "smv_to_tptp.ml" 8 107 118 "smv_to_tptp.ml" 8 107 129
)
"smv_to_tptp.ml" 8 107 111 "smv_to_tptp.ml" 8 107 114
type(
string list
)
"smv_to_tptp.ml" 8 107 118 "smv_to_tptp.ml" 8 107 119
type(
string
)
ident(
int_ref f "smv_to_tptp.ml" 5 37 57 "smv_to_tptp.ml" 5 37 58
)
"smv_to_tptp.ml" 8 107 119 "smv_to_tptp.ml" 8 107 120
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 8 107 120 "smv_to_tptp.ml" 8 107 123
type(
string
)
"smv_to_tptp.ml" 8 107 123 "smv_to_tptp.ml" 8 107 124
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 8 107 124 "smv_to_tptp.ml" 8 107 125
type(
string
)
ident(
int_ref h "smv_to_tptp.ml" 8 107 112 "smv_to_tptp.ml" 8 107 113
)
"smv_to_tptp.ml" 8 107 125 "smv_to_tptp.ml" 8 107 126
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 8 107 126 "smv_to_tptp.ml" 8 107 129
type(
string
)
"smv_to_tptp.ml" 8 107 124 "smv_to_tptp.ml" 8 107 129
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 8 107 120 "smv_to_tptp.ml" 8 107 129
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 8 107 118 "smv_to_tptp.ml" 8 107 129
call(
tail
)
type(
string
)
"smv_to_tptp.ml" 9 130 134 "smv_to_tptp.ml" 9 130 135
type(
string
)
ident(
def h "smv_to_tptp.ml" 9 130 143 "smv_to_tptp.ml" 11 198 207
)
"smv_to_tptp.ml" 9 130 137 "smv_to_tptp.ml" 9 130 139
type(
string list
)
ident(
def tl "smv_to_tptp.ml" 9 130 143 "smv_to_tptp.ml" 11 198 207
)
"smv_to_tptp.ml" 9 130 134 "smv_to_tptp.ml" 9 130 139
type(
string list
)
"smv_to_tptp.ml" 9 130 143 "smv_to_tptp.ml" 9 130 144
type(
string
)
ident(
int_ref f "smv_to_tptp.ml" 5 37 57 "smv_to_tptp.ml" 5 37 58
)
"smv_to_tptp.ml" 9 130 144 "smv_to_tptp.ml" 9 130 145
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 9 130 145 "smv_to_tptp.ml" 9 130 148
type(
string
)
"smv_to_tptp.ml" 9 130 148 "smv_to_tptp.ml" 9 130 149
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 10 150 156 "smv_to_tptp.ml" 10 150 170
type(
(string -> string -> string) -> string -> string list -> string
)
ident(
ext_ref List.fold_left
)
"smv_to_tptp.ml" 10 150 176 "smv_to_tptp.ml" 10 150 177
type(
string
)
ident(
def a "smv_to_tptp.ml" 10 150 178 "smv_to_tptp.ml" 10 150 190
)
"smv_to_tptp.ml" 10 150 178 "smv_to_tptp.ml" 10 150 179
type(
string
)
ident(
def b "smv_to_tptp.ml" 10 150 183 "smv_to_tptp.ml" 10 150 190
)
"smv_to_tptp.ml" 10 150 183 "smv_to_tptp.ml" 10 150 184
type(
string
)
ident(
int_ref a "smv_to_tptp.ml" 10 150 176 "smv_to_tptp.ml" 10 150 177
)
"smv_to_tptp.ml" 10 150 184 "smv_to_tptp.ml" 10 150 185
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 10 150 185 "smv_to_tptp.ml" 10 150 188
type(
string
)
"smv_to_tptp.ml" 10 150 188 "smv_to_tptp.ml" 10 150 189
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 10 150 189 "smv_to_tptp.ml" 10 150 190
type(
string
)
ident(
int_ref b "smv_to_tptp.ml" 10 150 178 "smv_to_tptp.ml" 10 150 179
)
"smv_to_tptp.ml" 10 150 185 "smv_to_tptp.ml" 10 150 190
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 10 150 183 "smv_to_tptp.ml" 10 150 190
call(
tail
)
type(
string
)
"smv_to_tptp.ml" 10 150 171 "smv_to_tptp.ml" 10 150 191
type(
string -> string -> string
)
"smv_to_tptp.ml" 10 150 192 "smv_to_tptp.ml" 10 150 193
type(
string
)
ident(
int_ref h "smv_to_tptp.ml" 9 130 134 "smv_to_tptp.ml" 9 130 135
)
"smv_to_tptp.ml" 10 150 194 "smv_to_tptp.ml" 10 150 196
type(
string list
)
ident(
int_ref tl "smv_to_tptp.ml" 9 130 137 "smv_to_tptp.ml" 9 130 139
)
"smv_to_tptp.ml" 10 150 155 "smv_to_tptp.ml" 10 150 197
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 11 198 203 "smv_to_tptp.ml" 11 198 204
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 11 198 204 "smv_to_tptp.ml" 11 198 207
type(
string
)
"smv_to_tptp.ml" 10 150 155 "smv_to_tptp.ml" 11 198 207
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 9 130 145 "smv_to_tptp.ml" 11 198 207
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 9 130 143 "smv_to_tptp.ml" 11 198 207
call(
tail
)
type(
string
)
"smv_to_tptp.ml" 6 69 71 "smv_to_tptp.ml" 11 198 207
type(
string
)
"smv_to_tptp.ml" 15 249 257 "smv_to_tptp.ml" 15 249 265
type(
string -> string list -> Parsed.decl list -> Parsed.decl
)
ident(
def find_mdl "smv_to_tptp.ml" 15 249 249 "smv_to_tptp.ml" 1 0 -1
)
"smv_to_tptp.ml" 15 249 266 "smv_to_tptp.ml" 15 249 271
type(
string
)
ident(
def m_nam "smv_to_tptp.ml" 15 249 272 "smv_to_tptp.ml" 21 489 527
)
"smv_to_tptp.ml" 15 249 272 "smv_to_tptp.ml" 15 249 278
type(
string list
)
ident(
def m_vars "smv_to_tptp.ml" 15 249 279 "smv_to_tptp.ml" 21 489 527
)
"smv_to_tptp.ml" 15 249 279 "smv_to_tptp.ml" 15 249 285
type(
Parsed.decl list
)
ident(
def md_lst "smv_to_tptp.ml" 16 287 289 "smv_to_tptp.ml" 21 489 527
)
"smv_to_tptp.ml" 16 287 295 "smv_to_tptp.ml" 16 287 301
type(
Parsed.decl list
)
ident(
int_ref md_lst "smv_to_tptp.ml" 15 249 279 "smv_to_tptp.ml" 15 249 285
)
"smv_to_tptp.ml" 17 307 311 "smv_to_tptp.ml" 17 307 313
type(
Parsed.decl list
)
"smv_to_tptp.ml" 17 307 317 "smv_to_tptp.ml" 17 307 322
type(
exn -> Parsed.decl
)
ident(
ext_ref Pervasives.raise
)
"smv_to_tptp.ml" 17 307 344 "smv_to_tptp.ml" 17 307 359
type(
string -> string list -> string
)
ident(
int_ref str_of_md2_name "smv_to_tptp.ml" 5 37 41 "smv_to_tptp.ml" 5 37 56
)
"smv_to_tptp.ml" 17 307 360 "smv_to_tptp.ml" 17 307 365
type(
string
)
ident(
int_ref m_nam "smv_to_tptp.ml" 15 249 266 "smv_to_tptp.ml" 15 249 271
)
"smv_to_tptp.ml" 17 307 366 "smv_to_tptp.ml" 17 307 372
type(
string list
)
ident(
int_ref m_vars "smv_to_tptp.ml" 15 249 272 "smv_to_tptp.ml" 15 249 278
)
"smv_to_tptp.ml" 17 307 343 "smv_to_tptp.ml" 17 307 373
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 17 307 323 "smv_to_tptp.ml" 17 307 374
type(
exn
)
"smv_to_tptp.ml" 17 307 317 "smv_to_tptp.ml" 17 307 374
type(
Parsed.decl
)
"smv_to_tptp.ml" 18 375 388 "smv_to_tptp.ml" 18 375 391
type(
string
)
ident(
def nam "smv_to_tptp.ml" 19 427 432 "smv_to_tptp.ml" 20 454 488
)
"smv_to_tptp.ml" 18 375 393 "smv_to_tptp.ml" 18 375 397
type(
string list
)
ident(
def vars "smv_to_tptp.ml" 19 427 432 "smv_to_tptp.ml" 20 454 488
)
"smv_to_tptp.ml" 18 375 399 "smv_to_tptp.ml" 18 375 409
type(
Parsed.var_decl list
)
ident(
def var_dec_ls "smv_to_tptp.ml" 19 427 432 "smv_to_tptp.ml" 20 454 488
)
"smv_to_tptp.ml" 18 375 411 "smv_to_tptp.ml" 18 375 412
type(
Parsed.assign list
)
"smv_to_tptp.ml" 18 375 379 "smv_to_tptp.ml" 18 375 414
type(
Parsed.decl
)
"smv_to_tptp.ml" 18 375 418 "smv_to_tptp.ml" 18 375 419
ident(
def h "smv_to_tptp.ml" 19 427 432 "smv_to_tptp.ml" 20 454 488
)
"smv_to_tptp.ml" 18 375 379 "smv_to_tptp.ml" 18 375 419
type(
Parsed.decl
)
"smv_to_tptp.ml" 18 375 421 "smv_to_tptp.ml" 18 375 423
type(
Parsed.decl list
)
ident(
def tl "smv_to_tptp.ml" 19 427 432 "smv_to_tptp.ml" 20 454 488
)
"smv_to_tptp.ml" 18 375 379 "smv_to_tptp.ml" 18 375 423
type(
Parsed.decl list
)
"smv_to_tptp.ml" 19 427 435 "smv_to_tptp.ml" 19 427 438
type(
string
)
ident(
int_ref nam "smv_to_tptp.ml" 18 375 388 "smv_to_tptp.ml" 18 375 391
)
"smv_to_tptp.ml" 19 427 439 "smv_to_tptp.ml" 19 427 440
type(
string -> string -> bool
)
ident(
ext_ref Pervasives.( = )
)
"smv_to_tptp.ml" 19 427 441 "smv_to_tptp.ml" 19 427 446
type(
string
)
ident(
int_ref m_nam "smv_to_tptp.ml" 15 249 266 "smv_to_tptp.ml" 15 249 271
)
"smv_to_tptp.ml" 19 427 435 "smv_to_tptp.ml" 19 427 446
type(
bool
)
"smv_to_tptp.ml" 19 427 452 "smv_to_tptp.ml" 19 427 453
type(
Parsed.decl
)
ident(
int_ref h "smv_to_tptp.ml" 18 375 379 "smv_to_tptp.ml" 18 375 419
)
"smv_to_tptp.ml" 20 454 464 "smv_to_tptp.ml" 20 454 472
type(
string -> string list -> Parsed.decl list -> Parsed.decl
)
ident(
int_ref find_mdl "smv_to_tptp.ml" 15 249 257 "smv_to_tptp.ml" 15 249 265
)
"smv_to_tptp.ml" 20 454 473 "smv_to_tptp.ml" 20 454 478
type(
string
)
ident(
int_ref m_nam "smv_to_tptp.ml" 15 249 266 "smv_to_tptp.ml" 15 249 271
)
"smv_to_tptp.ml" 20 454 479 "smv_to_tptp.ml" 20 454 485
type(
string list
)
ident(
int_ref m_vars "smv_to_tptp.ml" 15 249 272 "smv_to_tptp.ml" 15 249 278
)
"smv_to_tptp.ml" 20 454 486 "smv_to_tptp.ml" 20 454 488
type(
Parsed.decl list
)
ident(
int_ref tl "smv_to_tptp.ml" 18 375 421 "smv_to_tptp.ml" 18 375 423
)
"smv_to_tptp.ml" 20 454 464 "smv_to_tptp.ml" 20 454 488
call(
tail
)
type(
Parsed.decl
)
"smv_to_tptp.ml" 19 427 432 "smv_to_tptp.ml" 20 454 488
type(
Parsed.decl
)
"smv_to_tptp.ml" 21 489 493 "smv_to_tptp.ml" 21 489 494
type(
Parsed.decl
)
"smv_to_tptp.ml" 21 489 497 "smv_to_tptp.ml" 21 489 499
type(
Parsed.decl list
)
ident(
def tl "smv_to_tptp.ml" 21 489 503 "smv_to_tptp.ml" 21 489 527
)
"smv_to_tptp.ml" 21 489 493 "smv_to_tptp.ml" 21 489 499
type(
Parsed.decl list
)
"smv_to_tptp.ml" 21 489 503 "smv_to_tptp.ml" 21 489 511
type(
string -> string list -> Parsed.decl list -> Parsed.decl
)
ident(
int_ref find_mdl "smv_to_tptp.ml" 15 249 257 "smv_to_tptp.ml" 15 249 265
)
"smv_to_tptp.ml" 21 489 512 "smv_to_tptp.ml" 21 489 517
type(
string
)
ident(
int_ref m_nam "smv_to_tptp.ml" 15 249 266 "smv_to_tptp.ml" 15 249 271
)
"smv_to_tptp.ml" 21 489 518 "smv_to_tptp.ml" 21 489 524
type(
string list
)
ident(
int_ref m_vars "smv_to_tptp.ml" 15 249 272 "smv_to_tptp.ml" 15 249 278
)
"smv_to_tptp.ml" 21 489 525 "smv_to_tptp.ml" 21 489 527
type(
Parsed.decl list
)
ident(
int_ref tl "smv_to_tptp.ml" 21 489 497 "smv_to_tptp.ml" 21 489 499
)
"smv_to_tptp.ml" 21 489 503 "smv_to_tptp.ml" 21 489 527
call(
tail
)
type(
Parsed.decl
)
"smv_to_tptp.ml" 16 287 289 "smv_to_tptp.ml" 21 489 527
type(
Parsed.decl
)
"smv_to_tptp.ml" 27 587 595 "smv_to_tptp.ml" 27 587 610
type(
?var_md:string -> Parsed.var_decl list -> Parsed.decl list -> string list
)
ident(
def lst_str_of_vars "smv_to_tptp.ml" 27 587 587 "smv_to_tptp.ml" 1 0 -1
)
"smv_to_tptp.ml" 27 587 620 "smv_to_tptp.ml" 27 587 626
type(
string
)
"smv_to_tptp.ml" 27 587 628 "smv_to_tptp.ml" 27 587 630
type(
string
)
type(
string
)
ident(
int_ref *sth* "smv_to_tptp.ml" 27 587 628 "smv_to_tptp.ml" 27 587 630
)
type(
string option
)
type(
string option
)
type(
string
)
"smv_to_tptp.ml" 27 587 632 "smv_to_tptp.ml" 27 587 636
type(
Parsed.var_decl list
)
ident(
def vars "smv_to_tptp.ml" 27 587 637 "smv_to_tptp.ml" 47 1259 1288
)
"smv_to_tptp.ml" 27 587 637 "smv_to_tptp.ml" 27 587 643
type(
Parsed.decl list
)
ident(
def md_lst "smv_to_tptp.ml" 28 646 648 "smv_to_tptp.ml" 47 1259 1288
)
"smv_to_tptp.ml" 28 646 654 "smv_to_tptp.ml" 28 646 658
type(
Parsed.var_decl list
)
ident(
int_ref vars "smv_to_tptp.ml" 27 587 632 "smv_to_tptp.ml" 27 587 636
)
"smv_to_tptp.ml" 29 664 668 "smv_to_tptp.ml" 29 664 670
type(
Parsed.var_decl list
)
"smv_to_tptp.ml" 29 664 674 "smv_to_tptp.ml" 29 664 676
type(
string list
)
"smv_to_tptp.ml" 30 677 690 "smv_to_tptp.ml" 30 677 694
ident(
def bvar "smv_to_tptp.ml" 31 706 711 "smv_to_tptp.ml" 35 813 865
)
"smv_to_tptp.ml" 30 677 689 "smv_to_tptp.ml" 30 677 695
type(
string
)
"smv_to_tptp.ml" 30 677 681 "smv_to_tptp.ml" 30 677 696
type(
Parsed.var_decl
)
"smv_to_tptp.ml" 30 677 700 "smv_to_tptp.ml" 30 677 702
type(
Parsed.var_decl list
)
ident(
def tl "smv_to_tptp.ml" 31 706 711 "smv_to_tptp.ml" 35 813 865
)
"smv_to_tptp.ml" 30 677 681 "smv_to_tptp.ml" 30 677 702
type(
Parsed.var_decl list
)
"smv_to_tptp.ml" 31 706 714 "smv_to_tptp.ml" 31 706 720
type(
string
)
ident(
int_ref var_md "smv_to_tptp.ml" 27 587 620 "smv_to_tptp.ml" 27 587 626
)
"smv_to_tptp.ml" 31 706 721 "smv_to_tptp.ml" 31 706 722
type(
string -> string -> bool
)
ident(
ext_ref Pervasives.( = )
)
"smv_to_tptp.ml" 31 706 723 "smv_to_tptp.ml" 31 706 725
type(
string
)
"smv_to_tptp.ml" 31 706 714 "smv_to_tptp.ml" 31 706 725
type(
bool
)
"smv_to_tptp.ml" 32 731 739 "smv_to_tptp.ml" 32 731 743
type(
string
)
ident(
int_ref bvar "smv_to_tptp.ml" 30 677 689 "smv_to_tptp.ml" 30 677 695
)
"smv_to_tptp.ml" 32 731 747 "smv_to_tptp.ml" 32 731 762
type(
?var_md:string -> Parsed.var_decl list -> Parsed.decl list -> string list
)
ident(
int_ref lst_str_of_vars "smv_to_tptp.ml" 27 587 595 "smv_to_tptp.ml" 27 587 610
)
"smv_to_tptp.ml" 32 731 763 "smv_to_tptp.ml" 32 731 765
type(
Parsed.var_decl list
)
ident(
int_ref tl "smv_to_tptp.ml" 30 677 700 "smv_to_tptp.ml" 30 677 702
)
"smv_to_tptp.ml" 32 731 766 "smv_to_tptp.ml" 32 731 772
type(
Parsed.decl list
)
ident(
int_ref md_lst "smv_to_tptp.ml" 27 587 637 "smv_to_tptp.ml" 27 587 643
)
"smv_to_tptp.ml" 32 731 747 "smv_to_tptp.ml" 32 731 772
call(
stack
)
type(
string list
)
"smv_to_tptp.ml" 32 731 739 "smv_to_tptp.ml" 32 731 772
type(
string list
)
"smv_to_tptp.ml" 34 783 791 "smv_to_tptp.ml" 34 783 797
type(
string
)
ident(
int_ref var_md "smv_to_tptp.ml" 27 587 620 "smv_to_tptp.ml" 27 587 626
)
"smv_to_tptp.ml" 34 783 798 "smv_to_tptp.ml" 34 783 799
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 34 783 800 "smv_to_tptp.ml" 34 783 803
type(
string
)
"smv_to_tptp.ml" 34 783 804 "smv_to_tptp.ml" 34 783 805
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 34 783 806 "smv_to_tptp.ml" 34 783 810
type(
string
)
ident(
int_ref bvar "smv_to_tptp.ml" 30 677 689 "smv_to_tptp.ml" 30 677 695
)
"smv_to_tptp.ml" 34 783 800 "smv_to_tptp.ml" 34 783 810
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 34 783 790 "smv_to_tptp.ml" 34 783 811
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 35 813 823 "smv_to_tptp.ml" 35 813 838
type(
?var_md:string -> Parsed.var_decl list -> Parsed.decl list -> string list
)
ident(
int_ref lst_str_of_vars "smv_to_tptp.ml" 27 587 595 "smv_to_tptp.ml" 27 587 610
)
"smv_to_tptp.ml" 35 813 847 "smv_to_tptp.ml" 35 813 855
type(
string
)
ident(
int_ref var_md "smv_to_tptp.ml" 27 587 620 "smv_to_tptp.ml" 27 587 626
)
"smv_to_tptp.ml" 35 813 856 "smv_to_tptp.ml" 35 813 858
type(
Parsed.var_decl list
)
ident(
int_ref tl "smv_to_tptp.ml" 30 677 700 "smv_to_tptp.ml" 30 677 702
)
"smv_to_tptp.ml" 35 813 859 "smv_to_tptp.ml" 35 813 865
type(
Parsed.decl list
)
ident(
int_ref md_lst "smv_to_tptp.ml" 27 587 637 "smv_to_tptp.ml" 27 587 643
)
"smv_to_tptp.ml" 35 813 823 "smv_to_tptp.ml" 35 813 865
call(
stack
)
type(
string list
)
"smv_to_tptp.ml" 34 783 790 "smv_to_tptp.ml" 35 813 865
type(
string list
)
"smv_to_tptp.ml" 31 706 711 "smv_to_tptp.ml" 35 813 865
type(
string list
)
"smv_to_tptp.ml" 36 866 876 "smv_to_tptp.ml" 36 866 879
type(
string
)
ident(
def elm "smv_to_tptp.ml" 37 896 901 "smv_to_tptp.ml" 41 999 1051
)
"smv_to_tptp.ml" 36 866 881 "smv_to_tptp.ml" 36 866 882
type(
string list
)
"smv_to_tptp.ml" 36 866 870 "smv_to_tptp.ml" 36 866 885
type(
Parsed.var_decl
)
"smv_to_tptp.ml" 36 866 889 "smv_to_tptp.ml" 36 866 891
type(
Parsed.var_decl list
)
ident(
def tl "smv_to_tptp.ml" 37 896 901 "smv_to_tptp.ml" 41 999 1051
)
"smv_to_tptp.ml" 36 866 870 "smv_to_tptp.ml" 36 866 891
type(
Parsed.var_decl list
)
"smv_to_tptp.ml" 37 896 904 "smv_to_tptp.ml" 37 896 910
type(
string
)
ident(
int_ref var_md "smv_to_tptp.ml" 27 587 620 "smv_to_tptp.ml" 27 587 626
)
"smv_to_tptp.ml" 37 896 911 "smv_to_tptp.ml" 37 896 912
type(
string -> string -> bool
)
ident(
ext_ref Pervasives.( = )
)
"smv_to_tptp.ml" 37 896 913 "smv_to_tptp.ml" 37 896 915
type(
string
)
"smv_to_tptp.ml" 37 896 904 "smv_to_tptp.ml" 37 896 915
type(
bool
)
"smv_to_tptp.ml" 38 920 927 "smv_to_tptp.ml" 38 920 930
type(
string
)
ident(
int_ref elm "smv_to_tptp.ml" 36 866 876 "smv_to_tptp.ml" 36 866 879
)
"smv_to_tptp.ml" 38 920 934 "smv_to_tptp.ml" 38 920 949
type(
?var_md:string -> Parsed.var_decl list -> Parsed.decl list -> string list
)
ident(
int_ref lst_str_of_vars "smv_to_tptp.ml" 27 587 595 "smv_to_tptp.ml" 27 587 610
)
"smv_to_tptp.ml" 38 920 950 "smv_to_tptp.ml" 38 920 952
type(
Parsed.var_decl list
)
ident(
int_ref tl "smv_to_tptp.ml" 36 866 889 "smv_to_tptp.ml" 36 866 891
)
"smv_to_tptp.ml" 38 920 953 "smv_to_tptp.ml" 38 920 959
type(
Parsed.decl list
)
ident(
int_ref md_lst "smv_to_tptp.ml" 27 587 637 "smv_to_tptp.ml" 27 587 643
)
"smv_to_tptp.ml" 38 920 934 "smv_to_tptp.ml" 38 920 959
call(
stack
)
type(
string list
)
"smv_to_tptp.ml" 38 920 927 "smv_to_tptp.ml" 38 920 959
type(
string list
)
"smv_to_tptp.ml" 40 975 983 "smv_to_tptp.ml" 40 975 989
type(
string
)
ident(
int_ref var_md "smv_to_tptp.ml" 27 587 620 "smv_to_tptp.ml" 27 587 626
)
"smv_to_tptp.ml" 40 975 989 "smv_to_tptp.ml" 40 975 990
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 40 975 990 "smv_to_tptp.ml" 40 975 993
type(
string
)
"smv_to_tptp.ml" 40 975 993 "smv_to_tptp.ml" 40 975 994
type(
string -> string -> string
)
ident(
ext_ref Pervasives.( ^ )
)
"smv_to_tptp.ml" 40 975 994 "smv_to_tptp.ml" 40 975 997
type(
string
)
ident(
int_ref elm "smv_to_tptp.ml" 36 866 876 "smv_to_tptp.ml" 36 866 879
)
"smv_to_tptp.ml" 40 975 990 "smv_to_tptp.ml" 40 975 997
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 40 975 982 "smv_to_tptp.ml" 40 975 998
call(
stack
)
type(
string
)
"smv_to_tptp.ml" 41 999 1009 "smv_to_tptp.ml" 41 999 1024
type(
?var_md:string -> Parsed.var_decl list -> Parsed.decl list -> string list
)
ident(
int_ref lst_str_of_vars "smv_to_tptp.ml" 27 587 595 "smv_to_tptp.ml" 27 587 610
)
"smv_to_tptp.ml" 41 999 1033 "smv_to_tptp.ml" 41 999 1041
type(
string
)
ident(
int_ref var_md "smv_to_tptp.ml" 27 587 620 "smv_to_tptp.ml" 27 587 626
)
"smv_to_tptp.ml" 41 999 1042 "smv_to_tptp.ml" 41 999 1044
type(
Parsed.var_decl list
)
ident(
int_ref tl "smv_to_tptp.ml" 36 866 889 "smv_to_tptp.ml" 36 866 891
)
"smv_to_tptp.ml" 41 999 1045 "smv_to_tptp.ml" 41 999 1051
type(
Parsed.decl list
)
ident(
int_ref md_lst "smv_to_tptp.ml" 27 587 637 "smv_to_tptp.ml" 27 587 643
)
"smv_to_tptp.ml" 41 999 1009 "smv_to_tptp.ml" 41 999 1051
call(
stack
)
type(
string list
)
"smv_to_tptp.ml" 40 975 982 "smv_to_tptp.ml" 41 999 1051
type(
string list
)
"smv_to_tptp.ml" 37 896 901 "smv_to_tptp.ml" 41 999 1051
type(
string list
)
"smv_to_tptp.ml" 42 1052 1062 "smv_to_tptp.ml" 42 1052 1066
type(
string
)
ident(
def name "smv_to_tptp.ml" 43 1091 1096 "smv_to_tptp.ml" 47 1259 1288
)
"smv_to_tptp.ml" 42 1052 1068 "smv_to_tptp.ml" 42 1052 1070
type(
string
)
ident(
def st "smv_to_tptp.ml" 43 1091 1096 "smv_to_tptp.ml" 47 1259 1288
)
"smv_to_tptp.ml" 42 1052 1072 "smv_to_tptp.ml" 42 1052 1078
type(
string list
)
ident(
def st_lst "smv_to_tptp.ml" 43 1091 1096 "smv_to_tptp.ml" 47 1259 1288
)
"smv_to_tptp.ml" 42 1052 1056 "smv_to_tptp.ml" 42 1052 1080
type(
Parsed.var_decl
)
"smv_to_tptp.ml" 42 1052 1084 "smv_to_tptp.ml" 42 1052 1086
type(
Parsed.var_decl list
)
ident(
def tl "smv_to_tptp.ml" 43 1091 1096 "smv_to_tptp.ml" 47 1259 1288
)
"smv_to_tptp.ml" 42 1052 1056 "smv_to_tptp.ml" 42 1052 1086
type(