forked from agda/cubical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.agda
84 lines (58 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{-# OPTIONS --guardedness #-}
module Cubical.README where
------------------------------------------------------------------------
-- An experimental library for Cubical Agda
-----------------------------------------------------------------------
-- The library comes with a .agda-lib file, for use with the library
-- management system.
------------------------------------------------------------------------
-- Module hierarchy
------------------------------------------------------------------------
-- The core library for Cubical Agda.
-- It contains basic primitives, equivalences, glue types.
import Cubical.Core.Everything
-- The foundations for Cubical Agda.
-- The Prelude module is self-explanatory.
import Cubical.Foundations.Prelude
import Cubical.Foundations.Everything
-- Kinds and properties of functions
import Cubical.Functions.Everything
-- Data types and properties
import Cubical.Data.Everything
-- Higher-inductive types
import Cubical.HITs.Everything
-- Coinductive data types and properties
import Cubical.Codata.Everything
-- Papers
import Cubical.Papers.Everything
-- Properties and proofs about relations
import Cubical.Relation.Everything
-- Category theory
import Cubical.Categories.Everything
-- Homotopy theory
import Cubical.Homotopy.Everything
-- Properties and kinds of Modalities
import Cubical.Modalities.Everything
-- Various experiments using Cubical Agda
import Cubical.Experiments.Everything
-- Other modules (TODO: add descriptions)
import Cubical.Induction.Everything
import Cubical.Structures.Everything
-- general definition of cohomology
import Cubical.Cohomology.Everything
-- cohomology with constant Integer coefficients
import Cubical.ZCohomology.Everything
-- Algebra library (in development)
import Cubical.Algebra.Everything
-- Various talks
import Cubical.Talks.Everything
-- Reflection
import Cubical.Reflection.Everything
-- Displayed univalent graphs
import Cubical.Displayed.Everything
-- Various axioms and consequences
import Cubical.Axiom.Everything
-- Syntax typeclasses
import Cubical.Syntax.Everything
-- Automatic proving, solvers
import Cubical.Tactics.Everything