Skip to content

Commit

Permalink
fixes issue #1688 (#2254)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmckinna authored Feb 5, 2024
1 parent 0841e34 commit 934c4a8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ New modules
Additions to existing modules
-----------------------------

* Exporting more `Raw` substructures from `Algebra.Bundles.Ring`:
```agda
rawNearSemiring : RawNearSemiring _ _
rawRingWithoutOne : RawRingWithoutOne _ _
+-rawGroup : RawGroup _ _
* In `Algebra.Module.Bundles`, raw bundles are re-exported and the bundles expose their raw counterparts.
* In `Algebra.Module.Construct.DirectProduct`:
Expand Down
6 changes: 6 additions & 0 deletions src/Algebra/Bundles.agda
Original file line number Diff line number Diff line change
Expand Up @@ -961,6 +961,9 @@ record Ring c ℓ : Set (suc (c ⊔ ℓ)) where
; semiringWithoutAnnihilatingZero
)

open NearSemiring nearSemiring public
using (rawNearSemiring)

open AbelianGroup +-abelianGroup public
using () renaming (group to +-group; invertibleMagma to +-invertibleMagma; invertibleUnitalMagma to +-invertibleUnitalMagma)

Expand All @@ -974,6 +977,9 @@ record Ring c ℓ : Set (suc (c ⊔ ℓ)) where
; 1# = 1#
}

open RawRing rawRing public
using (rawRingWithoutOne; +-rawGroup)


record CommutativeRing c ℓ : Set (suc (c ⊔ ℓ)) where
infix 8 -_
Expand Down

0 comments on commit 934c4a8

Please sign in to comment.