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