-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.agda
56 lines (44 loc) · 1.11 KB
/
README.agda
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
module README where
-- Section 3.2 All-or-Nothing Counters
import AllOrNothing
-- Section 3.3 Application Counters
import Application
-- Section 3.4 All in One (completeness results)
import AllInOne
-- Section 3.4 (Full Calculus)
import STLC.Decl
import STLC.Decl.Properties
-- Section 3.5 (Annotatability)
import STLC.Annotatability
-- Section 4.3
import STLC.Algo
import STLC.Algo.Properties
import STLC.Algo.Decidable
-- Section 4.4
import STLC.Soundness
import STLC.Completeness
-- Section 5.1 Syntax
import Record.Common
-- Section 5.2 QTAS
import Record.Decl
import Record.Decl.Properties
-- Section 5.3 Algo
import Record.Algo
import Record.Algo.Properties
-- Section 5.4
-- soundness and completeness
import Record.Soundness
import Record.Completeness
-- annotatability
import Record.Annotatability.Elaboration
-- type soundness
-- perservation after erasure
import TypeSound.Main
-- preservation and progress of TAS
import TypeSound.Target
-- determinism of typing and subtyping
import Record.Algo.Uniqueness
-- decidability of typing and subtyping
import Record.Algo.Decidable
-- decidability of QTAS
import Record.Dec