Cross Reference: /hets/Maude/Logic_Maude.hs
Logic_Maude.hs revision 6858f9c9c8b077b2b574a9f30753cf5fec8124d6
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
{- |
Module : $Header$
Description : Instance of class Logic for Maude
Copyright : (c) Martin Kuehl, Uni Bremen 2008
License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt
Maintainer : mkhl@informatik.uni-bremen.de
Stability : experimental
Portability : non-portable (imports Logic.Logic)
Instance of class Logic for Maude.
Also instances of Syntax and Category.
... sometime in the future, that is.
-}
{-
Ref.
...
-}
module Maude.Logic_Maude where
import Logic.Logic
import qualified Maude.Sign as Sign
import qualified Maude.Morphism as Morphism
import qualified Maude.Symbol as Symbol
import qualified Maude.Sentence as Sentence
-- | Lid for Maude
data Maude = Maude
deriving (Show, Eq)
-- | Instance of Language for Maude
instance Language Maude where
description _ = unlines
[ "Maude - A High-Performance Rewriting Logic Framework"
, "This logic is rewriting logic, a logic of concurrent change that"
, " can naturally deal with state and with concurrent computations."
, "For an overview of Maude see <http://maude.cs.uiuc.edu/overview.html>."
, "For an information on rewriting logic see <http://maude.cs.uiuc.edu/rwl.html>."
, "For anything else about the Maude project see <http://maude.cs.uiuc.edu/>." ]
-- | Instance of Category for Maude
instance Category Sign.Sign Morphism.Morphism where
ide = Morphism.identity
dom = Morphism.source
cod = Morphism.target
comp = Morphism.compose
-- isInclusion = \_ -> False -- TODO: implement Category.isInclusion.
-- legal_obj = Sign.isLegal -- seems to be obsolete
legal_mor = Morphism.isLegal
-- | Instance of Sentences for Maude
instance Sentences Maude Sentence.Sentence Sign.Sign Morphism.Morphism Symbol.Symbol where
-- -- sentences -- --
-- Uncommenting this signals a type error I don't understand...
-- is_of_sign Maude = flip Sign.includesSentence
map_sen Maude = Morphism.mapSentence
-- -- | simplification of sentences (leave out qualifications)
-- simplify_sen :: lid -> sign -> sentence -> sentence
-- simplify_sen _ _ = id -- default implementation
-- simplify_sen Maude _ = id
-- -- | parsing of sentences
-- parse_sentence :: lid -> Maybe (AParser st sentence)
-- parse_sentence _ = Nothing
-- parse_sentence Maude = Nothing
-- -- | print a sentence with comments
-- print_named :: lid -> Named sentence -> Doc
-- print_named _ = printAnnoted (addBullet . pretty) . fromLabelledSen
-- -- symbols -- --
sym_name Maude = Symbol.toId
sym_of Maude = Sign.symbols
symmap_of Maude = Morphism.symbolMap