forked from spechub/Hets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Modal.hs
38 lines (25 loc) · 1.08 KB
/
Modal.hs
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
{- |
Module : $Id$
Description : modal logic extension of CASL
Copyright : (c) Christian Maeder and Uni Bremen 2006
License : GPLv2 or higher, see LICENSE.txt
Maintainer : [email protected]
Stability : provisional
Portability : portable (except Modal.Logic_Modal)
This folder contains the files for ModalCASL basic specs
ModalCASL is the modal logic extension of CASL. See
/Heterogeneous specification and the heterogeneous tool set/
(<http://www.informatik.uni-bremen.de/~till/papers/habil.ps>), section 3.2.
The modules for ModalCASL largely are built on top of those for "CASL",
using the holes for future extensions that have been left in the
datatypes for CASL.
* "Modal.AS_Modal" abstract syntax
* "Modal.Parse_AS" parser
* "Modal.Print_AS" pretty printing
* "Modal.ModalSign" signatures
* "Modal.StatAna" static analysis
* "Modal.ModalSystems" recognition of various systems such as S4, S5 etc.
* "Modal.ATC_Modal" ATerm conversion
* "Modal.Logic_Modal" the ModalCASL instance of type class 'Logic.Logic.Logic'
-}
module Modal where