Cross Reference: /hets/SoftFOL/Print.hs
Print.hs revision 135bcb7f65991146c103e5e7599adbc49fe7359d
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
{- |
Module : $Header$
Description : Pretty printing for SoftFOL problems in DFG.
Copyright : (c) Rene Wagner, Uni Bremen 2005
License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt
Maintainer : luecke@informatik.uni-bremen.de
Stability : provisional
Portability : unknown
Pretty printing for SoftFOL signatures.
Refer to <http://spass.mpi-sb.mpg.de/webspass/help/syntax/dfgsyntax.html>
for the SPASS syntax documentation.
-}
module SoftFOL.Print where
import Common.AS_Annotation
import Common.Doc
import Common.DocUtils
import SoftFOL.Sign
import SoftFOL.Conversions
instance Pretty Sign where
pretty = pretty . signToSPLogicalPart
{- |
Helper function. Generates a '.' as a Doc.
-}
endOfListS :: String
endOfListS = "end_of_list."
{- |
Creates a Doc from a SPASS Problem.
-}
instance Pretty SPProblem where
pretty p = text "begin_problem" <> parens (text (identifier p)) <> dot
$+$ pretty (description p)
$+$ pretty (logicalPart p)
$+$ printSettings (settings p)
$+$ text "end_problem."
{- |
Creates a Doc from a SPASS Logical Part.
-}
instance Pretty SPLogicalPart where
pretty lp =
pretty (symbolList lp)
$+$ (case declarationList lp of
Nothing -> empty
Just l -> text "list_of_declarations."
$+$ vcat (map pretty l)
$+$ text endOfListS)
$+$ vcat (map pretty $ formulaLists lp)
{- |
Creates a Doc from a SPASS Symbol List.
-}
instance Pretty SPSymbolList where
pretty sl = text "list_of_symbols."
$+$ printSignSymList "functions" (functions sl)
$+$ printSignSymList "predicates" (predicates sl)
$+$ printSignSymList "sorts" (sorts sl)
$+$ printSignSymList "operators" (operators sl)
$+$ printSignSymList "quantifiers" (quantifiers sl)
$+$ text endOfListS
where
printSignSymList lname list = case list of
[] -> empty
_ -> text lname <>
brackets (vcat $ punctuate comma $ map pretty list) <> dot
{-|
Helper function. Creates a Doc from a Signature Symbol.
-}
instance Pretty SPSignSym where
pretty ssym = case ssym of
SPSimpleSignSym s -> text s
_ -> parens (text (sym ssym) <> comma <> pretty (arity ssym))
{- |
Creates a Doc from a SPASS Declaration
-}
instance Pretty SPDeclaration where
pretty d = case d of
SPSubsortDecl {sortSymA= a, sortSymB= b} ->
text "subsort" <> parens (text a <> comma <> text b) <> dot
SPTermDecl {termDeclTermList= l, termDeclTerm= t} ->
pretty (SPQuantTerm {quantSym= SPForall, variableList= l, qFormula= t})
<> dot
SPSimpleTermDecl t ->
pretty t <> dot
SPPredDecl {predSym= p, sortSyms= slist} ->
pretty (SPComplexTerm {symbol= (SPCustomSymbol "predicate"), arguments=
(map (\x-> SPSimpleTerm (SPCustomSymbol x)) (p:slist))}) <> dot
SPGenDecl {sortSym= s, freelyGenerated= freelygen, funcList= l} ->
text "sort" <+> text s <+> (if freelygen then text "freely" else empty)
<+> text "generated by"
<+> brackets (hcat $ punctuate comma $ map text l) <> dot
{- |
Creates a Doc from a SPASS Formula List
-}
instance Pretty SPFormulaList where
pretty l = text "list_of_formulae" <> parens (pretty (originType l)) <> dot
$+$ vcat (map (\ x -> printFormula x <> dot) $ formulae l)
$+$ text endOfListS
{- |
Creates a Doc from a SPASS Origin Type
-}
instance Pretty SPOriginType where
pretty t = text $ case t of
SPOriginAxioms -> "axioms"
SPOriginConjectures -> "conjectures"
{- |
Creates a Doc from a SPASS Formula. Needed since SPFormula is just a
'type SPFormula = Named SPTerm' and thus instanciating Pretty is not
possible.
-}
printFormula :: SPFormula-> Doc
printFormula f =
text "formula" <> parens (pretty (sentence f) <> comma <> text (senAttr f))
{- |
Creates a Doc from a SPASS Term.
-}
instance Pretty SPTerm where
pretty t = case t of
SPQuantTerm{quantSym= qsym, variableList= tlist, qFormula= tt} ->
pretty qsym <>
parens (brackets (printTermList tlist) <> comma <> pretty tt)
SPSimpleTerm stsym -> pretty stsym
SPComplexTerm{symbol= ctsym, arguments= args} ->
pretty ctsym <>
if null args then empty else parens (printTermList args)
where
printTermList = hcat . punctuate comma . map pretty
{- |
Creates a Doc from a SPASS Quantifier Symbol.
-}
instance Pretty SPQuantSym where
pretty qs = text $ case qs of
SPForall -> "forall"
SPExists -> "exists"
SPCustomQuantSym cst -> cst
{- |
Creates a Doc from a SPASS Symbol.
-}
-- printSymbol :: SPSymbol-> Doc
instance Pretty SPSymbol where
pretty s = text $ case s of
SPEqual -> "equal"
SPTrue -> "true"
SPFalse -> "false"
SPOr -> "or"
SPAnd -> "and"
SPNot -> "not"
SPImplies -> "implies"
SPImplied -> "implied"
SPEquiv -> "equiv"
SPDiv -> "div"
SPComp -> "comp"
SPSum -> "sum"
SPConv -> "conv"
SPID -> "id"
SPCustomSymbol cst -> cst
{- |
Creates a Doc from a SPASS description.
-}
instance Pretty SPDescription where
pretty d =
let sptext str v = text str <> parens (textBraces $ text v) <> dot
mtext str = maybe empty $ sptext str
in text "list_of_descriptions."
$+$ sptext "name" (name d)
$+$ sptext "author" (author d)
$+$ mtext "version" (version d)
$+$ mtext "logic" (logic d)
$+$ text "status" <> parens (pretty $ status d) <> dot
$+$ sptext "description" (desc d)
$+$ mtext "date" (date d)
$+$ text endOfListS
{- |
surrounds a doc with "{* *}" as required for some of the
description fields and the settings.
-}
textBraces :: Doc -> Doc
textBraces d = text "{* " <> d <> text " *}"
{- |
Creates a Doc from an 'SPLogState'.
-}
instance Pretty SPLogState where
pretty s = text $ case s of
SPStateSatisfiable -> "satisfiable"
SPStateUnsatisfiable -> "unsatisfiable"
SPStateUnknown -> "unknown"
printSettings :: [SPSetting] -> Doc
printSettings [] = empty
printSettings l = case l of
[] -> empty
_ ->
text "list_of_settings(SPASS)." $+$
textBraces (hcat (map (pretty) l)) $+$
text endOfListS
instance Pretty SPSetting where
pretty (SPGeneralSettings e) =
hcat (map (\es -> case es of
SPHypothesis labels ->
text "hypothesis" <>
brackets (sepByCommas (map (pretty) labels)) <> dot)
e)
pretty (SPSettings _ body) =
hcat (map pretty body)
instance Pretty SPSettingBody where
pretty (SPFlag sw v) =
text sw <> parens (sepByCommas (map (pretty) v)) <> dot
pretty (SPClauseRelation cfrList) =
text "set_clauseFormulaRelation" <> parens (sepByCommas (map (pretty) cfrList)) <> dot
instance Pretty SPCRBIND where
pretty (SPCRBIND cSPR fSPR) =
text cSPR <> comma <> text fSPR