summaryrefslogtreecommitdiff
path: root/Everything.agda
blob: 1acafde082c06781889f9c9de396a879d00d3e65 (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
------------------------------------------------------------------------
-- 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

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

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

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

-- Definitions of a subset of Armv8-M instructions.
import Helium.Instructions

import Helium.Semantics.Denotational

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