Skip to content

Commit 23b7da7

Browse files
Remove zero arguments for IsNonAssociativeRing
Now that we've replaced the field `zero` with a definition, we need to update the usages of `IsNonAssociativeRing`.
1 parent 66b5974 commit 23b7da7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Algebra/Construct/DirectProduct.agda

-2
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,6 @@ nonAssociativeRing R S = record
347347
; *-identity = UnitalMagma.identity (unitalMagma R.*-unitalMagma S.*-unitalMagma)
348348
; distrib = (λ x y z (R.distribˡ , S.distribˡ) <*> x <*> y <*> z)
349349
, (λ x y z (R.distribʳ , S.distribʳ) <*> x <*> y <*> z)
350-
; zero = uncurry (λ x y R.zeroˡ x , S.zeroˡ y)
351-
, uncurry (λ x y R.zeroʳ x , S.zeroʳ y)
352350
}
353351

354352
} where module R = NonAssociativeRing R; module S = NonAssociativeRing S

0 commit comments

Comments
 (0)