blob: 84972511323621c833ace1044987d87cba32bd83 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# OPTIONS --without-K --safe #-}
open import Relation.Binary using (Setoid)
module Cfe.Expression
{a ℓ} (setoid : Setoid a ℓ)
where
open import Cfe.Expression.Base setoid public
open import Cfe.Expression.Properties setoid public
|