summaryrefslogtreecommitdiff
path: root/src/Cfe/Context.agda
diff options
context:
space:
mode:
authorChloe Brown <chloe.brown.00@outlook.com>2021-03-20 18:36:24 +0000
committerChloe Brown <chloe.brown.00@outlook.com>2021-03-20 18:36:24 +0000
commit4e0ceac75e6d9940f0e11f93a3815448df258c70 (patch)
tree486f5f28796ca2f4996f4caeaf63095d1b4c876c /src/Cfe/Context.agda
parent16afd9dff6798509a1d654b0f06e409353e01180 (diff)
Separate Context into a different module.
Diffstat (limited to 'src/Cfe/Context.agda')
-rw-r--r--src/Cfe/Context.agda10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Cfe/Context.agda b/src/Cfe/Context.agda
new file mode 100644
index 0000000..1c207f5
--- /dev/null
+++ b/src/Cfe/Context.agda
@@ -0,0 +1,10 @@
+{-# OPTIONS --without-K --safe #-}
+
+open import Relation.Binary using (Setoid)
+
+module Cfe.Context
+ {c ℓ} (over : Setoid c ℓ)
+ where
+
+open import Cfe.Context.Base over public
+open import Cfe.Context.Properties over public