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
|
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | Complete-problem FOF/TH0 classification and construction.
module Felix.Checking.Backend.Problem
( SupportedProposition
, supportedProposition
, projectSupportedProposition
, supportedPropositionSupport
, supportedPropositionTerm
, weakenClosedSupportedProposition
, SupportedPropositionError(..)
, SupportedPropositionProjectionError(..)
, CheckedFofProjection
, checkedFofProjectionProposition
, FofCapability(..)
, BackendFofExclusion(..)
, BackendClassificationError(..)
, classifySupportedProposition
, TypedBackendFact
, typedBackendFact
, typedBackendFactReference
, typedBackendFactProposition
, typedBackendFactCapability
, LocalPremiseOrdinal
, localPremiseOrdinal
, localPremiseOrdinalValue
, TypedLocalPremise
, typedLocalPremise
, typedLocalPremiseOrdinal
, typedLocalPremiseOrigin
, typedLocalPremiseProposition
, typedLocalPremiseCapability
, TypedFoundationAuxiliaryInput
, typedFoundationAuxiliaryInput
, TypedProblemAuxiliary
, typedProblemAuxiliaryOrdinal
, typedProblemAuxiliaryTag
, typedProblemAuxiliaryProposition
, typedProblemAuxiliaryCapability
, LocalPremisePolicy(..)
, HigherOrderJustificationPolicy(..)
, selectTypedLocalPremises
, TypedProblemRoute(..)
, TypedProblem
, planTypedProblem
, typedProblemRoute
, typedProblemClaim
, typedProblemGlobalPremises
, typedProblemLocalPremises
, typedProblemAuxiliaries
, typedProblemGlobalTypes
, typedProblemLocalTypes
, TypedProblemError(..)
) where
import Base
import Felix.Checking.Core
import Felix.Checking.Foundation
import Control.Monad (foldM, unless)
import Data.Bifunctor (first)
import Data.List qualified as List
import Data.Map.Strict qualified as Map
import Data.Set qualified as Set
import Data.Vector (Vector)
import Data.Vector qualified as Vector
import Numeric.Natural (Natural)
-- | A proposition under its exact nearest-first ambient-local support.
data SupportedProposition local global =
SupportedProposition
!(Vector (local, CoreType))
!(ScopedCheckedCore global)
deriving stock (Eq)
data SupportedPropositionError local
= SupportedPropositionIsNotProposition !CoreType
| SupportedPropositionContextMismatch
![CoreType]
![CoreType]
| DuplicateSupportedLocal !local
| UnusedSupportedLocal !local
deriving stock (Show, Eq)
data SupportedPropositionProjectionError local
= SupportedProjectionContextMismatch
![CoreType]
![CoreType]
| SupportedProjectionDuplicateLocal !local
| SupportedProjectionIndexMissing !Natural
| SupportedProjectionCoreCheckFailed !CoreCheckError
| SupportedProjectionValidationFailed
!(SupportedPropositionError local)
deriving stock (Show, Eq)
supportedProposition
:: Ord local
=> Vector (local, CoreType)
-> ScopedCheckedCore global
-> Either
(SupportedPropositionError local)
(SupportedProposition local global)
supportedProposition support statement = do
unless
(scopedCoreType statement == TyProp)
(Left
(SupportedPropositionIsNotProposition
(scopedCoreType statement)))
let expectedContext =
snd <$> Vector.toList support
actualContext =
scopedCoreContext statement
unless
(actualContext == expectedContext)
(Left
(SupportedPropositionContextMismatch
expectedContext
actualContext))
void
(foldM
(\seen (local, _coreType) ->
if local `Set.member` seen
then
Left
(DuplicateSupportedLocal local)
else
Right (Set.insert local seen))
Set.empty
support)
case
List.find
(\(ordinal, _entry) ->
fromIntegral ordinal
`Set.notMember`
ambientIndices
(scopedCoreTerm statement))
(Vector.toList
(Vector.indexed support)) of
Just (_ordinal, (local, _coreType)) ->
Left (UnusedSupportedLocal local)
Nothing ->
pure ()
pure
(SupportedProposition
support
statement)
-- | Retain exactly the ambient locals used by a checked proposition and
-- remap its indices to that dense nearest-first support.
projectSupportedProposition
:: Ord local
=> (global -> Maybe CoreType)
-> Vector (local, CoreType)
-> ScopedCheckedCore global
-> Either
(SupportedPropositionProjectionError local)
(SupportedProposition local global)
projectSupportedProposition globalType available statement = do
let expectedContext = snd <$> Vector.toList available
actualContext = scopedCoreContext statement
unless (expectedContext == actualContext)
(Left
(SupportedProjectionContextMismatch
expectedContext
actualContext))
void
(foldM
(\seen (local, _coreType) ->
if local `Set.member` seen
then Left (SupportedProjectionDuplicateLocal local)
else Right (Set.insert local seen))
Set.empty
available)
let used =
Set.toAscList
(ambientIndices
(scopedCoreTerm statement))
selected <- traverse (lookupNatural available) used
let remapping =
Map.fromAscList
(zip used [0 ..])
remapped <- remapAmbientIndices remapping 0
(scopedCoreTerm statement)
checked <-
first SupportedProjectionCoreCheckFailed
(checkScopedCanonicalCore
globalType
(snd <$> selected)
remapped)
first SupportedProjectionValidationFailed
(supportedProposition
(Vector.fromList selected)
checked)
where
lookupNatural values index =
maybe
(Left (SupportedProjectionIndexMissing index))
Right
(go index (Vector.toList values))
go _index [] =
Nothing
go 0 (value : _rest) =
Just value
go index (_value : rest) =
go (index - 1) rest
remapAmbientIndices remapping depth = \case
CBound index
| index < depth ->
Right (CBound index)
| otherwise ->
maybe
(Left
(SupportedProjectionIndexMissing
(index - depth)))
(Right . CBound . (+ depth))
(Map.lookup (index - depth) remapping)
CGlobal global ->
Right (CGlobal global)
CIntrinsic intrinsic ->
Right (CIntrinsic intrinsic)
COpaqueInteger integer ->
Right (COpaqueInteger integer)
CApp function argument ->
CApp
<$> remapAmbientIndices remapping depth function
<*> remapAmbientIndices remapping depth argument
CLam binderType body ->
CLam binderType
<$> remapAmbientIndices remapping (depth + 1) body
CFalsum ->
Right CFalsum
CImp premise conclusion ->
CImp
<$> remapAmbientIndices remapping depth premise
<*> remapAmbientIndices remapping depth conclusion
CEq operandType left right ->
CEq operandType
<$> remapAmbientIndices remapping depth left
<*> remapAmbientIndices remapping depth right
CForall binderType body ->
CForall binderType
<$> remapAmbientIndices remapping (depth + 1) body
ambientIndices
:: CanonicalTerm global
-> Set Natural
ambientIndices =
go 0
where
go depth = \case
CBound index
| index < depth ->
mempty
| otherwise ->
Set.singleton (index - depth)
CGlobal{} ->
mempty
CIntrinsic{} ->
mempty
COpaqueInteger{} ->
mempty
CApp function argument ->
go depth function <> go depth argument
CLam _binderType body ->
go (depth + 1) body
CFalsum ->
mempty
CImp premise conclusion ->
go depth premise <> go depth conclusion
CEq _operandType left right ->
go depth left <> go depth right
CForall _binderType body ->
go (depth + 1) body
supportedPropositionSupport
:: SupportedProposition local global
-> Vector (local, CoreType)
supportedPropositionSupport
(SupportedProposition support _statement) =
support
supportedPropositionTerm
:: SupportedProposition local global
-> CanonicalTerm global
supportedPropositionTerm
(SupportedProposition _support statement) =
scopedCoreTerm statement
weakenClosedSupportedProposition
:: SupportedProposition Void global
-> SupportedProposition local global
weakenClosedSupportedProposition
(SupportedProposition support statement) =
SupportedProposition
(fmap
(\(local, coreType) ->
(absurd local, coreType))
support)
statement
newtype CheckedFofProjection local global =
CheckedFofProjection
(SupportedProposition local global)
deriving stock (Eq)
checkedFofProjectionProposition
:: CheckedFofProjection local global
-> SupportedProposition local global
checkedFofProjectionProposition
(CheckedFofProjection proposition) =
proposition
data FofCapability projection
= FofProjectable !projection
| RequiresTh0 !(NonEmpty BackendFofExclusion)
deriving stock (Eq)
data BackendFofExclusion
= StructuralFofExclusion !FofExclusion
| HigherOrderGlobalType !CoreType
| HigherOrderAmbientLocal !CoreType
deriving stock (Show, Eq, Ord)
data BackendClassificationError global
= UnknownBackendGlobal !global
| BackendFofProjectionInvariantFailed
deriving stock (Show, Eq)
classifySupportedProposition
:: Ord global
=> (global -> Maybe CoreType)
-> SupportedProposition local global
-> Either
(BackendClassificationError global)
(FofCapability
(CheckedFofProjection local global))
classifySupportedProposition globalType proposition = do
globalExclusions <-
foldM
collectGlobal
Set.empty
(Set.toAscList
(canonicalGlobals
(supportedPropositionTerm proposition)))
let structuralExclusions =
case classifyScopedStructure proposition of
FoundationFofProjectable ->
Set.empty
FoundationRequiresTh0 structural ->
Set.fromList
(StructuralFofExclusion
<$> toList structural)
localExclusions =
Set.fromList
[ HigherOrderAmbientLocal coreType
| (_local, coreType) <-
Vector.toList
(supportedPropositionSupport
proposition)
, coreType /= TySet
]
exclusions =
structuralExclusions
<> globalExclusions
<> localExclusions
case Set.toAscList exclusions of
[] ->
if isFirstOrderProposition
globalType
proposition
then
Right
(FofProjectable
(CheckedFofProjection
proposition))
else
Left BackendFofProjectionInvariantFailed
firstExclusion : remainingExclusions ->
Right
(RequiresTh0
(firstExclusion
:| remainingExclusions))
where
collectGlobal exclusions global =
case globalType global of
Nothing ->
Left (UnknownBackendGlobal global)
Just coreType ->
Right
(if isFirstOrderGlobalType coreType
then exclusions
else
Set.insert
(HigherOrderGlobalType
coreType)
exclusions)
classifyScopedStructure
:: SupportedProposition local global
-> FoundationBackendClass
classifyScopedStructure =
classifyCanonicalFofStructure
. supportedPropositionTerm
isFirstOrderGlobalType :: CoreType -> Bool
isFirstOrderGlobalType =
go
where
go = \case
TySet ->
True
TyProp ->
True
TyArrow TySet result ->
go result
TyArrow _argument _result ->
False
-- The structural and type exclusions make this projection total. This final
-- walk catches an accidentally unsaturated first-order head.
isFirstOrderProposition
:: (global -> Maybe CoreType)
-> SupportedProposition local global
-> Bool
isFirstOrderProposition globalType proposition =
isFormula initialContext
(supportedPropositionTerm proposition)
where
initialContext =
snd
<$> Vector.toList
(supportedPropositionSupport
proposition)
isFormula context = \case
CFalsum ->
True
CImp premise conclusion ->
isFormula context premise
&& isFormula context conclusion
CEq TySet left right ->
isTerm context left
&& isTerm context right
CEq TyProp left right ->
isFormula context left
&& isFormula context right
CForall TySet body ->
isFormula (TySet : context) body
application ->
case applicationHead application of
(CGlobal global, arguments) ->
maybe
False
(\coreType ->
applicationResult
coreType
arguments
== Just TyProp
&& all
(isTerm context)
arguments)
(globalType global)
(CIntrinsic intrinsic, arguments) ->
applicationResult
(coreIntrinsicType intrinsic)
arguments
== Just TyProp
&& all
(isTerm context)
arguments
_ ->
False
isTerm context = \case
CBound index ->
contextAt index context
== Just TySet
CGlobal global ->
globalType global == Just TySet
CIntrinsic intrinsic ->
coreIntrinsicType intrinsic == TySet
COpaqueInteger{} ->
True
application ->
case applicationHead application of
(CGlobal global, arguments) ->
maybe
False
(\coreType ->
applicationResult
coreType
arguments
== Just TySet
&& all
(isTerm context)
arguments)
(globalType global)
(CIntrinsic intrinsic, arguments) ->
applicationResult
(coreIntrinsicType intrinsic)
arguments
== Just TySet
&& all
(isTerm context)
arguments
_ ->
False
applicationHead
:: CanonicalTerm global
-> (CanonicalTerm global, [CanonicalTerm global])
applicationHead =
go []
where
go arguments = \case
CApp function argument ->
go (argument : arguments) function
headTerm ->
(headTerm, arguments)
applicationResult
:: CoreType
-> [CanonicalTerm global]
-> Maybe CoreType
applicationResult =
foldM
(\coreType _argument ->
case coreType of
TyArrow TySet result ->
Just result
_ ->
Nothing)
contextAt :: Natural -> [value] -> Maybe value
contextAt _index [] =
Nothing
contextAt 0 (value : _remaining) =
Just value
contextAt index (_value : remaining) =
contextAt (index - 1) remaining
canonicalGlobals
:: Ord global
=> CanonicalTerm global
-> Set global
canonicalGlobals = \case
CBound{} ->
mempty
CGlobal global ->
Set.singleton global
CIntrinsic{} ->
mempty
COpaqueInteger{} ->
mempty
CApp function argument ->
canonicalGlobals function
<> canonicalGlobals argument
CLam _binderType body ->
canonicalGlobals body
CFalsum ->
mempty
CImp premise conclusion ->
canonicalGlobals premise
<> canonicalGlobals conclusion
CEq _operandType left right ->
canonicalGlobals left
<> canonicalGlobals right
CForall _binderType body ->
canonicalGlobals body
data TypedBackendFact ref global =
TypedBackendFact
!ref
!(SupportedProposition Void global)
!(FofCapability
(CheckedFofProjection Void global))
deriving stock (Eq)
typedBackendFact
:: ref
-> SupportedProposition Void global
-> FofCapability
(CheckedFofProjection Void global)
-> TypedBackendFact ref global
typedBackendFact =
TypedBackendFact
typedBackendFactReference
:: TypedBackendFact ref global
-> ref
typedBackendFactReference
(TypedBackendFact
reference
_proposition
_capability) =
reference
typedBackendFactProposition
:: TypedBackendFact ref global
-> SupportedProposition Void global
typedBackendFactProposition
(TypedBackendFact
_reference
proposition
_capability) =
proposition
typedBackendFactCapability
:: TypedBackendFact ref global
-> FofCapability
(CheckedFofProjection Void global)
typedBackendFactCapability
(TypedBackendFact
_reference
_proposition
capability) =
capability
newtype LocalPremiseOrdinal =
LocalPremiseOrdinal Natural
deriving stock (Show, Eq, Ord)
localPremiseOrdinal :: Natural -> LocalPremiseOrdinal
localPremiseOrdinal =
LocalPremiseOrdinal
localPremiseOrdinalValue
:: LocalPremiseOrdinal
-> Natural
localPremiseOrdinalValue
(LocalPremiseOrdinal ordinal) =
ordinal
data TypedLocalPremise local origin global =
TypedLocalPremise
!LocalPremiseOrdinal
!origin
!(SupportedProposition local global)
!(FofCapability
(CheckedFofProjection local global))
deriving stock (Eq)
typedLocalPremise
:: Ord global
=> (global -> Maybe CoreType)
-> LocalPremiseOrdinal
-> origin
-> SupportedProposition local global
-> Either
(BackendClassificationError global)
(TypedLocalPremise local origin global)
typedLocalPremise globalType ordinal premiseOrigin proposition =
TypedLocalPremise
ordinal
premiseOrigin
proposition
<$> classifySupportedProposition
globalType
proposition
typedLocalPremiseOrdinal
:: TypedLocalPremise local origin global
-> LocalPremiseOrdinal
typedLocalPremiseOrdinal
(TypedLocalPremise
ordinal
_origin
_proposition
_capability) =
ordinal
typedLocalPremiseOrigin
:: TypedLocalPremise local origin global
-> origin
typedLocalPremiseOrigin
(TypedLocalPremise
_ordinal
premiseOrigin
_proposition
_capability) =
premiseOrigin
typedLocalPremiseProposition
:: TypedLocalPremise local origin global
-> SupportedProposition local global
typedLocalPremiseProposition
(TypedLocalPremise
_ordinal
_origin
proposition
_capability) =
proposition
typedLocalPremiseCapability
:: TypedLocalPremise local origin global
-> FofCapability
(CheckedFofProjection local global)
typedLocalPremiseCapability
(TypedLocalPremise
_ordinal
_origin
_proposition
capability) =
capability
data TypedFoundationAuxiliaryInput global =
TypedFoundationAuxiliaryInput
!FoundationAxiomTag
!(SupportedProposition Void global)
!(FofCapability
(CheckedFofProjection Void global))
typedFoundationAuxiliaryInput
:: CheckedFoundation
-> FoundationAxiomTag
-> TypedFoundationAuxiliaryInput global
typedFoundationAuxiliaryInput foundation tag =
TypedFoundationAuxiliaryInput
tag
proposition
capability
where
proposition =
SupportedProposition
Vector.empty
(embedClosedCore
[]
(mapFrozenGlobals
absurd
(foundationAxiomFrozen
foundation
tag)))
capability =
case foundationAxiomBackendClass
foundation
tag of
FoundationFofProjectable ->
FofProjectable
(CheckedFofProjection
proposition)
FoundationRequiresTh0 exclusions ->
RequiresTh0
(StructuralFofExclusion
<$> exclusions)
data TypedProblemAuxiliary global =
TypedProblemAuxiliary
!Natural
!FoundationAxiomTag
!(SupportedProposition Void global)
!(FofCapability
(CheckedFofProjection Void global))
deriving stock (Eq)
typedProblemAuxiliaryOrdinal
:: TypedProblemAuxiliary global
-> Natural
typedProblemAuxiliaryOrdinal
(TypedProblemAuxiliary
ordinal
_tag
_proposition
_capability) =
ordinal
typedProblemAuxiliaryTag
:: TypedProblemAuxiliary global
-> FoundationAxiomTag
typedProblemAuxiliaryTag
(TypedProblemAuxiliary
_ordinal
tag
_proposition
_capability) =
tag
typedProblemAuxiliaryProposition
:: TypedProblemAuxiliary global
-> SupportedProposition Void global
typedProblemAuxiliaryProposition
(TypedProblemAuxiliary
_ordinal
_tag
proposition
_capability) =
proposition
typedProblemAuxiliaryCapability
:: TypedProblemAuxiliary global
-> FofCapability
(CheckedFofProjection Void global)
typedProblemAuxiliaryCapability
(TypedProblemAuxiliary
_ordinal
_tag
_proposition
capability) =
capability
-- | Source justification policy for premise selection. Higher-order routing
-- is validated separately after the complete selected problem is known.
data LocalPremisePolicy
= FirstOrderLocals
| CompleteLocals
deriving stock (Show, Eq)
-- | Whether selected higher-order components must be justified by one of the
-- two approved inline construction forms. Premise selection has already
-- happened when this policy is applied.
data HigherOrderJustificationPolicy
= ImplicitConstructionJustification
| ExplicitHigherOrderJustification
deriving stock (Show, Eq)
selectTypedLocalPremises
:: LocalPremisePolicy
-> [TypedLocalPremise local origin global]
-> Vector (TypedLocalPremise local origin global)
selectTypedLocalPremises selection availableLocals =
Vector.fromList
(List.sortOn
typedLocalPremiseOrdinal
(case selection of
FirstOrderLocals ->
List.filter
(isFofCapability
. typedLocalPremiseCapability)
availableLocals
CompleteLocals ->
availableLocals))
data ImplicitHigherOrderConstruction
= ImplicitSeparation
| ImplicitFunctionalReplacement
deriving stock (Show, Eq, Ord)
data TypedProblemRoute
= RouteFof
| RouteTh0
deriving stock (Show, Eq)
data TypedProblem ref local origin global =
TypedProblem
!TypedProblemRoute
!(SupportedProposition local global)
!(Vector (TypedBackendFact ref global))
!(Vector (TypedLocalPremise local origin global))
!(Vector (TypedProblemAuxiliary global))
!(Map global CoreType)
!(Map local CoreType)
deriving stock (Eq)
data TypedProblemError local global
= TypedProblemClaimClassificationFailed
!(BackendClassificationError global)
| TypedProblemExplicitHigherOrderJustificationRequired
!(NonEmpty BackendFofExclusion)
| TypedProblemDuplicateLocalPremiseOrdinal
!LocalPremiseOrdinal
| TypedProblemLocalTypeMismatch
!local
!CoreType
!CoreType
deriving stock (Show, Eq)
planTypedProblem
:: (Ord local, Ord global)
=> (global -> Maybe CoreType)
-> Vector (TypedBackendFact ref global)
-> SupportedProposition local global
-> [TypedLocalPremise local origin global]
-> [TypedFoundationAuxiliaryInput global]
-> LocalPremisePolicy
-> HigherOrderJustificationPolicy
-> Either
(TypedProblemError local global)
(TypedProblem ref local origin global)
planTypedProblem
globalType
selectedFacts
claim
availableLocals
auxiliaries
localPolicy
higherOrderPolicy = do
validateLocalPremiseOrdinals
availableLocals
claimCapability <-
first
TypedProblemClaimClassificationFailed
(classifySupportedProposition
globalType
claim)
let selectedLocals =
selectTypedLocalPremises
localPolicy
availableLocals
let preparedAuxiliaries =
zipWith
prepareAuxiliary
[0..]
auxiliaries
case higherOrderPolicy of
ImplicitConstructionJustification ->
validateImplicitHigherOrderAdmission
claim
claimCapability
selectedFacts
selectedLocals
preparedAuxiliaries
ExplicitHigherOrderJustification ->
pure ()
let selectedFofCapabilities =
isFofCapability claimCapability
: (isFofCapability
. typedBackendFactCapability
<$> Vector.toList selectedFacts)
<> (isFofCapability
. typedLocalPremiseCapability
<$> Vector.toList selectedLocals)
<> (isFofCapability
. typedProblemAuxiliaryCapability
<$> preparedAuxiliaries)
route =
if and selectedFofCapabilities
then RouteFof
else RouteTh0
globalTypes <-
collectProblemGlobals
globalType
claim
selectedFacts
selectedLocals
preparedAuxiliaries
localTypes <-
collectProblemLocals
claim
selectedLocals
pure
(TypedProblem
route
claim
selectedFacts
selectedLocals
(Vector.fromList preparedAuxiliaries)
globalTypes
localTypes)
where
prepareAuxiliary
ordinal
(TypedFoundationAuxiliaryInput
tag
proposition
capability) =
TypedProblemAuxiliary
ordinal
tag
proposition
capability
-- | Implicit automation admits higher-order routing only for a checked
-- proposition that itself contains one of the two approved set constructions.
-- This classification selects no premise and grants no authority.
implicitConstructionAdmission
:: SupportedProposition local global
-> FofCapability projection
-> Maybe (Set ImplicitHigherOrderConstruction)
implicitConstructionAdmission proposition capability =
case capability of
FofProjectable{} ->
Nothing
RequiresTh0 exclusions
| Set.null constructions ->
Nothing
| all (admittedExclusion constructions) exclusions ->
Just constructions
| otherwise ->
Nothing
where
dependencies =
foundationAxiomDependencies
(supportedPropositionTerm proposition)
constructions =
Set.fromList
( [ ImplicitSeparation
| SeparationCharacteristic `Set.member` dependencies
]
<> [ ImplicitFunctionalReplacement
| ReplacementCharacteristic `Set.member` dependencies
]
)
admittedExclusion allowed = \case
StructuralFofExclusion HigherOrderLambda ->
True
StructuralFofExclusion (HigherOrderIntrinsic Sep) ->
ImplicitSeparation `Set.member` allowed
StructuralFofExclusion (HigherOrderIntrinsic Repl) ->
ImplicitFunctionalReplacement `Set.member` allowed
-- The checked proposition is the deliberate granularity: its typed
-- global occurrences neither select another fact nor grant authority.
HigherOrderGlobalType{} ->
True
StructuralFofExclusion{} ->
False
HigherOrderAmbientLocal{} ->
False
validateImplicitHigherOrderAdmission
:: SupportedProposition local global
-> FofCapability claimProjection
-> Vector (TypedBackendFact ref global)
-> Vector (TypedLocalPremise local origin global)
-> [TypedProblemAuxiliary global]
-> Either (TypedProblemError local global) ()
validateImplicitHigherOrderAdmission
claim claimCapability selectedFacts selectedLocals auxiliaries = do
claimConstructions <-
admittedPropositionConstructions claim claimCapability
traverse_ requireFirstOrderGlobal selectedFacts
localConstructions <-
foldM
(\admitted premise ->
(admitted <>)
<$> admittedPropositionConstructions
(typedLocalPremiseProposition premise)
(typedLocalPremiseCapability premise))
Set.empty
(Vector.toList selectedLocals)
let admitted = claimConstructions <> localConstructions
traverse_ (requireAdmittedAuxiliary admitted) auxiliaries
where
admittedPropositionConstructions proposition = \case
FofProjectable{} ->
Right Set.empty
RequiresTh0 exclusions ->
maybe
(Left
(TypedProblemExplicitHigherOrderJustificationRequired
exclusions))
Right
(implicitConstructionAdmission
proposition
(RequiresTh0 exclusions))
requireFirstOrderGlobal fact =
case typedBackendFactCapability fact of
FofProjectable{} ->
Right ()
RequiresTh0 exclusions ->
Left
(TypedProblemExplicitHigherOrderJustificationRequired
exclusions)
requireAdmittedAuxiliary admitted auxiliary =
case typedProblemAuxiliaryCapability auxiliary of
FofProjectable{} ->
Right ()
RequiresTh0 exclusions
| auxiliaryAdmitted admitted
(typedProblemAuxiliaryTag auxiliary) ->
Right ()
| otherwise ->
Left
(TypedProblemExplicitHigherOrderJustificationRequired
exclusions)
auxiliaryAdmitted admitted = \case
SeparationCharacteristic ->
ImplicitSeparation `Set.member` admitted
ReplacementCharacteristic ->
ImplicitFunctionalReplacement `Set.member` admitted
_ ->
False
validateLocalPremiseOrdinals
:: [TypedLocalPremise local origin global]
-> Either
(TypedProblemError local global)
()
validateLocalPremiseOrdinals =
void
. foldM
(\seen premise ->
let ordinal =
typedLocalPremiseOrdinal premise
in
if ordinal `Set.member` seen
then
Left
(TypedProblemDuplicateLocalPremiseOrdinal
ordinal)
else
Right
(Set.insert
ordinal
seen))
Set.empty
isFofCapability :: FofCapability projection -> Bool
isFofCapability = \case
FofProjectable{} ->
True
RequiresTh0{} ->
False
collectProblemGlobals
:: Ord global
=> (global -> Maybe CoreType)
-> SupportedProposition local global
-> Vector (TypedBackendFact ref global)
-> Vector (TypedLocalPremise local origin global)
-> [TypedProblemAuxiliary global]
-> Either
(TypedProblemError local global)
(Map global CoreType)
collectProblemGlobals
globalType
claim
facts
locals
auxiliaries =
Map.fromAscList
<$> traverse
resolveGlobal
(Set.toAscList globals)
where
globals =
canonicalGlobals
(supportedPropositionTerm claim)
<> foldMap
(canonicalGlobals
. supportedPropositionTerm
. typedBackendFactProposition)
facts
<> foldMap
(canonicalGlobals
. supportedPropositionTerm
. typedLocalPremiseProposition)
locals
<> foldMap
(canonicalGlobals
. supportedPropositionTerm
. typedProblemAuxiliaryProposition)
auxiliaries
resolveGlobal global =
case globalType global of
Nothing ->
Left
(TypedProblemClaimClassificationFailed
(UnknownBackendGlobal global))
Just coreType ->
Right (global, coreType)
collectProblemLocals
:: Ord local
=> SupportedProposition local global
-> Vector (TypedLocalPremise local origin global)
-> Either
(TypedProblemError local global)
(Map local CoreType)
collectProblemLocals claim locals =
foldM
insertSupport
Map.empty
supports
where
supports =
Vector.toList
(supportedPropositionSupport claim)
<> concatMap
(Vector.toList
. supportedPropositionSupport
. typedLocalPremiseProposition)
(Vector.toList locals)
insertSupport current (local, coreType) =
case Map.lookup local current of
Nothing ->
Right
(Map.insert
local
coreType
current)
Just previousType
| previousType == coreType ->
Right current
| otherwise ->
Left
(TypedProblemLocalTypeMismatch
local
previousType
coreType)
typedProblemRoute
:: TypedProblem ref local origin global
-> TypedProblemRoute
typedProblemRoute
(TypedProblem
route
_claim
_facts
_locals
_auxiliaries
_globals
_localTypes) =
route
typedProblemClaim
:: TypedProblem ref local origin global
-> SupportedProposition local global
typedProblemClaim
(TypedProblem
_route
claim
_facts
_locals
_auxiliaries
_globals
_localTypes) =
claim
typedProblemGlobalPremises
:: TypedProblem ref local origin global
-> Vector (TypedBackendFact ref global)
typedProblemGlobalPremises
(TypedProblem
_route
_claim
facts
_locals
_auxiliaries
_globals
_localTypes) =
facts
typedProblemLocalPremises
:: TypedProblem ref local origin global
-> Vector (TypedLocalPremise local origin global)
typedProblemLocalPremises
(TypedProblem
_route
_claim
_facts
locals
_auxiliaries
_globals
_localTypes) =
locals
typedProblemAuxiliaries
:: TypedProblem ref local origin global
-> Vector (TypedProblemAuxiliary global)
typedProblemAuxiliaries
(TypedProblem
_route
_claim
_facts
_locals
auxiliaries
_globals
_localTypes) =
auxiliaries
typedProblemGlobalTypes
:: TypedProblem ref local origin global
-> Map global CoreType
typedProblemGlobalTypes
(TypedProblem
_route
_claim
_facts
_locals
_auxiliaries
globals
_localTypes) =
globals
typedProblemLocalTypes
:: TypedProblem ref local origin global
-> Map local CoreType
typedProblemLocalTypes
(TypedProblem
_route
_claim
_facts
_locals
_auxiliaries
_globals
localTypes) =
localTypes
|