diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2021-03-29 15:56:46 +0100 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2021-03-29 15:56:46 +0100 |
commit | da35892c463cd6b9a492c6aee09726a41031ca93 (patch) | |
tree | 1e34fa6e8bbb0702ab3bdbb4f21a54839ad64b39 /src/Cfe/Derivation.agda | |
parent | 3638caa4c6f363c1adc7c931f65dea3104cae796 (diff) |
Rename parse to derivation.
Diffstat (limited to 'src/Cfe/Derivation.agda')
-rw-r--r-- | src/Cfe/Derivation.agda | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Cfe/Derivation.agda b/src/Cfe/Derivation.agda new file mode 100644 index 0000000..4d54f8f --- /dev/null +++ b/src/Cfe/Derivation.agda @@ -0,0 +1,10 @@ +{-# OPTIONS --without-K --safe #-} + +open import Relation.Binary using (Setoid) + +module Cfe.Derivation + {c ℓ} (over : Setoid c ℓ) + where + +open import Cfe.Derivation.Base over public +open import Cfe.Derivation.Properties over public |