Make definition of Tree private
This commit is contained in:
parent
086e98e532
commit
eaae27f043
|
@ -24,7 +24,8 @@ open import Relation.Binary.PropositionalEquality using (_≡_; refl; cong; modu
|
|||
open import Relation.Nullary.Construct.Add.Extrema
|
||||
open import Relation.Nullary.Decidable.Core
|
||||
|
||||
data Tree (l u : Carrier ±) : Set (c ⊔ ℓ₂) where
|
||||
private
|
||||
data Tree (l u : Carrier ±) : Set (c ⊔ ℓ₂) where
|
||||
leaf : .(l ≤± u) → Tree l u
|
||||
node : (x : Carrier) → Tree l [ x ] → Tree [ x ] u → Tree l u
|
||||
|
||||
|
|
Loading…
Reference in New Issue