summaryrefslogtreecommitdiff
path: root/Everything.agda
blob: aa36309e138bfa45a56514ed69fae682cd954f23 (plain)
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
------------------------------------------------------------------------
-- Agda Helium
--
-- All library modules, along with short descriptions.
------------------------------------------------------------------------

{-# OPTIONS --safe --without-K #-}

module Everything where

-- Definitions for more algebraic structures
import Helium.Algebra.Bundles

-- Relations between properties of functions when the underlying relation is a setoid
import Helium.Algebra.Consequences.Setoid

-- More core algebraic definitions
import Helium.Algebra.Core

-- Definitions of decidable algebraic structures like monoids and rings
-- (packed in records together with sets, operations, etc.)
import Helium.Algebra.Decidable.Bundles

-- Construct decidable algebras of vectors in a pointwise manner
import Helium.Algebra.Decidable.Construct.Pointwise

-- Some decidable algebraic structures (not packed up with sets,
-- operations, etc.)
import Helium.Algebra.Decidable.Structures

-- More properties of functions
import Helium.Algebra.Definitions

-- Redefine Ring monomorphisms to resolve problems with overloading.
import Helium.Algebra.Morphism.Structures

-- Ordering properties of functions
import Helium.Algebra.Ordered.Definitions

-- Definitions of ordered algebraic structures like monoids and rings
-- (packed in records together with sets, operations, etc.)
import Helium.Algebra.Ordered.StrictTotal.Bundles

-- Some ordered algebraic structures (not packed up with sets,
-- operations, etc.)
import Helium.Algebra.Ordered.StrictTotal.Structures

-- Some more algebraic structures
import Helium.Algebra.Structures

-- Definition of the Armv8-M pseudocode.
import Helium.Data.Pseudocode.Core

-- Definition of types and operations used by the Armv8-M pseudocode.
import Helium.Data.Pseudocode.Types

-- Definition of instructions using the Armv8-M pseudocode.
import Helium.Instructions.Base

-- Definitions of the data for a subset of Armv8-M instructions.
import Helium.Instructions.Core

-- Implementation of Barrett reduction.
import Helium.Instructions.Instances.Barrett

-- Base definitions for the denotational semantics.
import Helium.Semantics.Denotational.Core