Skip to content

Commit e435db2

Browse files
authored
[ refactor ] Algebra.Properties.Magma.Divisibility (#2631)
* fix: issue #2629 * fix: uncaught use of deprecated name * check: possible knock opportunity
1 parent 10e115d commit e435db2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Algebra/Properties/CommutativeMagma/Divisibility.agda

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ x∣xy : ∀ x y → x ∣ x ∙ y
2828
x∣xy x y = y , comm y x
2929

3030
xy≈z⇒x∣z : x y {z} x ∙ y ≈ z x ∣ z
31-
xy≈z⇒x∣z x y xy≈z = ∣-respʳ xy≈z (x∣xy x y)
31+
xy≈z⇒x∣z x y xy≈z = ∣-respʳ-≈ xy≈z (x∣xy x y)
3232

3333
x|xy∧y|xy : x y (x ∣ x ∙ y) × (y ∣ x ∙ y)
3434
x|xy∧y|xy x y = x∣xy x y , x∣yx y x

src/Algebra/Properties/Magma/Divisibility.agda

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ x∣yx : ∀ x y → x ∣ y ∙ x
3939
x∣yx x y = y , refl
4040

4141
xy≈z⇒y∣z : x y {z} x ∙ y ≈ z y ∣ z
42-
xy≈z⇒y∣z x y xy≈z = ∣-respʳ-≈ xy≈z (x∣yx y x)
42+
xy≈z⇒y∣z x y xy≈z = x , xy≈z
4343

4444
------------------------------------------------------------------------
4545
-- Properties of non-divisibility

0 commit comments

Comments
 (0)