blob: 1c207f58660f048e551aab2e082584e3a140de6a (
plain)
1
2
3
4
5
6
7
8
9
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
|