fm-weck 1.5.2__py3-none-any.whl → 1.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. fm_weck/__init__.py +1 -1
  2. fm_weck/capture.py +1 -1
  3. fm_weck/cli.py +113 -4
  4. fm_weck/config.py +3 -6
  5. fm_weck/engine.py +31 -4
  6. fm_weck/exceptions.py +4 -0
  7. fm_weck/image_mgr.py +66 -0
  8. fm_weck/resources/__init__.py +4 -4
  9. fm_weck/resources/fm_tools/2ls.yml +22 -0
  10. fm_weck/resources/fm_tools/afltc.yml +59 -0
  11. fm_weck/resources/fm_tools/aise.yml +28 -1
  12. fm_weck/resources/fm_tools/aprove.yml +25 -0
  13. fm_weck/resources/fm_tools/brick.yml +25 -1
  14. fm_weck/resources/fm_tools/bubaak-split.yml +18 -0
  15. fm_weck/resources/fm_tools/bubaak.yml +10 -0
  16. fm_weck/resources/fm_tools/cbmc.yml +12 -0
  17. fm_weck/resources/fm_tools/cetfuzz.yml +21 -6
  18. fm_weck/resources/fm_tools/coastal.yml +12 -0
  19. fm_weck/resources/fm_tools/concurrentwitness2test.yml +25 -2
  20. fm_weck/resources/fm_tools/cooperace.yml +39 -0
  21. fm_weck/resources/fm_tools/coveritest.yml +22 -0
  22. fm_weck/resources/fm_tools/cpa-bam-bnb.yml +16 -1
  23. fm_weck/resources/fm_tools/cpa-bam-smg.yml +17 -1
  24. fm_weck/resources/fm_tools/cpa-lockator.yml +17 -1
  25. fm_weck/resources/fm_tools/cpa-witness2test.yml +13 -3
  26. fm_weck/resources/fm_tools/cpachecker.yml +150 -10
  27. fm_weck/resources/fm_tools/cpv.yml +48 -0
  28. fm_weck/resources/fm_tools/crux.yml +12 -0
  29. fm_weck/resources/fm_tools/cseq.yml +36 -9
  30. fm_weck/resources/fm_tools/dartagnan.yml +63 -3
  31. fm_weck/resources/fm_tools/dasa.yml +70 -0
  32. fm_weck/resources/fm_tools/deagle.yml +19 -1
  33. fm_weck/resources/fm_tools/divine.yml +13 -0
  34. fm_weck/resources/fm_tools/ebf.yml +17 -2
  35. fm_weck/resources/fm_tools/emergentheta.yml +51 -5
  36. fm_weck/resources/fm_tools/esbmc-incr.yml +59 -2
  37. fm_weck/resources/fm_tools/esbmc-kind.yml +59 -2
  38. fm_weck/resources/fm_tools/fdse.yml +31 -0
  39. fm_weck/resources/fm_tools/fizzer.yml +32 -3
  40. fm_weck/resources/fm_tools/frama-c-sv.yml +21 -2
  41. fm_weck/resources/fm_tools/fshell-witness2test.yml +13 -3
  42. fm_weck/resources/fm_tools/function-res.yml +64 -0
  43. fm_weck/resources/fm_tools/fusebmc-ia.yml +20 -6
  44. fm_weck/resources/fm_tools/fusebmc.yml +25 -4
  45. fm_weck/resources/fm_tools/gazer-theta.yml +16 -3
  46. fm_weck/resources/fm_tools/gdart-llvm.yml +16 -1
  47. fm_weck/resources/fm_tools/gdart.yml +49 -2
  48. fm_weck/resources/fm_tools/goblint-par.yml +66 -0
  49. fm_weck/resources/fm_tools/goblint.yml +239 -12
  50. fm_weck/resources/fm_tools/goblitch.yml +77 -0
  51. fm_weck/resources/fm_tools/graves-par.yml +4 -1
  52. fm_weck/resources/fm_tools/graves.yml +20 -5
  53. fm_weck/resources/fm_tools/gwit.yml +13 -3
  54. fm_weck/resources/fm_tools/hornix.yml +26 -4
  55. fm_weck/resources/fm_tools/hybridtiger.yml +12 -1
  56. fm_weck/resources/fm_tools/iekke.yml +73 -0
  57. fm_weck/resources/fm_tools/infer.yml +12 -0
  58. fm_weck/resources/fm_tools/java-ranger.yml +18 -0
  59. fm_weck/resources/fm_tools/jayhorn.yml +50 -4
  60. fm_weck/resources/fm_tools/jbmc.yml +17 -1
  61. fm_weck/resources/fm_tools/jcwit.yml +12 -2
  62. fm_weck/resources/fm_tools/jdart.yml +16 -1
  63. fm_weck/resources/fm_tools/jlisa.yml +105 -0
  64. fm_weck/resources/fm_tools/klee.yml +12 -1
  65. fm_weck/resources/fm_tools/kleef.yml +18 -0
  66. fm_weck/resources/fm_tools/korn.yml +23 -1
  67. fm_weck/resources/fm_tools/lazycseq.yml +16 -1
  68. fm_weck/resources/fm_tools/legion-symcc.yml +5 -1
  69. fm_weck/resources/fm_tools/legion.yml +7 -4
  70. fm_weck/resources/fm_tools/lf-checker.yml +16 -1
  71. fm_weck/resources/fm_tools/liv.yml +48 -3
  72. fm_weck/resources/fm_tools/locksmith.yml +16 -1
  73. fm_weck/resources/fm_tools/metaval++.yml +1 -1
  74. fm_weck/resources/fm_tools/metaval.yml +121 -6
  75. fm_weck/resources/fm_tools/mlb.yml +23 -1
  76. fm_weck/resources/fm_tools/mopsa.yml +100 -7
  77. fm_weck/resources/fm_tools/muval.yml +120 -0
  78. fm_weck/resources/fm_tools/nacpa.yml +57 -2
  79. fm_weck/resources/fm_tools/nitwit.yml +13 -3
  80. fm_weck/resources/fm_tools/ogchecker.yml +47 -0
  81. fm_weck/resources/fm_tools/owic.yml +16 -2
  82. fm_weck/resources/fm_tools/pesco.yml +19 -1
  83. fm_weck/resources/fm_tools/pichecker.yml +16 -1
  84. fm_weck/resources/fm_tools/pinaka.yml +14 -1
  85. fm_weck/resources/fm_tools/predatorhp.yml +12 -0
  86. fm_weck/resources/fm_tools/proton.yml +26 -1
  87. fm_weck/resources/fm_tools/prtest.yml +23 -0
  88. fm_weck/resources/fm_tools/pysvlib-linter.yml +77 -0
  89. fm_weck/resources/fm_tools/pysvlib-validator.yml +76 -0
  90. fm_weck/resources/fm_tools/racerf.yml +27 -4
  91. fm_weck/resources/fm_tools/re3ver.yml +78 -0
  92. fm_weck/resources/fm_tools/rizzer.yml +11 -1
  93. fm_weck/resources/fm_tools/schema.yml +185 -4
  94. fm_weck/resources/fm_tools/seal.yml +67 -0
  95. fm_weck/resources/fm_tools/sikraken.yml +25 -1
  96. fm_weck/resources/fm_tools/spf.yml +14 -1
  97. fm_weck/resources/fm_tools/sv-sanitizers.yml +46 -3
  98. fm_weck/resources/fm_tools/svf-svc.yml +33 -1
  99. fm_weck/resources/fm_tools/svlibchecker.yml +82 -0
  100. fm_weck/resources/fm_tools/swat.yml +30 -0
  101. fm_weck/resources/fm_tools/symbiotic-witch.yml +31 -6
  102. fm_weck/resources/fm_tools/symbiotic.yml +64 -1
  103. fm_weck/resources/fm_tools/testcoca.yml +53 -0
  104. fm_weck/resources/fm_tools/testcov.yml +97 -0
  105. fm_weck/resources/fm_tools/theta.yml +100 -2
  106. fm_weck/resources/fm_tools/thorn.yml +22 -1
  107. fm_weck/resources/fm_tools/tracerx-wp.yml +18 -0
  108. fm_weck/resources/fm_tools/tracerx.yml +22 -0
  109. fm_weck/resources/fm_tools/uautomizer.yml +186 -19
  110. fm_weck/resources/fm_tools/ugemcutter.yml +97 -9
  111. fm_weck/resources/fm_tools/ukojak.yml +55 -9
  112. fm_weck/resources/fm_tools/uparalizer.yml +78 -0
  113. fm_weck/resources/fm_tools/ureferee.yml +83 -13
  114. fm_weck/resources/fm_tools/utaipan.yml +61 -9
  115. fm_weck/resources/fm_tools/utestgen.yml +36 -0
  116. fm_weck/resources/fm_tools/veriabs.yml +12 -0
  117. fm_weck/resources/fm_tools/veriabsl.yml +16 -0
  118. fm_weck/resources/fm_tools/verioover.yml +16 -1
  119. fm_weck/resources/fm_tools/wasp-c.yml +16 -1
  120. fm_weck/resources/fm_tools/wit4java.yml +36 -4
  121. fm_weck/resources/fm_tools/witch.yml +29 -4
  122. fm_weck/resources/fm_tools/witnesslint.yml +111 -8
  123. fm_weck/resources/fm_tools/witnessmap.yml +29 -1
  124. fm_weck/run_result.py +15 -11
  125. fm_weck/runexec_mode.py +37 -7
  126. fm_weck/smoke_test_mode.py +6 -10
  127. fm_weck/zenodo.py +381 -0
  128. {fm_weck-1.5.2.dist-info → fm_weck-1.6.0.dist-info}/METADATA +2 -1
  129. fm_weck-1.6.0.dist-info/RECORD +188 -0
  130. {fm_weck-1.5.2.dist-info → fm_weck-1.6.0.dist-info}/WHEEL +1 -1
  131. fm_weck-1.5.2.dist-info/RECORD +0 -171
  132. {fm_weck-1.5.2.dist-info → fm_weck-1.6.0.dist-info}/entry_points.txt +0 -0
@@ -7,6 +7,7 @@ description: |
7
7
  to check for software errors and to verify program properties.
8
8
  input_languages:
9
9
  - C
10
+ - SV-LIB
10
11
  project_url: https://cpachecker.sosy-lab.org
11
12
  repository_url: https://gitlab.com/sosy-lab/software/cpachecker
12
13
  spdx_license_identifier: Apache-2.0
@@ -30,6 +31,37 @@ maintainers:
30
31
  url: https://www.sosy-lab.org/people/wendler/
31
32
 
32
33
  versions:
34
+ - version: "4.2.2"
35
+ doi: 10.5281/zenodo.17777566
36
+ benchexec_toolinfo_options: ["--svcomp26", "--heap", "10000M", "--benchmark", "--timelimit", "900 s"]
37
+ required_ubuntu_packages:
38
+ - openjdk-21-jre-headless
39
+ - gcc-multilib
40
+ - libc6-dev
41
+ base_container_images:
42
+ - docker.io/ubuntu:24.04
43
+ full_container_images:
44
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
45
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
46
+ - version: "4.2.2-validation-correctness"
47
+ doi: 10.5281/zenodo.17777566
48
+ benchexec_toolinfo_options: ["--witness", "${witness}", "--correctness-witness-validation", "--heap", "5000m", "--benchmark", "--option", "witness.checkProgramHash=false", "--option", "cpa.predicate.memoryAllocationsAlwaysSucceed=true"]
49
+ required_ubuntu_packages:
50
+ - openjdk-21-jre-headless
51
+ - gcc-multilib
52
+ - libc6-dev
53
+ base_container_images:
54
+ - docker.io/ubuntu:24.04
55
+ - version: "4.2.2-validation-violation"
56
+ doi: 10.5281/zenodo.17777566
57
+ benchexec_toolinfo_options: ["--witness", "${witness}", "--violation-witness-validation", "--heap", "5000m", "--benchmark", "--option", "witness.checkProgramHash=false", "--option", "cpa.predicate.memoryAllocationsAlwaysSucceed=true", "--option", "cpa.smg.memoryAllocationFunctions=malloc,__kmalloc,kmalloc,kzalloc,kzalloc_node,ldv_zalloc,ldv_malloc", "--option", "cpa.smg.arrayAllocationFunctions=calloc,kmalloc_array,kcalloc", "--option", "cpa.smg.zeroingMemoryAllocation=calloc,kzalloc,kcalloc,kzalloc_node,ldv_zalloc", "--option", "cpa.smg.deallocationFunctions=free,kfree,kfree_const"]
58
+ required_ubuntu_packages:
59
+ - openjdk-21-jre-headless
60
+ - gcc-multilib
61
+ - libc6-dev
62
+ base_container_images:
63
+ - docker.io/ubuntu:24.04
64
+
33
65
  - version: "4.0"
34
66
  doi: 10.5281/zenodo.14203369
35
67
  benchexec_toolinfo_options: ["--svcomp25", "--heap", "10000M", "--benchmark", "--timelimit", "900 s"]
@@ -37,20 +69,27 @@ versions:
37
69
  - openjdk-17-jdk-headless
38
70
  base_container_images:
39
71
  - docker.io/ubuntu:24.04
72
+ full_container_images:
73
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
40
74
  - version: "4.0-validation-correctness"
41
75
  doi: 10.5281/zenodo.14203369
42
76
  benchexec_toolinfo_options: ["--witness", "${witness}", "--correctness-witness-validation", "--heap", "5000m", "--benchmark", "--option", "witness.checkProgramHash=false", "--option", "cpa.predicate.memoryAllocationsAlwaysSucceed=true"]
43
77
  required_ubuntu_packages:
44
78
  - openjdk-17-jdk-headless
45
79
  base_container_images:
46
- - docker.io/ubuntu:22.04
80
+ - docker.io/ubuntu:24.04
81
+ full_container_images:
82
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
47
83
  - version: "4.0-validation-violation"
48
84
  doi: 10.5281/zenodo.14203369
49
85
  benchexec_toolinfo_options: ["--witness", "${witness}", "--violation-witness-validation", "--heap", "5000m", "--benchmark", "--option", "witness.checkProgramHash=false", "--option", "cpa.predicate.memoryAllocationsAlwaysSucceed=true", "--option", "cpa.smg.memoryAllocationFunctions=malloc,__kmalloc,kmalloc,kzalloc,kzalloc_node,ldv_zalloc,ldv_malloc", "--option", "cpa.smg.arrayAllocationFunctions=calloc,kmalloc_array,kcalloc", "--option", "cpa.smg.zeroingMemoryAllocation=calloc,kzalloc,kcalloc,kzalloc_node,ldv_zalloc", "--option", "cpa.smg.deallocationFunctions=free,kfree,kfree_const"]
50
86
  required_ubuntu_packages:
51
87
  - openjdk-17-jdk-headless
52
88
  base_container_images:
53
- - docker.io/ubuntu:22.04
89
+ - docker.io/ubuntu:24.04
90
+ full_container_images:
91
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
92
+
54
93
  - version: "2.3.1"
55
94
  doi: 10.5281/zenodo.11074229
56
95
  benchexec_toolinfo_options: ["-svcomp24", "-heap", "10000M", "-benchmark", "-timelimit", "900 s"]
@@ -87,23 +126,122 @@ versions:
87
126
  - docker.io/ubuntu:22.04
88
127
  full_container_images:
89
128
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
129
+
90
130
  - version: "2.2"
91
131
  doi: 10.5281/zenodo.7700944
92
132
  benchexec_toolinfo_options: ["-svcomp23", "-heap", "10000M", "-benchmark", "-timelimit", "900 s"]
93
133
  required_ubuntu_packages:
94
134
  - openjdk-11-jre-headless
135
+ base_container_images:
136
+ - docker.io/ubuntu:22.04
137
+ full_container_images:
138
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2023
139
+
95
140
  - version: "svcomp22"
96
141
  url: https://gitlab.com/sosy-lab/sv-comp/archives-2022/-/raw/main/2022/cpachecker.zip
97
142
  benchexec_toolinfo_options: ["-svcomp22", "-heap", "10000M", "-benchmark", "-timelimit", "900 s"]
98
143
  required_ubuntu_packages:
99
144
  - openjdk-11-jre-headless
145
+ base_container_images:
146
+ - docker.io/ubuntu:20.04
147
+ full_container_images:
148
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2022
100
149
  - version: "2.1"
101
150
  doi: 10.5281/zenodo.5720557
102
151
  benchexec_toolinfo_options: ["-svcomp22", "-heap", "10000M", "-benchmark", "-timelimit", "900 s"]
103
152
  required_ubuntu_packages:
104
153
  - openjdk-11-jre-headless
154
+ base_container_images:
155
+ - docker.io/ubuntu:20.04
156
+ full_container_images:
157
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2022
105
158
 
106
159
  competition_participations:
160
+ - competition: "SV-COMP 2026"
161
+ track: "Verification"
162
+ tool_version: "4.2.2"
163
+ jury_member:
164
+ orcid: 0009-0008-7961-190X
165
+ name: Marek Jankola
166
+ institution: LMU Munich
167
+ country: Germany
168
+ url: https://www.sosy-lab.org/people/jankola/
169
+ participants:
170
+ - orcid: 0000-0001-9116-1974
171
+ name: Daniel Baier
172
+ - orcid: 0000-0002-6551-5860
173
+ name: Levente Bajczi
174
+ - orcid: 0000-0003-4832-7662
175
+ name: Dirk Beyer
176
+ - orcid: 0009-0008-7961-190X
177
+ name: Marek Jankola
178
+ - orcid: 0000-0001-7365-5030
179
+ name: Matthias Kettl
180
+ - orcid: 0000-0003-0291-815X
181
+ name: Thomas Lemberger
182
+ - orcid: 0000-0002-8172-3184
183
+ name: Marian Lingsch-Rosenfeld
184
+ - orcid: 0000-0002-5139-341X
185
+ name: Philipp Wendler
186
+ - competition: "SV-COMP 2026"
187
+ track: "Validation of Correctness Witnesses v2"
188
+ tool_version: "4.2.2-validation-correctness"
189
+ jury_member:
190
+ orcid: 0000-0002-8172-3184
191
+ name: Marian Lingsch-Rosenfeld
192
+ institution: LMU Munich
193
+ country: Germany
194
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
195
+ participants:
196
+ - orcid: 0000-0003-4832-7662
197
+ name: Dirk Beyer
198
+ - orcid: 0009-0008-7961-190X
199
+ name: Marek Jankola
200
+ - orcid: 0000-0002-8172-3184
201
+ name: Marian Lingsch-Rosenfeld
202
+ - competition: "SV-COMP 2026"
203
+ track: "Validation of Correctness Witnesses v1"
204
+ tool_version: "4.0-validation-correctness"
205
+ label:
206
+ - inactive
207
+ jury_member:
208
+ name: Hors Concours
209
+ institution: --
210
+ country: --
211
+ url: --
212
+ - competition: "SV-COMP 2026"
213
+ track: "Validation of Violation Witnesses v1"
214
+ tool_version: "4.2.2-validation-violation"
215
+ jury_member:
216
+ orcid: 0000-0002-8172-3184
217
+ name: Marian Lingsch-Rosenfeld
218
+ institution: LMU Munich
219
+ country: Germany
220
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
221
+ participants:
222
+ - orcid: 0000-0003-4832-7662
223
+ name: Dirk Beyer
224
+ - orcid: 0009-0008-7961-190X
225
+ name: Marek Jankola
226
+ - orcid: 0000-0002-8172-3184
227
+ name: Marian Lingsch-Rosenfeld
228
+ - competition: "SV-COMP 2026"
229
+ track: "Validation of Violation Witnesses v2"
230
+ tool_version: "4.2.2-validation-violation"
231
+ jury_member:
232
+ orcid: 0000-0002-8172-3184
233
+ name: Marian Lingsch-Rosenfeld
234
+ institution: LMU Munich
235
+ country: Germany
236
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
237
+ participants:
238
+ - orcid: 0000-0003-4832-7662
239
+ name: Dirk Beyer
240
+ - orcid: 0009-0008-7961-190X
241
+ name: Marek Jankola
242
+ - orcid: 0000-0002-8172-3184
243
+ name: Marian Lingsch-Rosenfeld
244
+
107
245
  - competition: "SV-COMP 2025"
108
246
  track: "Verification"
109
247
  tool_version: "4.0"
@@ -114,7 +252,7 @@ competition_participations:
114
252
  country: Germany
115
253
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
116
254
  - competition: "SV-COMP 2025"
117
- track: "Validation of Correctness Witnesses 1.0"
255
+ track: "Validation of Correctness Witnesses v1"
118
256
  tool_version: "4.0-validation-correctness"
119
257
  jury_member:
120
258
  orcid: 0000-0002-8172-3184
@@ -123,7 +261,7 @@ competition_participations:
123
261
  country: Germany
124
262
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
125
263
  - competition: "SV-COMP 2025"
126
- track: "Validation of Correctness Witnesses 2.0"
264
+ track: "Validation of Correctness Witnesses v2"
127
265
  tool_version: "4.0-validation-correctness"
128
266
  jury_member:
129
267
  orcid: 0000-0002-8172-3184
@@ -132,7 +270,7 @@ competition_participations:
132
270
  country: Germany
133
271
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
134
272
  - competition: "SV-COMP 2025"
135
- track: "Validation of Violation Witnesses 1.0"
273
+ track: "Validation of Violation Witnesses v1"
136
274
  tool_version: "4.0-validation-violation"
137
275
  jury_member:
138
276
  orcid: 0000-0002-8172-3184
@@ -141,7 +279,7 @@ competition_participations:
141
279
  country: Germany
142
280
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
143
281
  - competition: "SV-COMP 2025"
144
- track: "Validation of Violation Witnesses 2.0"
282
+ track: "Validation of Violation Witnesses v2"
145
283
  tool_version: "4.0-validation-violation"
146
284
  jury_member:
147
285
  orcid: 0000-0002-8172-3184
@@ -149,6 +287,7 @@ competition_participations:
149
287
  institution: LMU Munich
150
288
  country: Germany
151
289
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
290
+
152
291
  - competition: "SV-COMP 2024"
153
292
  track: "Verification"
154
293
  tool_version: "2.3"
@@ -159,7 +298,7 @@ competition_participations:
159
298
  country: Germany
160
299
  url: https://www.sosy-lab.org/people/baier/
161
300
  - competition: "SV-COMP 2024"
162
- track: "Validation of Correctness Witnesses 1.0"
301
+ track: "Validation of Correctness Witnesses v1"
163
302
  tool_version: "svcomp24-correctness"
164
303
  jury_member:
165
304
  orcid: 0000-0001-9116-1974
@@ -168,7 +307,7 @@ competition_participations:
168
307
  country: Germany
169
308
  url: https://www.sosy-lab.org/people/baier/
170
309
  - competition: "SV-COMP 2024"
171
- track: "Validation of Correctness Witnesses 2.0"
310
+ track: "Validation of Correctness Witnesses v2"
172
311
  tool_version: "svcomp24-correctness"
173
312
  jury_member:
174
313
  orcid: 0000-0001-9116-1974
@@ -177,7 +316,7 @@ competition_participations:
177
316
  country: Germany
178
317
  url: https://www.sosy-lab.org/people/baier/
179
318
  - competition: "SV-COMP 2024"
180
- track: "Validation of Violation Witnesses 1.0"
319
+ track: "Validation of Violation Witnesses v1"
181
320
  tool_version: "svcomp24-violation"
182
321
  jury_member:
183
322
  orcid: 0000-0001-9116-1974
@@ -186,7 +325,7 @@ competition_participations:
186
325
  country: Germany
187
326
  url: https://www.sosy-lab.org/people/baier/
188
327
  - competition: "SV-COMP 2024"
189
- track: "Validation of Violation Witnesses 2.0"
328
+ track: "Validation of Violation Witnesses v2"
190
329
  tool_version: "svcomp24-violation"
191
330
  jury_member:
192
331
  orcid: 0000-0001-9116-1974
@@ -194,6 +333,7 @@ competition_participations:
194
333
  institution: LMU Munich
195
334
  country: Germany
196
335
  url: https://www.sosy-lab.org/people/baier/
336
+
197
337
  - competition: SV-COMP 2023
198
338
  track: "Verification"
199
339
  tool_version: "2.2"
@@ -1,5 +1,9 @@
1
1
  id: cpv
2
2
  name: CPV
3
+ description: |
4
+ CPV is a software verifier for C programs that
5
+ uses sequential circuits as its intermediate representation and
6
+ leverages hardware model checkers to perform reachability and termination analysis.
3
7
  input_languages:
4
8
  - C
5
9
  project_url: https://gitlab.com/sosy-lab/software/cpv
@@ -24,12 +28,36 @@ maintainers:
24
28
  url: https://www.sosy-lab.org/people/lee/
25
29
 
26
30
  versions:
31
+ - version: "1.0"
32
+ doi: 10.5281/zenodo.17693731
33
+ benchexec_toolinfo_options: ["--svcomp", "--no-cache-update"]
34
+ required_ubuntu_packages:
35
+ - clang
36
+ - clang-format
37
+ - cpp
38
+ - python3-bitstring
39
+ - python3-lxml
40
+ - python3-pycparser
41
+ - version: "0.7"
42
+ doi: 10.5281/zenodo.17610939
43
+ benchexec_toolinfo_options: ["--svcomp", "--no-cache-update"]
44
+ required_ubuntu_packages:
45
+ - clang
46
+ - clang-format
47
+ - cpp
48
+ - python3-bitstring
49
+ - python3-lxml
50
+ - python3-pycparser
51
+ base_container_images:
52
+ - docker.io/ubuntu:24.04
27
53
  - version: "0.6"
28
54
  doi: 10.5281/zenodo.14203582
29
55
  benchexec_toolinfo_options: ["--svcomp", "--no-cache-update"]
30
56
  required_ubuntu_packages:
31
57
  - python3-lxml
32
58
  - python3-bitstring
59
+ base_container_images:
60
+ - docker.io/ubuntu:24.04
33
61
  - version: "0.5.1"
34
62
  doi: 10.5281/zenodo.14034969
35
63
  benchexec_toolinfo_options: ["--svcomp", "--no-cache-update"]
@@ -44,6 +72,20 @@ versions:
44
72
  - python3-bitstring
45
73
 
46
74
  competition_participations:
75
+ - competition: "SV-COMP 2026"
76
+ track: "Verification"
77
+ tool_version: "1.0"
78
+ jury_member:
79
+ orcid: 0000-0001-5139-5178
80
+ name: Po-Chun Chien
81
+ institution: LMU Munich
82
+ country: Germany
83
+ url: https://www.sosy-lab.org/people/chien/
84
+ participants:
85
+ - orcid: 0000-0001-5139-5178
86
+ name: Po-Chun Chien
87
+ - orcid: 0000-0002-8096-5595
88
+ name: Nian-Ze Lee
47
89
  - competition: "SV-COMP 2025"
48
90
  track: "Verification"
49
91
  tool_version: "0.6"
@@ -77,7 +119,13 @@ techniques:
77
119
  - k-Induction
78
120
 
79
121
  frameworks_solvers:
122
+ - Bitwuzla
123
+ - Boolector
124
+ - cvc5
125
+ - MathSAT
80
126
  - MiniSAT
127
+ - Smt-Switch
128
+ - Yices2
81
129
 
82
130
  used_actors:
83
131
  - actor_type: "Witness Transformer"
@@ -21,12 +21,24 @@ versions:
21
21
  - version: "svcomp23"
22
22
  doi: 10.5281/zenodo.10396721
23
23
  benchexec_toolinfo_options: []
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
24
26
  required_ubuntu_packages:
25
27
  - openjdk-11-jre-headless
26
28
  full_container_images:
27
29
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2023
28
30
 
29
31
  competition_participations:
32
+ - competition: "SV-COMP 2026"
33
+ track: "Verification"
34
+ label:
35
+ - inactive
36
+ tool_version: "svcomp23"
37
+ jury_member:
38
+ name: Hors Concours
39
+ institution: --
40
+ country: --
41
+ url:
30
42
  - competition: "SV-COMP 2025"
31
43
  track: "Verification"
32
44
  label:
@@ -1,22 +1,37 @@
1
1
  id: cseq
2
2
  name: CSeq
3
+ description: |
4
+ CSeq is a static analysis tool for multi-threaded C programs.
5
+ It is based on sequentialisation, where the program under analysis
6
+ is converted into an equivalent (up to a given context bound) sequential program.
7
+ For the competition, CSeq relies on CBMC for the actual analysis of the sequential program.
3
8
  input_languages:
4
9
  - C
5
- project_url: https://www.southampton.ac.uk/~gp1y10/cseq/cseq.html
6
- spdx_license_identifier: BSD-4-Clause
10
+ project_url: https://github.com/omainv/cseq/releases
11
+ repository_url: https://github.com/omainv/cseq
12
+ spdx_license_identifier: BSD-3-Clause
7
13
  benchexec_toolinfo_module: benchexec.tools.lazycseq
8
14
  fmtools_format_version: "2.0"
9
15
  fmtools_entry_maintainers:
10
- - emersonwds
16
+ - omainv
11
17
 
12
18
  maintainers:
13
- - orcid: 0000-0001-5606-9216
14
- name: Emerson Sales
19
+ - orcid: 0000-0002-9348-1979
20
+ name: Omar Inverso
15
21
  institution: Gran Sasso Science Institute
16
22
  country: Italy
17
- url: https://github.com/Emersonwds
23
+ url: https://github.com/omainv
18
24
 
19
25
  versions:
26
+ - version: "svcomp26"
27
+ doi: 10.5281/zenodo.17722257
28
+ benchexec_toolinfo_options: ['--witness', 'error-witness.graphml']
29
+ required_ubuntu_packages:
30
+ - gcc
31
+ - python3
32
+ full_container_images:
33
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
34
+
20
35
  - version: "svcomp22"
21
36
  doi: 10.5281/zenodo.10396733
22
37
  benchexec_toolinfo_options: ['--witness', 'error-witness.graphml']
@@ -25,6 +40,18 @@ versions:
25
40
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2022
26
41
 
27
42
  competition_participations:
43
+ - competition: "SV-COMP 2026"
44
+ track: "Verification"
45
+ tool_version: "svcomp26"
46
+ jury_member:
47
+ orcid: 0000-0002-9348-1979
48
+ name: Omar Inverso
49
+ institution: Gran Sasso Science Institute
50
+ country: Italy
51
+ url: https://github.com/omainv
52
+ participants:
53
+ - orcid: 0000-0002-9348-1979
54
+ name: Omar Inverso
28
55
  - competition: "SV-COMP 2025"
29
56
  track: "Verification"
30
57
  label:
@@ -74,6 +101,6 @@ literature:
74
101
  - doi: 10.1145/3478536
75
102
  title: "Bounded Verification of Multi-threaded Programs via Lazy Sequentialization"
76
103
  year: 2022
77
- - doi: 10.1007/978-3-030-99527-0_23
78
- title: "A Prototype for Data Race Detection in CSeq 3 (Competition Contribution)"
79
- year: 2022
104
+ - doi: 10.1007/978-3-031-71162-6_23
105
+ title: "Accurate Static Data Race Detection for C"
106
+ year: 2024
@@ -1,11 +1,13 @@
1
1
  id: dartagnan
2
2
  name: Dartagnan
3
+ description: |
4
+ Dartagnan is a bounded model checking tool for weak memory concurrency.
3
5
  input_languages:
4
6
  - C
5
7
  project_url: https://github.com/hernanponcedeleon/Dat3M
6
8
  repository_url: https://github.com/hernanponcedeleon/Dat3M
7
9
  spdx_license_identifier: MIT
8
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/dartagnan.py"
10
+ benchexec_toolinfo_module: benchexec.tools.dartagnan
9
11
  fmtools_format_version: "2.0"
10
12
  fmtools_entry_maintainers:
11
13
  - hernanponcedeleon
@@ -18,6 +20,22 @@ maintainers:
18
20
  url: https://hernanponcedeleon.github.io
19
21
 
20
22
  versions:
23
+ - version: "svcomp26"
24
+ doi: 10.5281/zenodo.17723884
25
+ benchexec_toolinfo_options: []
26
+ required_ubuntu_packages:
27
+ - clang
28
+ - openjdk-21-jre-headless
29
+ base_container_images:
30
+ - docker.io/ubuntu:24.04
31
+ - version: "svcomp26-validation"
32
+ doi: 10.5281/zenodo.17723884
33
+ benchexec_toolinfo_options: ["-witness", "${witness}"]
34
+ required_ubuntu_packages:
35
+ - clang
36
+ - openjdk-21-jre-headless
37
+ base_container_images:
38
+ - docker.io/ubuntu:24.04
21
39
  - version: "svcomp25"
22
40
  doi: 10.5281/zenodo.14079770
23
41
  benchexec_toolinfo_options: []
@@ -44,6 +62,42 @@ versions:
44
62
  - llvm-11
45
63
 
46
64
  competition_participations:
65
+ - competition: "SV-COMP 2026"
66
+ track: "Verification"
67
+ tool_version: "svcomp26"
68
+ jury_member:
69
+ orcid: 0000-0002-4225-8830
70
+ name: Hernán Ponce de León
71
+ institution: Huawei Dresden Research Center
72
+ country: Germany
73
+ url: https://hernanponcedeleon.github.io
74
+ participants:
75
+ - orcid: 0000-0002-3176-8552
76
+ name: Thomas Haas
77
+ - orcid: 0000-0002-3608-2584
78
+ name: René Maseli
79
+ - orcid: 0000-0001-8495-671X
80
+ name: Roland Meyer
81
+ - orcid: 0000-0002-4225-8830
82
+ name: Hernán Ponce de León
83
+ - competition: "SV-COMP 2026"
84
+ track: "Validation of Violation Witnesses v1"
85
+ tool_version: "svcomp26-validation"
86
+ jury_member:
87
+ orcid: 0000-0002-4225-8830
88
+ name: Hernán Ponce de León
89
+ institution: Huawei Dresden Research Center
90
+ country: Germany
91
+ url: https://hernanponcedeleon.github.io
92
+ participants:
93
+ - orcid: 0000-0002-3176-8552
94
+ name: Thomas Haas
95
+ - orcid: 0000-0002-3608-2584
96
+ name: René Maseli
97
+ - orcid: 0000-0001-8495-671X
98
+ name: Roland Meyer
99
+ - orcid: 0000-0002-4225-8830
100
+ name: Hernán Ponce de León
47
101
  - competition: "SV-COMP 2025"
48
102
  track: "Verification"
49
103
  tool_version: "svcomp25"
@@ -54,7 +108,7 @@ competition_participations:
54
108
  country: Germany
55
109
  url: https://hernanponcedeleon.github.io
56
110
  - competition: "SV-COMP 2025"
57
- track: "Validation of Violation Witnesses 1.0"
111
+ track: "Validation of Violation Witnesses v1"
58
112
  tool_version: "svcomp25-validation"
59
113
  jury_member:
60
114
  orcid: 0000-0002-4225-8830
@@ -72,7 +126,7 @@ competition_participations:
72
126
  country: Germany
73
127
  url: https://hernanponcedeleon.github.io
74
128
  - competition: "SV-COMP 2024"
75
- track: "Validation of Violation Witnesses 1.0"
129
+ track: "Validation of Violation Witnesses v1"
76
130
  tool_version: "svcomp24"
77
131
  jury_member:
78
132
  orcid: 0000-0002-4225-8830
@@ -123,3 +177,9 @@ literature:
123
177
  - doi: 10.1145/3622855
124
178
  title: "Static Analysis of Memory Models for SMT Encodings"
125
179
  year: 2023
180
+ - doi: 10.1145/3622781.3674174
181
+ title: "Towards Unified Analysis of GPU Consistency"
182
+ year: 2024
183
+ - doi: 10.1145/3776687
184
+ title: "Recurrence Sets for Proving Fair Non-termination under Axiomatic Memory Consistency Models"
185
+ year: 2025
@@ -0,0 +1,70 @@
1
+ id: dasa
2
+ name: DASA
3
+ description: |
4
+ DASA (Differentiable Abstract Symbolic Analyzer) is an optimization-driven engine for symbolic program analysis.
5
+ Instead of controlling execution paths with traditional constraint solvers, DASA exports the System under Test (SuT) as a function graph:
6
+ each node corresponds to a function that is modeled as a compact mathematical mapping.
7
+ On this representation, DASA applies ML-like optimization techniques to discover inputs that lead to new paths, states, or target conditions.
8
+ input_languages:
9
+ - Java
10
+ project_url: https://www.its.uni-luebeck.de/en/research/tools/dasa/
11
+ repository_url: https://github.com/UzL-ITS/DASA-sv-comp-submission
12
+ spdx_license_identifier: MIT
13
+ benchexec_toolinfo_module: benchexec.tools.dasa
14
+ fmtools_format_version: "2.0"
15
+ fmtools_entry_maintainers:
16
+ - loose.nils
17
+ - felixmaechtle
18
+ - Jaserro
19
+
20
+ maintainers:
21
+ - orcid: 0009-0003-6243-1623
22
+ name: Nils Loose
23
+ institution: University of Luebeck
24
+ country: Germany
25
+ url: https://bio.nils-loose.com/
26
+ - orcid: 0009-0009-2431-0322
27
+ name: Felix Maechtle
28
+ institution: University of Luebeck
29
+ country: Germany
30
+ url: https://mchtl.de/
31
+ - orcid: 0009-0001-4624-8592
32
+ name: Jan-Niclas Serr
33
+ institution: University of Luebeck
34
+ country: Germany
35
+ url:
36
+
37
+ versions:
38
+ - version: "svcomp26"
39
+ doi: 10.5281/zenodo.17693012
40
+ benchexec_toolinfo_options: []
41
+ required_ubuntu_packages: [zlib1g-dev, gcc]
42
+ base_container_images:
43
+ - docker.io/ubuntu:24.04
44
+
45
+ competition_participations:
46
+ - competition: "SV-COMP 2026"
47
+ track: "Verification"
48
+ tool_version: "svcomp26"
49
+ jury_member:
50
+ orcid: 0009-0009-2431-0322
51
+ name: Felix Maechtle
52
+ institution: University of Luebeck
53
+ country: Germany
54
+ url: https://mchtl.de/
55
+ participants:
56
+ - orcid: 0009-0009-2431-0322
57
+ name: Felix Maechtle
58
+ - orcid: 0009-0001-4624-8592
59
+ name: Jan-Niclas Serr
60
+ - orcid: 0009-0003-6243-1623
61
+ name: Nils Loose
62
+ - orcid: 0000-0003-1116-6973
63
+ name: Thomas Eisenbarth
64
+
65
+ techniques:
66
+ - Targeted Input Generation
67
+
68
+ frameworks_solvers: []
69
+
70
+ literature: []
@@ -10,7 +10,7 @@ input_languages:
10
10
  project_url: https://github.com/thufv/Deagle
11
11
  repository_url: https://github.com/thufv/Deagle
12
12
  spdx_license_identifier: "GPL-3.0-or-later"
13
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/deagle.py"
13
+ benchexec_toolinfo_module: benchexec.tools.deagle
14
14
  fmtools_format_version: "2.0"
15
15
  fmtools_entry_maintainers:
16
16
  - Misasasa
@@ -31,8 +31,17 @@ maintainers:
31
31
  institution: Tsinghua University
32
32
  country: China
33
33
  url: https://thufv.github.io/team/
34
+ - orcid: 0009-0004-8225-8431
35
+ name: Zhiheng Cai
36
+ institution: Tsinghua University
37
+ country: China
38
+ url: https://thufv.github.io/team/
34
39
 
35
40
  versions:
41
+ - version: "svcomp26"
42
+ doi: 10.5281/zenodo.17636587
43
+ benchexec_toolinfo_options: []
44
+ required_ubuntu_packages: []
36
45
  - version: "svcomp25"
37
46
  doi: 10.5281/zenodo.14189745
38
47
  benchexec_toolinfo_options: []
@@ -47,6 +56,15 @@ versions:
47
56
  required_ubuntu_packages: []
48
57
 
49
58
  competition_participations:
59
+ - competition: "SV-COMP 2026"
60
+ track: "Verification"
61
+ tool_version: "svcomp26"
62
+ jury_member:
63
+ orcid: 0000-0002-4266-875X
64
+ name: Fei He
65
+ institution: Tsinghua University
66
+ country: China
67
+ url: https://feihe.github.io/
50
68
  - competition: "SV-COMP 2025"
51
69
  track: "Verification"
52
70
  tool_version: "svcomp25"