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
@@ -5,7 +5,7 @@ input_languages:
5
5
  project_url: https://github.com/gernst/korn
6
6
  repository_url: https://github.com/gernst/korn
7
7
  spdx_license_identifier: MIT
8
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/korn.py"
8
+ benchexec_toolinfo_module: benchexec.tools.korn
9
9
  fmtools_format_version: "2.0"
10
10
  fmtools_entry_maintainers:
11
11
  - gernst
@@ -21,10 +21,20 @@ maintainers:
21
21
  url: https://www.sosy-lab.org/people/ernst/
22
22
 
23
23
  versions:
24
+ - version: "svcomp26"
25
+ doi: "10.5281/zenodo.17778961"
26
+ benchexec_toolinfo_options: ["-smt2", "clauses.smt2", "-model", "-write", "-confirm", "-debug", "-random", "20", "-timeout", "60", "-golem:spacer", "-timeout", "60", "-z3", "-timeout", "900", "-eld:portfolio"]
27
+ required_ubuntu_packages:
28
+ - gcc-multilib
29
+ - openjdk-21-jre-headless
30
+ base_container_images:
31
+ - docker.io/ubuntu:24.04
24
32
  - version: "svcomp25"
25
33
  doi: "10.5281/zenodo.13987882"
26
34
  benchexec_toolinfo_options: ["-witness", "witness.graphml", "-smt2", "clauses.smt2", "-model", "-write", "-confirm", "-debug", "-random", "20", "-timeout", "60", "-golem:spacer", "-timeout", "60", "-z3", "-timeout", "900", "-eld:portfolio"]
27
35
  required_ubuntu_packages: []
36
+ base_container_images:
37
+ - docker.io/ubuntu:24.04
28
38
  - version: "svcomp24"
29
39
  doi: "10.5281/zenodo.10202058"
30
40
  benchexec_toolinfo_options: ["-witness", "witness.graphml", "-smt2", "clauses.smt2", "-model", "-write", "-random", "10", "-timeout", "20", "-golem", "-timeout", "20", "-z3", "-timeout", "900", "-eld:portfolio"]
@@ -35,6 +45,18 @@ versions:
35
45
  required_ubuntu_packages: []
36
46
 
37
47
  competition_participations:
48
+ - competition: "SV-COMP 2026"
49
+ track: "Verification"
50
+ tool_version: "svcomp26"
51
+ jury_member:
52
+ name: Gidon Ernst
53
+ institution: LMU Munich
54
+ country: Germany
55
+ orcid: 0000-0002-3289-5764
56
+ url: https://www.sosy-lab.org/people/ernst/
57
+ participants:
58
+ - orcid: 0000-0002-3289-5764
59
+ name: Gidon Ernst
38
60
  - competition: "SV-COMP 2025"
39
61
  track: "Verification"
40
62
  tool_version: "svcomp25"
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - omainv
12
12
 
13
13
  maintainers:
14
- - name: Omar Inverso
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Omar Inverso
15
16
  institution: Gran Sasso Science Institute
16
17
  country: Italy
17
18
  url:
@@ -20,12 +21,24 @@ versions:
20
21
  - version: "svcomp23"
21
22
  doi: 10.5281/zenodo.10397183
22
23
  benchexec_toolinfo_options: ['--witness', 'error-witness.graphml']
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
23
26
  required_ubuntu_packages:
24
27
  - python2
25
28
  full_container_images:
26
29
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
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:
@@ -65,3 +78,5 @@ techniques:
65
78
  frameworks_solvers:
66
79
  - CProver
67
80
  - MiniSAT
81
+
82
+ literature: []
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - gernst
12
12
 
13
13
  maintainers:
14
- - name: Gidon Ernst
14
+ - orcid: 0000-0002-3289-5764
15
+ name: Gidon Ernst
15
16
  institution: LMU Munich
16
17
  country: Germany
17
18
  url: https://www.sosy-lab.org/people/ernst/
@@ -39,6 +40,7 @@ competition_participations:
39
40
  track: "Test Generation"
40
41
  tool_version: "testcomp23"
41
42
  jury_member:
43
+ orcid: 0000-0002-3289-5764
42
44
  name: Gidon Ernst
43
45
  institution: LMU Munich
44
46
  country: Germany
@@ -53,3 +55,5 @@ techniques:
53
55
  - Targeted Input Generation
54
56
 
55
57
  frameworks_solvers: []
58
+
59
+ literature: []
@@ -11,10 +11,11 @@ fmtools_entry_maintainers:
11
11
  - gernst
12
12
 
13
13
  maintainers:
14
- - name: Hors Concours
15
- institution: --
16
- country: --
17
- url:
14
+ - orcid: 0000-0002-3289-5764
15
+ name: Gidon Ernst
16
+ institution: LMU Munich
17
+ country: Germany
18
+ url: https://www.sosy-lab.org/people/ernst/
18
19
 
19
20
  versions:
20
21
  - version: "testcomp23"
@@ -55,3 +56,5 @@ techniques:
55
56
  - Targeted Input Generation
56
57
 
57
58
  frameworks_solvers: []
59
+
60
+ literature: []
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - Anthonysdu
12
12
 
13
13
  maintainers:
14
- - name: Tong Wu
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Tong Wu
15
16
  institution: University of Manchester
16
17
  country: UK
17
18
  url:
@@ -20,12 +21,24 @@ versions:
20
21
  - version: "svcomp23"
21
22
  doi: 10.5281/zenodo.10397206
22
23
  benchexec_toolinfo_options: ['--concurrencyFlagPredictor', 'DT2.sav']
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
23
26
  required_ubuntu_packages:
24
27
  - clang
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:
@@ -58,3 +71,5 @@ competition_participations:
58
71
  techniques: []
59
72
 
60
73
  frameworks_solvers: []
74
+
75
+ literature: []
@@ -32,6 +32,19 @@ maintainers:
32
32
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
33
33
 
34
34
  versions:
35
+ - version: "svcomp26"
36
+ doi: 10.5281/zenodo.17735544
37
+ benchexec_toolinfo_options: ['--witness', '${witness}', '--config', './config/liv-runexec.yml']
38
+ required_ubuntu_packages:
39
+ # For CPAchecker backend to validate termination witnesses
40
+ - openjdk-17-jdk-headless
41
+ # For CBMC backend from: https://github.com/diffblue/cbmc/blob/develop/COMPILING.md
42
+ - g++
43
+ - gcc
44
+ - libc6-dev-i386
45
+ # For TransVer
46
+ - clang-format
47
+ - clang-tidy
35
48
  - version: "svcomp25"
36
49
  doi: "10.5281/zenodo.14334835"
37
50
  benchexec_toolinfo_options: ['--witness', '${witness}', '--verifier', 'actors/cbmc.yml', '--verifierversion', 'default', '--cache-dir', 'lib/cvt_cache', '--no-cache-update', '--all-possible-invariant-locations', '--fuzzy-invariant-locations', '1', "--non-strict", '--prep-cgroup', '--debug']
@@ -43,14 +56,46 @@ versions:
43
56
  - python3-graphviz
44
57
  - python3-tqdm
45
58
  - python3-docker
59
+ base_container_images:
60
+ - docker.io/ubuntu:24.04
61
+ full_container_images:
62
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
46
63
  - version: "svcomp24"
47
64
  doi: "10.5281/zenodo.10202756"
48
65
  benchexec_toolinfo_options: ['--verifier', 'actors/cbmc.yml', '--verifierversion', 'default', '--cache-dir', 'lib/cvt_cache', '--no-cache-update', '--all-possible-invariant-locations', '--fuzzy-invariant-locations', '1', "--non-strict"]
49
66
  required_ubuntu_packages: []
67
+ base_container_images:
68
+ - docker.io/ubuntu:22.04
69
+ full_container_images:
70
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
50
71
 
51
72
  competition_participations:
73
+ - competition: "SV-COMP 2026"
74
+ track: "Validation of Correctness Witnesses v2"
75
+ tool_version: "svcomp26"
76
+ jury_member:
77
+ orcid: 0000-0002-8172-3184
78
+ name: Marian Lingsch-Rosenfeld
79
+ institution: LMU Munich
80
+ country: Germany
81
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
82
+ participants:
83
+ - orcid: 0000-0003-4832-7662
84
+ name: Dirk Beyer
85
+ - orcid: 0000-0002-8172-3184
86
+ name: Marian Lingsch-Rosenfeld
87
+ - competition: "SV-COMP 2026"
88
+ track: "Validation of Correctness Witnesses v1"
89
+ tool_version: "svcomp25"
90
+ label:
91
+ - inactive
92
+ jury_member:
93
+ name: Hors Concours
94
+ institution: --
95
+ country: --
96
+ url: --
52
97
  - competition: "SV-COMP 2025"
53
- track: "Validation of Correctness Witnesses 2.0"
98
+ track: "Validation of Correctness Witnesses v2"
54
99
  tool_version: "svcomp25"
55
100
  jury_member:
56
101
  orcid: 0000-0002-8172-3184
@@ -59,7 +104,7 @@ competition_participations:
59
104
  country: Germany
60
105
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
61
106
  - competition: "SV-COMP 2025"
62
- track: "Validation of Correctness Witnesses 1.0"
107
+ track: "Validation of Correctness Witnesses v1"
63
108
  tool_version: "svcomp25"
64
109
  jury_member:
65
110
  orcid: 0000-0002-8172-3184
@@ -68,7 +113,7 @@ competition_participations:
68
113
  country: Germany
69
114
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
70
115
  - competition: "SV-COMP 2024"
71
- track: "Validation of Correctness Witnesses 1.0"
116
+ track: "Validation of Correctness Witnesses v1"
72
117
  tool_version: "svcomp24"
73
118
  jury_member:
74
119
  orcid: 0000-0002-9169-9130
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - vesal.vojdani
12
12
 
13
13
  maintainers:
14
- - name: Vesal Vojdani
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Vesal Vojdani
15
16
  institution: University of Tartu
16
17
  country: Estonia
17
18
  url:
@@ -20,11 +21,23 @@ versions:
20
21
  - version: "svcomp23"
21
22
  doi: 10.5281/zenodo.10407379
22
23
  benchexec_toolinfo_options: []
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:
@@ -58,3 +71,5 @@ techniques:
58
71
  - Concurrency Support
59
72
 
60
73
  frameworks_solvers: []
74
+
75
+ literature: []
@@ -41,7 +41,7 @@ versions:
41
41
 
42
42
  competition_participations:
43
43
  - competition: "SV-COMP 2025"
44
- track: "Validation of Correctness Witnesses 2.0"
44
+ track: "Validation of Correctness Witnesses v2"
45
45
  tool_version: "svcomp25-correctness"
46
46
  jury_member:
47
47
  orcid: 0000-0002-8172-3184
@@ -38,30 +38,145 @@ maintainers:
38
38
  url: https://www.sosy-lab.org/people/spiessl/
39
39
 
40
40
  versions:
41
+ - version: "svcomp26-correctness"
42
+ doi: 10.5281/zenodo.17790528
43
+ benchexec_toolinfo_options: ['--witness', '${witness}', '--config', './config/svcomp26.yml', '--debug', '--expect-witness-type', 'correctness']
44
+ required_ubuntu_packages:
45
+ # For CPAchecker backend to validate termination witnesses
46
+ - openjdk-17-jdk-headless
47
+ # For CBMC backend from: https://github.com/diffblue/cbmc/blob/develop/COMPILING.md
48
+ - g++
49
+ - gcc
50
+ - libc6-dev-i386
51
+ # For TransVer
52
+ - clang-format
53
+ - clang-tidy
54
+ - version: "svcomp26-violation"
55
+ doi: 10.5281/zenodo.17790528
56
+ benchexec_toolinfo_options: ['--witness', '${witness}', '--config', './config/svcomp26.yml', '--debug', '--expect-witness-type', 'violation']
57
+ required_ubuntu_packages:
58
+ # For CPAchecker backend to validate termination witnesses
59
+ - openjdk-17-jdk-headless
60
+ # For CBMC backend from: https://github.com/diffblue/cbmc/blob/develop/COMPILING.md
61
+ - g++
62
+ - gcc
63
+ - libc6-dev-i386
64
+ # For TransVer
65
+ - clang-format
66
+ - clang-tidy
67
+
41
68
  - version: "svcomp25-correctness"
42
69
  doi: 10.5281/zenodo.14170354
43
70
  benchexec_toolinfo_options: ['--metavalWitness', '${witness}', '--metavalWitnessType', 'correctness_witness', '--metavalVerifierBackend', 'cpachecker', '--svcomp24', '--heap', '5000M', '--benchmark', '--timelimit', '900s']
44
71
  required_ubuntu_packages: []
72
+ base_container_images:
73
+ - docker.io/ubuntu:24.04
74
+ full_container_images:
75
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
45
76
  - version: "svcomp25-violation"
46
77
  doi: 10.5281/zenodo.14170354
47
78
  benchexec_toolinfo_options: ['--metavalWitness', '${witness}', '--metavalWitnessType', 'violation_witness', '--metavalVerifierBackend', 'cpachecker', '--predicateAnalysis', '--heap', '5000M', '--benchmark', '--timelimit', '90s']
48
79
  required_ubuntu_packages: []
80
+ base_container_images:
81
+ - docker.io/ubuntu:24.04
82
+ full_container_images:
83
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
84
+
49
85
  - version: "svcomp24-correctness"
50
86
  doi: 10.5281/zenodo.10137150
51
87
  benchexec_toolinfo_options: ['--metavalWitnessType', 'correctness_witness']
52
88
  required_ubuntu_packages: []
89
+ base_container_images:
90
+ - docker.io/ubuntu:22.04
91
+ full_container_images:
92
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
53
93
  - version: "svcomp24-violation"
54
94
  doi: 10.5281/zenodo.10137150
55
95
  benchexec_toolinfo_options: ['--metavalWitnessType', 'violation_witness']
56
96
  required_ubuntu_packages: []
97
+ base_container_images:
98
+ - docker.io/ubuntu:22.04
99
+ full_container_images:
100
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
101
+
57
102
  - version: "svcomp23"
58
103
  doi: 10.5281/zenodo.10065455
59
104
  benchexec_toolinfo_options: []
60
105
  required_ubuntu_packages: []
106
+ base_container_images:
107
+ - docker.io/ubuntu:22.04
108
+ full_container_images:
109
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2023
61
110
 
62
111
  competition_participations:
112
+ - competition: "SV-COMP 2026"
113
+ track: "Validation of Correctness Witnesses v2"
114
+ tool_version: "svcomp26-correctness"
115
+ jury_member:
116
+ orcid: 0000-0002-8172-3184
117
+ name: Marian Lingsch-Rosenfeld
118
+ institution: LMU Munich
119
+ country: Germany
120
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
121
+ participants:
122
+ - orcid: 0000-0003-4832-7662
123
+ name: Dirk Beyer
124
+ - orcid: 0009-0008-7961-190X
125
+ name: Marek Jankola
126
+ - orcid: 0000-0002-8172-3184
127
+ name: Marian Lingsch-Rosenfeld
128
+ - competition: "SV-COMP 2026"
129
+ track: "Validation of Correctness Witnesses v1"
130
+ tool_version: "svcomp25-correctness"
131
+ label:
132
+ - inactive
133
+ jury_member:
134
+ name: Hors Concours
135
+ institution: --
136
+ country: --
137
+ url: --
138
+ participants:
139
+ - orcid: 0000-0003-4832-7662
140
+ name: Dirk Beyer
141
+ - orcid: 0009-0008-7961-190X
142
+ name: Marek Jankola
143
+ - orcid: 0000-0002-8172-3184
144
+ name: Marian Lingsch-Rosenfeld
145
+ - competition: "SV-COMP 2026"
146
+ track: "Validation of Violation Witnesses v2"
147
+ tool_version: "svcomp26-violation"
148
+ jury_member:
149
+ orcid: 0000-0002-8172-3184
150
+ name: Marian Lingsch-Rosenfeld
151
+ institution: LMU Munich
152
+ country: Germany
153
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
154
+ participants:
155
+ - orcid: 0000-0003-4832-7662
156
+ name: Dirk Beyer
157
+ - orcid: 0009-0008-7961-190X
158
+ name: Marek Jankola
159
+ - orcid: 0000-0002-8172-3184
160
+ name: Marian Lingsch-Rosenfeld
161
+ - competition: "SV-COMP 2026"
162
+ track: "Validation of Violation Witnesses v1"
163
+ tool_version: "svcomp25-violation"
164
+ label:
165
+ - inactive
166
+ jury_member:
167
+ name: Hors Concours
168
+ institution: --
169
+ country: --
170
+ url: --
171
+ participants:
172
+ - orcid: 0000-0003-4832-7662
173
+ name: Dirk Beyer
174
+ - orcid: 0009-0008-7961-190X
175
+ name: Marek Jankola
176
+ - orcid: 0000-0002-8172-3184
177
+ name: Marian Lingsch-Rosenfeld
63
178
  - competition: "SV-COMP 2025"
64
- track: "Validation of Correctness Witnesses 1.0"
179
+ track: "Validation of Correctness Witnesses v1"
65
180
  tool_version: "svcomp25-correctness"
66
181
  jury_member:
67
182
  orcid: 0000-0002-8172-3184
@@ -70,7 +185,7 @@ competition_participations:
70
185
  country: Germany
71
186
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
72
187
  - competition: "SV-COMP 2025"
73
- track: "Validation of Correctness Witnesses 2.0"
188
+ track: "Validation of Correctness Witnesses v2"
74
189
  tool_version: "svcomp25-correctness"
75
190
  jury_member:
76
191
  orcid: 0000-0002-8172-3184
@@ -79,7 +194,7 @@ competition_participations:
79
194
  country: Germany
80
195
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
81
196
  - competition: "SV-COMP 2025"
82
- track: "Validation of Violation Witnesses 1.0"
197
+ track: "Validation of Violation Witnesses v1"
83
198
  tool_version: "svcomp25-violation"
84
199
  jury_member:
85
200
  orcid: 0000-0002-8172-3184
@@ -88,7 +203,7 @@ competition_participations:
88
203
  country: Germany
89
204
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
90
205
  - competition: "SV-COMP 2025"
91
- track: "Validation of Violation Witnesses 2.0"
206
+ track: "Validation of Violation Witnesses v2"
92
207
  tool_version: "svcomp25-violation"
93
208
  jury_member:
94
209
  orcid: 0000-0002-8172-3184
@@ -97,7 +212,7 @@ competition_participations:
97
212
  country: Germany
98
213
  url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
99
214
  - competition: "SV-COMP 2024"
100
- track: "Validation of Correctness Witnesses 1.0"
215
+ track: "Validation of Correctness Witnesses v1"
101
216
  tool_version: "svcomp24-correctness"
102
217
  jury_member:
103
218
  orcid: 0000-0002-9169-9130
@@ -106,7 +221,7 @@ competition_participations:
106
221
  country: Germany
107
222
  url: https://www.sosy-lab.org/people/spiessl/
108
223
  - competition: "SV-COMP 2024"
109
- track: "Validation of Violation Witnesses 1.0"
224
+ track: "Validation of Violation Witnesses v1"
110
225
  tool_version: "svcomp24-violation"
111
226
  jury_member:
112
227
  orcid: 0000-0002-9169-9130
@@ -1,11 +1,19 @@
1
1
  id: mlb
2
2
  name: MLB
3
+ description: |
4
+ MLB is a symbolic execution tool with a machine learning approach for constraint solving.
5
+ MLB supports the symbolic execution of not only simple linear path conditions,
6
+ but also nonlinear arithmetic operations, and even black-box function calls of library methods.
7
+ Meanwhile, thanks to the theoretical foundation of the machine learning based approach,
8
+ when the solver fails to solve a path condition,
9
+ we can have an estimation of the confidence in the satisfiability (ECS) of the problem to give users insights about
10
+ how the problem is analyzed and whether they could ultimately find a solution.
3
11
  input_languages:
4
12
  - Java
5
13
  project_url: https://github.com/MLB-SE/Experiment
6
14
  repository_url: https://github.com/MLB-SE/Experiment
7
15
  spdx_license_identifier: MIT
8
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/mlb.py"
16
+ benchexec_toolinfo_module: benchexec.tools.mlb
9
17
  fmtools_format_version: "2.0"
10
18
  fmtools_entry_maintainers:
11
19
  - MLB-SE
@@ -18,6 +26,12 @@ maintainers:
18
26
  url:
19
27
 
20
28
  versions:
29
+ - version: "svcomp26"
30
+ doi: "10.5281/zenodo.17698944"
31
+ benchexec_toolinfo_options: []
32
+ required_ubuntu_packages: []
33
+ base_container_images:
34
+ - docker.io/ubuntu:24.04
21
35
  - version: "svcomp25"
22
36
  doi: "10.5281/zenodo.14229077"
23
37
  benchexec_toolinfo_options: []
@@ -35,6 +49,14 @@ versions:
35
49
  - openjdk-8-jre-headless
36
50
 
37
51
  competition_participations:
52
+ - competition: "SV-COMP 2026"
53
+ track: "Verification"
54
+ tool_version: "svcomp26"
55
+ jury_member:
56
+ name: Lei Bu
57
+ institution: Nanjing University
58
+ country: China
59
+ url:
38
60
  - competition: "SV-COMP 2025"
39
61
  track: "Verification"
40
62
  tool_version: "svcomp25"