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
@@ -1,16 +1,21 @@
1
1
  id: mopsa
2
2
  name: Mopsa
3
+ description: |
4
+ MOPSA - A Modular Open Platform for Static Analysis is a research-oriented platform written in OCaml to build sound semantic static analyzers based on Abstract Interpretation.
5
+ Our goal with MOPSA is to encourage the research and education in Abstract Interpretation by providing a fully-featured and extensible open-source platform and usable analyses built with it.
6
+ MOPSA supports the analysis of multiple programming languages (including C and Python) and leverages relational numerical domains.
3
7
  input_languages:
4
8
  - C
5
- project_url: https://gitlab.com/mopsa/mopsa-analyzer
9
+ project_url: https://mopsa.lip6.fr
6
10
  repository_url: https://gitlab.com/mopsa/mopsa-analyzer
7
11
  spdx_license_identifier: LGPL-3.0-or-later
8
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/mopsa.py"
12
+ benchexec_toolinfo_module: benchexec.tools.mopsa
9
13
  fmtools_format_version: "2.0"
10
14
  fmtools_entry_maintainers:
11
15
  - antoine_mine
12
16
  - aouadjaout
13
17
  - rmonat
18
+ - Mm72
14
19
 
15
20
  maintainers:
16
21
  - orcid: 0000-0001-8487-0326
@@ -20,6 +25,48 @@ maintainers:
20
25
  url: https://rmonat.fr
21
26
 
22
27
  versions:
28
+ - version: "svcomp26"
29
+ doi: 10.5281/zenodo.17696794
30
+ benchexec_toolinfo_options: []
31
+ required_ubuntu_packages:
32
+ - clang
33
+ - libc6-dev-i386
34
+ - libclang-cpp-dev
35
+ - libclang-dev
36
+ - libgmp-dev
37
+ - libmpfr-dev
38
+ - llvm
39
+ - llvm-dev
40
+ - libflint-dev
41
+ - python3-clang-18
42
+ - libclang-rt-18-dev
43
+ - gcc-multilib
44
+ - valgrind
45
+ base_container_images:
46
+ - docker.io/ubuntu:24.04
47
+ full_container_images:
48
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
49
+ - version: "svcomp26-validation-correctness"
50
+ doi: 10.5281/zenodo.17696794
51
+ benchexec_toolinfo_options: ["--validate_yaml_witness", "${witness}"]
52
+ required_ubuntu_packages:
53
+ - clang
54
+ - libc6-dev-i386
55
+ - libclang-cpp-dev
56
+ - libclang-dev
57
+ - libgmp-dev
58
+ - libmpfr-dev
59
+ - llvm
60
+ - llvm-dev
61
+ - libflint-dev
62
+ - python3-clang-18
63
+ - libclang-rt-18-dev
64
+ - gcc-multilib
65
+ - valgrind
66
+ base_container_images:
67
+ - docker.io/ubuntu:24.04
68
+ full_container_images:
69
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
23
70
  - version: "svcomp25"
24
71
  doi: 10.5281/zenodo.14208644
25
72
  benchexec_toolinfo_options: []
@@ -84,6 +131,42 @@ versions:
84
131
  - llvm-dev
85
132
 
86
133
  competition_participations:
134
+ - competition: "SV-COMP 2026"
135
+ track: "Verification"
136
+ tool_version: "svcomp26"
137
+ jury_member:
138
+ orcid: 0000-0001-8487-0326
139
+ name: Raphaël Monat
140
+ institution: Inria and University of Lille
141
+ country: France
142
+ url: https://rmonat.fr
143
+ participants:
144
+ - orcid: 0000-0002-6215-7359
145
+ name: Marco Milanese
146
+ - orcid: 0000-0001-8487-0326
147
+ name: Raphaël Monat
148
+ - orcid: 0000-0001-7248-5914
149
+ name: Abdelraouf Ouadjaout
150
+ - orcid: 0000-0002-6375-3179
151
+ name: Antoine Miné
152
+ - competition: "SV-COMP 2026"
153
+ track: 'Validation of Correctness Witnesses v2'
154
+ tool_version: "svcomp26-validation-correctness"
155
+ jury_member:
156
+ orcid: 0000-0001-8487-0326
157
+ name: Raphaël Monat
158
+ institution: Inria and University of Lille
159
+ country: France
160
+ url: https://rmonat.fr
161
+ participants:
162
+ - orcid: 0000-0002-6215-7359
163
+ name: Marco Milanese
164
+ - orcid: 0000-0001-8487-0326
165
+ name: Raphaël Monat
166
+ - orcid: 0000-0001-7248-5914
167
+ name: Abdelraouf Ouadjaout
168
+ - orcid: 0000-0002-6375-3179
169
+ name: Antoine Miné
87
170
  - competition: "SV-COMP 2025"
88
171
  track: "Verification"
89
172
  tool_version: "svcomp25"
@@ -94,7 +177,7 @@ competition_participations:
94
177
  country: France
95
178
  url: https://rmonat.fr
96
179
  - competition: "SV-COMP 2025"
97
- track: 'Validation of Correctness Witnesses 2.0'
180
+ track: 'Validation of Correctness Witnesses v2'
98
181
  tool_version: "svcomp25-validation-correctness"
99
182
  jury_member:
100
183
  orcid: 0000-0001-8487-0326
@@ -112,7 +195,7 @@ competition_participations:
112
195
  country: France
113
196
  url: https://rmonat.fr
114
197
  - competition: "SV-COMP 2024"
115
- track: 'Validation of Correctness Witnesses 2.0'
198
+ track: 'Validation of Correctness Witnesses v2'
116
199
  tool_version: "svcomp24-validation-correctness"
117
200
  jury_member:
118
201
  orcid: 0000-0001-8487-0326
@@ -131,7 +214,13 @@ competition_participations:
131
214
  url: https://rmonat.fr
132
215
 
133
216
  techniques:
217
+ - Abstract Interpretation
134
218
  - Numeric Interval Analysis
219
+ - Explicit-Value Analysis
220
+ - Floating-Point Arithmetics
221
+ - Portfolio
222
+ - Algorithm Selection
223
+ - Targeted Input Generation # for the backward analysis of Mopsa
135
224
 
136
225
  frameworks_solvers:
137
226
  - Apron
@@ -140,9 +229,13 @@ literature:
140
229
  - doi: 10.1007/978-3-030-41600-3_1
141
230
  title: "Combinations of Reusable Abstract Domains for a Multilingual Static Analyzer"
142
231
  year: 2020
143
- - doi: 10.1007/978-3-031-30820-8_37
144
- title: "Mopsa-C: Modular Domains and Relational Abstract Interpretation for C Programs (Competition Contribution)"
145
- year: 2023
232
+ - doi: 10.1007/978-3-031-90660-2_17
233
+ title: "Mopsa-C with Trace Partitioning and Autosuggestions (Competition Contribution)"
234
+ year: 2025
146
235
  - doi: 10.1007/978-3-031-57256-2_26
147
236
  title: "Mopsa-C: Improved Verification for C Programs, Simple Validation of Correctness Witnesses (Competition Contribution)"
148
237
  year: 2024
238
+ - doi: 10.1007/978-3-031-30820-8_37
239
+ title: "Mopsa-C: Modular Domains and Relational Abstract Interpretation for C Programs (Competition Contribution)"
240
+ year: 2023
241
+ # Additional papers can be found on https://mopsa.lip6.fr/publications/
@@ -0,0 +1,120 @@
1
+ id: muval
2
+ name: MuVal
3
+ description: |
4
+ MuVal is a validity checker for fixpoint logics modulo background theories.
5
+ input_languages:
6
+ - C
7
+ project_url: https://github.com/hiroshi-unno/coar/
8
+ repository_url: https://github.com/hiroshi-unno/coar/
9
+ spdx_license_identifier: Apache-2.0
10
+ benchexec_toolinfo_module: muval.py
11
+ fmtools_format_version: "2.0"
12
+ fmtools_entry_maintainers:
13
+ - rock.iwancof
14
+ - coeff-aij
15
+
16
+ maintainers:
17
+ - orcid: 0009-0008-2830-3608
18
+ name: Ryosuke Iwahashi
19
+ institution: University of Tsukuba
20
+ country: Japan
21
+ email: s2313740@u.tsukuba.ac.jp
22
+ url:
23
+ - orcid: 0009-0008-4023-2187
24
+ name: Kazuki Uehara
25
+ institution: Tohoku University
26
+ country: Japan
27
+ email: uehara.kazuki.q4@dc.tohoku.ac.jp
28
+ url:
29
+ - orcid: 0009-0003-1023-2809
30
+ name: Takuma Monma
31
+ institution: Tohoku University
32
+ country: Japan
33
+ email: monma.takuma.s8@dc.tohoku.ac.jp
34
+ url:
35
+ - orcid: 0000-0002-4225-8195
36
+ name: Hiroshi Unno
37
+ institution: Tohoku University
38
+ country: Japan
39
+ email: hiroshi.unno@acm.org
40
+ url: https://www.riec.tohoku.ac.jp/~unno/
41
+
42
+ versions:
43
+ - version: "1.4"
44
+ doi: 10.5281/zenodo.17769267
45
+ benchexec_toolinfo_options: []
46
+ required_ubuntu_packages:
47
+ - clang-14
48
+ - python3
49
+ - python3-yaml
50
+ base_container_images:
51
+ - docker.io/ubuntu:24.04
52
+ - version: "1.3"
53
+ doi: 10.5281/zenodo.17739485
54
+ benchexec_toolinfo_options: []
55
+ required_ubuntu_packages:
56
+ - clang-14
57
+ - python3
58
+ - python3-yaml
59
+ base_container_images:
60
+ - docker.io/ubuntu:24.04
61
+ - version: "1.2"
62
+ doi: 10.5281/zenodo.17735076
63
+ benchexec_toolinfo_options: []
64
+ required_ubuntu_packages:
65
+ - clang-14
66
+ - python3
67
+ - python3-yaml
68
+ base_container_images:
69
+ - docker.io/ubuntu:24.04
70
+ - version: "1.1"
71
+ doi: 10.5281/zenodo.17732709
72
+ benchexec_toolinfo_options: []
73
+ required_ubuntu_packages:
74
+ - clang-14
75
+ - python3
76
+ - python3-yaml
77
+ base_container_images:
78
+ - docker.io/ubuntu:24.04
79
+ - version: "1.0"
80
+ doi: 10.5281/zenodo.17514921
81
+ benchexec_toolinfo_options: []
82
+ required_ubuntu_packages:
83
+ - clang-14
84
+ - python3
85
+ - python3-yaml
86
+ base_container_images:
87
+ - docker.io/ubuntu:24.04
88
+
89
+ competition_participations:
90
+ - competition: "SV-COMP 2026"
91
+ track: "Verification"
92
+ tool_version: "1.4"
93
+ jury_member:
94
+ orcid: 0000-0002-4225-8195
95
+ name: Hiroshi Unno
96
+ institution: Tohoku University
97
+ country: Japan
98
+ url:
99
+ participants:
100
+ - orcid: 0009-0008-2830-3608
101
+ name: Ryosuke Iwahashi
102
+ - orcid: 0009-0008-4023-2187
103
+ name: Kazuki Uehara
104
+ - orcid: 0009-0003-1023-2809
105
+ name: Takuma Monma
106
+ - orcid: 0000-0002-4225-8195
107
+ name: Hiroshi Unno
108
+
109
+ techniques:
110
+ - CEGIS
111
+ - Ranking Functions
112
+
113
+ frameworks_solvers:
114
+ - Z3
115
+ - PCSat
116
+
117
+ literature:
118
+ - doi: 10.1145/3571265
119
+ title: "Modular Primal-Dual Fixpoint Logic Solving for Temporal Verification"
120
+ year: 2023
@@ -2,6 +2,8 @@ id: nacpa
2
2
  name: Nacpa
3
3
  description: |
4
4
  Nacpa is a meta-verifier for C programs.
5
+ It utilizes CPAchecker as a backend verifier and Kleef and PRTest for dynamic
6
+ reach safety analysis.
5
7
  It is based on strategy selection, parallel portfolios,
6
8
  and native compilation of Java.
7
9
  input_languages:
@@ -28,14 +30,67 @@ maintainers:
28
30
  url: https://www.sosy-lab.org/people/wachowitz/
29
31
 
30
32
  versions:
33
+ - version: "2.1.1"
34
+ doi: "10.5281/zenodo.17734971"
35
+ benchexec_toolinfo_options: []
36
+ base_container_images:
37
+ - docker.io/ubuntu:24.04
38
+ required_ubuntu_packages:
39
+ - clang
40
+ - llvm-dev
41
+ - clang-format
42
+ - clang-tidy
43
+ - gcc
44
+ - gcc-multilib
45
+ full_container_images:
46
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
47
+ - version: "2.1.0"
48
+ doi: "10.5281/zenodo.17734971"
49
+ benchexec_toolinfo_options: []
50
+ base_container_images:
51
+ - docker.io/ubuntu:24.04
52
+ required_ubuntu_packages:
53
+ - clang
54
+ - llvm-dev
55
+ - clang-format
56
+ - clang-tidy
57
+ - gcc
58
+ - gcc-multilib
59
+ full_container_images:
60
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
31
61
  - version: "1.0.0"
32
62
  doi: "10.5281/zenodo.14203473"
33
63
  benchexec_toolinfo_options: []
34
- required_ubuntu_packages: []
35
- full_container_images:
64
+ base_container_images:
36
65
  - docker.io/ubuntu:24.04
66
+ required_ubuntu_packages:
67
+ - clang
68
+ - llvm-dev
69
+ - clang-format
70
+ - clang-tidy
71
+ - gcc
72
+ - gcc-multilib
73
+ full_container_images:
74
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
37
75
 
38
76
  competition_participations:
77
+ - competition: SV-COMP 2026
78
+ track: "Verification"
79
+ label:
80
+ - meta_tool
81
+ tool_version: "2.1.1"
82
+ jury_member:
83
+ orcid: 0000-0002-4768-4054
84
+ name: Henrik Wachowitz
85
+ institution: LMU Munich
86
+ country: Germany
87
+ url: https://www.sosy-lab.org/people/wachowitz/
88
+ participants:
89
+ - orcid: 0000-0003-0291-815X
90
+ name: Thomas Lemberger
91
+ - orcid: 0000-0002-4768-4054
92
+ name: Henrik Wachowitz
93
+
39
94
  - competition: SV-COMP 2025
40
95
  track: "Verification"
41
96
  label:
@@ -34,8 +34,18 @@ versions:
34
34
  - g++-multilib
35
35
 
36
36
  competition_participations:
37
+ - competition: "SV-COMP 2026"
38
+ track: "Validation of Violation Witnesses v1"
39
+ label:
40
+ - inactive
41
+ tool_version: "svcomp24-validation-violation"
42
+ jury_member:
43
+ name: Hors Concours
44
+ institution: --
45
+ country: --
46
+ url:
37
47
  - competition: "SV-COMP 2025"
38
- track: "Validation of Violation Witnesses 1.0"
48
+ track: "Validation of Violation Witnesses v1"
39
49
  label:
40
50
  - inactive
41
51
  tool_version: "svcomp24-validation-violation"
@@ -45,7 +55,7 @@ competition_participations:
45
55
  country: --
46
56
  url:
47
57
  - competition: "SV-COMP 2024"
48
- track: "Validation of Violation Witnesses 1.0"
58
+ track: "Validation of Violation Witnesses v1"
49
59
  tool_version: "svcomp24-validation-violation"
50
60
  jury_member:
51
61
  name: Jana (Philipp) Berger
@@ -53,7 +63,7 @@ competition_participations:
53
63
  country: Germany
54
64
  url: https://moves.rwth-aachen.de/people/berger/
55
65
  - competition: "SV-COMP 2023"
56
- track: "Validation of Violation Witnesses 1.0"
66
+ track: "Validation of Violation Witnesses v1"
57
67
  tool_version: "svcomp23-validation-violation"
58
68
  jury_member:
59
69
  name: Jana (Philipp) Berger
@@ -0,0 +1,47 @@
1
+ id: ogchecker
2
+ name: OGChecker
3
+ description: |
4
+ OGChecker is built on top of CPAchecker4.1 and utilizes the observing graph-based partial-order
5
+ technique for efficient verification of concurrent programs.
6
+ input_languages:
7
+ - C
8
+ project_url: https://gitlab.com/mujtke/ogchecker
9
+ repository_url: https://gitlab.com/mujtke/ogchecker
10
+ spdx_license_identifier: "Apache-2.0"
11
+ benchexec_toolinfo_module: "ogchecker.py"
12
+ fmtools_format_version: "2.0"
13
+ fmtools_entry_maintainers:
14
+ - mujtke
15
+
16
+ maintainers:
17
+ - orcid: 0000-0002-7214-3989
18
+ name: Zuchao Yang
19
+ institution: Xidian University
20
+ country: China
21
+ url:
22
+
23
+ versions:
24
+ - version: "1.0"
25
+ doi: 10.5281/zenodo.17374087
26
+ benchexec_toolinfo_options: ["--svcomp26-ogchecker", "--stack", "2048k", "--heap", "14000M", "--benchmark"]
27
+ required_ubuntu_packages: ["openjdk-21-jre-headless"]
28
+
29
+ competition_participations:
30
+ - competition: "SV-COMP 2026"
31
+ track: "Verification"
32
+ tool_version: "1.0"
33
+ jury_member:
34
+ orcid: 0000-0002-7214-3989
35
+ name: Zuchao Yang
36
+ institution: Xidian University
37
+ country: China
38
+ url:
39
+
40
+ techniques:
41
+ - ARG-Based Analysis
42
+ - Concurrency Support
43
+
44
+ frameworks_solvers:
45
+ - CPAchecker
46
+
47
+ literature: []
@@ -13,11 +13,13 @@ fmtools_entry_maintainers:
13
13
  - oopale
14
14
 
15
15
  maintainers:
16
- - name: Léo Andrès
16
+ - orcid: 0000-0000-0000-0000
17
+ name: Léo Andrès
17
18
  institution: OCamlPro / LMF
18
19
  country: France
19
20
  url: https://www.zapashcanon.fr
20
- - name: Filipe Marques
21
+ - orcid: 0000-0000-0000-0000
22
+ name: Filipe Marques
21
23
  institution: INESC-ID, Lisbon
22
24
  country: Portugal
23
25
  url: https://www.filipeom.dev
@@ -35,6 +37,16 @@ versions:
35
37
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
36
38
 
37
39
  competition_participations:
40
+ - competition: "Test-Comp 2026"
41
+ track: "Test Generation"
42
+ label:
43
+ - inactive
44
+ tool_version: "testcomp24"
45
+ jury_member:
46
+ name: Hors Concours
47
+ institution: --
48
+ country: --
49
+ url:
38
50
  - competition: "Test-Comp 2025"
39
51
  track: "Test Generation"
40
52
  label:
@@ -62,3 +74,5 @@ techniques:
62
74
  - Bit-Precise Analysis
63
75
 
64
76
  frameworks_solvers: []
77
+
78
+ literature: []
@@ -12,7 +12,8 @@ fmtools_entry_maintainers:
12
12
 
13
13
 
14
14
  maintainers:
15
- - name: Cedric Richter
15
+ - orcid: 0000-0000-0000-0000
16
+ name: Cedric Richter
16
17
  institution: University of Oldenburg
17
18
  country: Germany
18
19
  url: https://uol.de/en/computingscience/groups/formal-methods/team/cedric-richter
@@ -21,15 +22,30 @@ versions:
21
22
  - version: "svcomp24"
22
23
  doi: "10.5281/zenodo.10203346"
23
24
  benchexec_toolinfo_options: ['--memory', '10000M', '--timelimit', '900']
25
+ base_container_images:
26
+ - docker.io/ubuntu:22.04
24
27
  required_ubuntu_packages: []
25
28
  full_container_images:
26
29
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
27
30
  - version: "svcomp23"
28
31
  url: "https://gitlab.com/sosy-lab/sv-comp/archives-2023/-/raw/svcomp23/2023/pesco.zip"
29
32
  benchexec_toolinfo_options: ['-svcomp20-pesco', '-heap', '10000M', '-stack', '2048k', '-benchmark', '-timelimit', '900 s']
33
+ base_container_images:
34
+ - docker.io/ubuntu:22.04
30
35
  required_ubuntu_packages: []
31
36
 
32
37
  competition_participations:
38
+ - competition: "SV-COMP 2026"
39
+ track: "Verification"
40
+ label:
41
+ - inactive
42
+ - meta_tool
43
+ tool_version: "svcomp24"
44
+ jury_member:
45
+ name: Hors Concours
46
+ institution: --
47
+ country: --
48
+ url:
33
49
  - competition: "SV-COMP 2025"
34
50
  track: "Verification"
35
51
  label:
@@ -84,3 +100,5 @@ frameworks_solvers:
84
100
  - CPAchecker
85
101
  - JavaSMT
86
102
  - MathSAT
103
+
104
+ literature: []
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - Lapulatos
12
12
 
13
13
  maintainers:
14
- - name: Jie Su
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Jie Su
15
16
  institution: Xidian University
16
17
  country: China
17
18
  url:
@@ -20,12 +21,24 @@ versions:
20
21
  - version: "svcomp23"
21
22
  doi: 10.5281/zenodo.7471378
22
23
  benchexec_toolinfo_options: ['-svcomp23-pichecker', '-heap', '14000M', '-stack', '2048k', '-benchmark', '-timelimit', '900 s']
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
23
26
  required_ubuntu_packages:
24
27
  - openjdk-11-jre-headless
25
28
  full_container_images:
26
29
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2023
27
30
 
28
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:
29
42
  - competition: "SV-COMP 2025"
30
43
  track: "Verification"
31
44
  label:
@@ -69,3 +82,5 @@ frameworks_solvers:
69
82
  - JavaSMT
70
83
  - MathSAT
71
84
  - SMTinterpol
85
+
86
+ literature: []
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - akashbanerjeeab
12
12
 
13
13
  maintainers:
14
- - name: Saurabh Joshi
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Saurabh Joshi
15
16
  institution: IIT Hyderabad
16
17
  country: India
17
18
  url:
@@ -20,11 +21,23 @@ versions:
20
21
  - version: "svcomp23"
21
22
  doi: 10.5281/zenodo.10407406
22
23
  benchexec_toolinfo_options: ['--graphml-witness', 'witness.graphml']
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
23
26
  required_ubuntu_packages: []
24
27
  full_container_images:
25
28
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2023
26
29
 
27
30
  competition_participations:
31
+ - competition: "SV-COMP 2026"
32
+ track: "Verification"
33
+ label:
34
+ - inactive
35
+ tool_version: "svcomp23"
36
+ jury_member:
37
+ name: Hors Concours
38
+ institution: --
39
+ country: --
40
+ url:
28
41
  - competition: "SV-COMP 2025"
29
42
  track: "Verification"
30
43
  label:
@@ -21,6 +21,8 @@ versions:
21
21
  - version: "svcomp24"
22
22
  doi: "10.5281/zenodo.10183805"
23
23
  benchexec_toolinfo_options: ['--witness', 'witness.graphml']
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
24
26
  required_ubuntu_packages:
25
27
  - python2.7
26
28
  full_container_images:
@@ -32,6 +34,16 @@ versions:
32
34
  - expect
33
35
 
34
36
  competition_participations:
37
+ - competition: "SV-COMP 2026"
38
+ track: "Verification"
39
+ label:
40
+ - inactive
41
+ tool_version: "svcomp24"
42
+ jury_member:
43
+ name: Hors Concours
44
+ institution: --
45
+ country: --
46
+ url:
35
47
  - competition: "SV-COMP 2025"
36
48
  track: "Verification"
37
49
  label:
@@ -1,5 +1,11 @@
1
1
  id: proton
2
2
  name: PROTON
3
+ description: |
4
+ PROTON is a tool to check whether a given C program has a non-terminating behaviour or not. It is built around the
5
+ C Bounded Model Checker (CBMC).  PROTON first annotates the loops in a given program with assertions that check
6
+ for a recurrent program state. Violation of such an assertion shows the existence of a recurrent state and thereby
7
+ proves non-termination. If PROTON is unable to find non-termination within a few minutes, it then performs an unsound
8
+ termination check based on checking CBMC's unwinding assertions.
3
9
  input_languages:
4
10
  - C
5
11
  project_url: https://github.com/kumarmadhukar/term
@@ -13,11 +19,21 @@ fmtools_entry_maintainers:
13
19
  maintainers:
14
20
  - orcid: 0000-0001-7368-2389
15
21
  name: Ravindra Metta
16
- institution: Tata Consulting Services
22
+ institution: Tata Consultancy Services
17
23
  country: India
18
24
  url:
19
25
 
20
26
  versions:
27
+ - version: "svcomp26"
28
+ doi: 10.5281/zenodo.17602730
29
+ benchexec_toolinfo_options: ['--graphml-witness', 'witness.graphml']
30
+ required_ubuntu_packages:
31
+ - gcc
32
+ - libc6-dev-i386
33
+ - clang-14
34
+ - llvm-14
35
+ base_container_images:
36
+ - docker.io/ubuntu:24.04
21
37
  - version: "svcomp25"
22
38
  doi: 10.5281/zenodo.14209458
23
39
  benchexec_toolinfo_options: ['--graphml-witness', 'witness.graphml']
@@ -37,6 +53,15 @@ versions:
37
53
 
38
54
 
39
55
  competition_participations:
56
+ - competition: "SV-COMP 2026"
57
+ track: "Verification"
58
+ tool_version: "svcomp26"
59
+ jury_member:
60
+ orcid: 0000-0001-7368-2389
61
+ name: Ravindra Metta
62
+ institution: Tata Consultancy Services
63
+ country: India
64
+ url:
40
65
  - competition: "SV-COMP 2025"
41
66
  track: "Verification"
42
67
  tool_version: "svcomp25"