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
|
{-# LANGUAGE OverloadedStrings #-}
module Felix.Test.Unit.Concrete (unitTests) where
import Base
import Felix.Report.Location
import Felix.Syntax.Abstract qualified as Raw
import Felix.Syntax.Concrete (grammar)
import Felix.Syntax.Lexicon (builtins)
import Felix.Syntax.Token (runLexer)
import Data.Text qualified as Text
import Test.Tasty
import Test.Tasty.HUnit
import Text.Earley (fullParses, parser)
import Text.Megaparsec (errorBundlePretty)
unitTests :: TestTree
unitTests =
testGroup "Parser"
[ testCase
"textual connectives follow symbolic precedence"
textualConnectivePrecedence
, testCase
"transfinite induction precedes its continuation"
transfiniteInductionContinuation
]
data StatementShape
= Truth
| Falsity
| Connected Raw.Connective StatementShape StatementShape
| Scoped StatementShape
deriving (Show, Eq)
textualConnectivePrecedence :: Assertion
textualConnectivePrecedence = do
for_ cases \(label, statement, expected) ->
assertEqual label (Right expected) (statementShape =<< parseStatement statement)
assertBool
"chained iff is rejected"
(case parseStatement "$\\top$ iff $\\bot$ iff $\\top$" of
Left _ -> True
Right _ -> False)
assertEqual
"textual and symbolic connective trees agree"
(statementShape
=<< parseStatement
"$\\top \\land \\bot \\lor \\top$")
(statementShape
=<< parseStatement
"$\\top$ and $\\bot$ or $\\top$")
where
cases =
[ ( "and binds tighter than following or"
, "$\\top$ and $\\bot$ or $\\top$"
, Connected Raw.Disjunction
(Connected Raw.Conjunction Truth Falsity)
Truth
)
, ( "and binds tighter than preceding or"
, "$\\top$ or $\\bot$ and $\\top$"
, Connected Raw.Disjunction
Truth
(Connected Raw.Conjunction Falsity Truth)
)
, ( "and associates left"
, "$\\top$ and $\\bot$ and $\\top$"
, Connected Raw.Conjunction
(Connected Raw.Conjunction Truth Falsity)
Truth
)
, ( "or associates left"
, "$\\top$ or $\\bot$ or $\\top$"
, Connected Raw.Disjunction
(Connected Raw.Disjunction Truth Falsity)
Truth
)
, ( "either is accepted after ordinary or"
, "$\\top$ or either $\\bot$ or $\\top$"
, Connected Raw.Disjunction
Truth
(Connected Raw.ExclusiveOr Falsity Truth)
)
, ( "implication associates right"
, "if $\\top$ then if $\\bot$ then $\\top$"
, Connected Raw.Implication
Truth
(Connected Raw.Implication Falsity Truth)
)
, ( "a quantified implication antecedent ends at then"
, "if for all $x$ we have $\\top$ then $\\bot$"
, Connected Raw.Implication
(Scoped Truth)
Falsity
)
, ( "parentheses override precedence"
, "($\\top$ or $\\bot$) and $\\top$"
, Connected Raw.Conjunction
(Connected Raw.Disjunction Truth Falsity)
Truth
)
, ( "a quantified right operand scopes over its continuation"
, "$\\top$ iff there exists $x$ such that $\\bot$ and $\\top$"
, Connected Raw.Equivalence
Truth
(Scoped
(Connected Raw.Conjunction Falsity Truth))
)
]
parseStatement :: Text -> Either String Raw.Stmt
parseStatement statement = do
chunks <- case runLexer
(FileId 46)
"textual-connectives.tex"
(Text.unlines
[ "\\begin{axiom}\\label{textual_connectives}"
, statement <> "."
, "\\end{axiom}"
]) of
Left err ->
Left (errorBundlePretty err)
Right (_imports, chunks') ->
Right chunks'
tokens <- case chunks of
[tokens'] ->
Right tokens'
_ ->
Left ("expected one source chunk, got " <> show (length chunks))
case fullParses (parser (grammar builtins)) tokens of
( [Raw.BlockAxiom
_location
_title
_marker
(Raw.Axiom [] statement')]
, _report
) ->
Right statement'
(blocks, report) ->
Left
( "expected one axiom, got "
<> show blocks
<> " with "
<> show report
)
statementShape :: Raw.Stmt -> Either String StatementShape
statementShape = \case
Raw.StmtConnected conn _ left right ->
Connected conn
<$> statementShape left
<*> statementShape right
Raw.StmtFormula formula ->
formulaShape formula
Raw.SymbolicQuantified _ _ _ _ _ statement ->
Scoped <$> statementShape statement
statement ->
Left ("unsupported statement in precedence test: " <> show statement)
formulaShape :: Raw.Formula -> Either String StatementShape
formulaShape = \case
Raw.PropositionalConstant _ Raw.IsTop ->
Right Truth
Raw.PropositionalConstant _ Raw.IsBottom ->
Right Falsity
Raw.Connected _ conn left right ->
Connected conn
<$> formulaShape left
<*> formulaShape right
formula ->
Left ("unsupported formula in precedence test: " <> show formula)
transfiniteInductionContinuation :: Assertion
transfiniteInductionContinuation =
case runLexer
(FileId 45)
"transfinite-induction.tex"
sourceText of
Left err ->
assertFailure (errorBundlePretty err)
Right (_imports, [tokens]) ->
case fullParses (parser (grammar builtins)) tokens of
( [ Raw.BlockProof
_start
(Raw.ByOrdInduction methodLocation
(Raw.Qed
(Just continuationLocation)
Raw.JustificationEmpty))
_end
]
, _report
) -> do
assertEqual
"method header line"
2
(locLine methodLocation)
assertEqual
"continuation line"
3
(locLine continuationLocation)
(blocks, report) ->
assertFailure
( "expected one transfinite-induction proof, got "
<> show blocks
<> " with "
<> show report
)
Right (_imports, chunks) ->
assertFailure
("expected one proof chunk, got " <> show (length chunks))
where
sourceText =
Text.unlines
[ "\\begin{proof}"
, "[proof by transfinite induction]"
, "Trivial."
, "\\end{proof}"
]
|