Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding the new package ResolutionsOfStanleyReisnerRings #1511

Merged
merged 10 commits into from
Dec 8, 2020
1 change: 1 addition & 0 deletions M2/Macaulay2/packages/=distributed-packages
Original file line number Diff line number Diff line change
Expand Up @@ -214,5 +214,6 @@ StatGraphs
GraphicalModelsMLE
EigenSolver
MultiplicitySequence
ResolutionsOfStanleyReisnerRings
NumericalLinearAlgebra
ResLengthThree
5 changes: 4 additions & 1 deletion M2/Macaulay2/packages/Macaulay2Doc/overview_packages.m2
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ Node
Code
star := IMG {"src" => replace("PKG", "Style", currentLayout#"package") | "GoldStar.png", "alt" => "a gold star"};
categories := new MutableHashTable from {};
scan(separate_" " version#"packages", pkgname -> (
pkgs := separate_" " version#"packages";
oops := select(tally pkgs, v -> v > 1); -- are any packages listed twice? If so, it will cause an inscrutable error below when sorting pairs
if #oops > 0 then error ("some packages listed more than once in `version#\"packages\"` : ", concatenate demark_"," keys oops);
scan(pkgs, pkgname -> (
pkgopts := readPackage pkgname;
-- populate categories
scan(pkgopts.Keywords, keyword -> if not categories#?keyword
Expand Down
2 changes: 1 addition & 1 deletion M2/Macaulay2/packages/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CheckDocumentation ?= true
Verbose := $(if $(VERBOSE),true,false)
RerunExamples ?= false
debugLevel ?= 0
errorDepth ?= 3
errorDepth ?= 0

ARGS := RemakeAllDocumentation => $(RemakeAllDocumentation), \
IgnoreExampleErrors => $(IgnoreExampleErrors), \
Expand Down
Loading