Cross Reference: /hets/Common/SZSOntology.hs
SZSOntology.hs revision a1f84b69876a0dd946e68c1f96b783a3c99b9729
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
{- |
Module : $Header$
Description : The SZS ontology for TPTP prover results
Copyright : (c) Christian Maeder DFKI GmbH 2010
License : GPLv2 or higher, see LICENSE.txt
Maintainer : Christian.Maeder@dfki.de
Stability : provisional
Portability : portable
see <http://www.cs.miami.edu/~tptp/> under Documents and SZSOntology
-}
module Common.SZSOntology where
import Data.Char
successes :: [(String, String)]
successes =
[ ("Success", "SUC")
-- The logical data has been processed successfully.
, ("UnsatisfiabilityPreserving", "UNP")
{- If there does not exist a model of Ax then there does not exist a model of
C, i.e., if Ax is unsatisfiable then C is unsatisfiable. -}
, ("SatisfiabilityPreserving", "SAP")
{- If there exists a model of Ax then there exists a model of C, i.e., if Ax
is satisfiable then C is satisfiable.
- F is satisfiable. -}
, ("EquiSatisfiable", "ESA")
{- There exists a model of Ax iff there exists a model of C, i.e., Ax is
(un)satisfiable iff C is (un)satisfiable. -}
, ("Satisfiable", "SAT")
{- Some interpretations are models of Ax, and
some models of Ax are models of C.
- F is satisfiable, and ~F is not valid.
- Possible dataforms are Models of Ax | C. -}
, ("FinitelySatisfiable", "FSA")
{- Some finite interpretations are finite models of Ax, and
some finite models of Ax are finite models of C.
- F is satisfiable, and ~F is not valid.
- Possible dataforms are FiniteModels of Ax | C. -}
, ("Theorem", "THM")
{- All models of Ax are models of C.
- F is valid, and C is a theorem of Ax.
- Possible dataforms are Proofs of C from Ax. -}
, ("Equivalent", "EQV")
{- Some interpretations are models of Ax,
all models of Ax are models of C, and
all models of C are models of Ax.
- F is valid, C is a theorem of Ax, and Ax is a theorem of C.
- Possible dataforms are Proofs of C from Ax and of Ax from C. -}
, ("TautologousConclusion", "TAC")
{- Some interpretations are models of Ax, and
all interpretations are models of C.
- F is valid, and C is a tautology.
- Possible dataforms are Proofs of C. -}
, ("WeakerConclusion", "WEC")
{- Some interpretations are models of Ax,
all models of Ax are models of C, and
some models of C are not models of Ax.
- See Theorem and Satisfiable. -}
, ("EquivalentTheorem", "ETH")
{- Some, but not all, interpretations are models of Ax,
all models of Ax are models of C, and
all models of C are models of Ax.
- See Equivalent. -}
, ("Tautology", "TAU")
{- All interpretations are models of Ax, and
all interpretations are models of C.
- F is valid, ~F is unsatisfiable, and C is a tautology.
- Possible dataforms are Proofs of Ax and of C. -}
, ("WeakerTautologousConclusion", "WTC")
{- Some, but not all, interpretations are models of Ax, and
all interpretations are models of C.
- F is valid, and C is a tautology.
- See TautologousConclusion and WeakerConclusion. -}
, ("WeakerTheorem", "WTH")
{- Some interpretations are models of Ax,
all models of Ax are models of C,
some models of C are not models of Ax, and
some interpretations are not models of C.
- See Theorem and Satisfiable. -}
, ("ContradictoryAxioms", "CAX")
{- No interpretations are models of Ax.
- F is valid, and anything is a theorem of Ax.
- Possible dataforms are Refutations of Ax. -}
, ("SatisfiableConclusionContradictoryAxioms", "SCA")
{- No interpretations are models of Ax, and
some interpretations are models of C.
- See ContradictoryAxioms. -}
, ("TautologousConclusionContradictoryAxioms", "TCA")
{- No interpretations are models of Ax, and
all interpretations are models of C.
- See TautologousConclusion and SatisfiableConclusionContradictoryAxioms. -}
, ("WeakerConclusionContradictoryAxioms", "WCA")
{- No interpretations are models of Ax, and
some, but not all, interpretations are models of C.
- See SatisfiableConclusionContradictoryAxioms and
SatisfiableCounterConclusionContradictoryAxioms. -}
, ("CounterUnsatisfiabilityPreserving", "CUP")
{- If there does not exist a model of Ax then there does not exist a model of
~C, i.e., if Ax is unsatisfiable then ~C is unsatisfiable. -}
, ("CounterSatisfiabilityPreserving", "CSP")
{- If there exists a model of Ax then there exists a model of ~C, i.e., if Ax
is satisfiable then ~C is satisfiable. -}
, ("EquiCounterSatisfiable", "ECS")
{- There exists a model of Ax iff there exists a model of ~C, i.e., Ax is
(un)satisfiable iff ~C is (un)satisfiable. -}
, ("CounterSatisfiable", "CSA")
{- Some interpretations are models of Ax, and
some models of Ax are models of ~C.
- F is not valid, ~F is satisfiable, and C is not a theorem of Ax.
- Possible dataforms are Models of Ax | ~C. -}
, ("CounterTheorem", "CTH")
{- All models of Ax are models of ~C.
- F is not valid, and ~C is a theorem of Ax.
- Possible dataforms are Proofs of ~C from Ax. -}
, ("CounterEquivalent", "CEQ")
{- Some interpretations are models of Ax,
all models of Ax are models of ~C, and
all models of ~C are models of Ax
(i.e., all interpretations are models of Ax xor of C).
- F is not valid, and ~C is a theorem of Ax.
- Possible dataforms are Proofs of ~C from Ax and of Ax from ~C. -}
, ("UnsatisfiableConclusion", "UNC")
{- Some interpretations are models of Ax, and
all interpretations are models of ~C
(i.e., no interpretations are models of C).
- F is not valid, and ~C is a tautology.
- Possible dataforms are Proofs of ~C. -}
, ("WeakerCounterConclusion", "WCC")
{- Some interpretations are models of Ax, and
all models of Ax are models of ~C, and
some models of ~C are not models of Ax.
- See CounterTheorem and CounterSatisfiable. -}
, ("EquivalentCounterTheorem", "ECT")
{- Some, but not all, interpretations are models of Ax,
all models of Ax are models of ~C, and
all models of ~C are models of Ax.
- See CounterEquivalent. -}
, ("FinitelyUnsatisfiable", "FUN")
{- All finite interpretations are finite models of Ax, and
all finite interpretations are finite models of ~C
(i.e., no finite interpretations are finite models of C). -}
, ("Unsatisfiable", "UNS")
{- All interpretations are models of Ax, and
all interpretations are models of ~C.
(i.e., no interpretations are models of C).
- F is unsatisfiable, ~F is valid, and ~C is a tautology.
- Possible dataforms are Proofs of Ax and of C, and Refutations of F. -}
, ("WeakerUnsatisfiableConclusion", "WUC")
{- Some, but not all, interpretations are models of Ax, and
all interpretations are models of ~C.
- See Unsatisfiable and WeakerCounterConclusion. -}
, ("WeakerCounterTheorem", "WCT")
{- Some interpretations are models of Ax,
all models of Ax are models of ~C,
some models of ~C are not models of Ax, and
some interpretations are not models of ~C.
- See CounterSatisfiable. -}
, ("SatisfiableCounterConclusionContradictoryAxioms", "SCC")
{- No interpretations are models of Ax, and
some interpretations are models of ~C.
- See ContradictoryAxioms. -}
, ("UnsatisfiableConclusionContradictoryAxioms", "UCA")
{- No interpretations are models of Ax, and
all interpretations are models of ~C
(i.e., no interpretations are models of C).
- See UnsatisfiableConclusion and
- SatisfiableCounterConclusionContradictoryAxioms. -}
, ("NoConsequence", "NOC") ]
{- Some interpretations are models of Ax,
some models of Ax are models of C, and
some models of Ax are models of ~C.
- F is not valid, F is satisfiable, ~F is not valid, ~F is satisfiable, and
C is not a theorem of Ax.
- Possible dataforms are pairs of models, one Model of Ax | C and one Model
of Ax | ~C. -}
nosuccess :: [(String, String)]
nosuccess =
[ ("NoSuccess", "NOS")
-- The logical data has not been processed successfully (yet).
, ("Open", "OPN")
-- A success value has never been established.
, ("Unknown", "UNK")
-- Success value unknown, and no assumption has been made.
, ("Assumed", "ASS(U,S)")
{- The success ontology value S has been assumed because the actual value is
unknown for the no-success ontology reason U. U is taken from the
subontology starting at Unknown in the no-success ontology. -}
, ("Stopped", "STP")
{- Software attempted to process the data, and stopped without a success
status. -}
, ("Error", "ERR")
-- Software stopped due to an error.
, ("OSError", "OSE")
-- Software stopped due to an operating system error.
, ("InputError", "INE")
-- Software stopped due to an input error.
, ("SyntaxError", "SYE")
-- Software stopped due to an input syntax error.
, ("SemanticError", "SEE")
-- Software stopped due to an input semantic error.
, ("TypeError", "TYE")
-- Software stopped due to an input type error (for typed logical data).
, ("Forced", "FOR")
-- Software was forced to stop by an external force.
, ("User", "USR")
-- Software was forced to stop by the user.
, ("ResourceOut", "RSO")
-- Software stopped because some resource ran out.
, ("Timeout", "TMO")
-- Software stopped because the CPU time limit ran out.
, ("MemoryOut", "MMO")
-- Software stopped because the memory limit ran out.
, ("GaveUp", "GUP")
-- Software gave up of its own accord.
, ("Incomplete", "INC")
-- Software gave up because it's incomplete.
, ("Inappropriate", "IAP")
-- Software gave up because it cannot process this type of data.
, ("InProgress", "INP")
-- Software is still running.
, ("NotTried", "NTT")
-- Software has not tried to process the data.
, ("NotTriedYet", "NTY") ]
-- Software has not tried to process the data yet, but might in the future.
szsCheck :: [(String, String)] -> [String] -> String -> Bool
szsCheck pl l = maybe False (`elem` l)
. (`lookup` map (\ (t, r) -> (map toLower t, r)) pl) . map toLower
szsProved :: String -> Bool
szsProved = szsCheck successes ["SAT", "THM"]
szsDisproved :: String -> Bool
szsDisproved = szsCheck successes ["CSA", "UNS"]
szsTimeout :: String -> Bool
szsTimeout = szsCheck nosuccess ["TMO", "RSO"]
szsMemoryOut :: String -> Bool
szsMemoryOut = szsCheck nosuccess ["MMO"]
szsStopped :: String -> Bool
szsStopped = szsCheck nosuccess ["STP"]