@@ -18,19 +18,24 @@ open import Data.List.Properties using (≡-dec; length-++)
18
18
open import Data.List.Relation.Unary.All as All using (All; []; _∷_)
19
19
open import Data.List.Relation.Unary.AllPairs using (AllPairs; []; _∷_)
20
20
open import Data.List.Relation.Unary.Any using (Any; here; there)
21
- open import Data.Fin.Base using (Fin; toℕ; cast) renaming (zero to fzero; suc to fsuc)
21
+ open import Data.Fin.Base
22
+ using (Fin; toℕ; cast)
23
+ renaming (zero to fzero; suc to fsuc)
22
24
open import Data.Nat.Base using (ℕ; zero; suc)
23
25
open import Data.Nat.Properties
24
- open import Level
25
- open import Relation.Nullary hiding (Irrelevant)
26
- import Relation.Nullary.Decidable as Dec using (map′)
27
- open import Relation.Unary as U using (Pred)
26
+ open import Level using (Level; _⊔_)
28
27
open import Relation.Binary.Core renaming (Rel to Rel₂)
29
- open import Relation.Binary.Definitions using (Reflexive; _Respects_; _Respects₂_)
28
+ open import Relation.Binary.Definitions
29
+ using (Reflexive; _Respects_; _Respects₂_)
30
30
open import Relation.Binary.Bundles using (Setoid; DecSetoid; Preorder; Poset)
31
- open import Relation.Binary.Structures using (IsEquivalence; IsDecEquivalence; IsPartialOrder; IsPreorder)
31
+ open import Relation.Binary.Structures
32
+ using (IsEquivalence; IsDecEquivalence; IsPartialOrder; IsPreorder)
32
33
open import Relation.Binary.PropositionalEquality.Core as ≡ using (_≡_)
33
34
import Relation.Binary.PropositionalEquality.Properties as ≡
35
+ open import Relation.Nullary.Decidable as Dec
36
+ using (map′; yes; no; Dec; _because_)
37
+ open import Relation.Nullary.Negation.Core using (¬_; contradiction)
38
+ open import Relation.Unary as U using (Pred)
34
39
35
40
private
36
41
variable
0 commit comments