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
|
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | Deterministic task-wide TPTP preparation for checked typed problems.
module Felix.Checking.Backend.Tptp
( TypedFormulaOccurrence(..)
, TypedTptpNameOrigin(..)
, PreparedTypedTptpProblem
, prepareTypedTptpProblem
, preparedTypedTptpRoute
, preparedTypedTptpText
, preparedTypedTptpTextNewline
, preparedTypedTptpConjectureText
, preparedTypedTptpNameOrigins
, TypedTptpPreparationError(..)
) where
import Base hiding (Empty)
import Felix.Checking.Backend.Problem
import Felix.Checking.Core
import Tptp.UnsortedFirstOrder qualified as Tptp
import Control.Monad (foldM)
import Control.Monad.State.Strict (StateT)
import Control.Monad.State.Strict qualified as State
import Control.Monad.Trans.Class (lift)
import Data.Map.Strict qualified as Map
import Data.Set qualified as Set
import Data.Text qualified as Text
import Data.Vector qualified as Vector
import Numeric.Natural (Natural)
import TextBuilder
data TypedFormulaOccurrence ref
= TypedGlobalPremiseOccurrence !ref
| TypedLocalPremiseOccurrence !LocalPremiseOrdinal
| TypedAuxiliaryOccurrence !Natural
| TypedConjectureOccurrence
deriving stock (Show, Eq, Ord)
data TypedTptpNameOrigin ref local global
= TypedGlobalNameOrigin !global
| TypedLocalNameOrigin !local
| TypedIntrinsicNameOrigin !CoreIntrinsicTag
| TypedIntegerNameOrigin !Integer
| TypedBinderNameOrigin !Natural
| TypedFormulaNameOrigin !(TypedFormulaOccurrence ref)
deriving stock (Show, Eq, Ord)
data PreparedTypedTptpProblem ref local global =
PreparedTypedTptpProblem
!TypedProblemRoute
!Text
!Text
!(Map
Text
(TypedTptpNameOrigin ref local global))
deriving stock (Eq)
preparedTypedTptpRoute
:: PreparedTypedTptpProblem ref local global
-> TypedProblemRoute
preparedTypedTptpRoute
(PreparedTypedTptpProblem
route
_text
_conjecture
_origins) =
route
preparedTypedTptpText
:: PreparedTypedTptpProblem ref local global
-> Text
preparedTypedTptpText
(PreparedTypedTptpProblem
_route
problemText
_conjecture
_origins) =
problemText
preparedTypedTptpTextNewline
:: PreparedTypedTptpProblem ref local global
-> Text
preparedTypedTptpTextNewline =
(`Text.snoc` '\n')
. preparedTypedTptpText
preparedTypedTptpConjectureText
:: PreparedTypedTptpProblem ref local global
-> Text
preparedTypedTptpConjectureText
(PreparedTypedTptpProblem
_route
_text
conjecture
_origins) =
conjecture
preparedTypedTptpNameOrigins
:: PreparedTypedTptpProblem ref local global
-> Map
Text
(TypedTptpNameOrigin ref local global)
preparedTypedTptpNameOrigins
(PreparedTypedTptpProblem
_route
_text
_conjecture
origins) =
origins
data TypedTptpPreparationError local global
= InvalidGeneratedTypedTptpName !Text
| DuplicateGeneratedTypedTptpName !Text
| TypedTptpUnknownGlobal !global
| TypedTptpUnknownLocal !local
| TypedTptpUnboundIndex !Natural
| TypedTptpFofProjectionMismatch
deriving stock (Show, Eq)
data NameEnvironment ref local global =
NameEnvironment
!(Map global Tptp.AtomicWord)
!(Map global CoreType)
!(Map local Tptp.AtomicWord)
!(Map CoreIntrinsicTag Tptp.AtomicWord)
!(Map Integer Tptp.AtomicWord)
!(Map
Text
(TypedTptpNameOrigin ref local global))
data RenderState ref local global =
RenderState
!Natural
!Natural
!(Map
Text
(TypedTptpNameOrigin ref local global))
type Render ref local global =
StateT
(RenderState ref local global)
(Either
(TypedTptpPreparationError local global))
data RenderedFormula ref = RenderedFormula
!Tptp.AtomicWord
!(TypedFormulaOccurrence ref)
!TextBuilder
data BoundTarget
= BoundFofVariable !Tptp.Variable
| BoundTh0Variable !Tptp.Variable
| AmbientConstant !Tptp.AtomicWord
prepareTypedTptpProblem
:: (Ord local, Ord global)
=> TypedProblem ref local origin global
-> Either
(TypedTptpPreparationError local global)
(PreparedTypedTptpProblem ref local global)
prepareTypedTptpProblem problem = do
names <-
allocateNames problem
let initialState =
RenderState
0
0
(nameEnvironmentOrigins names)
(rendered, finalState) <-
State.runStateT
(renderProblem names problem)
initialState
let (problemBuilder, conjectureBuilder) =
rendered
RenderState _nextBinder _nextHypothesis origins =
finalState
pure
(PreparedTypedTptpProblem
(typedProblemRoute problem)
(TextBuilder.toText problemBuilder)
(TextBuilder.toText conjectureBuilder)
origins)
allocateNames
:: (Ord local, Ord global)
=> TypedProblem ref local origin global
-> Either
(TypedTptpPreparationError local global)
(NameEnvironment ref local global)
allocateNames problem = do
globalAllocations <-
allocateCategory
"tg_g"
TypedGlobalNameOrigin
(Map.keys
(typedProblemGlobalTypes
problem))
localAllocations <-
allocateCategory
"tg_l"
TypedLocalNameOrigin
(Map.keys
(typedProblemLocalTypes
problem))
intrinsicAllocations <-
allocateCategory
"tg_i"
TypedIntrinsicNameOrigin
(Set.toAscList
(problemIntrinsics problem))
integerAllocations <-
allocateCategory
"tg_n"
TypedIntegerNameOrigin
(Set.toAscList
(problemIntegers problem))
origins <-
foldM
(\current (target, nameOrigin) ->
insertOrigin
(Tptp.atomicWordText target)
nameOrigin
current)
Map.empty
( [ (target, nameOrigin)
| (_global, target, nameOrigin) <-
globalAllocations
]
<> [ (target, nameOrigin)
| (_local, target, nameOrigin) <-
localAllocations
]
<> [ (target, nameOrigin)
| (_intrinsic, target, nameOrigin) <-
intrinsicAllocations
]
<> [ (target, nameOrigin)
| (_integer, target, nameOrigin) <-
integerAllocations
]
)
pure
(NameEnvironment
(Map.fromList
[ (global, target)
| (global, target, _nameOrigin) <-
globalAllocations
])
(typedProblemGlobalTypes problem)
(Map.fromList
[ (local, target)
| (local, target, _nameOrigin) <-
localAllocations
])
(Map.fromList
[ (intrinsic, target)
| (intrinsic, target, _nameOrigin) <-
intrinsicAllocations
])
(Map.fromList
[ (integer, target)
| (integer, target, _nameOrigin) <-
integerAllocations
])
origins)
where
allocateCategory prefix makeOrigin semantics =
traverse
(\(ordinal, semantic) -> do
target <-
generatedAtomicWord
(prefix
<> Text.pack
(show ordinal))
pure
( semantic
, target
, makeOrigin semantic
))
(zip [0 :: Int ..] semantics)
nameEnvironmentOrigins
:: NameEnvironment ref local global
-> Map
Text
(TypedTptpNameOrigin ref local global)
nameEnvironmentOrigins
(NameEnvironment
_globals
_globalTypes
_locals
_intrinsics
_integers
origins) =
origins
generatedAtomicWord
:: Text
-> Either
(TypedTptpPreparationError local global)
Tptp.AtomicWord
generatedAtomicWord target =
maybe
(Left
(InvalidGeneratedTypedTptpName
target))
Right
(Tptp.atomicWord target)
generatedVariable
:: Text
-> Either
(TypedTptpPreparationError local global)
Tptp.Variable
generatedVariable target =
maybe
(Left
(InvalidGeneratedTypedTptpName
target))
Right
(Tptp.variable target)
insertOrigin
:: Text
-> TypedTptpNameOrigin ref local global
-> Map
Text
(TypedTptpNameOrigin ref local global)
-> Either
(TypedTptpPreparationError local global)
(Map
Text
(TypedTptpNameOrigin ref local global))
insertOrigin target nameOrigin origins =
if Map.member target origins
then
Left
(DuplicateGeneratedTypedTptpName
target)
else
Right
(Map.insert
target
nameOrigin
origins)
renderProblem
:: (Ord local, Ord global)
=> NameEnvironment ref local global
-> TypedProblem ref local origin global
-> Render
ref
local
global
(TextBuilder, TextBuilder)
renderProblem names problem = do
hypotheses <-
renderHypotheses names problem
conjecture <-
renderConjecture names problem
declarations <-
case typedProblemRoute problem of
RouteFof ->
pure []
RouteTh0 ->
renderTh0Declarations
names
problem
let formulaBuilders =
renderFormulaLine
(typedProblemRoute problem)
"axiom"
<$> hypotheses
conjectureBuilder =
renderFormulaLine
(typedProblemRoute problem)
"conjecture"
conjecture
complete =
intercalate
(char '\n')
(declarations
<> formulaBuilders
<> [conjectureBuilder])
pure
( complete
, conjectureBuilder
)
renderHypotheses
:: (Ord local, Ord global)
=> NameEnvironment ref local global
-> TypedProblem ref local origin global
-> Render
ref
local
global
[RenderedFormula ref]
renderHypotheses names problem = do
globalFormulas <-
traverse
(\fact ->
renderOccurrence
names
problem
(TypedGlobalPremiseOccurrence
(typedBackendFactReference
fact))
(weakenClosedSupportedProposition
(typedBackendFactProposition
fact)))
(Vector.toList
(typedProblemGlobalPremises
problem))
localFormulas <-
traverse
(\premise ->
renderOccurrence
names
problem
(TypedLocalPremiseOccurrence
(typedLocalPremiseOrdinal
premise))
(typedLocalPremiseProposition
premise))
(Vector.toList
(typedProblemLocalPremises
problem))
auxiliaryFormulas <-
traverse
(\auxiliary ->
renderOccurrence
names
problem
(TypedAuxiliaryOccurrence
(typedProblemAuxiliaryOrdinal
auxiliary))
(weakenClosedSupportedProposition
(typedProblemAuxiliaryProposition
auxiliary)))
(Vector.toList
(typedProblemAuxiliaries
problem))
pure
(globalFormulas
<> localFormulas
<> auxiliaryFormulas)
renderConjecture
:: (Ord local, Ord global)
=> NameEnvironment ref local global
-> TypedProblem ref local origin global
-> Render
ref
local
global
(RenderedFormula ref)
renderConjecture names problem =
renderOccurrence
names
problem
TypedConjectureOccurrence
(typedProblemClaim problem)
renderOccurrence
:: (Ord local, Ord global)
=> NameEnvironment ref local global
-> TypedProblem ref local origin global
-> TypedFormulaOccurrence ref
-> SupportedProposition local global
-> Render
ref
local
global
(RenderedFormula ref)
renderOccurrence names problem occurrence proposition = do
target <-
case occurrence of
TypedConjectureOccurrence ->
liftEither
(generatedAtomicWord "tg_q0")
_ -> do
ordinal <-
nextHypothesisOrdinal
liftEither
(generatedAtomicWord
("tg_h"
<> Text.pack
(show ordinal)))
registerOrigin
(Tptp.atomicWordText target)
(TypedFormulaNameOrigin occurrence)
bounds <-
initialBounds
names
proposition
formula <-
case typedProblemRoute problem of
RouteFof ->
renderFofFormula
names
bounds
(supportedPropositionTerm
proposition)
RouteTh0 ->
renderTh0Term
names
bounds
(supportedPropositionTerm
proposition)
pure
(RenderedFormula
target
occurrence
formula)
-- Formula and binder ordinals use separate dense namespaces.
nextHypothesisOrdinal
:: Render ref local global Natural
nextHypothesisOrdinal = do
RenderState nextBinder nextHypothesis origins <-
State.get
State.put
(RenderState
nextBinder
(nextHypothesis + 1)
origins)
pure nextHypothesis
registerOrigin
:: Text
-> TypedTptpNameOrigin ref local global
-> Render ref local global ()
registerOrigin target nameOrigin = do
RenderState nextBinder nextHypothesis origins <-
State.get
origins' <-
liftEither
(insertOrigin
target
nameOrigin
origins)
State.put
(RenderState
nextBinder
nextHypothesis
origins')
freshBinder
:: Render ref local global Tptp.Variable
freshBinder = do
RenderState nextBinder nextHypothesis origins <-
State.get
let target =
"V" <> Text.pack (show nextBinder)
variable <-
liftEither
(generatedVariable target)
origins' <-
liftEither
(insertOrigin
target
(TypedBinderNameOrigin
nextBinder)
origins)
State.put
(RenderState
(nextBinder + 1)
nextHypothesis
origins')
pure variable
liftEither
:: Either
(TypedTptpPreparationError local global)
value
-> Render ref local global value
liftEither =
lift
initialBounds
:: Ord local
=> NameEnvironment ref local global
-> SupportedProposition local global
-> Render ref local global [BoundTarget]
initialBounds
(NameEnvironment
_globals
_globalTypes
localNames
_intrinsics
_integers
_origins)
proposition =
traverse
(\(local, _coreType) ->
maybe
(lift
(Left
(TypedTptpUnknownLocal
local)))
(pure . AmbientConstant)
(Map.lookup
local
localNames))
(Vector.toList
(supportedPropositionSupport
proposition))
renderFormulaLine
:: TypedProblemRoute
-> TextBuilder
-> RenderedFormula ref
-> TextBuilder
renderFormulaLine route role
(RenderedFormula target _occurrence formula) =
dialect
<> char '('
<> Tptp.buildAtomicWord target
<> char ','
<> role
<> char ','
<> formula
<> text ")."
where
dialect =
case route of
RouteFof ->
text "fof"
RouteTh0 ->
text "thf"
renderFofFormula
:: (Ord global)
=> NameEnvironment ref local global
-> [BoundTarget]
-> CanonicalTerm global
-> Render ref local global TextBuilder
renderFofFormula names bounds = \case
CFalsum ->
pure (text "$false")
CImp premise conclusion -> do
premise' <-
renderFofFormula names bounds premise
conclusion' <-
renderFofFormula names bounds conclusion
pure
(parenthesize
(premise'
<> text "=>"
<> conclusion'))
CEq TySet left right -> do
left' <-
renderFofTerm names bounds left
right' <-
renderFofTerm names bounds right
pure
(parenthesize
(left'
<> char '='
<> right'))
CEq TyProp left right -> do
left' <-
renderFofFormula names bounds left
right' <-
renderFofFormula names bounds right
pure
(parenthesize
(left'
<> text "<=>"
<> right'))
CForall TySet body -> do
variable <-
freshBinder
body' <-
renderFofFormula
names
(BoundFofVariable variable
: bounds)
body
pure
(parenthesize
(text "!["
<> Tptp.buildVariable variable
<> text "]:"
<> body'))
application ->
renderFofApplication
names
bounds
TyProp
application
renderFofTerm
:: Ord global
=> NameEnvironment ref local global
-> [BoundTarget]
-> CanonicalTerm global
-> Render ref local global TextBuilder
renderFofTerm names bounds = \case
CBound index ->
renderBound index bounds
CGlobal global ->
Tptp.buildAtomicWord
<$> lookupGlobal names global
CIntrinsic intrinsic ->
Tptp.buildAtomicWord
<$> lookupIntrinsic names intrinsic
COpaqueInteger integer ->
Tptp.buildAtomicWord
<$> lookupInteger names integer
application ->
renderFofApplication
names
bounds
TySet
application
renderFofApplication
:: Ord global
=> NameEnvironment ref local global
-> [BoundTarget]
-> CoreType
-> CanonicalTerm global
-> Render ref local global TextBuilder
renderFofApplication names bounds expected application =
case applicationHead application of
(CGlobal global, arguments) -> do
coreType <-
maybe
(lift
(Left
(TypedTptpUnknownGlobal
global)))
pure
(Map.lookup
global
(nameEnvironmentGlobalTypes
names))
renderHead
coreType
(lookupGlobal names global)
arguments
(CIntrinsic intrinsic, arguments) ->
renderHead
(coreIntrinsicType intrinsic)
(lookupIntrinsic names intrinsic)
arguments
_ ->
lift
(Left
TypedTptpFofProjectionMismatch)
where
renderHead coreType targetAction arguments = do
unlessFofApplication
expected
coreType
arguments
target <-
targetAction
arguments' <-
traverse
(renderFofTerm names bounds)
arguments
pure
(applyAtomicWord
target
arguments')
-- Global types are retained in the problem, but names need only the allocated
-- symbols. FOF saturation was already checked by the projection witness.
nameEnvironmentGlobalTypes
:: NameEnvironment ref local global
-> Map global CoreType
nameEnvironmentGlobalTypes
(NameEnvironment
_globals
globalTypes
_locals
_intrinsics
_integers
_origins) =
globalTypes
unlessFofApplication
:: CoreType
-> CoreType
-> [CanonicalTerm global]
-> Render ref local global ()
unlessFofApplication expected coreType arguments =
case consume coreType arguments of
Just result
| result == expected ->
pure ()
_ ->
lift
(Left
TypedTptpFofProjectionMismatch)
where
consume current = \case
[] ->
Just current
_argument : remaining ->
case current of
TyArrow TySet result ->
consume result remaining
_ ->
Nothing
applyAtomicWord
:: Tptp.AtomicWord
-> [TextBuilder]
-> TextBuilder
applyAtomicWord target = \case
[] ->
Tptp.buildAtomicWord target
arguments ->
Tptp.buildAtomicWord target
<> Tptp.buildTuple arguments
renderBound
:: Natural
-> [BoundTarget]
-> Render ref local global TextBuilder
renderBound index bounds =
case contextAt index bounds of
Nothing ->
lift
(Left
(TypedTptpUnboundIndex
index))
Just (BoundFofVariable variable) ->
pure
(Tptp.buildVariable
variable)
Just (BoundTh0Variable variable) ->
pure
(Tptp.buildVariable
variable)
Just (AmbientConstant target) ->
pure
(Tptp.buildAtomicWord
target)
renderTh0Term
:: Ord global
=> NameEnvironment ref local global
-> [BoundTarget]
-> CanonicalTerm global
-> Render ref local global TextBuilder
renderTh0Term names bounds = \case
CBound index ->
renderBound index bounds
CGlobal global ->
Tptp.buildAtomicWord
<$> lookupGlobal names global
CIntrinsic intrinsic ->
Tptp.buildAtomicWord
<$> lookupIntrinsic names intrinsic
COpaqueInteger integer ->
Tptp.buildAtomicWord
<$> lookupInteger names integer
CApp function argument -> do
function' <-
renderTh0Term names bounds function
argument' <-
renderTh0Term names bounds argument
pure
(parenthesize
(function'
<> char '@'
<> argument'))
CLam binderType body -> do
variable <-
freshBinder
body' <-
renderTh0Term
names
(BoundTh0Variable variable
: bounds)
body
pure
(parenthesize
(text "^ ["
<> Tptp.buildVariable variable
<> char ':'
<> renderCoreType binderType
<> text "] : "
<> body'))
CFalsum ->
pure (text "$false")
CImp premise conclusion -> do
premise' <-
renderTh0Term names bounds premise
conclusion' <-
renderTh0Term names bounds conclusion
pure
(parenthesize
(premise'
<> text "=>"
<> conclusion'))
CEq operandType left right -> do
left' <-
renderTh0Term names bounds left
right' <-
renderTh0Term names bounds right
pure
(parenthesize
(left'
<> (case operandType of
TyProp -> text "<=>"
_ -> char '=')
<> right'))
CForall binderType body -> do
variable <-
freshBinder
body' <-
renderTh0Term
names
(BoundTh0Variable variable
: bounds)
body
pure
(parenthesize
(text "! ["
<> Tptp.buildVariable variable
<> char ':'
<> renderCoreType binderType
<> text "] : "
<> body'))
renderTh0Declarations
:: (Ord local, Ord global)
=> NameEnvironment ref local global
-> TypedProblem ref local origin global
-> Render ref local global [TextBuilder]
renderTh0Declarations names problem = do
globalDeclarations <-
traverse
(\(ordinal, (global, coreType)) -> do
target <-
lookupGlobal names global
label <-
liftEither
(generatedAtomicWord
("tg_g_type_"
<> Text.pack
(show ordinal)))
pure
(typeDeclaration
label
target
(renderCoreType coreType)))
(zip [0 :: Int ..]
(Map.toAscList
(typedProblemGlobalTypes
problem)))
localDeclarations <-
traverse
(\(ordinal, (local, coreType)) -> do
target <-
lookupLocal names local
label <-
liftEither
(generatedAtomicWord
("tg_l_type_"
<> Text.pack
(show ordinal)))
pure
(typeDeclaration
label
target
(renderCoreType coreType)))
(zip [0 :: Int ..]
(Map.toAscList
(typedProblemLocalTypes
problem)))
intrinsicDeclarations <-
traverse
(\(ordinal, intrinsic) -> do
target <-
lookupIntrinsic names intrinsic
label <-
liftEither
(generatedAtomicWord
("tg_i_type_"
<> Text.pack
(show ordinal)))
pure
(typeDeclaration
label
target
(renderCoreType
(coreIntrinsicType
intrinsic))))
(zip [0 :: Int ..]
(Set.toAscList
(problemIntrinsics problem)))
integerDeclarations <-
traverse
(\(ordinal, integer) -> do
target <-
lookupInteger names integer
label <-
liftEither
(generatedAtomicWord
("tg_n_type_"
<> Text.pack
(show ordinal)))
pure
(typeDeclaration
label
target
(renderCoreType TySet)))
(zip [0 :: Int ..]
(Set.toAscList
(problemIntegers problem)))
pure
(globalDeclarations
<> localDeclarations
<> intrinsicDeclarations
<> integerDeclarations)
typeDeclaration
:: Tptp.AtomicWord
-> Tptp.AtomicWord
-> TextBuilder
-> TextBuilder
typeDeclaration label target coreType =
text "thf("
<> Tptp.buildAtomicWord label
<> text ",type,("
<> Tptp.buildAtomicWord target
<> char ':'
<> coreType
<> text "))."
renderCoreType :: CoreType -> TextBuilder
renderCoreType = \case
TyProp ->
text "$o"
TySet ->
text "$i"
TyArrow argument result ->
parenthesize
(renderCoreType argument
<> char '>'
<> renderCoreType result)
parenthesize :: TextBuilder -> TextBuilder
parenthesize builder =
char '(' <> builder <> char ')'
lookupGlobal
:: Ord global
=> NameEnvironment ref local global
-> global
-> Render ref local global Tptp.AtomicWord
lookupGlobal names global =
maybe
(lift
(Left
(TypedTptpUnknownGlobal
global)))
pure
(lookupGlobalPure names global)
lookupGlobalPure
:: Ord global
=> NameEnvironment ref local global
-> global
-> Maybe Tptp.AtomicWord
lookupGlobalPure
(NameEnvironment
globals
_globalTypes
_locals
_intrinsics
_integers
_origins) =
(`Map.lookup` globals)
lookupLocalPure
:: Ord local
=> NameEnvironment ref local global
-> local
-> Maybe Tptp.AtomicWord
lookupLocalPure
(NameEnvironment
_globals
_globalTypes
locals
_intrinsics
_integers
_origins) =
(`Map.lookup` locals)
lookupLocal
:: Ord local
=> NameEnvironment ref local global
-> local
-> Render ref local global Tptp.AtomicWord
lookupLocal names local =
maybe
(lift
(Left
(TypedTptpUnknownLocal
local)))
pure
(lookupLocalPure names local)
lookupIntrinsic
:: NameEnvironment ref local global
-> CoreIntrinsicTag
-> Render ref local global Tptp.AtomicWord
lookupIntrinsic names intrinsic =
maybe
(lift
(Left
TypedTptpFofProjectionMismatch))
pure
(lookupIntrinsicPure names intrinsic)
lookupIntrinsicPure
:: NameEnvironment ref local global
-> CoreIntrinsicTag
-> Maybe Tptp.AtomicWord
lookupIntrinsicPure
(NameEnvironment
_globals
_globalTypes
_locals
intrinsics
_integers
_origins) =
(`Map.lookup` intrinsics)
lookupInteger
:: NameEnvironment ref local global
-> Integer
-> Render ref local global Tptp.AtomicWord
lookupInteger names integer =
maybe
(lift
(Left
TypedTptpFofProjectionMismatch))
pure
(lookupIntegerPure names integer)
lookupIntegerPure
:: NameEnvironment ref local global
-> Integer
-> Maybe Tptp.AtomicWord
lookupIntegerPure
(NameEnvironment
_globals
_globalTypes
_locals
_intrinsics
integers
_origins) =
(`Map.lookup` integers)
problemIntrinsics
:: TypedProblem ref local origin global
-> Set CoreIntrinsicTag
problemIntrinsics =
foldMap canonicalIntrinsics
. problemTerms
problemIntegers
:: TypedProblem ref local origin global
-> Set Integer
problemIntegers =
foldMap canonicalIntegers
. problemTerms
problemTerms
:: TypedProblem ref local origin global
-> [CanonicalTerm global]
problemTerms problem =
supportedPropositionTerm
(typedProblemClaim problem)
: (supportedPropositionTerm
. typedBackendFactProposition
<$> Vector.toList
(typedProblemGlobalPremises
problem))
<> (supportedPropositionTerm
. typedLocalPremiseProposition
<$> Vector.toList
(typedProblemLocalPremises
problem))
<> (supportedPropositionTerm
. typedProblemAuxiliaryProposition
<$> Vector.toList
(typedProblemAuxiliaries
problem))
canonicalIntrinsics
:: CanonicalTerm global
-> Set CoreIntrinsicTag
canonicalIntrinsics = \case
CBound{} ->
mempty
CGlobal{} ->
mempty
CIntrinsic intrinsic ->
Set.singleton intrinsic
COpaqueInteger{} ->
mempty
CApp function argument ->
canonicalIntrinsics function
<> canonicalIntrinsics argument
CLam _binderType body ->
canonicalIntrinsics body
CFalsum ->
mempty
CImp premise conclusion ->
canonicalIntrinsics premise
<> canonicalIntrinsics conclusion
CEq _operandType left right ->
canonicalIntrinsics left
<> canonicalIntrinsics right
CForall _binderType body ->
canonicalIntrinsics body
canonicalIntegers
:: CanonicalTerm global
-> Set Integer
canonicalIntegers = \case
CBound{} ->
mempty
CGlobal{} ->
mempty
CIntrinsic{} ->
mempty
COpaqueInteger integer ->
Set.singleton integer
CApp function argument ->
canonicalIntegers function
<> canonicalIntegers argument
CLam _binderType body ->
canonicalIntegers body
CFalsum ->
mempty
CImp premise conclusion ->
canonicalIntegers premise
<> canonicalIntegers conclusion
CEq _operandType left right ->
canonicalIntegers left
<> canonicalIntegers right
CForall _binderType body ->
canonicalIntegers body
applicationHead
:: CanonicalTerm global
-> (CanonicalTerm global, [CanonicalTerm global])
applicationHead =
go []
where
go arguments = \case
CApp function argument ->
go (argument : arguments) function
headTerm ->
(headTerm, arguments)
contextAt :: Natural -> [value] -> Maybe value
contextAt _index [] =
Nothing
contextAt 0 (value : _remaining) =
Just value
contextAt index (_value : remaining) =
contextAt (index - 1) remaining
|