diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2021-03-05 16:52:06 +0000 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2021-03-05 16:52:06 +0000 |
commit | b82ce567e284582f28e171c12a733ddcdcbe980e (patch) | |
tree | fbb3aaf7e5a06083c2af57dc9aa2c035852566b6 /src/Cfe/Judgement.agda | |
parent | 5cc5441cc0dd4705735cff985e466d144a23fb70 (diff) |
Add the type judgement
Diffstat (limited to 'src/Cfe/Judgement.agda')
-rw-r--r-- | src/Cfe/Judgement.agda | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Cfe/Judgement.agda b/src/Cfe/Judgement.agda new file mode 100644 index 0000000..a77cf92 --- /dev/null +++ b/src/Cfe/Judgement.agda @@ -0,0 +1,9 @@ +{-# OPTIONS --without-K --safe #-} + +open import Relation.Binary using (Setoid) + +module Cfe.Judgement + {c ℓ} (over : Setoid c ℓ) + where + +open import Cfe.Judgement.Base over public |