Skip to content

Commit dbc373f

Browse files
Merge pull request #22 from mohamed-barakat/CAP
Cap
2 parents 5a91d11 + 4c71f30 commit dbc373f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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 <[email protected]>"]
4-
version = "1.1.6"
4+
version = "1.1.7"
55

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

bin/gap-with-cap-and-homalg-via-julia

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exec julia --startup-file=no -- "${BASH_SOURCE[0]}" "$@"
99
=#
1010

1111
# pass command line arguments to GAP.jl via a small hack
12-
ENV["GAP_SHOW_BANNER"] = "true"
12+
ENV["GAP_PRINT_BANNER"] = "true"
1313
__GAP_ARGS__ = ARGS
1414
using CapAndHomalg
1515
SizeScreen(SIZE_SCREEN_ORIGINAL)

docs/src/examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ julia> Sgrmod = GradedLeftPresentations( S )
270270
GAP: The category of graded left f.p. modules over Q[x,y] (with weights [ 1, 1 ])
271271
272272
julia> InfoOfInstalledOperationsOfCategory( Sgrmod )
273-
40 primitive operations were used to derive 179 operations for this category which
273+
40 primitive operations were used to derive 172 operations for this category which
274274
* IsAbCategory
275275
* IsMonoidalCategory
276276
* IsAbelianCategoryWithEnoughProjectives

src/CapAndHomalg.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ function __init__()
198198

199199
UseSystemSingular(false)
200200

201-
if haskey(ENV, "CAP_AND_HOMALG_SHOW_BANNER")
202-
show_banner = ENV["CAP_AND_HOMALG_SHOW_BANNER"] == "true"
201+
if haskey(ENV, "CAP_AND_HOMALG_PRINT_BANNER")
202+
show_banner = ENV["CAP_AND_HOMALG_PRINT_BANNER"] == "true"
203203
else
204204
show_banner =
205205
isinteractive() && !any(x -> x.name in ["Oscar", "HomalgProject"], keys(Base.package_locks))

0 commit comments

Comments
 (0)