Skip to content

Commit

Permalink
Bump up year for the next GAP bibliography update
Browse files Browse the repository at this point in the history
  • Loading branch information
olexandr-konovalov committed Jul 28, 2023
1 parent 6e1dd10 commit b2f309f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Doc/Bib/bibsort.g
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# `Doc/Bib/MSC` with lists of papers by the year of publication
# and by MSC category.

years:=[1987..2021];
years:=[1987..2023];

bib := ParseBibFiles("gap-publishednicer.bib")[1];;
Print( "Loaded ", Length(bib), " records\n");
Expand Down
2 changes: 1 addition & 1 deletion Doc/Bib/convbib.g
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ bib2niceandhtml := function(name, header, subheader)
local i, ii, bib, fh, out, a, b, years, counts, pos, flag,
mscreport, bstr, str, bad, citations_by_year_outfile,
citations_by_msc_outfile;
years:=[1987..2021];
years:=[1987..2023];
bstr := StringFile(Concatenation(name, ".bib"));
bstr := HeuristicTranslationsLaTeX2XML.Apply(bstr);
bib := ParseBibStrings(StringFile("gap-head.bib"), bstr);
Expand Down
8 changes: 4 additions & 4 deletions Doc/Bib/updatebib.g
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ od;
mathrev := Union(
MRNumbersFromMathSciNet( "ReviewText",
[ "www.gap", "gap-system.org", "GAP system", "GAP manual", "GAP4", "GAP3" ],
[ 1986 .. 2021 ] ),
[ 1986 .. 2023 ] ),
MRNumbersFromMathSciNet( "References",
[ "GAP system", "GAP manual", "GAP4", "GAP3" ],
[ 1986 .. 2021 ] )
[ 1986 .. 2023 ] )
);
return Filtered( mathrev, w -> (not w in ourmrno) and (not w in GAPIgnoreMRnumbers) );
end;
Expand All @@ -146,7 +146,7 @@ end;
CheckMathSciNetForUpdates:=function()
#
# The function retrieves all MathSciNet entries citing "www.gap" from
# 1986 till 2021.
# 1986 till 2023.
#
# We use "www.gap" in references to cover our old and new website addresses.
# This covers the majority of GAP citations. There might be several other
Expand All @@ -158,7 +158,7 @@ CheckMathSciNetForUpdates:=function()
#
local mathrev, ourbib, duplicates, ourmrno, ourlabel, b, nr, pos, searchres,
entry, suggestions, bib, newmrno, newlist, context, w;
mathrev := MRNumbersFromMathSciNet( "References", [ "www.gap", "gap-system.org" ], [ 1986 .. 2021 ] );
mathrev := MRNumbersFromMathSciNet( "References", [ "www.gap", "gap-system.org" ], [ 1986 .. 2023 ] );
Print( "Reading the GAP bibliography ... \n" );
ourbib:=ParseBibFiles("gap-published.bib")[1];;
Print( "Checking for multiple labels ... \n");
Expand Down

0 comments on commit b2f309f

Please sign in to comment.