Skip to content

Commit 244d5ce

Browse files
Merge pull request #108 from mohamed-barakat/devel
comply with CAP, MonoidalCategories, CartesianCategories
2 parents d22467e + afdcf30 commit 244d5ce

4 files changed

Lines changed: 11 additions & 13 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "CapAndHomalg"
22
uuid = "c4774649-1891-41ea-a883-87141804c57c"
33
authors = ["Mohamed Barakat <mohamed.barakat@uni-siegen.de>"]
4-
version = "1.6.10"
4+
version = "1.6.11"
55

66
[deps]
77
GAP = "c863536a-3901-11e9-33e7-d5cd0df7b904"

docs/src/examples.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,10 @@ GAP: Q[x,y]
237237
julia> Sgrmod = GradedLeftPresentations( S )
238238
GAP: The category of graded left f.p. modules over Q[x,y] (with weights [ 1, 1 ])
239239
240-
julia> InfoOfInstalledOperationsOfCategory( Sgrmod )
241-
38 primitive operations were used to derive 229 operations for this category which algorithmically
240+
julia> Display( Sgrmod )
241+
A CAP category with name The category of graded left f.p. modules over Q[x,y] (with weights [ 1, 1 ]):
242+
243+
38 primitive operations were used to derive 242 operations for this category which algorithmically
242244
* IsAbelianCategoryWithEnoughProjectives
243245
* IsAdditiveMonoidalCategory
244246
and not yet algorithmically
@@ -306,8 +308,10 @@ GAP: <Subcategory of The category of graded left f.p. modules over Q[x,y] (with
306308
julia> CohP1 = Sgrmod / C
307309
GAP: The Serre quotient category of The category of graded left f.p. modules over Q[x,y] (with weights [ 1, 1 ]) by test function with name: is_artinian
308310
309-
julia> InfoOfInstalledOperationsOfCategory( CohP1 )
310-
21 primitive operations were used to derive 188 operations for this category which algorithmically
311+
julia> Display( CohP1 )
312+
A CAP category with name The Serre quotient category of The category of graded left f.p. modules over Q[x,y] (with weights [ 1, 1 ]) by test function with name: is_artinian:
313+
314+
21 primitive operations were used to derive 197 operations for this category which algorithmically
311315
* IsAbelianCategory
312316
313317
julia> Sh = CanonicalProjection( CohP1 )

src/CapAndHomalg.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ function __init__()
210210
if show_banner
211211
print("CapAndHomalg v")
212212
printstyled("$version\n", color = :green)
213-
print("Imported OSCAR's components GAP and Singular_jll\n")
214-
print("Type: ?CapAndHomalg for more information\n")
213+
println("Imported OSCAR's components GAP and Singular_jll")
214+
println("Type: ?CapAndHomalg for more information")
215215
end
216216

217217
end

src/conversions.jl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,3 @@ function Display(obj::GapObj)
9595
end
9696

9797
export Display
98-
99-
function InfoOfInstalledOperationsOfCategory(obj::GapObj)
100-
Display(InfoStringOfInstalledOperationsOfCategory(obj))
101-
end
102-
103-
export InfoOfInstalledOperationsOfCategory

0 commit comments

Comments
 (0)