diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2021-01-23 21:08:18 +0000 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2021-01-23 21:08:18 +0000 |
commit | 5c18d33d8e558068a9040c46ffc7bc17f34c29ef (patch) | |
tree | 4eb7313d82b9e8f62510db301f55b390d3339f03 /src/Cfe/Expression.agda | |
parent | b49309e3c9970a0a1be73239e80c432fb56b32f9 (diff) |
Define semantics of expressions.
Diffstat (limited to 'src/Cfe/Expression.agda')
-rw-r--r-- | src/Cfe/Expression.agda | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Cfe/Expression.agda b/src/Cfe/Expression.agda index e264926..8162cc0 100644 --- a/src/Cfe/Expression.agda +++ b/src/Cfe/Expression.agda @@ -1,7 +1,9 @@ {-# OPTIONS --without-K --safe #-} +open import Relation.Binary using (Setoid) + module Cfe.Expression - {ℓ} (A : Set ℓ) + {a ℓ} (setoid : Setoid a ℓ) where -open import Cfe.Expression.Base A public +open import Cfe.Expression.Base setoid public |