File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,12 @@ New modules
46
46
Additions to existing modules
47
47
-----------------------------
48
48
49
+ * Exporting more ` Raw ` substructures from ` Algebra.Bundles.Ring ` :
50
+ ``` agda
51
+ rawNearSemiring : RawNearSemiring _ _
52
+ rawRingWithoutOne : RawRingWithoutOne _ _
53
+ +-rawGroup : RawGroup _ _
54
+
49
55
* In `Algebra.Module.Bundles`, raw bundles are re-exported and the bundles expose their raw counterparts.
50
56
51
57
* In `Algebra.Module.Construct.DirectProduct`:
Original file line number Diff line number Diff line change @@ -961,6 +961,9 @@ record Ring c ℓ : Set (suc (c ⊔ ℓ)) where
961
961
; semiringWithoutAnnihilatingZero
962
962
)
963
963
964
+ open NearSemiring nearSemiring public
965
+ using (rawNearSemiring)
966
+
964
967
open AbelianGroup +-abelianGroup public
965
968
using () renaming (group to +-group; invertibleMagma to +-invertibleMagma; invertibleUnitalMagma to +-invertibleUnitalMagma)
966
969
@@ -974,6 +977,9 @@ record Ring c ℓ : Set (suc (c ⊔ ℓ)) where
974
977
; 1# = 1#
975
978
}
976
979
980
+ open RawRing rawRing public
981
+ using (rawRingWithoutOne; +-rawGroup)
982
+
977
983
978
984
record CommutativeRing c ℓ : Set (suc (c ⊔ ℓ)) where
979
985
infix 8 -_
You can’t perform that action at this time.
0 commit comments