fm-weck 1.3.0__py3-none-any.whl → 1.4.1__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 (116) hide show
  1. fm_weck/__init__.py +1 -1
  2. fm_weck/cli.py +63 -11
  3. fm_weck/config.py +38 -13
  4. fm_weck/engine.py +52 -11
  5. fm_weck/image_mgr.py +9 -2
  6. fm_weck/resources/__init__.py +2 -2
  7. fm_weck/resources/fm_tools/2ls.yml +14 -0
  8. fm_weck/resources/fm_tools/aise.yml +16 -3
  9. fm_weck/resources/fm_tools/aprove.yml +25 -1
  10. fm_weck/resources/fm_tools/brick.yml +13 -0
  11. fm_weck/resources/fm_tools/bubaak-split.yml +15 -0
  12. fm_weck/resources/fm_tools/bubaak.yml +15 -0
  13. fm_weck/resources/fm_tools/cbmc.yml +10 -0
  14. fm_weck/resources/fm_tools/cetfuzz.yml +12 -1
  15. fm_weck/resources/fm_tools/coastal.yml +11 -0
  16. fm_weck/resources/fm_tools/concurrentwitness2test.yml +21 -2
  17. fm_weck/resources/fm_tools/cooperace.yml +51 -0
  18. fm_weck/resources/fm_tools/coveriteam-verifier-algo-selection.yml +13 -0
  19. fm_weck/resources/fm_tools/coveriteam-verifier-parallel-portfolio.yml +13 -0
  20. fm_weck/resources/fm_tools/coveritest.yml +14 -0
  21. fm_weck/resources/fm_tools/cpa-bam-bnb.yml +11 -0
  22. fm_weck/resources/fm_tools/cpa-bam-smg.yml +11 -0
  23. fm_weck/resources/fm_tools/cpa-lockator.yml +11 -0
  24. fm_weck/resources/fm_tools/cpa-witness2test.yml +9 -0
  25. fm_weck/resources/fm_tools/cpachecker.yml +68 -1
  26. fm_weck/resources/fm_tools/cpv.yml +17 -2
  27. fm_weck/resources/fm_tools/crux.yml +11 -0
  28. fm_weck/resources/fm_tools/cseq.yml +11 -4
  29. fm_weck/resources/fm_tools/dartagnan.yml +22 -0
  30. fm_weck/resources/fm_tools/deagle.yml +27 -1
  31. fm_weck/resources/fm_tools/divine.yml +11 -0
  32. fm_weck/resources/fm_tools/ebf.yml +9 -0
  33. fm_weck/resources/fm_tools/emergentheta.yml +23 -0
  34. fm_weck/resources/fm_tools/esbmc-incr.yml +32 -5
  35. fm_weck/resources/fm_tools/esbmc-kind.yml +33 -1
  36. fm_weck/resources/fm_tools/fdse.yml +9 -0
  37. fm_weck/resources/fm_tools/fizzer.yml +23 -0
  38. fm_weck/resources/fm_tools/frama-c-sv.yml +11 -0
  39. fm_weck/resources/fm_tools/fshell-witness2test.yml +10 -0
  40. fm_weck/resources/fm_tools/fusebmc-ia.yml +9 -0
  41. fm_weck/resources/fm_tools/fusebmc.yml +19 -1
  42. fm_weck/resources/fm_tools/gazer-theta.yml +13 -0
  43. fm_weck/resources/fm_tools/gdart-llvm.yml +10 -0
  44. fm_weck/resources/fm_tools/gdart.yml +31 -0
  45. fm_weck/resources/fm_tools/goblint.yml +50 -2
  46. fm_weck/resources/fm_tools/graves-par.yml +13 -0
  47. fm_weck/resources/fm_tools/graves.yml +12 -0
  48. fm_weck/resources/fm_tools/gwit.yml +9 -0
  49. fm_weck/resources/fm_tools/hornix.yml +55 -0
  50. fm_weck/resources/fm_tools/hybridtiger.yml +11 -0
  51. fm_weck/resources/fm_tools/infer.yml +11 -0
  52. fm_weck/resources/fm_tools/java-ranger.yml +25 -3
  53. fm_weck/resources/fm_tools/jayhorn.yml +12 -0
  54. fm_weck/resources/fm_tools/jbmc.yml +14 -1
  55. fm_weck/resources/fm_tools/jcwit.yml +11 -0
  56. fm_weck/resources/fm_tools/jdart.yml +11 -0
  57. fm_weck/resources/fm_tools/klee.yml +11 -0
  58. fm_weck/resources/fm_tools/kleef.yml +24 -5
  59. fm_weck/resources/fm_tools/korn.yml +16 -0
  60. fm_weck/resources/fm_tools/lazycseq.yml +13 -0
  61. fm_weck/resources/fm_tools/legion-symcc.yml +10 -0
  62. fm_weck/resources/fm_tools/legion.yml +11 -0
  63. fm_weck/resources/fm_tools/lf-checker.yml +10 -0
  64. fm_weck/resources/fm_tools/liv.yml +28 -4
  65. fm_weck/resources/fm_tools/locksmith.yml +10 -0
  66. fm_weck/resources/fm_tools/metaval++.yml +49 -0
  67. fm_weck/resources/fm_tools/metaval.yml +51 -5
  68. fm_weck/resources/fm_tools/mlb.yml +21 -1
  69. fm_weck/resources/fm_tools/mopsa.yml +45 -0
  70. fm_weck/resources/fm_tools/nacpa.yml +51 -0
  71. fm_weck/resources/fm_tools/nitwit.yml +11 -0
  72. fm_weck/resources/fm_tools/owic.yml +11 -0
  73. fm_weck/resources/fm_tools/pesco.yml +12 -0
  74. fm_weck/resources/fm_tools/pichecker.yml +10 -0
  75. fm_weck/resources/fm_tools/pinaka.yml +11 -0
  76. fm_weck/resources/fm_tools/predatorhp.yml +12 -0
  77. fm_weck/resources/fm_tools/proton.yml +20 -0
  78. fm_weck/resources/fm_tools/prtest.yml +9 -0
  79. fm_weck/resources/fm_tools/racerf.yml +48 -0
  80. fm_weck/resources/fm_tools/relay-sv.yml +11 -0
  81. fm_weck/resources/fm_tools/rizzer.yml +9 -0
  82. fm_weck/resources/fm_tools/sikraken.yml +42 -0
  83. fm_weck/resources/fm_tools/spf.yml +11 -0
  84. fm_weck/resources/fm_tools/sv-sanitizers.yml +18 -1
  85. fm_weck/resources/fm_tools/svf-svc.yml +45 -0
  86. fm_weck/resources/fm_tools/swat.yml +9 -0
  87. fm_weck/resources/fm_tools/symbiotic-witch.yml +17 -1
  88. fm_weck/resources/fm_tools/symbiotic.yml +32 -1
  89. fm_weck/resources/fm_tools/testcov.yml +18 -1
  90. fm_weck/resources/fm_tools/theta.yml +24 -0
  91. fm_weck/resources/fm_tools/thorn.yml +46 -0
  92. fm_weck/resources/fm_tools/tracerx-wp.yml +19 -0
  93. fm_weck/resources/fm_tools/tracerx.yml +19 -0
  94. fm_weck/resources/fm_tools/uautomizer.yml +72 -4
  95. fm_weck/resources/fm_tools/ugemcutter.yml +24 -6
  96. fm_weck/resources/fm_tools/ukojak.yml +35 -6
  97. fm_weck/resources/fm_tools/ureferee.yml +82 -0
  98. fm_weck/resources/fm_tools/utaipan.yml +33 -4
  99. fm_weck/resources/fm_tools/utestgen.yml +27 -0
  100. fm_weck/resources/fm_tools/veriabs.yml +28 -1
  101. fm_weck/resources/fm_tools/veriabsl.yml +43 -3
  102. fm_weck/resources/fm_tools/verifuzz.yml +2 -0
  103. fm_weck/resources/fm_tools/verioover.yml +10 -0
  104. fm_weck/resources/fm_tools/wasp-c.yml +12 -0
  105. fm_weck/resources/fm_tools/wit4java.yml +12 -0
  106. fm_weck/resources/fm_tools/witch.yml +16 -1
  107. fm_weck/resources/fm_tools/witnesslint.yml +79 -1
  108. fm_weck/resources/run_with_overlay.sh +22 -4
  109. fm_weck/runexec_mode.py +52 -0
  110. fm_weck/runexec_util.py +7 -3
  111. fm_weck/serve.py +0 -27
  112. {fm_weck-1.3.0.dist-info → fm_weck-1.4.1.dist-info}/METADATA +1 -1
  113. fm_weck-1.4.1.dist-info/RECORD +145 -0
  114. {fm_weck-1.3.0.dist-info → fm_weck-1.4.1.dist-info}/WHEEL +1 -1
  115. fm_weck-1.3.0.dist-info/RECORD +0 -135
  116. {fm_weck-1.3.0.dist-info → fm_weck-1.4.1.dist-info}/entry_points.txt +0 -0
@@ -22,8 +22,18 @@ versions:
22
22
  required_ubuntu_packages: []
23
23
 
24
24
  competition_participations:
25
+ - competition: "Test-Comp 2025"
26
+ track: "Test Generation"
27
+ hors-concours: true
28
+ tool_version: "testcomp23"
29
+ jury_member:
30
+ name: Hors Concours
31
+ institution: --
32
+ country: --
33
+ url: null
25
34
  - competition: "Test-Comp 2024"
26
35
  track: "Test Generation"
36
+ hors-concours: true
27
37
  tool_version: "testcomp23"
28
38
  jury_member:
29
39
  name: Hors Concours
@@ -32,6 +42,7 @@ competition_participations:
32
42
  url: null
33
43
  - competition: "Test-Comp 2023"
34
44
  track: "Test Generation"
45
+ hors-concours: true
35
46
  tool_version: "testcomp23"
36
47
  jury_member:
37
48
  name: Hors Concours
@@ -28,8 +28,18 @@ versions:
28
28
  required_ubuntu_packages: []
29
29
 
30
30
  competition_participations:
31
+ - competition: "SV-COMP 2025"
32
+ track: "Verification"
33
+ hors-concours: true
34
+ tool_version: "svcomp24"
35
+ jury_member:
36
+ name: Hors Concours
37
+ institution: --
38
+ country: --
39
+ url: null
31
40
  - competition: "SV-COMP 2024"
32
41
  track: "Verification"
42
+ hors-concours: true
33
43
  tool_version: "svcomp24"
34
44
  jury_member:
35
45
  name: Hors Concours
@@ -38,6 +48,7 @@ competition_participations:
38
48
  url: null
39
49
  - competition: "SV-COMP 2023"
40
50
  track: "Verification"
51
+ hors-concours: true
41
52
  tool_version: "svcomp23"
42
53
  jury_member:
43
54
  name: Hors Concours
@@ -11,19 +11,34 @@ fmtools_entry_maintainers:
11
11
 
12
12
  maintainers:
13
13
  - name: Soha Hussein
14
- institution: University of Minnesota
15
- country: USA
16
- url: https://www.linkedin.com/in/sohahusse/
14
+ institution: Ain Shams University
15
+ country: Egypt
16
+ url: https://sohah.github.io/
17
+ orcid: 0000-0002-5071-6811
17
18
 
18
19
  versions:
20
+ - version: "svcomp25"
21
+ doi: 10.5281/zenodo.14143727
22
+ benchexec_toolinfo_options: [ ]
23
+ required_ubuntu_packages:
24
+ - openjdk-8-jre-headless
19
25
  - version: "svcomp23"
20
26
  doi: 10.5281/zenodo.7467038
21
27
  benchexec_toolinfo_options: []
22
28
  required_ubuntu_packages: []
23
29
 
24
30
  competition_participations:
31
+ - competition: "SV-COMP 2025"
32
+ track: "Verification"
33
+ tool_version: "svcomp25"
34
+ jury_member:
35
+ name: Soha Hussein
36
+ institution: Ain Shams University
37
+ country: Egypt
38
+ url: https://sohah.github.io/
25
39
  - competition: "SV-COMP 2024"
26
40
  track: "Verification"
41
+ hors-concours: true
27
42
  tool_version: "svcomp23"
28
43
  jury_member:
29
44
  name: Hors Concours
@@ -45,3 +60,10 @@ techniques:
45
60
 
46
61
  frameworks_solvers:
47
62
  - JPF
63
+ literature:
64
+ - doi: 10.1007/978-3-030-45237-7_27
65
+ title: "Java Ranger at SV-COMP 2020 (Competition Contribution)"
66
+ year: 2020
67
+ - doi: 10.1145/3368089.3409734
68
+ title: "Java Ranger: statically summarizing regions for efficient symbolic execution of Java"
69
+ year: 2020
@@ -21,6 +21,8 @@ versions:
21
21
  benchexec_toolinfo_options: ['--graphml-witness', 'witness.graphml']
22
22
  required_ubuntu_packages:
23
23
  - openjdk-8-jdk-headless
24
+ full_container_images:
25
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
24
26
  - version: "svcomp23"
25
27
  url: "https://gitlab.com/sosy-lab/sv-comp/archives-2023/-/raw/svcomp23/2023/jayhorn.zip"
26
28
  benchexec_toolinfo_options: []
@@ -28,6 +30,15 @@ versions:
28
30
  - openjdk-8-jdk-headless
29
31
 
30
32
  competition_participations:
33
+ - competition: "SV-COMP 2025"
34
+ track: "Verification"
35
+ hors-concours: true
36
+ tool_version: "svcomp24"
37
+ jury_member:
38
+ name: Hors Concours
39
+ institution: --
40
+ country: --
41
+ url: null
31
42
  - competition: "SV-COMP 2024"
32
43
  track: "Verification"
33
44
  tool_version: "svcomp24"
@@ -38,6 +49,7 @@ competition_participations:
38
49
  url: https://ir.linkedin.com/in/hassan-mousavi
39
50
  - competition: "SV-COMP 2023"
40
51
  track: "Verification"
52
+ hors-concours: true
41
53
  tool_version: "svcomp23"
42
54
  jury_member:
43
55
  name: Hors Concours
@@ -12,11 +12,15 @@ fmtools_entry_maintainers:
12
12
  maintainers:
13
13
  - orcid: 0000-0002-5713-1381
14
14
  name: Peter Schrammel
15
- institution: University of Sussex and Diffblue
15
+ institution: Diffblue Ltd.
16
16
  country: UK
17
17
  url: http://www.schrammel.it
18
18
 
19
19
  versions:
20
+ - version: "svcomp25"
21
+ doi: 10.5281/zenodo.13975618
22
+ benchexec_toolinfo_options: ["--graphml-witness", "witness.graphml"]
23
+ required_ubuntu_packages: []
20
24
  - version: "svcomp24"
21
25
  doi: 10.5281/zenodo.10198951
22
26
  benchexec_toolinfo_options: ["--graphml-witness", "witness.graphml"]
@@ -27,6 +31,15 @@ versions:
27
31
  required_ubuntu_packages: []
28
32
 
29
33
  competition_participations:
34
+ - competition: "SV-COMP 2025"
35
+ track: "Verification"
36
+ tool_version: "svcomp25"
37
+ jury_member:
38
+ orcid: 0000-0002-5713-1381
39
+ name: Peter Schrammel
40
+ institution: Diffblue Ltd.
41
+ country: UK
42
+ url: http://www.schrammel.it
30
43
  - competition: "SV-COMP 2024"
31
44
  track: "Verification"
32
45
  tool_version: "svcomp24"
@@ -21,8 +21,19 @@ versions:
21
21
  benchexec_toolinfo_options: []
22
22
  required_ubuntu_packages:
23
23
  - python3-networkx
24
+ full_container_images:
25
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
24
26
 
25
27
  competition_participations:
28
+ - competition: "SV-COMP 2025"
29
+ track: "Validation of Correctness Witnesses 1.0"
30
+ hors-concours: true
31
+ tool_version: "svcomp24"
32
+ jury_member:
33
+ name: Hors Concours
34
+ institution: --
35
+ country: --
36
+ url: null
26
37
  - competition: "SV-COMP 2024"
27
38
  track: "Validation of Correctness Witnesses 1.0"
28
39
  tool_version: "svcomp24"
@@ -24,8 +24,18 @@ versions:
24
24
  - openjdk-11-jre-headless
25
25
 
26
26
  competition_participations:
27
+ - competition: "SV-COMP 2025"
28
+ track: "Verification"
29
+ hors-concours: true
30
+ tool_version: "svcomp23"
31
+ jury_member:
32
+ name: Hors Concours
33
+ institution: --
34
+ country: --
35
+ url: null
27
36
  - competition: "SV-COMP 2024"
28
37
  track: "Verification"
38
+ hors-concours: true
29
39
  tool_version: "svcomp23"
30
40
  jury_member:
31
41
  name: Hors Concours
@@ -34,6 +44,7 @@ competition_participations:
34
44
  url: null
35
45
  - competition: "SV-COMP 2023"
36
46
  track: "Verification"
47
+ hors-concours: true
37
48
  tool_version: "svcomp23"
38
49
  jury_member:
39
50
  name: Hors Concours
@@ -22,8 +22,18 @@ versions:
22
22
  required_ubuntu_packages: []
23
23
 
24
24
  competition_participations:
25
+ - competition: "Test-Comp 2025"
26
+ track: "Test Generation"
27
+ hors-concours: true
28
+ tool_version: "testcomp23"
29
+ jury_member:
30
+ name: Hors Concours
31
+ institution: --
32
+ country: --
33
+ url: null
25
34
  - competition: "Test-Comp 2024"
26
35
  track: "Test Generation"
36
+ hors-concours: true
27
37
  tool_version: "testcomp23"
28
38
  jury_member:
29
39
  name: Hors Concours
@@ -32,6 +42,7 @@ competition_participations:
32
42
  url: null
33
43
  - competition: "Test-Comp 2023"
34
44
  track: "Test Generation"
45
+ hors-concours: true
35
46
  tool_version: "testcomp23"
36
47
  jury_member:
37
48
  name: Hors Concours
@@ -7,21 +7,35 @@ spdx_license_identifier: NCSA
7
7
  benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/kleef.py"
8
8
  fmtools_format_version: "2.0"
9
9
  fmtools_entry_maintainers:
10
- - Columpio
10
+ - misonijnik
11
11
 
12
12
  maintainers:
13
- - name: Yurii Kostyukov
14
- institution: RnD Toolchain Labs, Huawei
15
- country: China
16
- url: https://toolchain-labs.com
13
+ - name: Aleksandr Misonizhnik
14
+ orcid: 0000-0002-5907-0324
15
+ institution: Independent Researcher
16
+ country: Neutral
17
+ url: null
17
18
 
18
19
  versions:
20
+ - version: "testcomp25"
21
+ doi: "10.5281/zenodo.13964451"
22
+ benchexec_toolinfo_options: []
23
+ required_ubuntu_packages: []
19
24
  - version: "testcomp24"
20
25
  doi: "10.5281/zenodo.10202734"
21
26
  benchexec_toolinfo_options: []
22
27
  required_ubuntu_packages: []
23
28
 
24
29
  competition_participations:
30
+ - competition: "Test-Comp 2025"
31
+ track: "Test Generation"
32
+ tool_version: "testcomp25"
33
+ jury_member:
34
+ name: Aleksandr Misonizhnik
35
+ orcid: 0000-0002-5907-0324
36
+ institution: Independent Researcher
37
+ country: Neutral
38
+ url: null
25
39
  - competition: "Test-Comp 2024"
26
40
  track: "Test Generation"
27
41
  tool_version: "testcomp24"
@@ -40,3 +54,8 @@ techniques:
40
54
  - Guidance by Coverage Measures
41
55
 
42
56
  frameworks_solvers: []
57
+
58
+ literature:
59
+ - doi: 10.1007/978-3-031-57259-3_18
60
+ title: "KLEEF: Symbolic Execution Engine (Competition Contribution)"
61
+ year: 2024
@@ -13,9 +13,14 @@ maintainers:
13
13
  - name: Gidon Ernst
14
14
  institution: LMU Munich
15
15
  country: Germany
16
+ orcid: 0000-0002-3289-5764
16
17
  url: https://www.sosy-lab.org/people/ernst/
17
18
 
18
19
  versions:
20
+ - version: "svcomp25"
21
+ doi: "10.5281/zenodo.13987882"
22
+ 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"]
23
+ required_ubuntu_packages: []
19
24
  - version: "svcomp24"
20
25
  doi: "10.5281/zenodo.10202058"
21
26
  benchexec_toolinfo_options: ["-witness", "witness.graphml", "-smt2", "clauses.smt2", "-model", "-write", "-random", "10", "-timeout", "20", "-golem", "-timeout", "20", "-z3", "-timeout", "900", "-eld:portfolio"]
@@ -26,6 +31,15 @@ versions:
26
31
  required_ubuntu_packages: []
27
32
 
28
33
  competition_participations:
34
+ - competition: "SV-COMP 2025"
35
+ track: "Verification"
36
+ tool_version: "svcomp25"
37
+ jury_member:
38
+ name: Gidon Ernst
39
+ institution: LMU Munich
40
+ country: Germany
41
+ orcid: 0000-0002-3289-5764
42
+ url: https://www.sosy-lab.org/people/ernst/
29
43
  - competition: "SV-COMP 2024"
30
44
  track: "Verification"
31
45
  tool_version: "svcomp24"
@@ -51,3 +65,5 @@ techniques:
51
65
 
52
66
  frameworks_solvers:
53
67
  - Z3
68
+
69
+ literature: []
@@ -21,10 +21,22 @@ versions:
21
21
  benchexec_toolinfo_options: ['--witness', 'error-witness.graphml']
22
22
  required_ubuntu_packages:
23
23
  - python2
24
+ full_container_images:
25
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
24
26
 
25
27
  competition_participations:
28
+ - competition: "SV-COMP 2025"
29
+ track: "Verification"
30
+ hors-concours: true
31
+ tool_version: "svcomp23"
32
+ jury_member:
33
+ name: Hors Concours
34
+ institution: --
35
+ country: --
36
+ url: null
26
37
  - competition: "SV-COMP 2024"
27
38
  track: "Verification"
39
+ hors-concours: true
28
40
  tool_version: "svcomp23"
29
41
  jury_member:
30
42
  name: Hors Concours
@@ -33,6 +45,7 @@ competition_participations:
33
45
  url: null
34
46
  - competition: "SV-COMP 2023"
35
47
  track: "Verification"
48
+ hors-concours: true
36
49
  tool_version: "svcomp23"
37
50
  jury_member:
38
51
  name: Hors Concours
@@ -22,8 +22,18 @@ versions:
22
22
  required_ubuntu_packages: []
23
23
 
24
24
  competition_participations:
25
+ - competition: "Test-Comp 2025"
26
+ track: "Test Generation"
27
+ hors-concours: true
28
+ tool_version: "testcomp23"
29
+ jury_member:
30
+ name: Hors Concours
31
+ institution: --
32
+ country: --
33
+ url: null
25
34
  - competition: "Test-Comp 2024"
26
35
  track: "Test Generation"
36
+ hors-concours: true
27
37
  tool_version: "testcomp23"
28
38
  jury_member:
29
39
  name: Hors Concours
@@ -22,8 +22,18 @@ versions:
22
22
  required_ubuntu_packages: []
23
23
 
24
24
  competition_participations:
25
+ - competition: "Test-Comp 2025"
26
+ track: "Test Generation"
27
+ hors-concours: true
28
+ tool_version: "testcomp23"
29
+ jury_member:
30
+ name: Hors Concours
31
+ institution: --
32
+ country: --
33
+ url: null
25
34
  - competition: "Test-Comp 2024"
26
35
  track: "Test Generation"
36
+ hors-concours: true
27
37
  tool_version: "testcomp23"
28
38
  jury_member:
29
39
  name: Hors Concours
@@ -32,6 +42,7 @@ competition_participations:
32
42
  url: null
33
43
  - competition: "Test-Comp 2023"
34
44
  track: "Test Generation"
45
+ hors-concours: true
35
46
  tool_version: "testcomp23"
36
47
  jury_member:
37
48
  name: Hors Concours
@@ -23,8 +23,18 @@ versions:
23
23
  - clang
24
24
 
25
25
  competition_participations:
26
+ - competition: "SV-COMP 2025"
27
+ track: "Verification"
28
+ hors-concours: true
29
+ tool_version: "svcomp23"
30
+ jury_member:
31
+ name: Hors Concours
32
+ institution: --
33
+ country: --
34
+ url: null
26
35
  - competition: "SV-COMP 2024"
27
36
  track: "Verification"
37
+ hors-concours: true
28
38
  tool_version: "svcomp23"
29
39
  jury_member:
30
40
  name: Hors Concours
@@ -7,22 +7,46 @@ spdx_license_identifier: Apache-2.0
7
7
  benchexec_toolinfo_module: "benchexec.tools.liv"
8
8
  fmtools_format_version: "2.0"
9
9
  fmtools_entry_maintainers:
10
- - masp
10
+ - Marianl
11
+ - dbeyer
12
+ - PhilippWendler
11
13
 
12
14
  maintainers:
13
- - orcid: 0000-0002-9169-9130
14
- name: Martin Spiessl
15
+ - orcid: 0000-0002-8172-3184
16
+ name: Marian Lingsch-Rosenfeld
15
17
  institution: LMU Munich
16
18
  country: Germany
17
- url: https://www.sosy-lab.org/people/spiessl/
19
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
18
20
 
19
21
  versions:
22
+ - version: "svcomp25"
23
+ doi: "10.5281/zenodo.14168986"
24
+ 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"]
25
+ required_ubuntu_packages: []
20
26
  - version: "svcomp24"
21
27
  doi: "10.5281/zenodo.10202756"
22
28
  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"]
23
29
  required_ubuntu_packages: []
24
30
 
25
31
  competition_participations:
32
+ - competition: "SV-COMP 2025"
33
+ track: "Validation of Correctness Witnesses 2.0"
34
+ tool_version: "svcomp25"
35
+ jury_member:
36
+ orcid: 0000-0002-8172-3184
37
+ name: Marian Lingsch-Rosenfeld
38
+ institution: LMU Munich
39
+ country: Germany
40
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
41
+ - competition: "SV-COMP 2025"
42
+ track: "Validation of Correctness Witnesses 1.0"
43
+ tool_version: "svcomp25"
44
+ jury_member:
45
+ orcid: 0000-0002-8172-3184
46
+ name: Marian Lingsch-Rosenfeld
47
+ institution: LMU Munich
48
+ country: Germany
49
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
26
50
  - competition: "SV-COMP 2024"
27
51
  track: "Validation of Correctness Witnesses 1.0"
28
52
  tool_version: "svcomp24"
@@ -22,8 +22,18 @@ versions:
22
22
  required_ubuntu_packages: []
23
23
 
24
24
  competition_participations:
25
+ - competition: "SV-COMP 2025"
26
+ track: "Verification"
27
+ hors-concours: true
28
+ tool_version: "svcomp23"
29
+ jury_member:
30
+ name: Hors Concours
31
+ institution: --
32
+ country: --
33
+ url: null
25
34
  - competition: "SV-COMP 2024"
26
35
  track: "Verification"
36
+ hors-concours: true
27
37
  tool_version: "svcomp23"
28
38
  jury_member:
29
39
  name: Hors Concours
@@ -0,0 +1,49 @@
1
+ name: MetaVal++
2
+ input_languages:
3
+ - C
4
+ project_url: https://gitlab.com/sosy-lab/software/metavalpp
5
+ repository_url: https://gitlab.com/sosy-lab/software/metavalpp
6
+ spdx_license_identifier: Apache-2.0
7
+ benchexec_toolinfo_module: benchexec.tools.metaval++
8
+ fmtools_format_version: "2.0"
9
+ fmtools_entry_maintainers:
10
+ - Marianl
11
+ - dbeyer
12
+ - PhilippWendler
13
+
14
+ maintainers:
15
+ - orcid: 0000-0002-8172-3184
16
+ name: Marian Lingsch-Rosenfeld
17
+ institution: LMU Munich
18
+ country: Germany
19
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
20
+
21
+
22
+ versions:
23
+ - version: "svcomp25-correctness"
24
+ doi: 10.5281/zenodo.13986094
25
+ benchexec_toolinfo_options: ['--backend', 'framac-wp']
26
+ required_ubuntu_packages: []
27
+
28
+ competition_participations:
29
+ - competition: "SV-COMP 2025"
30
+ track: "Validation of Correctness Witnesses 2.0"
31
+ tool_version: "svcomp25-correctness"
32
+ jury_member:
33
+ orcid: 0000-0002-8172-3184
34
+ name: Marian Lingsch-Rosenfeld
35
+ institution: LMU Munich
36
+ country: Germany
37
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
38
+
39
+ techniques:
40
+ - Task Translation
41
+
42
+ frameworks_solvers: []
43
+
44
+ used_actors:
45
+ - actor_type: "Annotator"
46
+ description: |
47
+ Annotates invariants or state guards from software witnesses in the program as assertions or assumptions.
48
+
49
+ literature: []
@@ -2,21 +2,31 @@ name: MetaVal
2
2
  input_languages:
3
3
  - C
4
4
  project_url: https://gitlab.com/sosy-lab/software/metaval
5
- repository_url: https://gitlab.com/sosy-lab/software/cpachecker
5
+ repository_url: https://gitlab.com/sosy-lab/software/metaval
6
6
  spdx_license_identifier: Apache-2.0
7
7
  benchexec_toolinfo_module: benchexec.tools.metaval
8
8
  fmtools_format_version: "2.0"
9
9
  fmtools_entry_maintainers:
10
- - masp
10
+ - Marianl
11
+ - dbeyer
12
+ - PhilippWendler
11
13
 
12
14
  maintainers:
13
- - orcid: 0000-0002-9169-9130
14
- name: Martin Spiessl
15
+ - orcid: 0000-0002-8172-3184
16
+ name: Marian Lingsch-Rosenfeld
15
17
  institution: LMU Munich
16
18
  country: Germany
17
- url: https://www.sosy-lab.org/people/spiessl/
19
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
18
20
 
19
21
  versions:
22
+ - version: "svcomp25-correctness"
23
+ doi: 10.5281/zenodo.14007852
24
+ benchexec_toolinfo_options: ['--metavalWitnessType', 'correctness_witness', '--metavalVerifierBackend', 'cpachecker', '--svcomp24', '--heap', '5000M', '--benchmark', '--timelimit', '900s']
25
+ required_ubuntu_packages: []
26
+ - version: "svcomp25-violation"
27
+ doi: 10.5281/zenodo.14007852
28
+ benchexec_toolinfo_options: ['--metavalWitnessType', 'violation_witness', '--metavalVerifierBackend', 'cpachecker', '--svcomp24', '--heap', '5000M', '--benchmark', '--timelimit', '90s']
29
+ required_ubuntu_packages: []
20
30
  - version: "svcomp24-correctness"
21
31
  doi: 10.5281/zenodo.10137150
22
32
  benchexec_toolinfo_options: ['--metavalWitnessType', 'correctness_witness']
@@ -31,6 +41,42 @@ versions:
31
41
  required_ubuntu_packages: []
32
42
 
33
43
  competition_participations:
44
+ - competition: "SV-COMP 2025"
45
+ track: "Validation of Correctness Witnesses 1.0"
46
+ tool_version: "svcomp25-correctness"
47
+ jury_member:
48
+ orcid: 0000-0002-8172-3184
49
+ name: Marian Lingsch-Rosenfeld
50
+ institution: LMU Munich
51
+ country: Germany
52
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
53
+ - competition: "SV-COMP 2025"
54
+ track: "Validation of Correctness Witnesses 2.0"
55
+ tool_version: "svcomp25-correctness"
56
+ jury_member:
57
+ orcid: 0000-0002-8172-3184
58
+ name: Marian Lingsch-Rosenfeld
59
+ institution: LMU Munich
60
+ country: Germany
61
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
62
+ - competition: "SV-COMP 2025"
63
+ track: "Validation of Violation Witnesses 1.0"
64
+ tool_version: "svcomp25-violation"
65
+ jury_member:
66
+ orcid: 0000-0002-8172-3184
67
+ name: Marian Lingsch-Rosenfeld
68
+ institution: LMU Munich
69
+ country: Germany
70
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
71
+ - competition: "SV-COMP 2025"
72
+ track: "Validation of Violation Witnesses 2.0"
73
+ tool_version: "svcomp25-violation"
74
+ jury_member:
75
+ orcid: 0000-0002-8172-3184
76
+ name: Marian Lingsch-Rosenfeld
77
+ institution: LMU Munich
78
+ country: Germany
79
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
34
80
  - competition: "SV-COMP 2024"
35
81
  track: "Validation of Correctness Witnesses 1.0"
36
82
  tool_version: "svcomp24-correctness"
@@ -10,12 +10,18 @@ fmtools_entry_maintainers:
10
10
  - MLB-SE
11
11
 
12
12
  maintainers:
13
- - name: Lei Bu
13
+ - orcid: 0000-0003-0517-7801
14
+ name: Lei Bu
14
15
  institution: Nanjing University
15
16
  country: China
16
17
  url: null
17
18
 
18
19
  versions:
20
+ - version: "svcomp25"
21
+ doi: "10.5281/zenodo.10210608"
22
+ benchexec_toolinfo_options: []
23
+ required_ubuntu_packages:
24
+ - openjdk-8-jre-headless
19
25
  - version: "svcomp24"
20
26
  doi: "10.5281/zenodo.10210608"
21
27
  benchexec_toolinfo_options: []
@@ -28,6 +34,15 @@ versions:
28
34
  - openjdk-8-jre-headless
29
35
 
30
36
  competition_participations:
37
+ - competition: "SV-COMP 2025"
38
+ track: "Verification"
39
+ tool_version: "svcomp25"
40
+ jury_member:
41
+ orcid: 0000-0003-0517-7801
42
+ name: Lei Bu
43
+ institution: Nanjing University
44
+ country: China
45
+ url: null
31
46
  - competition: "SV-COMP 2024"
32
47
  track: "Verification"
33
48
  tool_version: "svcomp24"
@@ -51,3 +66,8 @@ techniques:
51
66
  - Portfolio
52
67
 
53
68
  frameworks_solvers: []
69
+
70
+ literature:
71
+ - doi: 10.1007/s00165-021-00538-3
72
+ title: "Machine learning steered symbolic execution framework for complex software code"
73
+ year: 2021