From 04e8cb08985c6fbb707d4fa99c4a5f7eb564a1b0 Mon Sep 17 00:00:00 2001 From: Linus Gasser Date: Tue, 5 Sep 2023 15:01:07 +0200 Subject: [PATCH 1/2] Update data.py Explain the different types of software --- data.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/data.py b/data.py index 9a77625..a692791 100644 --- a/data.py +++ b/data.py @@ -76,12 +76,12 @@ sy.Optional("layman_desc"): sy.Str(), sy.Optional("tech_desc"): sy.Str(), sy.Optional("type"): sy.CommaSeparated(sy.Enum([ - "Application", - "Library", - "Framework", - "Toolset", - "Simulation", - "Experiments", + "Application", # Stand-alone code with useful functionality outside of the paper + "Library", # Code to be included in other projects outside of the paper + "Framework", # A set of concepts and best practices for a given task + "Toolset", # Various stand-alone applications for a given task + "Simulation", # Generic code that can be used to run simpulations described in the paper + "Experiments", # Code that produces figures and graphs of the paper ])), sy.Optional("notes"): sy.Str(), sy.Optional("url"): sy.Url(), From 1dee297c2c87161b85a776136620d3de4e417aa7 Mon Sep 17 00:00:00 2001 From: Linus Gasser Date: Tue, 12 Sep 2023 13:22:01 +0200 Subject: [PATCH 2/2] Update data.py Co-authored-by: Ahmed Elghareeb --- data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data.py b/data.py index a692791..feaa565 100644 --- a/data.py +++ b/data.py @@ -80,7 +80,7 @@ "Library", # Code to be included in other projects outside of the paper "Framework", # A set of concepts and best practices for a given task "Toolset", # Various stand-alone applications for a given task - "Simulation", # Generic code that can be used to run simpulations described in the paper + "Simulation", # Generic code that can be used to run simulations described in the paper "Experiments", # Code that produces figures and graphs of the paper ])), sy.Optional("notes"): sy.Str(),