diff options
Diffstat (limited to 'src/Cfe/Context.agda')
-rw-r--r-- | src/Cfe/Context.agda | 10 |
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 |