Skip to content

Commit

Permalink
Unify settings for Automizer/Taipan/Kojak, add data-race check (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
schuessf committed Apr 4, 2023
1 parent 67ec425 commit 980301f
Showing 1 changed file with 43 additions and 4 deletions.
47 changes: 43 additions & 4 deletions trunk/source/WebsiteStatic/config/config.dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const _CONFIG = {
// type: Setting type can be one of ("bool", "int", "string", "real")
type: "bool",
// default: Default state/value for the setting.
default: true,
default: false,
// range: If the type is "int" or "real", a slider will be generated in the frontend.
// range: [1, 12],
// options: If the type is "string", a selection field will be generated in the frontend.
Expand All @@ -101,6 +101,15 @@ const _CONFIG = {
type: "bool",
default: true,
visible: true
},
{
plugin_id: "de.uni_freiburg.informatik.ultimate.plugins.generator.cacsl2boogietranslator",
default: true,
visible: true,
name: "Check absence of data races in concurrent programs",
id: "cacsl2boogietranslator.check.absence.of.data.races.in.concurrent.programs",
type: "bool",
key: "Check absence of data races in concurrent programs"
}
]
},
Expand Down Expand Up @@ -143,7 +152,37 @@ const _CONFIG = {
language: "c",
id: "cKojak",
task_id: "KOJAK_C",
frontend_settings: []
frontend_settings: [
{
// name: Settings name displayed in the settings menu.
name: "Check for memory leak in main procedure",
// id: A mandatory unique id for this setting.
id: "chck_main_mem_leak",
// plugin_id: Ultimate plugin affected by this setting.
plugin_id: "de.uni_freiburg.informatik.ultimate.plugins.generator.cacsl2boogietranslator",
// key: Setting key as used by the plugin.
key: "Check for the main procedure if all allocated memory was freed",
// type: Setting type can be one of ("bool", "int", "string", "real")
type: "bool",
// default: Default state/value for the setting.
default: false,
// range: If the type is "int" or "real", a slider will be generated in the frontend.
// range: [1, 12],
// options: If the type is "string", a selection field will be generated in the frontend.
// options: ["foo", "bar", "baz"]
// visible: If true, this setting is exposed to the user.
visible: true
},
{
name: "Check for overflows of signed integers",
id: "chck_signed_int_overflow",
plugin_id: "de.uni_freiburg.informatik.ultimate.plugins.generator.cacsl2boogietranslator",
key: "Check absence of signed integer overflows",
type: "bool",
default: true,
visible: true
}
]
},
{
language: "boogie",
Expand All @@ -167,7 +206,7 @@ const _CONFIG = {
{
"plugin_id": "de.uni_freiburg.informatik.ultimate.plugins.generator.cacsl2boogietranslator",
"default": true,
"visible": false,
"visible": true,
"name": "Check absence of data races in concurrent programs",
"id": "cacsl2boogietranslator.check.absence.of.data.races.in.concurrent.programs",
"type": "bool",
Expand All @@ -190,7 +229,7 @@ const _CONFIG = {
{
"plugin_id": "de.uni_freiburg.informatik.ultimate.plugins.generator.cacsl2boogietranslator",
"default": false,
"visible": false,
"visible": true,
"name": "Check if freed pointer was valid",
"id": "cacsl2boogietranslator.check.if.freed.pointer.was.valid",
"type": "bool",
Expand Down

0 comments on commit 980301f

Please sign in to comment.