Skip to content

Commit 04535a2

Browse files
committed
cleaning importations
1 parent b5d3e50 commit 04535a2

File tree

3 files changed

+7
-36
lines changed

3 files changed

+7
-36
lines changed

src/Relation/Binary/Domain/Bundles.agda

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,8 @@
66

77
module Relation.Binary.Domain.Bundles where
88

9+
open import Level using (Level; _⊔_; suc)
910
open import Relation.Binary.Bundles using (Poset)
10-
open import Relation.Binary.Core using (Rel)
11-
open import Level using (Level; _⊔_; suc; Lift; lift; lower)
12-
open import Function using (_∘_; id)
13-
open import Data.Product using (∃-syntax; _×_; _,_; proj₁; proj₂)
14-
open import Relation.Unary using (Pred)
15-
open import Relation.Binary.PropositionalEquality using (_≡_; subst; cong)
16-
open import Relation.Binary.Reasoning.PartialOrder
17-
open import Relation.Binary.Structures
18-
open import Data.Bool using (Bool; true; false; if_then_else_)
19-
open import Relation.Binary.Morphism.Structures
20-
open import Relation.Binary.Morphism.Structures using (IsOrderHomomorphism)
21-
open import Data.Nat.Properties using (≤-trans)
22-
2311
open import Relation.Binary.Domain.Structures
2412
open import Relation.Binary.Domain.Definitions
2513

@@ -45,7 +33,6 @@ module _ {c ℓ₁ ℓ₂ : Level} (P : Poset c ℓ₁ ℓ₂) where
4533
open IsDCPO DcpoStr public
4634

4735
module _ {c ℓ₁ ℓ₂ : Level} {P : Poset c ℓ₁ ℓ₂} {Q : Poset c ℓ₁ ℓ₂} where
48-
4936
private
5037
module P = Poset P
5138
module Q = Poset Q

src/Relation/Binary/Domain/Definitions.agda

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,10 @@
66

77
module Relation.Binary.Domain.Definitions where
88

9+
open import Data.Product using (∃-syntax; _×_; _,_)
10+
open import Level using (Level; _⊔_)
911
open import Relation.Binary.Bundles using (Poset)
10-
open import Relation.Binary.Core using (Rel)
11-
open import Level using (Level; _⊔_; suc; Lift; lift; lower)
12-
open import Function using (_∘_; id)
13-
open import Data.Product using (∃-syntax; _×_; _,_; proj₁; proj₂)
14-
open import Relation.Unary using (Pred)
15-
open import Relation.Binary.PropositionalEquality using (_≡_; subst; cong)
16-
open import Relation.Binary.Reasoning.PartialOrder
17-
open import Relation.Binary.Morphism.Structures
1812
open import Relation.Binary.Morphism.Structures using (IsOrderHomomorphism)
19-
open import Data.Nat.Properties using (≤-trans)
2013

2114
private variable
2215
c o ℓ e o' ℓ' e' ℓ₂ : Level
@@ -29,7 +22,6 @@ module _ where
2922

3023
module _ {c ℓ₁ ℓ₂ : Level} (P : Poset c ℓ₁ ℓ₂) where
3124
open Poset P
32-
3325
IsSemidirectedFamily : {Ix : Set c} (s : Ix Carrier) Set _
3426
IsSemidirectedFamily s = i j ∃[ k ] (s i ≤ s k × s j ≤ s k)
3527

src/Relation/Binary/Domain/Structures.agda

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,11 @@
66

77
module Relation.Binary.Domain.Structures where
88

9-
open import Relation.Binary.Bundles using (Poset)
10-
open import Relation.Binary.Core using (Rel)
11-
open import Level using (Level; _⊔_; suc; Lift; lift; lower)
12-
open import Function using (_∘_; id)
13-
open import Data.Product using (∃-syntax; _×_; _,_; proj₁; proj₂)
14-
open import Relation.Unary using (Pred)
15-
open import Relation.Binary.PropositionalEquality using (_≡_; subst; cong)
16-
open import Relation.Binary.Reasoning.PartialOrder
17-
open import Relation.Binary.Structures
18-
open import Data.Bool using (Bool; true; false; if_then_else_)
19-
open import Relation.Binary.Morphism.Structures
20-
open import Relation.Binary.Morphism.Structures using (IsOrderHomomorphism)
9+
open import Data.Product using (_×_; _,_)
2110
open import Data.Nat.Properties using (≤-trans)
11+
open import Function using (_∘_)
12+
open import Level using (Level; _⊔_; suc)
13+
open import Relation.Binary.Bundles using (Poset)
2214
open import Relation.Binary.Domain.Definitions
2315

2416
private variable

0 commit comments

Comments
 (0)