-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.agda
65 lines (39 loc) · 1.69 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
57
58
59
60
61
62
63
64
65
------------------------------------------------------------------------
-- Experiments related to equality
--
-- Nils Anders Danielsson
--
-- Some files have been developed in collaboration with others, see
-- the individual files.
------------------------------------------------------------------------
{-# OPTIONS --cubical --with-K --guardedness --sized-types --prop #-}
module README where
-- "Safe" code that uses --cubical-compatible.
import README.Safe.Cubical-compatible
-- "Safe" code that uses --cubical-compatible and --erased-matches.
import README.Safe.Cubical-compatible.Erased-matches
-- "Safe" code that uses --cubical-compatible and --prop.
import README.Safe.Cubical-compatible.Prop
-- "Safe" code that uses --cubical-compatible, --prop and
-- --erased-matches.
import README.Safe.Cubical-compatible.Prop.Erased-matches
-- "Safe" code that uses --erased-cubical.
import README.Safe.Cubical.Erased
-- "Safe" code that uses --erased-cubical and --guardedness.
import README.Safe.Cubical.Erased.Guardedness
-- "Safe" code that uses --erased-cubical and --prop.
import README.Safe.Cubical.Erased.Prop
-- "Safe" code that uses --cubical.
import README.Safe.Cubical
-- "Safe" code that uses --with-K.
import README.Safe.With-K
-- Code which might depend on potentially unsafe features (other than
-- --sized-types).
import README.Unsafe
-- Code which is "safe", except for the use of --sized-types.
import README.Unsafe.Sized-types
-- Code related to the paper "Logical properties of a modality for
-- erasure". This code uses both --cubical and --with-K, but not at
-- the same time, except in the module README.Erased, which for that
-- reason cannot use --safe.
import README.Erased