Skip to content

Commit

Permalink
Updated FSE classification.
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Nov 30, 2024
1 parent 3766de1 commit 6b7fc3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion util/csrankings.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def map_pacmmod_to_conference(journal: Conference, year: int, number_str: str) -
Area("pacmpl"): [Conference("PACMPL"), Conference("Proc. ACM Program. Lang.")],
Area("pacmmod"): [Conference("Proc. ACM Manag. Data")],
Area("icse"): [Conference("ICSE"), Conference("ICSE (1)"), Conference("ICSE (2)")],
Area("fse"): [Conference("SIGSOFT FSE"), Conference("ESEC/SIGSOFT FSE")],
Area("fse"): [Conference("SIGSOFT FSE"), Conference("ESEC/SIGSOFT FSE"), Conference("Proc. ACM Softw. Eng.")],
Area("ase"): [Conference("ASE")],
Area("issta"): [Conference("ISSTA")],
Area("sosp"): [Conference("SOSP")],
Expand Down
4 changes: 2 additions & 2 deletions util/regenerate_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ def handle_article(_: Any, article: ArticleType) -> bool: # type: ignore

areaname = confdict[confname]

# Special handling for PACMPL
if areaname == Area("pacmpl"):
# Special handling for PACMPL and PACMSE
if areaname == Area("pacmpl") or areaname == Area("pacmse"):
confname = Conference(article["number"])
if confname in confdict:
areaname = confdict[confname]
Expand Down

0 comments on commit 6b7fc3c

Please sign in to comment.