PrintTPTP.hs revision 56207d3d8820aef00cba6d90139265a9bc7f9c3d
{- |
Module : $Header$
Description : Pretty printing for SPASS signatures in TPTP syntax.
Copyright : (c) Rene Wagner, Rainer Grabbe, Uni Bremen 2005-2006
License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt
Maintainer : rainer25@informatik.uni-bremen.de
Stability : provisional
Portability : unknown
Pretty printing for SoftFOL signatures in TPTP syntax.
for the TPTP syntax documentation.
-}
module SoftFOL.PrintTPTP where
import Maybe
import Common.AS_Annotation
import Common.Doc
import Common.DocUtils
import Control.Exception
import SoftFOL.Sign
import SoftFOL.Conversions
-- | This type class allows pretty printing in TPTP syntax of instantiated data
-- types
class PrintTPTP a where
printTPTP :: a -> Doc
{- |
Helper function. Generates a separating comment line.
-}
separator :: String
separator = '%' : replicate 75 '-'
instance PrintTPTP Sign where
printTPTP = printTPTP . signToSPLogicalPart
{- |
Creates a Doc from a SoftFOL Problem.
-}
instance PrintTPTP SPProblem where
printTPTP p = text separator
$+$ text "% Problem" <+> colon <+> text (identifier p)
$+$ printTPTP (description p)
$+$ vcat (map printTPTP $ settings p)
$+$ text separator
$+$ printTPTP (logicalPart p)
{- |
Creates a Doc from a SoftFOL Logical Part.
-}
instance PrintTPTP SPLogicalPart where
printTPTP lp =
let decls = declarationList lp
validDeclarations = filter (\ decl -> case decl of
SPSubsortDecl {} -> True
SPTermDecl {} -> True
SPSimpleTermDecl _ -> True
_ -> False)
$ (maybe [] id decls)
in vcat (map (\ (decl, i) ->
text "fof" <>
parens (text ("declaration" ++ show i) <> comma <>
printTPTP SPOriginAxioms <> comma
$+$ parens (printTPTP decl)) <> dot)
$ zip validDeclarations [(0::Int)..])
$+$ vcat (map printTPTP $ formulaLists lp)
{- |
Creates a Doc from a SoftFOL Declaration.
A subsort declaration will be rewritten as a special SPQuantTerm.
-}
instance PrintTPTP SPDeclaration where
printTPTP decl = case decl of
SPSubsortDecl{sortSymA= sortA, sortSymB= sortB}
-> let subsortVar = spTerms $ genVarList sortA [sortB]
in
printTPTP SPQuantTerm{
quantSym=SPForall,
variableList=subsortVar,
qFormula=SPComplexTerm{
symbol=SPImplies,
arguments=[SPComplexTerm{
symbol=SPCustomSymbol sortA,
arguments=subsortVar},
SPComplexTerm{
symbol=SPCustomSymbol sortB,
arguments=subsortVar}]
}}
SPTermDecl{termDeclTermList= tlist, termDeclTerm= tt}
-> printTPTP SPQuantTerm{
quantSym=SPForall,
variableList=tlist,
qFormula=tt}
SPSimpleTermDecl stsym -> printTPTP stsym
pd@(SPPredDecl {}) -> maybe empty printTPTP $ predDecl2Term pd
_ -> empty
{- |
Creates a Doc from a SoftFOL Formula List.
-}
instance PrintTPTP SPFormulaList where
printTPTP l = vcat $ map (printFormula $ originType l) $ formulae l
{- |
Creates a Doc from a SoftFOL Origin Type.
-}
instance PrintTPTP SPOriginType where
printTPTP t = text $ case t of
SPOriginAxioms -> "axiom"
SPOriginConjectures -> "conjecture"
{- |
Creates a Doc from a SoftFOL Formula. Needed since SPFormula is just a
'type SPFormula = Named SPTerm' and thus instanciating PrintTPTP is not
possible.
-}
printFormula :: SPOriginType -> SPFormula -> Doc
-- printFormula ot f = printFormulaText ot (senAttr f) (sentence f)
printFormula ot f =
text "fof" <> parens (text (senAttr f) <> comma <> printTPTP ot <> comma
$+$ parens (printTPTP $ sentence f)) <> dot
{- |
Creates a Doc from a SoftFOL Term.
-}
instance PrintTPTP SPTerm where
printTPTP t = case t of
SPQuantTerm{quantSym= qsym, variableList= tlist, qFormula= tt}
-> printTPTP qsym
<+> brackets (printCommaSeparated $ getVariables tlist)
<+> colon
-- either all variables are simple terms
<+> if all isSimpleTerm tlist then parPrintTPTP tt
-- or there are none simple terms
else assert (not $ any isSimpleTerm tlist)
-- construct premiss for implication out of variableList (Forall)
-- construct conjunction out of variableList (Exists)
parens $ printTermList (cond qsym) [compTerm SPAnd tlist, tt]
SPComplexTerm{symbol= ctsym, arguments= args}
-> printTermList ctsym args
where
isSimpleTerm tm = case tm of
SPComplexTerm {arguments= []} -> True
_ -> False
-- check that every list entry is simple term
getSimpleVars = foldr (\v vl -> assert (isSimpleTerm v) $ v:vl) []
getVariables tl = if null $ filter isSimpleTerm tl
then foldr (\co col -> (getSimpleVars $
arguments co)++col)
[] tl
else getSimpleVars tl
cond qsy = case qsy of
SPForall -> SPImplies
SPExists -> SPAnd
_ -> error "SoftFOL.PrintTPTP: unknown quantifier symbol"
{- |
Creates a Doc from a list of SoftFOL Terms connected by a SoftFOL Symbol.
-}
printTermList :: SPSymbol -> [SPTerm] -> Doc
printTermList symb terms = let sbd = printTPTP symb in case symb of
SPNot -> case terms of
[t] -> sbd <+> parPrintTPTP t
_ -> error "PrintTPTP.printTermList"
_ -> if elem symb [SPEqual, SPOr, SPAnd, SPImplies, SPImplied, SPEquiv] then
fsep $ prepPunctuate (sbd <> space) $ map parPrintTPTP terms
else if null terms then sbd
else sbd <> parens (printCommaSeparated terms)
{- |
Helper function. Generates a comma separated list of SoftFOL Terms as a Doc.
-}
printCommaSeparated :: [SPTerm] -> Doc
printCommaSeparated = sepByCommas . map printTPTP
parPrintTPTP :: SPTerm -> Doc
parPrintTPTP t = (if isUnitary t then id else parens) $ printTPTP t
isUnitary :: SPTerm -> Bool
isUnitary t = case t of
SPComplexTerm{symbol = ctsym, arguments = _ : _ : _} ->
not (elem ctsym [SPOr, SPAnd, SPImplies, SPImplied, SPEquiv])
_ -> True
{- |
Creates a Doc from a SoftFOL Quantifier Symbol.
-}
instance PrintTPTP SPQuantSym where
printTPTP qs = text $ case qs of
SPForall -> "!"
SPExists -> "?"
SPCustomQuantSym cst -> show cst
{- |
Creates a Doc from a SoftFOL Symbol.
-}
instance PrintTPTP SPSymbol where
printTPTP s = text $ case s of
SPEqual -> "="
SPTrue -> "$true"
SPFalse -> "$false"
SPOr -> "|"
SPAnd -> "&"
SPNot -> "~"
SPImplies -> "=>"
SPImplied -> "<="
SPEquiv -> "<=>"
SPCustomSymbol cst -> show cst
_ -> showSPSymbol s
{- |
Creates a Doc from a SoftFOL description.
-}
instance PrintTPTP SPDescription where
printTPTP d = spCommentText "Name " (name d)
$+$ spCommentText "Author " (author d)
$+$ maybe empty (spCommentText "Version") (version d)
$+$ maybe empty (spCommentText "Logic ") (logic d)
$+$ text "% Status " <+> colon <+> printTPTP (status d)
$+$ spCommentText "Desc " (desc d)
$+$ maybe empty (spCommentText "Date ") (date d)
{- |
Helper function. Creates a formatted comment output for a description field.
On left side will be displayed the field's name, on right side its content.
-}
spCommentText :: String -> String -> Doc
spCommentText fieldName fieldDesc =
hsep [text "%", text fieldName, colon, text fieldDesc]
{- |
Creates a Doc from an 'SPLogState'.
-}
instance PrintTPTP SPLogState where
printTPTP s = text $ case s of
SPStateSatisfiable -> "satisfiable"
SPStateUnsatisfiable -> "unsatisfiable"
SPStateUnknown -> "unknown"
instance PrintTPTP SPSetting where
printTPTP (SPGeneralSettings e) =
hsep [text "% Option ", colon, text $ show e]
printTPTP (SPSettings sname settingText ) =
hsep [text "% Option ", colon, text $ show sname,
comma, text $ show settingText]
{-
printTPTP (SPFlag sw v) =
if (null sw) then
hsep [text "% Option ", colon, text v]
else
hsep [text "% Option ", colon, text sw, comma, text v]
printTPTP _ =
error "SPClauseRelation pretty printing not yet implemented"
-}