Logic_Isabelle.hs revision 6fe9628743562678acf97d6730ebcfee5e9e50c2
{-# OPTIONS -cpp #-}
{- |
Module : $Header$
Copyright : (c) Till Mossakowski, Uni Bremen 2002-2004
Licence : similar to LGPL, see HetCATS/LICENCE.txt or LIZENZ.txt
Maintainer : hets@tzi.de
Stability : provisional
Portability : non-portable (imports Logic)
Instance of class Logic for Isabelle (including Pure, HOL etc.).
-}
module Isabelle.Logic_Isabelle where
import Data.Dynamic
import Common.DynamicUtils
import Common.Lib.Pretty
import Common.AS_Annotation
import Common.PrettyPrint
import Common.DefaultMorphism
import Logic.Logic
import Isabelle.ATC_Isabelle
import Isabelle.IsaSign
import Isabelle.IsaPrint
#ifdef UNI_PACKAGE
import Isabelle.IsaProve
#endif
-- a dummy datatype for the LogicGraph and for identifying the right
-- instances
data Isabelle = Isabelle deriving (Show)
instance Language Isabelle where
description _ =
"Isabelle - a generic theorem prover\n" ++
"This logic corresponds to the logic of Isabelle,\n" ++
"a weak intuitionistic type theory\n" ++
"Also, the logics encoded in Isabelle, like FOL, HOL, HOLCF, ZF " ++
"are made available\n" ++
"See http://www.cl.cam.ac.uk/Research/HVG/Isabelle/"
sentenceTc, signTc :: TyCon
sentenceTc = mkTyCon "Isabelle.Sign.Sentence"
signTc = mkTyCon "Isabelle.Sign.Sign"
instance Typeable Sentence where
typeOf _ = mkTyConApp sentenceTc []
instance Typeable Sign where
typeOf _ = mkTyConApp signTc []
instance Category Isabelle Sign IsabelleMorphism where
dom Isabelle = domOfDefaultMorphism
cod Isabelle = codOfDefaultMorphism
ide Isabelle = ideOfDefaultMorphism
comp Isabelle = compOfDefaultMorphism
legal_obj Isabelle = const True
legal_mor Isabelle = legalDefaultMorphism (legal_obj Isabelle)
-- abstract syntax, parsing (and printing)
instance Logic.Logic.Syntax Isabelle () () ()
-- default implementation is fine!
instance Sentences Isabelle Sentence () Sign IsabelleMorphism () where
map_sen Isabelle _ s = return s
print_named Isabelle ga (NamedSen lab _ sen) =
(if null lab then empty
else text lab <+> colon <> space) <> doubleQuotes (printText0 ga sen)
#ifdef UNI_PACKAGE
provers Isabelle = [isabelleProver]
cons_checkers Isabelle = [isabelleConsChecker]
#endif
-- other default implementations are fine
instance StaticAnalysis Isabelle () Sentence ()
() ()
Sign
IsabelleMorphism () () where
sign_to_basic_spec Isabelle _sigma _sens = ()
empty_signature Isabelle = emptySign
inclusion Isabelle = defaultInclusion (is_subsig Isabelle)
is_subsig Isabelle = const $ const True -- TODO!!
instance Logic Isabelle () () Sentence () ()
Sign
IsabelleMorphism () () ()
-- again default implementations are fine