forked from spechub/Hets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Proofs.hs
32 lines (21 loc) · 881 Bytes
/
Proofs.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
{- |
Proofs in development graphs.
Follows Sect. IV:4.4 of the CASL Reference Manual.
See also /Heterogeneous
specification and the heterogeneous tool set/
(<http://www.informatik.uni-bremen.de/~till/papers/habil.ps>), section 5.6.
"Proofs.Proofs" contains data types for proofs
"Proofs.EdgeUtils" and "Proofs.StatusUtils" contain
utilities.
The proof calculus for development graphs is contained
in the following modules:
"Proofs.InferBasic" rule /basic inference/
"Proofs.Global" rules /global decomposition/, /global subsumption/
"Proofs.Local" rules /local decomposition/, /local subsumption/
(these are derived rules in the calculus)
"Proofs.Composition" various composition rules
"Proofs.HideTheoremShift" rule /Hide-Theorem-Shift/
"Proofs.TheoremHideShift" rule /Theorem-Hide-Shift/
The remaining rules have not been implemented yet.
-}
module Proofs where