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
@@ -22,18 +22,36 @@ versions:
22
22
  - version: "svcomp25"
23
23
  doi: "10.5281/zenodo.14205712"
24
24
  benchexec_toolinfo_options: ["-sv-comp", "-sv-comp-witness", "witness.graphml", "-cfg", "splitting-svcomp25"]
25
+ base_container_images:
26
+ - docker.io/ubuntu:24.04
25
27
  required_ubuntu_packages:
26
28
  - clang-14
27
29
  - python3
30
+ full_container_images:
31
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
28
32
  - version: "svcomp24"
29
33
  doi: "10.5281/zenodo.10202207"
30
34
  benchexec_toolinfo_options: ["-sv-comp", "-sv-comp-witness", "witness.graphml", "-cfg", "splitting-svcomp24"]
35
+ base_container_images:
36
+ - docker.io/ubuntu:22.04
31
37
  required_ubuntu_packages:
32
38
  - clang
33
39
  - python3
34
40
  - python3-lxml
41
+ full_container_images:
42
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
35
43
 
36
44
  competition_participations:
45
+ - competition: "SV-COMP 2026"
46
+ track: "Verification"
47
+ tool_version: "svcomp25"
48
+ jury_member:
49
+ name: Hors Concours
50
+ institution: --
51
+ country: --
52
+ url:
53
+ label:
54
+ - inactive
37
55
  - competition: "SV-COMP 2025"
38
56
  track: "Verification"
39
57
  tool_version: "svcomp25"
@@ -40,6 +40,16 @@ versions:
40
40
  - python3-lxml
41
41
 
42
42
  competition_participations:
43
+ - competition: "SV-COMP 2026"
44
+ track: "Verification"
45
+ tool_version: "svcomp25"
46
+ jury_member:
47
+ name: Hors Concours
48
+ institution: --
49
+ country: --
50
+ url:
51
+ label:
52
+ - inactive
43
53
  - competition: "SV-COMP 2025"
44
54
  track: "Verification"
45
55
  tool_version: "svcomp25"
@@ -21,6 +21,8 @@ versions:
21
21
  - version: "svcomp23"
22
22
  doi: 10.5281/zenodo.10396159
23
23
  benchexec_toolinfo_options: ['--graphml-witness', 'witness.graphml']
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
24
26
  required_ubuntu_packages:
25
27
  - gcc
26
28
  - libc6-dev-i386
@@ -28,6 +30,16 @@ versions:
28
30
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2023
29
31
 
30
32
  competition_participations:
33
+ - competition: "SV-COMP 2026"
34
+ track: "Verification"
35
+ label:
36
+ - inactive
37
+ tool_version: "svcomp23"
38
+ jury_member:
39
+ name: Hors Concours
40
+ institution: --
41
+ country: --
42
+ url:
31
43
  - competition: "SV-COMP 2025"
32
44
  track: "Verification"
33
45
  label:
@@ -5,7 +5,7 @@ input_languages:
5
5
  project_url: https://gitlab.com/Sarathkrishnan/cetfuzz
6
6
  repository_url: https://gitlab.com/Sarathkrishnan/cetfuzz
7
7
  spdx_license_identifier: Apache-2.0
8
- benchexec_toolinfo_module: "cetfuzz"
8
+ benchexec_toolinfo_module: benchexec.tools.cetfuzz
9
9
  fmtools_format_version: "2.0"
10
10
  fmtools_entry_maintainers:
11
11
  - Sarathkrishnan
@@ -13,15 +13,18 @@ fmtools_entry_maintainers:
13
13
  - m.raveendra.kumar
14
14
 
15
15
  maintainers:
16
- - name: Sarath Krishnan G S
17
- institution: College of Enigneeirng Trivandrum
16
+ - orcid: 0000-0000-0000-0000
17
+ name: Sarath Krishnan G S
18
+ institution: College of Engineering Trivandrum
18
19
  country: India
19
20
  url: https://gitlab.com/Sarathkrishnan
20
- - name: Seth Shaji George
21
- institution: College of Enigneeirng Trivandrum
21
+ - orcid: 0000-0000-0000-0000
22
+ name: Seth Shaji George
23
+ institution: College of Engineering Trivandrum
22
24
  country: India
23
25
  url: https://gitlab.com/sethshajigeorge
24
- - name: Raveendra Kumar Medicherla
26
+ - orcid: 0000-0002-9162-4825
27
+ name: Raveendra Kumar Medicherla
25
28
  institution: Tata Consultancy Services
26
29
  country: India
27
30
  url: https://www.tcs.com/
@@ -44,6 +47,16 @@ versions:
44
47
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
45
48
 
46
49
  competition_participations:
50
+ - competition: "Test-Comp 2026"
51
+ track: "Test Generation"
52
+ label:
53
+ - inactive
54
+ tool_version: "testcomp24"
55
+ jury_member:
56
+ name: Hors Concours
57
+ institution: --
58
+ country: --
59
+ url:
47
60
  - competition: "Test-Comp 2025"
48
61
  track: "Test Generation"
49
62
  label:
@@ -68,3 +81,5 @@ techniques:
68
81
  - Algorithm Selection
69
82
 
70
83
  frameworks_solvers: []
84
+
85
+ literature: []
@@ -21,11 +21,23 @@ versions:
21
21
  - version: "svcomp20"
22
22
  doi: 10.5281/zenodo.3679243
23
23
  benchexec_toolinfo_options: []
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
24
26
  required_ubuntu_packages: []
25
27
  full_container_images:
26
28
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
27
29
 
28
30
  competition_participations:
31
+ - competition: "SV-COMP 2026"
32
+ track: "Verification"
33
+ label:
34
+ - inactive
35
+ tool_version: "svcomp20"
36
+ jury_member:
37
+ name: Hors Concours
38
+ institution: --
39
+ country: --
40
+ url:
29
41
  - competition: "SV-COMP 2025"
30
42
  track: "Verification"
31
43
  label:
@@ -3,6 +3,7 @@ name: ConcurrentWitness2Test
3
3
  description: |
4
4
  ConcurrentWitness2Test is a violation witness validator for concurrent software.
5
5
  Taking both data-nondeterminism and interleaving-based nondeterminism into account, the tool aims to use the metadata described in the violation witnesses to synthesize an executable test harness.
6
+ Currently, CW2T does not use any sophisticated pre-transformation steps to manage incomplete witnesses, and it also does not support the full witness specification. For example, assumptions that aren't interpretable as single-value assignments of a nondeterministic funcion are ignored.
6
7
  input_languages:
7
8
  - C
8
9
  project_url: https://github.com/ftsrg/ConcurrentWitness2Test
@@ -26,6 +27,14 @@ maintainers:
26
27
  url: http://mit.bme.hu/~adamzsofi
27
28
 
28
29
  versions:
30
+ - version: "svcomp26"
31
+ benchexec_toolinfo_options: ["--witness", "${witness}"]
32
+ required_ubuntu_packages:
33
+ - python3
34
+ - gcc
35
+ doi: 10.5281/zenodo.17407869
36
+ base_container_images:
37
+ - docker.io/ubuntu:24.04
29
38
  - version: "svcomp25"
30
39
  benchexec_toolinfo_options: ["--witness", "${witness}"]
31
40
  required_ubuntu_packages:
@@ -39,8 +48,22 @@ versions:
39
48
 
40
49
 
41
50
  competition_participations:
51
+ - competition: "SV-COMP 2026"
52
+ track: "Validation of Violation Witnesses v1"
53
+ tool_version: "svcomp26"
54
+ jury_member:
55
+ orcid: 0000-0003-2354-1750
56
+ name: Zsófia Ádám
57
+ institution: Budapest University of Technology and Economics
58
+ country: Hungary
59
+ url: http://mit.bme.hu/~adamzsofi
60
+ participants:
61
+ - name: Ádám, Zsófia
62
+ orcid: 0000-0003-2354-1750
63
+ - name: Bajczi, Levente
64
+ orcid: 0000-0002-6551-5860
42
65
  - competition: "SV-COMP 2025"
43
- track: "Validation of Violation Witnesses 1.0"
66
+ track: "Validation of Violation Witnesses v1"
44
67
  tool_version: "svcomp25"
45
68
  jury_member:
46
69
  orcid: 0000-0003-2354-1750
@@ -49,7 +72,7 @@ competition_participations:
49
72
  country: Hungary
50
73
  url: http://mit.bme.hu/~adamzsofi
51
74
  - competition: "SV-COMP 2024"
52
- track: "Validation of Violation Witnesses 1.0"
75
+ track: "Validation of Violation Witnesses v1"
53
76
  tool_version: "svcomp24"
54
77
  jury_member:
55
78
  orcid: 0000-0002-6551-5860
@@ -1,5 +1,9 @@
1
1
  id: cooperace
2
2
  name: CoOpeRace
3
+ description: |
4
+ CoOpeRace is a no-data-race meta-verifier with the goal to combine
5
+ and cross-validate detailed race warnings on real-world programs.
6
+ On SV-COMP we identify the highest-scoring portfolio of current verifiers.
3
7
  input_languages:
4
8
  - C
5
9
  project_url: https://github.com/sws-lab/cooperace
@@ -23,14 +27,49 @@ maintainers:
23
27
  url:
24
28
 
25
29
  versions:
30
+ - version: "svcomp26"
31
+ doi: 10.5281/zenodo.17719057
32
+ benchexec_toolinfo_options: []
33
+ required_ubuntu_packages:
34
+ - clang
35
+ - cpp
36
+ - lib32gcc-13-dev
37
+ - libc6-dev
38
+ - libc6-dev-i386
39
+ - libgcc-13-dev
40
+ - libgmp10
41
+ - libmpfr6
42
+ - openjdk-21-jre-headless
43
+ base_container_images:
44
+ - docker.io/ubuntu:24.04
45
+ full_container_images:
46
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
26
47
  - version: "svcomp25"
27
48
  doi: 10.5281/zenodo.14509733
28
49
  benchexec_toolinfo_options: []
29
50
  required_ubuntu_packages:
30
51
  - clang-14
31
52
  - llvm-14
53
+ base_container_images:
54
+ - docker.io/ubuntu:24.04
55
+ full_container_images:
56
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
32
57
 
33
58
  competition_participations:
59
+ - competition: "SV-COMP 2026"
60
+ track: "Verification"
61
+ label:
62
+ - meta_tool
63
+ tool_version: "svcomp26"
64
+ jury_member:
65
+ orcid: 0000-0003-4336-7980
66
+ name: Vesal Vojdani
67
+ institution: University of Tartu
68
+ country: Estonia
69
+ url:
70
+ participants:
71
+ - orcid: 0000-0003-4336-7980
72
+ name: Vesal Vojdani
34
73
  - competition: "SV-COMP 2025"
35
74
  track: "Verification"
36
75
  label:
@@ -26,6 +26,16 @@ maintainers:
26
26
  url: https://www.sosy-lab.org/people/jakobs/
27
27
 
28
28
  versions:
29
+ - version: "testcomp26"
30
+ doi: 10.5281/zenodo.17732590
31
+ benchexec_toolinfo_options: ['--benchmark', '--heap', '10000M', '--testcomp26', "--option", "log.consoleLevel=SEVERE", "--option", "parser.usePreprocessor=true"]
32
+ required_ubuntu_packages:
33
+ - openjdk-21-jre-headless
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
29
39
  - version: "testcomp25"
30
40
  doi: 10.5281/zenodo.14203369
31
41
  benchexec_toolinfo_options: ['--benchmark', '--heap', '10000M', '--testcomp25', "--option", "log.consoleLevel=SEVERE"]
@@ -43,6 +53,18 @@ versions:
43
53
  - openjdk-11-jre-headless
44
54
 
45
55
  competition_participations:
56
+ - competition: "Test-Comp 2026"
57
+ track: "Test Generation"
58
+ tool_version: "testcomp26"
59
+ jury_member:
60
+ orcid: 0000-0002-5890-4673
61
+ name: Marie-Christine Jakobs
62
+ institution: LMU Munich
63
+ country: Germany
64
+ url:
65
+ participants:
66
+ - orcid: 0000-0002-5890-4673
67
+ name: Marie-Christine Jakobs
46
68
  - competition: "Test-Comp 2025"
47
69
  track: "Test Generation"
48
70
  tool_version: "testcomp25"
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - p.andrianov
12
12
 
13
13
  maintainers:
14
- - name: Hors Concours
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Hors Concours
15
16
  institution: --
16
17
  country: --
17
18
  url:
@@ -20,12 +21,24 @@ versions:
20
21
  - version: "svcomp23"
21
22
  doi: 10.5281/zenodo.10396208
22
23
  benchexec_toolinfo_options: ["-svcomp21-bam-bnb", "-disable-java-assertions", "-heap", "10000m"]
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
23
26
  required_ubuntu_packages:
24
27
  - openjdk-11-jre-headless
25
28
  full_container_images:
26
29
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2023
27
30
 
28
31
  competition_participations:
32
+ - competition: "SV-COMP 2026"
33
+ track: "Verification"
34
+ label:
35
+ - inactive
36
+ tool_version: "svcomp23"
37
+ jury_member:
38
+ name: Hors Concours
39
+ institution: --
40
+ country: --
41
+ url:
29
42
  - competition: "SV-COMP 2025"
30
43
  track: "Verification"
31
44
  label:
@@ -70,3 +83,5 @@ frameworks_solvers:
70
83
  - CPAchecker
71
84
  - JavaSMT
72
85
  - MathSAT
86
+
87
+ literature: []
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - Druidos
12
12
 
13
13
  maintainers:
14
- - name: Hors Concours
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Hors Concours
15
16
  institution: --
16
17
  country: --
17
18
  url:
@@ -20,12 +21,25 @@ versions:
20
21
  - version: "svcomp22"
21
22
  doi: 10.5281/zenodo.10396261
22
23
  benchexec_toolinfo_options: ['-svcomp22-bam-smg', '-disable-java-assertions', '-heap', '10000m', '-setprop', 'counterexample.export.graphml=witness.graphml', '-setprop', 'cpa.arg.proofWitness=witness.graphml', '-setprop', 'termination.violation.witness=witness.graphml', '-setprop', 'counterexample.export.compressWitness=false', '-setprop', 'cpa.arg.compressWitness=false']
24
+ base_container_images:
25
+ - docker.io/ubuntu:20.04
23
26
  required_ubuntu_packages:
24
27
  - openjdk-11-jre-headless
25
28
  full_container_images:
29
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
26
30
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2022
27
31
 
28
32
  competition_participations:
33
+ - competition: "SV-COMP 2026"
34
+ track: "Verification"
35
+ label:
36
+ - inactive
37
+ tool_version: "svcomp22"
38
+ jury_member:
39
+ name: Hors Concours
40
+ institution: --
41
+ country: --
42
+ url:
29
43
  - competition: "SV-COMP 2025"
30
44
  track: "Verification"
31
45
  label:
@@ -63,3 +77,5 @@ frameworks_solvers:
63
77
  - CPAchecker
64
78
  - JavaSMT
65
79
  - MathSAT
80
+
81
+ literature: []
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - p.andrianov
12
12
 
13
13
  maintainers:
14
- - name: Hors Concours
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Hors Concours
15
16
  institution: --
16
17
  country: --
17
18
  url:
@@ -20,12 +21,25 @@ versions:
20
21
  - version: "svcomp21"
21
22
  doi: 10.5281/zenodo.10396305
22
23
  benchexec_toolinfo_options: ["-svcomp21-lockator", "-disable-java-assertions", "-heap", "12000m"]
24
+ base_container_images:
25
+ - docker.io/ubuntu:20.04
23
26
  required_ubuntu_packages:
24
27
  - openjdk-11-jre-headless
25
28
  full_container_images:
29
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
26
30
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2021
27
31
 
28
32
  competition_participations:
33
+ - competition: "SV-COMP 2026"
34
+ track: "Verification"
35
+ label:
36
+ - inactive
37
+ tool_version: "svcomp21"
38
+ jury_member:
39
+ name: Hors Concours
40
+ institution: --
41
+ country: --
42
+ url:
29
43
  - competition: "SV-COMP 2025"
30
44
  track: "Verification"
31
45
  label:
@@ -71,3 +85,5 @@ frameworks_solvers:
71
85
  - CPAchecker
72
86
  - JavaSMT
73
87
  - MathSAT
88
+
89
+ literature: []
@@ -48,8 +48,18 @@ versions:
48
48
  - openjdk-11-jre-headless
49
49
 
50
50
  competition_participations:
51
+ - competition: "SV-COMP 2026"
52
+ track: "Validation of Violation Witnesses v1"
53
+ label:
54
+ - inactive
55
+ tool_version: "2.3"
56
+ jury_member:
57
+ name: Hors Concours
58
+ institution: --
59
+ country: --
60
+ url:
51
61
  - competition: "SV-COMP 2025"
52
- track: "Validation of Violation Witnesses 1.0"
62
+ track: "Validation of Violation Witnesses v1"
53
63
  label:
54
64
  - inactive
55
65
  tool_version: "2.3"
@@ -59,7 +69,7 @@ competition_participations:
59
69
  country: --
60
70
  url:
61
71
  - competition: "SV-COMP 2024"
62
- track: "Validation of Violation Witnesses 1.0"
72
+ track: "Validation of Violation Witnesses v1"
63
73
  tool_version: "2.3"
64
74
  jury_member:
65
75
  orcid: 0000-0003-0291-815X
@@ -68,7 +78,7 @@ competition_participations:
68
78
  country: Germany
69
79
  url: https://www.sosy-lab.org/people/lemberger/
70
80
  - competition: SV-COMP 2023
71
- track: "Validation of Violation Witnesses 1.0"
81
+ track: "Validation of Violation Witnesses v1"
72
82
  tool_version: "2.2"
73
83
  jury_member:
74
84
  orcid: 0000-0002-4768-4054