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
@@ -26,6 +26,17 @@ maintainers:
26
26
  url: https://thomaslemberger.com/
27
27
 
28
28
  versions:
29
+ - version: "testcomp26"
30
+ doi: "10.5281/zenodo.17543506"
31
+ benchexec_toolinfo_options: []
32
+ required_ubuntu_packages:
33
+ - clang
34
+ - llvm-dev
35
+ base_container_images:
36
+ - docker.io/ubuntu:24.04
37
+ full_container_images:
38
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
39
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
29
40
  - version: "testcomp24"
30
41
  doi: "10.5281/zenodo.10057463"
31
42
  benchexec_toolinfo_options: []
@@ -36,6 +47,18 @@ versions:
36
47
  required_ubuntu_packages: []
37
48
 
38
49
  competition_participations:
50
+ - competition: "Test-Comp 2026"
51
+ track: "Test Generation"
52
+ tool_version: "testcomp26"
53
+ jury_member:
54
+ orcid: 0000-0003-0291-815X
55
+ name: Thomas Lemberger
56
+ institution: LMU Munich
57
+ country: Germany
58
+ url: https://thomaslemberger.com/
59
+ participants:
60
+ - orcid: 0000-0003-0291-815X
61
+ name: Thomas Lemberger
39
62
  - competition: "Test-Comp 2025"
40
63
  track: "Test Generation"
41
64
  tool_version: "testcomp24"
@@ -0,0 +1,77 @@
1
+ id: pysvlib-linter
2
+ name: PySvLib-Linter
3
+ description: |
4
+ PySvLib is a Python library for handling SV-LIB files.
5
+ In this context, we instantiate the tool to perform linting
6
+ of SV-LIB programs and witnesses.
7
+ input_languages:
8
+ - SV-LIB
9
+ project_url: https://gitlab.com/sosy-lab/benchmarking/sv-lib/
10
+ repository_url: https://gitlab.com/sosy-lab/benchmarking/sv-lib/
11
+ spdx_license_identifier: Apache-2.0
12
+ benchexec_toolinfo_module: benchexec.tools.pysvlib
13
+ fmtools_format_version: "2.0"
14
+ fmtools_entry_maintainers:
15
+ - dbeyer
16
+ - Marianl
17
+ - gernst
18
+
19
+ maintainers:
20
+ - orcid: 0000-0003-4832-7662
21
+ name: Dirk Beyer
22
+ institution: LMU Munich
23
+ country: Germany
24
+ url: https://www.sosy-lab.org/people/dbeyer/
25
+ - name: Marian Lingsch-Rosenfeld
26
+ orcid: 0000-0002-8172-3184
27
+ institution: LMU Munich
28
+ country: Germany
29
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
30
+ - name: Gidon Ernst
31
+ institution: LMU Munich
32
+ country: Germany
33
+ orcid: 0000-0002-3289-5764
34
+ url: https://www.sosy-lab.org/people/ernst/
35
+
36
+ versions:
37
+ - version: "0.0.0-dev+g03e294a-svcomp2026"
38
+ doi: 10.5281/zenodo.18366617
39
+ benchexec_toolinfo_options: ["lint", "--print-file-metadata", "${witness}"]
40
+ base_container_images:
41
+ - docker.io/ubuntu:24.04
42
+ required_ubuntu_packages:
43
+ - python3-ply
44
+ full_container_images:
45
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
46
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
47
+
48
+ competition_participations:
49
+ - competition: "SV-COMP 2026"
50
+ track: "Validation of SV-LIB Witnesses v1"
51
+ label:
52
+ - auxiliary
53
+ tool_version: "0.0.0-dev+g03e294a-svcomp2026"
54
+ jury_member:
55
+ orcid: 0000-0002-8172-3184
56
+ name: Marian Lingsch-Rosenfeld
57
+ institution: LMU Munich
58
+ country: Germany
59
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
60
+ participants:
61
+ - orcid: 0000-0003-4832-7662
62
+ name: Dirk Beyer
63
+ - orcid: 0000-0002-8172-3184
64
+ name: Marian Lingsch-Rosenfeld
65
+ - orcid: 0000-0002-3289-5764
66
+ name: Gidon Ernst
67
+
68
+ techniques: []
69
+
70
+ frameworks_solvers: []
71
+
72
+ used_actors: []
73
+
74
+ literature:
75
+ - doi: 10.48550/arXiv.2511.21509
76
+ title: "SV-LIB 1.0: A Standard Exchange Format for Software-Verification Tasks"
77
+ year: 2025
@@ -0,0 +1,76 @@
1
+ id: pysvlib-validator
2
+ name: PySvLib-Validator
3
+ description: |
4
+ PySvLib is a Python library for handling SV-LIB files.
5
+ In this context, we instantiate the tool to validate
6
+ SV-LIB witnesses for corresponding verification tasks.
7
+ input_languages:
8
+ - SV-LIB
9
+ project_url: https://gitlab.com/sosy-lab/benchmarking/sv-lib/
10
+ repository_url: https://gitlab.com/sosy-lab/benchmarking/sv-lib/
11
+ spdx_license_identifier: Apache-2.0
12
+ benchexec_toolinfo_module: benchexec.tools.pysvlib
13
+ fmtools_format_version: "2.0"
14
+ fmtools_entry_maintainers:
15
+ - dbeyer
16
+ - Marianl
17
+ - gernst
18
+
19
+ maintainers:
20
+ - orcid: 0000-0003-4832-7662
21
+ name: Dirk Beyer
22
+ institution: LMU Munich
23
+ country: Germany
24
+ url: https://www.sosy-lab.org/people/dbeyer/
25
+ - name: Marian Lingsch-Rosenfeld
26
+ orcid: 0000-0002-8172-3184
27
+ institution: LMU Munich
28
+ country: Germany
29
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
30
+ - name: Gidon Ernst
31
+ institution: LMU Munich
32
+ country: Germany
33
+ orcid: 0000-0002-3289-5764
34
+ url: https://www.sosy-lab.org/people/ernst/
35
+
36
+ versions:
37
+ - version: "0.0.0-dev+g03e294a-svcomp2026"
38
+ doi: 10.5281/zenodo.18366617
39
+ benchexec_toolinfo_options: ["validate", "--witness", "${witness}", "--solver", "z3"]
40
+ base_container_images:
41
+ - docker.io/ubuntu:24.04
42
+ required_ubuntu_packages:
43
+ - python3-ply
44
+ # - z3 # Usually necessary, but provided in the Archive in this case
45
+ full_container_images:
46
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
47
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
48
+
49
+ competition_participations:
50
+ - competition: "SV-COMP 2026"
51
+ track: "Validation of SV-LIB Witnesses v1"
52
+ tool_version: "0.0.0-dev+g03e294a-svcomp2026"
53
+ jury_member:
54
+ orcid: 0000-0002-8172-3184
55
+ name: Marian Lingsch-Rosenfeld
56
+ institution: LMU Munich
57
+ country: Germany
58
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
59
+ participants:
60
+ - orcid: 0000-0003-4832-7662
61
+ name: Dirk Beyer
62
+ - orcid: 0000-0002-8172-3184
63
+ name: Marian Lingsch-Rosenfeld
64
+ - orcid: 0000-0002-3289-5764
65
+ name: Gidon Ernst
66
+
67
+ techniques: []
68
+
69
+ frameworks_solvers: []
70
+
71
+ used_actors: []
72
+
73
+ literature:
74
+ - doi: 10.48550/arXiv.2511.21509
75
+ title: "SV-LIB 1.0: A Standard Exchange Format for Software-Verification Tasks"
76
+ year: 2025
@@ -10,7 +10,7 @@ input_languages:
10
10
  project_url: https://github.com/TDacik/Deadlock_Racer
11
11
  repository_url: https://github.com/TDacik/Deadlock_Racer
12
12
  spdx_license_identifier: MIT
13
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/racerf.py"
13
+ benchexec_toolinfo_module: benchexec.tools.racerf
14
14
  fmtools_format_version: "2.0"
15
15
  fmtools_entry_maintainers:
16
16
  - TDacik
@@ -28,6 +28,14 @@ maintainers:
28
28
  url: https://www.muni.cz/en/people/134390-tomas-vojnar
29
29
 
30
30
  versions:
31
+ - version: "svcomp26"
32
+ doi: 10.5281/zenodo.17589798
33
+ benchexec_toolinfo_options: []
34
+ required_ubuntu_packages:
35
+ - gcc
36
+ - python3
37
+ base_container_images:
38
+ - docker.io/ubuntu:24.04
31
39
  - version: "svcomp25"
32
40
  doi: 10.5281/zenodo.14507645
33
41
  benchexec_toolinfo_options: []
@@ -36,6 +44,21 @@ versions:
36
44
  - python3
37
45
 
38
46
  competition_participations:
47
+ - competition: "SV-COMP 2026"
48
+ track: "Verification"
49
+ tool_version: "svcomp26"
50
+ jury_member:
51
+ orcid: 0000-0003-4083-8943
52
+ name: Tomáš Dacík
53
+ institution: Brno University of Technology
54
+ country: Czechia
55
+ url: https://www.fit.vut.cz/person/idacik/.en
56
+ participants:
57
+ - orcid: 0000-0003-4083-8943
58
+ name: Tomáš Dacík
59
+ - orcid: 0000-0002-2746-8792
60
+ name: Tomáš Vojnar
61
+
39
62
  - competition: "SV-COMP 2025"
40
63
  track: "Verification"
41
64
  tool_version: "svcomp25"
@@ -49,10 +72,10 @@ competition_participations:
49
72
  techniques:
50
73
  - Concurrency Support
51
74
 
52
- frameworks_solvers: []
75
+ frameworks_solvers:
76
+ - Frama-C
53
77
 
54
78
  literature:
55
- - doi: 10.48550/arXiv.2502.04905
79
+ - doi: 10.4230/LIPIcs.ECOOP.2025.37
56
80
  title: "RacerF: Lightweight Static Data Race Detection for C Code"
57
81
  year: 2025
58
-
@@ -0,0 +1,78 @@
1
+ id: re3ver
2
+ name: Re3ver
3
+ description: |
4
+ Re3ver is a tool for reachability analysis, integrating a preprocessor
5
+ which reverses the input programs into the verifier Symbiotic.
6
+ input_languages:
7
+ - C
8
+ project_url: https://gitlab.fi.muni.cz/xstepkov/reverser
9
+ repository_url: https://gitlab.fi.muni.cz/xstepkov/reverser
10
+ spdx_license_identifier: "MIT"
11
+ benchexec_toolinfo_module: "re3ver.py"
12
+ fmtools_format_version: "2.0"
13
+ fmtools_entry_maintainers:
14
+ - adastepkova
15
+
16
+ maintainers:
17
+ - orcid: 0009-0004-4639-1673
18
+ name: Adéla Štěpková
19
+ institution: Masaryk University, Brno
20
+ country: Czechia
21
+ url:
22
+ versions:
23
+ - version: "svcomp26"
24
+ doi: "10.5281/zenodo.17672678"
25
+ benchexec_toolinfo_options: ['--sv-comp', '--reverse']
26
+ required_ubuntu_packages:
27
+ - python3
28
+ - python3-lxml
29
+ - python3-clang
30
+ - python3-yaml
31
+ base_container_images:
32
+ - docker.io/ubuntu:24.04
33
+ competition_participations:
34
+ - competition: "SV-COMP 2026"
35
+ track: "Verification"
36
+ tool_version: "svcomp26"
37
+ jury_member:
38
+ name: Adéla Štěpková
39
+ institution: Masaryk University, Brno
40
+ country: Czechia
41
+ url:
42
+ participants:
43
+ - orcid: 0009-0004-4639-1673
44
+ name: Adéla Štěpková
45
+ - orcid: 0000-0001-5873-403X
46
+ name: Jan Strejček
47
+ - orcid: 0000-0003-4703-0795
48
+ name: Martin Jonáš
49
+
50
+ techniques:
51
+ - Symbolic Execution
52
+ - k-Induction
53
+ - Numeric Interval Analysis
54
+ - Shape Analysis
55
+ - Bit-Precise Analysis
56
+ - Concurrency Support
57
+ - Portfolio
58
+ - Floating-Point Arithmetics
59
+ - Guidance by Coverage Measures
60
+ - Targeted Input Generation
61
+
62
+ frameworks_solvers:
63
+ - Z3
64
+ - Klee
65
+ - Symbiotic
66
+
67
+ used_actors:
68
+ - actor_type: "Reverser"
69
+ description: |
70
+ Reverses the program to run from failed asserts towards the start of the program.
71
+ - actor_type: "Slicer"
72
+ description: |
73
+ Slices the program before symbolic execution.
74
+ - actor_type: "Instrumentor"
75
+ description: |
76
+ Instruments the program to track allocated memory regions for memory-safety analysis.
77
+
78
+ literature: []
@@ -6,7 +6,7 @@ project_url: https://github.com/staticafi/sbt-fizzer/tree/rizzer
6
6
  repository_url: https://github.com/staticafi/sbt-fizzer/tree/rizzer
7
7
  spdx_license_identifier: Zlib
8
8
  benchexec_toolinfo_module: rizzer.py
9
- fmtools_format_version: "0.1"
9
+ fmtools_format_version: "2.0"
10
10
  fmtools_entry_maintainers:
11
11
  - adamstafa
12
12
 
@@ -28,6 +28,16 @@ versions:
28
28
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
29
29
 
30
30
  competition_participations:
31
+ - competition: "Test-Comp 2026"
32
+ track: "Test Generation"
33
+ label:
34
+ - inactive
35
+ tool_version: "testcomp24"
36
+ jury_member:
37
+ name: Hors Concours
38
+ institution: --
39
+ country: --
40
+ url:
31
41
  - competition: "Test-Comp 2025"
32
42
  track: "Test Generation"
33
43
  label:
@@ -16,6 +16,67 @@ properties:
16
16
  type: array
17
17
  items:
18
18
  type: string
19
+ oneOf:
20
+ - title: B
21
+ const: B
22
+
23
+ - title: C
24
+ const: C
25
+ description: |
26
+ C is a general purpose programming language.
27
+
28
+ - title: CUDA
29
+ const: CUDA
30
+
31
+ - title: DVE
32
+ const: DVE
33
+
34
+ - title: ETF
35
+ const: ETF
36
+
37
+ - title: Event-B
38
+ const: Event-B
39
+
40
+ - title: Java
41
+ const: Java
42
+ description: |
43
+ Java is a general purpose programming language.
44
+
45
+ - title: LLVM-IR
46
+ const: LLVM-IR
47
+
48
+ - title: MCRL
49
+ const: MCRL
50
+
51
+ - title: MCRL2
52
+ const: MCRL2
53
+
54
+ - title: OpenCL
55
+ const: OpenCL
56
+
57
+ - title: PNML
58
+ const: PNML
59
+
60
+ - title: Promela
61
+ const: Promela
62
+
63
+ - title: SYCL
64
+ const: SYCL
65
+
66
+ - title: TLA+
67
+ const: TLA+
68
+
69
+ - title: Wasm
70
+ const: Wasm
71
+
72
+ - title: SV-LIB
73
+ const: SV-LIB
74
+ description: |
75
+ SV-LIB is an SMT-LIB-based exchange format for imperative programs.
76
+
77
+ - title: Z
78
+ const: Z
79
+
19
80
  description: The supported input languages of the tool.
20
81
  project_url:
21
82
  type: string
@@ -33,6 +94,8 @@ properties:
33
94
  description: Tool-info module name of benchexec in the format benchexec.tools.<tool>.
34
95
  fmtools_format_version:
35
96
  type: string
97
+ enum:
98
+ - "2.0"
36
99
  description: The version of the fm-tools/data format.
37
100
  fmtools_entry_maintainers:
38
101
  type: array
@@ -112,10 +175,11 @@ properties:
112
175
  track:
113
176
  type: string
114
177
  enum:
115
- - Validation of Correctness Witnesses 1.0
116
- - Validation of Correctness Witnesses 2.0
117
- - Validation of Violation Witnesses 1.0
118
- - Validation of Violation Witnesses 2.0
178
+ - Validation of Correctness Witnesses v1
179
+ - Validation of Correctness Witnesses v2
180
+ - Validation of Violation Witnesses v1
181
+ - Validation of Violation Witnesses v2
182
+ - Validation of SV-LIB Witnesses v1
119
183
  - Verification
120
184
  - Test Generation
121
185
  - Validation of Test Suites
@@ -130,12 +194,14 @@ properties:
130
194
  enum:
131
195
  - inactive
132
196
  - meta_tool
197
+ - ai
133
198
  - unqualified
134
199
  - auxiliary
135
200
  description: |
136
201
  Characterizes the competition participation.
137
202
  `inactive` means that the tool was not submitted by the developers.
138
203
  `meta_tool` means that the tool is composed of other tools.
204
+ `ai` means that the tool uses an LLM or other sophisticated kind of artificial intelligence.
139
205
  `unqualified` means that the tool was not able to successfully participate.
140
206
  `auxiliary` means that the tool is just an auxiliary tool, not a real contestant.
141
207
  tool_version:
@@ -161,6 +227,20 @@ properties:
161
227
  - institution
162
228
  - country
163
229
  - url
230
+ participants:
231
+ type: array
232
+ items:
233
+ type: object
234
+ properties:
235
+ orcid:
236
+ type: string
237
+ pattern: '^[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0-9X]$'
238
+ name:
239
+ type: string
240
+ required:
241
+ - orcid
242
+ - name
243
+ description: Information about the competition participants of the tool.
164
244
  required:
165
245
  - competition
166
246
  - track
@@ -185,6 +265,15 @@ properties:
185
265
  - ['Boolean Programs: A Model and Process for Software Analysis', TR 2000-14, 2000](https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/tr-2000-14.pdf)
186
266
  - ['Counterexample-Guided Abstraction Refinement for Symbolic Model Checking', J. ACM, 2003](https://doi.org/10.1145/876638.876643)
187
267
 
268
+ - title: CEGIS
269
+ const: CEGIS
270
+ description: |
271
+ Counter-Example Guided Inductive Synthesis
272
+
273
+ Literature:
274
+
275
+ - ['Decision Tree Learning in CEGIS-Based Termination Analysis', Proc. CAV, 2021](https://doi.org/10.1007/978-3-030-81688-9_4)
276
+
188
277
  - title: Predicate Abstraction
189
278
  const: Predicate Abstraction
190
279
  description: |
@@ -483,6 +572,28 @@ properties:
483
572
  description: |
484
573
  Deductive Verification
485
574
 
575
+ - title: Abstract Interpretation
576
+ const: Abstract Interpretation
577
+ description: |
578
+ Abstract Interpretation is a mathematical framework used to define and prove the soundness of abstractions.
579
+ In static analysis, it allows one to soundly approximate program semantics using abstract domains,
580
+ thereby automatically inferring invariants to verify program properties without executing the program.
581
+
582
+ Literature:
583
+ - ['Abstract Interpretation: A Unified Lattice Model for Static Analysis of Programs by Construction or Approximation of Fixpoints', Proc. POPL, 1977](https://doi.org/10.1145/512950.512973)
584
+ - ['Systematic design of program analysis frameworks', Proc. POPL, 1978](https://doi.org/10.1145/567752.567778)
585
+
586
+ - title: Fuzzing
587
+ const: Fuzzing
588
+ description: |
589
+ Fuzzing is a dynamic software testing technique
590
+ that automatically generates a large number of random or semi-random inputs
591
+ to test programs for bugs, vulnerabilities, and crashes.
592
+ It is particularly effective at finding security vulnerabilities and robustness issues.
593
+
594
+ Literature:
595
+ - ['The Fuzzing Book', Online, 2023](https://www.fuzzingbook.org/)
596
+
486
597
  description: Techniques used by the tool.
487
598
  frameworks_solvers:
488
599
  type: array
@@ -554,6 +665,16 @@ properties:
554
665
  description: |
555
666
  Z3
556
667
 
668
+ - title: PCSat
669
+ const: PCSat
670
+ description: |
671
+ PCSat
672
+
673
+ - title: PySMT
674
+ const: PySMT
675
+ description: |
676
+ PySMT
677
+
557
678
  - title: MiniSAT
558
679
  const: MiniSAT
559
680
  description: |
@@ -574,6 +695,66 @@ properties:
574
695
  description: |
575
696
  Viper
576
697
 
698
+ - title: LiSA
699
+ const: LiSA
700
+ description: |
701
+ LiSA
702
+
703
+ - title: AFL++
704
+ const: AFL++
705
+ description: |
706
+ AFL++ (American Fuzzy Lop Plus Plus)
707
+
708
+ - title: Bitwuzla
709
+ const: Bitwuzla
710
+ description: |
711
+ Bitwuzla
712
+
713
+ - title: Boolector
714
+ const: Boolector
715
+ description: |
716
+ Boolector
717
+
718
+ - title: cvc5
719
+ const: cvc5
720
+ description: |
721
+ cvc5
722
+
723
+ - title: Smt-Switch
724
+ const: Smt-Switch
725
+ description: |
726
+ Smt-Switch
727
+
728
+ - title: Yices2
729
+ const: Yices2
730
+ description: |
731
+ Yices2
732
+
733
+ - title: Klee
734
+ const: Klee
735
+ description: |
736
+ Klee is a symbolic executor of LLVM IR code.
737
+
738
+ - title: Symbiotic
739
+ const: Symbiotic
740
+ description: |
741
+ Symbiotic is a program analysis framework integrating scripts for compilation and various
742
+ 3rd party libraries and tools for program slicing, point-to analysis, and verification.
743
+
744
+ - title: Frama-C
745
+ const: Frama-C
746
+ description: |
747
+ Frama-C is an open-source, extensible platform dedicated to the source-code analysis of
748
+ C software. It integrates several analysis techniques, including abstract interpretation,
749
+ deductive verification, and runtime verification.
750
+
751
+ - title: Astral
752
+ const: Astral
753
+ description: |
754
+ Astral is a solver for various fragments of separation logic with inductive definitions.
755
+ Its approach is based on a translation to SMT, allowing it to leverage multiple existing
756
+ SMT solvers as backends.
757
+
577
758
  description: Frameworks or solvers used by the tool.
578
759
  used_actors:
579
760
  type: array
@@ -0,0 +1,67 @@
1
+ id: seal
2
+ name: SEAL
3
+ description: |
4
+ SEAL is a static analyzer aimed at verifying programs that work with dynamic memory, especially linked lists. It is implemented as a plugin for the Frama-C framework. The analysis is based on abstract interpretation with a domain of separation logic formulae representing abstract memory states. For deciding SL formulae, SEAL uses Astral, a dedicated solver for separation logic.
5
+ input_languages:
6
+ - C
7
+ project_url: https://github.com/pepega007xd/seal
8
+ repository_url: https://github.com/pepega007xd/seal
9
+ spdx_license_identifier: MIT
10
+ benchexec_toolinfo_module: benchexec.tools.seal
11
+ fmtools_format_version: "2.0"
12
+ fmtools_entry_maintainers:
13
+ - TDacik
14
+ - tbrablec
15
+
16
+ maintainers:
17
+ - orcid: 0009-0005-4833-8662
18
+ name: Tomáš Brablec
19
+ institution: Brno University of Technology
20
+ country: Czechia
21
+ url:
22
+ - orcid: 0000-0003-4083-8943
23
+ name: Tomáš Dacík
24
+ institution: Brno University of Technology
25
+ country: Czechia
26
+ url: https://www.fit.vut.cz/person/idacik/.en
27
+ - orcid: 0000-0002-2746-8792
28
+ name: Tomáš Vojnar
29
+ institution: Masaryk University, Brno University of Technology
30
+ country: Czechia
31
+ url: https://www.muni.cz/en/people/134390-tomas-vojnar
32
+
33
+ versions:
34
+ - version: "svcomp26"
35
+ doi: "10.5281/zenodo.17690232"
36
+ benchexec_toolinfo_options: []
37
+ required_ubuntu_packages:
38
+ - gcc
39
+ - python3
40
+
41
+ base_container_images:
42
+ - docker.io/ubuntu:24.04
43
+ competition_participations:
44
+ - competition: "SV-COMP 2026"
45
+ track: "Verification"
46
+ tool_version: "svcomp26"
47
+ jury_member:
48
+ orcid: 0000-0003-4083-8943
49
+ name: Tomáš Dacík
50
+ institution: Brno University of Technology
51
+ country: Czechia
52
+ url: https://www.fit.vut.cz/person/idacik/.en
53
+ participants:
54
+ - orcid: 0000-0003-4083-8943
55
+ name: Tomáš Dacík
56
+ - orcid: 0009-0005-4833-8662
57
+ name: Tomáš Brablec
58
+
59
+ techniques:
60
+ - Shape Analysis
61
+ - Separation Logic
62
+
63
+ frameworks_solvers:
64
+ - Astral
65
+ - Frama-C
66
+
67
+ literature: []