diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2021-03-05 14:45:12 +0000 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2021-03-05 14:45:12 +0000 |
commit | 29c4bfe1440efb1de1ed6d000fcc1cd73dc26f12 (patch) | |
tree | 30861075c881eac35dbcdad34835b3b523a9fe83 /src/Cfe/Type.agda | |
parent | 90c7597b6f80e0bd5bb2a9a7245d097d40486518 (diff) |
Add types and satisfiability
Diffstat (limited to 'src/Cfe/Type.agda')
-rw-r--r-- | src/Cfe/Type.agda | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Cfe/Type.agda b/src/Cfe/Type.agda new file mode 100644 index 0000000..06a64c5 --- /dev/null +++ b/src/Cfe/Type.agda @@ -0,0 +1,9 @@ +{-# OPTIONS --without-K --safe #-} + +open import Relation.Binary using (Setoid) + +module Cfe.Type + {c ℓ} (over : Setoid c ℓ) + where + +open import Cfe.Type.Base public |