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
@@ -21,11 +21,24 @@ versions:
21
21
  - version: "svcomp22"
22
22
  doi: 10.5281/zenodo.10396745
23
23
  benchexec_toolinfo_options: []
24
+ base_container_images:
25
+ - docker.io/ubuntu:20.04
24
26
  required_ubuntu_packages: []
25
27
  full_container_images:
28
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
26
29
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2022
27
30
 
28
31
  competition_participations:
32
+ - competition: "SV-COMP 2026"
33
+ track: "Verification"
34
+ label:
35
+ - inactive
36
+ tool_version: "svcomp22"
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:
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - fatimahaljaafari
12
12
 
13
13
  maintainers:
14
- - name: Fatimah Aljaafari
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Fatimah Aljaafari
15
16
  institution: University of Manchester
16
17
  country: UK
17
18
  url:
@@ -19,8 +20,10 @@ maintainers:
19
20
  versions:
20
21
  - version: "svcomp24"
21
22
  doi: "10.5281/zenodo.10171482"
22
- required_ubuntu_packages: []
23
23
  benchexec_toolinfo_options: ["-s", "kinduction"]
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
26
+ required_ubuntu_packages: []
24
27
  full_container_images:
25
28
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
26
29
  - version: "svcomp23"
@@ -29,6 +32,16 @@ versions:
29
32
  required_ubuntu_packages: []
30
33
 
31
34
  competition_participations:
35
+ - competition: "SV-COMP 2026"
36
+ track: "Verification"
37
+ label:
38
+ - inactive
39
+ tool_version: "svcomp24"
40
+ jury_member:
41
+ name: Hors Concours
42
+ institution: --
43
+ country: --
44
+ url:
32
45
  - competition: "SV-COMP 2025"
33
46
  track: "Verification"
34
47
  label:
@@ -62,3 +75,5 @@ techniques:
62
75
  frameworks_solvers:
63
76
  - ESBMC
64
77
  - MathSAT
78
+
79
+ literature: []
@@ -1,8 +1,8 @@
1
1
  id: emergentheta
2
2
  name: EmergenTheta
3
3
  description: |
4
- EmergenTheta is a variant of Theta utilizing emerging techniques previously missing from Theta.
5
- We step away from Theta's conventional, abstraction-based techniques and use a portfolio of BMC, IMC, k-induction, and saturation based techniques, with possible implicit predicate abstraction.
4
+ EmergenTheta is a variant of Theta showcasing emerging techniques previously missing from Theta.
5
+ The 2026 submission presents a combined predicate–explicit abstraction domain for CEGAR, concurrency-support via multithreaded symbolic transition system encodings, on-the-fly reachability and counterexample generation for generalized saturation, and an IC3 backend.
6
6
  input_languages:
7
7
  - C
8
8
  project_url: https://github.com/ftsrg/theta
@@ -12,6 +12,7 @@ benchexec_toolinfo_module: benchexec.tools.theta
12
12
  fmtools_format_version: "2.0"
13
13
  fmtools_entry_maintainers:
14
14
  - levente.bajczi
15
+ - mondokm
15
16
 
16
17
  maintainers:
17
18
  - name: Levente Bajczi
@@ -19,8 +20,22 @@ maintainers:
19
20
  institution: Budapest University of Technology and Economics
20
21
  country: Hungary
21
22
  url: http://mit.bme.hu/~bajczi
23
+ - name: Milán Mondok
24
+ orcid: 0000-0001-5396-2172
25
+ institution: Budapest University of Technology and Economics
26
+ country: Hungary
27
+ url: https://mondokm.github.io/
22
28
 
23
29
  versions:
30
+ - version: "svcomp26"
31
+ doi: 10.5281/zenodo.17779912
32
+ benchexec_toolinfo_options: ["--svcomp", "--portfolio", "EMERGENT", "--loglevel", "RESULT"]
33
+ required_ubuntu_packages:
34
+ - openjdk-21-jre-headless
35
+ - libgomp1
36
+ - libmpfr6
37
+ base_container_images:
38
+ - docker.io/ubuntu:24.04
24
39
  - version: "svcomp25"
25
40
  doi: 10.5281/zenodo.14194484
26
41
  benchexec_toolinfo_options: ["--svcomp", "--portfolio", "EMERGENT", "--loglevel", "RESULT"]
@@ -37,6 +52,24 @@ versions:
37
52
  - libmpfr6
38
53
 
39
54
  competition_participations:
55
+ - competition: "SV-COMP 2026"
56
+ track: "Verification"
57
+ tool_version: "svcomp26"
58
+ jury_member:
59
+ orcid: 0000-0002-6551-5860
60
+ name: Levente Bajczi
61
+ institution: Budapest University of Technology and Economics
62
+ country: Hungary
63
+ url: http://mit.bme.hu/~bajczi
64
+ participants:
65
+ - name: Milán Mondok
66
+ orcid: 0000-0001-5396-2172
67
+ - name: Csanád Telbisz
68
+ orcid: 0000-0002-6260-5908
69
+ - name: Levente Bajczi
70
+ orcid: 0000-0002-6551-5860
71
+ - name: Dániel Kovács
72
+ orcid: 0009-0009-7687-5958
40
73
  - competition: "SV-COMP 2025"
41
74
  track: "Verification"
42
75
  tool_version: "svcomp25"
@@ -59,19 +92,32 @@ techniques:
59
92
  - CEGAR
60
93
  - Predicate Abstraction
61
94
  - Bounded Model Checking
62
- - k-Induction
63
95
  - Bit-Precise Analysis
64
96
  - Interpolation
65
97
  - Algorithm Selection
66
98
  - Portfolio
67
- - Interpolation-Based Model Checking
68
99
  - Task Translation
69
100
  - Floating-Point Arithmetics
101
+ - Concurrency Support
102
+ - Property-Directed Reachability
103
+ - ARG-Based Analysis
70
104
 
105
+ frameworks_solvers:
106
+ - JavaSMT
107
+ - MathSAT
108
+ - CVC
109
+ - SMTinterpol
110
+ - Z3
111
+ - Bitwuzla
112
+ - cvc5
113
+ - Boolector
71
114
 
72
- frameworks_solvers: []
73
115
 
74
116
  literature:
75
117
  - doi: 10.1007/978-3-031-57256-2_23
76
118
  title: "EmergenTheta: Verification Beyond Abstraction Refinement (Competition Contribution)"
77
119
  year: 2024
120
+ - doi: 10.1007/978-3-031-90660-2_15
121
+ title: "EmergenTheta: Variations on Symbolic Transition Systems (Competition Contribution) (Competition Contribution)"
122
+ year: 2025
123
+
@@ -1,15 +1,22 @@
1
1
  id: esbmc-incr
2
2
  name: ESBMC-incr
3
+ description: |
4
+ ESBMC (the Efficient SMT-based Context-Bounded Model Checker) is a mature,
5
+ permissively licensed open-source context-bounded model checker that automatically
6
+ detects or proves the absence of runtime errors in single- and multi-threaded C, C++,
7
+ CUDA, CHERI, Kotlin, Python, and Solidity programs. It can automatically verify
8
+ predefined safety properties (e.g., bounds check, pointer safety, overflow) and
9
+ user-defined program assertions.
3
10
  input_languages:
4
11
  - C
5
12
  project_url: http://esbmc.org/
6
13
  repository_url: "https://github.com/esbmc/esbmc"
7
14
  spdx_license_identifier: "Apache-2.0"
8
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/esbmc.py"
15
+ benchexec_toolinfo_module: benchexec.tools.esbmc
9
16
  fmtools_format_version: "2.0"
10
17
  fmtools_entry_maintainers:
11
- - lucasccordeiro81
12
18
  - ChenfengWei1
19
+ - lucasccordeiro
13
20
 
14
21
  maintainers:
15
22
  - orcid: 0000-0002-6235-4272
@@ -19,6 +26,12 @@ maintainers:
19
26
  url:
20
27
 
21
28
  versions:
29
+ - version: "svcomp26"
30
+ doi: 10.5281/zenodo.17741226
31
+ benchexec_toolinfo_options: ['-s', 'incr', '--concurrency']
32
+ required_ubuntu_packages: []
33
+ base_container_images:
34
+ - docker.io/ubuntu:24.04
22
35
  - version: "svcomp25"
23
36
  doi: 10.5281/zenodo.14185854
24
37
  benchexec_toolinfo_options: ['-s', 'incr', '--concurrency']
@@ -27,12 +40,56 @@ versions:
27
40
  doi: 10.5281/zenodo.10396755
28
41
  benchexec_toolinfo_options: ['-s', 'incr', '--concurrency']
29
42
  required_ubuntu_packages: []
43
+ - version: "testcomp26"
44
+ doi: 10.5281/zenodo.17793335
45
+ benchexec_toolinfo_options: ["-s", "incr", "-o", "branch-function"]
46
+ required_ubuntu_packages: []
47
+ base_container_images:
48
+ - docker.io/ubuntu:24.04
49
+ full_container_images:
50
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
51
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
30
52
  - version: "testcomp25"
31
53
  doi: 10.5281/zenodo.14340851
32
54
  benchexec_toolinfo_options: ["-s", "incr", "-o", "condition"]
33
55
  required_ubuntu_packages: []
34
56
 
35
57
  competition_participations:
58
+ - competition: "SV-COMP 2026"
59
+ track: "Verification"
60
+ tool_version: "svcomp26"
61
+ jury_member:
62
+ name: Xianzhiyu Li
63
+ institution: University of Manchester
64
+ country: UK
65
+ url:
66
+ participants:
67
+ - orcid: 0009-0003-7712-380X
68
+ name: Xianzhiyu Li
69
+ - orcid: 0000-0002-6102-4343
70
+ name: Rafael Sá Menezes
71
+ - orcid: 0000-0002-6235-4272
72
+ name: Lucas C. Cordeiro
73
+ - competition: "Test-Comp 2026"
74
+ track: "Test Generation"
75
+ tool_version: "testcomp26"
76
+ jury_member:
77
+ orcid: 0009-0008-0416-3006
78
+ name: Chenfeng Wei
79
+ institution: University of Manchester
80
+ country: UK
81
+ url:
82
+ participants:
83
+ - orcid: 0009-0008-0416-3006
84
+ name: Chenfeng Wei
85
+ - orcid: 0009-0003-7712-380X
86
+ name: Xianzhiyu Li
87
+ - orcid: 0000-0002-5822-5435
88
+ name: Kaled Alshmrany
89
+ - orcid: 0000-0002-6169-6334
90
+ name: Sangharatna Godboley
91
+ - orcid: 0000-0002-6235-4272
92
+ name: Lucas C. Cordeiro
36
93
  - competition: "SV-COMP 2025"
37
94
  track: "Verification"
38
95
  tool_version: "svcomp25"
@@ -1,15 +1,22 @@
1
1
  id: esbmc-kind
2
2
  name: ESBMC-kind
3
+ description: |
4
+ ESBMC (the Efficient SMT-based Context-Bounded Model Checker) is a mature,
5
+ permissively licensed open-source context-bounded model checker that automatically
6
+ detects or proves the absence of runtime errors in single- and multi-threaded C, C++,
7
+ CUDA, CHERI, Kotlin, Python, and Solidity programs. It can automatically verify
8
+ predefined safety properties (e.g., bounds check, pointer safety, overflow) and
9
+ user-defined program assertions.
3
10
  input_languages:
4
11
  - C
5
12
  project_url: http://esbmc.org/
6
13
  repository_url: "https://github.com/esbmc/esbmc"
7
14
  spdx_license_identifier: 'Apache-2.0'
8
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/esbmc.py"
15
+ benchexec_toolinfo_module: benchexec.tools.esbmc
9
16
  fmtools_format_version: "2.0"
10
17
  fmtools_entry_maintainers:
18
+ - lucasccordeiro
11
19
  - rafaelsamenezes
12
- - fbrausse
13
20
 
14
21
  maintainers:
15
22
  - orcid: 0000-0002-6102-4343
@@ -19,6 +26,12 @@ maintainers:
19
26
  url:
20
27
 
21
28
  versions:
29
+ - version: "svcomp26"
30
+ doi: 10.5281/zenodo.17741226
31
+ benchexec_toolinfo_options: ['-s', 'kinduction']
32
+ required_ubuntu_packages: []
33
+ base_container_images:
34
+ - docker.io/ubuntu:24.04
22
35
  - version: "svcomp25"
23
36
  doi: 10.5281/zenodo.14185854
24
37
  benchexec_toolinfo_options: ["-s", "kinduction"]
@@ -31,6 +44,15 @@ versions:
31
44
  url: "https://gitlab.com/sosy-lab/sv-comp/archives-2023/-/raw/svcomp23/2023/esbmc-kind.zip"
32
45
  benchexec_toolinfo_options: ["-s", "kinduction"]
33
46
  required_ubuntu_packages: []
47
+ - version: "testcomp26"
48
+ doi: 10.5281/zenodo.17793335
49
+ benchexec_toolinfo_options: ["-s", "kinduction", "-o", "branch-function"]
50
+ required_ubuntu_packages: []
51
+ base_container_images:
52
+ - docker.io/ubuntu:24.04
53
+ full_container_images:
54
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
55
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
34
56
  - version: "testcomp25"
35
57
  doi: 10.5281/zenodo.14340851
36
58
  benchexec_toolinfo_options: ["-s", "kinduction", "-o", "branch"]
@@ -41,6 +63,41 @@ versions:
41
63
  required_ubuntu_packages: []
42
64
 
43
65
  competition_participations:
66
+ - competition: "SV-COMP 2026"
67
+ track: "Verification"
68
+ tool_version: "svcomp26"
69
+ jury_member:
70
+ name: Xianzhiyu Li
71
+ institution: University of Manchester
72
+ country: UK
73
+ url:
74
+ participants:
75
+ - orcid: 0009-0003-7712-380X
76
+ name: Xianzhiyu Li
77
+ - orcid: 0000-0002-6102-4343
78
+ name: Rafael Sá Menezes
79
+ - orcid: 0000-0002-6235-4272
80
+ name: Lucas C. Cordeiro
81
+ - competition: "Test-Comp 2026"
82
+ track: "Test Generation"
83
+ tool_version: "testcomp26"
84
+ jury_member:
85
+ orcid: 0009-0008-0416-3006
86
+ name: Chenfeng Wei
87
+ institution: University of Manchester
88
+ country: UK
89
+ url:
90
+ participants:
91
+ - orcid: 0009-0008-0416-3006
92
+ name: Chenfeng Wei
93
+ - orcid: 0009-0003-7712-380X
94
+ name: Xianzhiyu Li
95
+ - orcid: 0000-0002-5822-5435
96
+ name: Kaled Alshmrany
97
+ - orcid: 0000-0002-6169-6334
98
+ name: Sangharatna Godboley
99
+ - orcid: 0000-0002-6235-4272
100
+ name: Lucas C. Cordeiro
44
101
  - competition: "SV-COMP 2025"
45
102
  track: "Verification"
46
103
  tool_version: "svcomp25"
@@ -1,5 +1,8 @@
1
1
  id: fdse
2
2
  name: FDSE
3
+ description: |
4
+ FDSE is an hybrid testing tool that combines fuzzing, symbolic execution,
5
+ and a persistent constraint tree to generate high-coverage test suites for C programs.
3
6
  input_languages:
4
7
  - C
5
8
  project_url: https://github.com/zbchen/fdse-test-comp
@@ -18,6 +21,16 @@ maintainers:
18
21
  url: https://zbchen.github.io/
19
22
 
20
23
  versions:
24
+ - version: "testcomp26"
25
+ doi: 10.5281/zenodo.17900875
26
+ benchexec_toolinfo_options: ["--testcomp"]
27
+ required_ubuntu_packages:
28
+ - gcc-multilib
29
+ base_container_images:
30
+ - docker.io/ubuntu:24.04
31
+ full_container_images:
32
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
33
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
21
34
  - version: "testcomp25"
22
35
  doi: 10.5281/zenodo.14282305
23
36
  benchexec_toolinfo_options: ["--testcomp"]
@@ -28,6 +41,24 @@ versions:
28
41
  required_ubuntu_packages: []
29
42
 
30
43
  competition_participations:
44
+ - competition: "Test-Comp 2026"
45
+ track: "Test Generation"
46
+ tool_version: "testcomp26"
47
+ jury_member:
48
+ orcid: 0000-0002-4066-7892
49
+ name: Zhenbang Chen
50
+ institution: National University of Defense Technology
51
+ country: China
52
+ url: https://zbchen.github.io/
53
+ participants:
54
+ - orcid: 0009-0006-2359-9687
55
+ name: Guofeng Zhang
56
+ - orcid: 0000-0002-4066-7892
57
+ name: Zhenbang Chen
58
+ - orcid: 0009-0003-0575-5074
59
+ name: Ziqi Shuai
60
+ - orcid: 0000-0003-0637-8744
61
+ name: Ji Wang
31
62
  - competition: "Test-Comp 2025"
32
63
  track: "Test Generation"
33
64
  tool_version: "testcomp25"
@@ -1,8 +1,8 @@
1
1
  id: fizzer
2
2
  name: Fizzer
3
3
  description: |
4
- Fizzer is a gray-box fuzzer focussing on coverage of atomic Boolean
5
- expressions (mainly the instructions for number comparison). It uses dynamic
4
+ Fizzer is a gray-box fuzzer focussing of coverage of atomic Boolean
5
+ expressions (mainly number comparison instructions). It uses dynamic
6
6
  taint-flow analysis and local space fuzzing (gradient descent, bit
7
7
  and random mutations performed in local spaces).
8
8
  input_languages:
@@ -11,7 +11,7 @@ project_url: https://github.com/staticafi/fizzer
11
11
  repository_url: https://github.com/staticafi/fizzer
12
12
  spdx_license_identifier: Zlib
13
13
  benchexec_toolinfo_module: "fizzer.py"
14
- fmtools_format_version: "0.1"
14
+ fmtools_format_version: "2.0"
15
15
  fmtools_entry_maintainers:
16
16
  - trtikm
17
17
 
@@ -23,6 +23,19 @@ maintainers:
23
23
  url:
24
24
 
25
25
  versions:
26
+ - version: "testcomp26"
27
+ doi: 10.5281/zenodo.17840184
28
+ benchexec_toolinfo_options: ["--max_seconds", "865", "--max_executions", "100000000", "--max_exec_milliseconds", "250", "--max_exec_megabytes", "13312", "--max_trace_length", "10000", "--max_bytes", "65536", "--opt_max_seconds", "30", "--opt_max_exec_milliseconds", "500", "--opt_max_exec_megabytes", "13312", "--opt_max_trace_length", "10000000", "--opt_max_bytes", "536870912"]
29
+ required_ubuntu_packages:
30
+ - clang
31
+ - llvm
32
+ - python3
33
+ - g++-multilib
34
+ base_container_images:
35
+ - docker.io/ubuntu:24.04
36
+ full_container_images:
37
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
38
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
26
39
  - version: "testcomp25"
27
40
  doi: 10.5281/zenodo.14246517
28
41
  benchexec_toolinfo_options: ["--max_seconds", "865", "--optimizer_max_seconds", "30", "--max_exec_milliseconds", "500", "--max_exec_megabytes", "13312", "--max_stdin_bytes", "65536", "--max_trace_length", "10000", "--max_stack_size", "25", "--stdin_model", "stdin_replay_bytes_then_repeat_zero", "--test_type", "testcomp"]
@@ -34,6 +47,22 @@ versions:
34
47
  required_ubuntu_packages: []
35
48
 
36
49
  competition_participations:
50
+ - competition: "Test-Comp 2026"
51
+ track: "Test Generation"
52
+ tool_version: "testcomp26"
53
+ jury_member:
54
+ orcid: 0009-0009-6122-9574
55
+ name: Marek Trtík
56
+ institution: Masaryk University, Brno
57
+ country: Czechia
58
+ url:
59
+ participants:
60
+ - orcid: 0000-0003-4703-0795
61
+ name: Martin Jonáš
62
+ - orcid: 0000-0001-5873-403X
63
+ name: Jan Strejček
64
+ - orcid: 0009-0009-6122-9574
65
+ name: Marek Trtík
37
66
  - competition: "Test-Comp 2025"
38
67
  track: "Test Generation"
39
68
  tool_version: "testcomp25"
@@ -12,7 +12,8 @@ fmtools_entry_maintainers:
12
12
  - masp
13
13
 
14
14
  maintainers:
15
- - name: Martin Spiessl
15
+ - orcid: 0000-0002-9169-9130
16
+ name: Martin Spiessl
16
17
  institution: LMU Munich
17
18
  country: Germany
18
19
  url: https://www.sosy-lab.org/people/spiessl/
@@ -21,6 +22,8 @@ versions:
21
22
  - version: "svcomp24"
22
23
  doi: 10.5281/zenodo.10125011
23
24
  benchexec_toolinfo_options: ["--reach-as-overflow", "--allow-unsafe"]
25
+ base_container_images:
26
+ - docker.io/ubuntu:22.04
24
27
  required_ubuntu_packages:
25
28
  - python3-pycparser
26
29
  - python3-pandas
@@ -34,6 +37,16 @@ versions:
34
37
  - python3-pandas
35
38
 
36
39
  competition_participations:
40
+ - competition: "SV-COMP 2026"
41
+ track: "Verification"
42
+ label:
43
+ - inactive
44
+ tool_version: "svcomp24"
45
+ jury_member:
46
+ name: Hors Concours
47
+ institution: --
48
+ country: --
49
+ url:
37
50
  - competition: "SV-COMP 2025"
38
51
  track: "Verification"
39
52
  label:
@@ -48,6 +61,7 @@ competition_participations:
48
61
  track: "Verification"
49
62
  tool_version: "svcomp24"
50
63
  jury_member:
64
+ orcid: 0000-0002-9169-9130
51
65
  name: Martin Spiessl
52
66
  institution: LMU Munich
53
67
  country: Germany
@@ -56,6 +70,7 @@ competition_participations:
56
70
  track: "Verification"
57
71
  tool_version: "svcomp23"
58
72
  jury_member:
73
+ orcid: 0000-0002-9169-9130
59
74
  name: Martin Spiessl
60
75
  institution: LMU Munich
61
76
  country: Germany
@@ -64,4 +79,8 @@ competition_participations:
64
79
  techniques:
65
80
  - Numeric Interval Analysis
66
81
 
67
- frameworks_solvers: []
82
+ frameworks_solvers:
83
+ - Frama-C
84
+
85
+ literature: []
86
+
@@ -27,8 +27,18 @@ versions:
27
27
  - make
28
28
 
29
29
  competition_participations:
30
+ - competition: "SV-COMP 2026"
31
+ track: "Validation of Violation Witnesses v1"
32
+ label:
33
+ - inactive
34
+ tool_version: "svcomp23"
35
+ jury_member:
36
+ name: Hors Concours
37
+ institution: --
38
+ country: --
39
+ url:
30
40
  - competition: "SV-COMP 2025"
31
- track: "Validation of Violation Witnesses 1.0"
41
+ track: "Validation of Violation Witnesses v1"
32
42
  label:
33
43
  - inactive
34
44
  tool_version: "svcomp23"
@@ -38,7 +48,7 @@ competition_participations:
38
48
  country: --
39
49
  url:
40
50
  - competition: "SV-COMP 2024"
41
- track: "Validation of Violation Witnesses 1.0"
51
+ track: "Validation of Violation Witnesses v1"
42
52
  label:
43
53
  - inactive
44
54
  tool_version: "svcomp23"
@@ -48,7 +58,7 @@ competition_participations:
48
58
  country: --
49
59
  url:
50
60
  - competition: SV-COMP 2023
51
- track: "Validation of Violation Witnesses 1.0"
61
+ track: "Validation of Violation Witnesses v1"
52
62
  tool_version: "svcomp23"
53
63
  jury_member:
54
64
  orcid: 0000-0002-7947-983X
@@ -0,0 +1,64 @@
1
+ id: function-res
2
+ name: ReFuncTion
3
+ description: |
4
+ ReFuncTion is a research prototype static analyzer designed for proving conditional termination, conditional termination resilience and conditional CTL properties of C programs.
5
+ It is also capable of inferring minimal sets of variables with an associate sufficient precondition to ensure a CTL property and maximal sets of variables for which a valuation might falsify it.
6
+ The tool automatically infers piecewise-defined ranking functions and sufficient preconditions by means of abstract interpretation.
7
+ input_languages:
8
+ - C
9
+ project_url: https://caterinaurban.github.io/project/function/
10
+ repository_url: https://github.com/naim-mr/refunction
11
+ spdx_license_identifier: CC-BY-4.0
12
+ benchexec_toolinfo_module: benchexec.tools.function-res
13
+ fmtools_format_version: "2.0"
14
+ fmtools_entry_maintainers:
15
+ - naim-mr
16
+ maintainers:
17
+ - orcid: 0009-0000-4188-7064
18
+ name: Naïm MOUSSAOUI REMIL
19
+ institution: Inria Paris and École Normale Supérieure
20
+ country: France
21
+ url:
22
+
23
+ versions:
24
+ - version: "svcomp26"
25
+ doi: 10.5281/zenodo.17525389
26
+ benchexec_toolinfo_options: []
27
+ required_ubuntu_packages:
28
+ - llvm
29
+ - llvm-dev
30
+ - clang
31
+ - libc6-dev-i386
32
+ - libclang-cpp-dev
33
+ - libclang-dev
34
+ - libgmp-dev
35
+ - libmpfr-dev
36
+ - libclang-rt-18-dev
37
+
38
+
39
+ competition_participations:
40
+ - competition: "SV-COMP 2026"
41
+ track: "Verification"
42
+ tool_version: "svcomp26"
43
+ jury_member:
44
+ orcid: 0009-0000-4188-7064
45
+ name: Naïm MOUSSAOUI REMIL
46
+ institution: Inria Paris and École Normale Supérieure
47
+ country: France
48
+ url:
49
+ participants:
50
+ - orcid: 0009-0000-4188-7064
51
+ name: Naïm MOUSSAOUI REMIL
52
+ - orcid: 0000-0002-8127-9642
53
+ name: Caterina URBAN
54
+
55
+ techniques:
56
+ - Numeric Interval Analysis
57
+
58
+ frameworks_solvers:
59
+ - Apron
60
+
61
+ literature:
62
+ - doi: 10.29007/dnpx
63
+ title: "Automatic Detection of Vulnerable Variables for CTL Properties of Program"
64
+ year: 2024
@@ -2,24 +2,26 @@ id: fusebmc-ia
2
2
  name: FuSeBMC-AI
3
3
  input_languages:
4
4
  - C
5
- project_url: https://github.com/Mohannad-Aldughaim/FuSeBMC_IA
6
- repository_url: https://github.com/Mohannad-Aldughaim/FuSeBMC_IA
5
+ project_url: https://github.com/FuSeBMC/
6
+ repository_url: https://github.com/FuSeBMC/
7
7
  spdx_license_identifier: MIT
8
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/fusebmc.py"
8
+ benchexec_toolinfo_module: benchexec.tools.fusebmc
9
9
  fmtools_format_version: "2.0"
10
10
  fmtools_entry_maintainers:
11
11
  - Mohannad-Aldughaim
12
12
  - kaled-alshmrany
13
13
 
14
14
  maintainers:
15
- - name: Mohannad Aldughaim
15
+ - orcid: 0000-0003-1708-1399
16
+ name: Mohannad Aldughaim
16
17
  institution: University of Manchester / King Saud University
17
18
  country: UK / Saudi Arabia
18
19
  url: https://www.research.manchester.ac.uk/portal/mohannad.aldughaim.html
19
- - name: Kaled Alshmrany
20
+ - orcid: 0000-0002-5822-5435
21
+ name: Kaled Alshmrany
20
22
  institution: University of Manchester / Institute of Public Administration
21
23
  country: UK / Saudi Arabia
22
- url: https://research.manchester.ac.uk/en/persons/kaled.alshmrany
24
+ url: https://www.linkedin.com/in/dr-kaled-alshmrany/
23
25
 
24
26
  versions:
25
27
  - version: "testcomp24"
@@ -34,6 +36,16 @@ versions:
34
36
  required_ubuntu_packages: []
35
37
 
36
38
  competition_participations:
39
+ - competition: "Test-Comp 2026"
40
+ track: "Test Generation"
41
+ label:
42
+ - inactive
43
+ tool_version: "testcomp24"
44
+ jury_member:
45
+ name: Hors Concours
46
+ institution: --
47
+ country: --
48
+ url:
37
49
  - competition: "Test-Comp 2025"
38
50
  track: "Test Generation"
39
51
  label:
@@ -69,3 +81,5 @@ techniques:
69
81
  - Portfolio
70
82
 
71
83
  frameworks_solvers: []
84
+
85
+ literature: []