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
@@ -23,8 +23,18 @@ versions:
23
23
  required_ubuntu_packages: []
24
24
 
25
25
  competition_participations:
26
+ - competition: "SV-COMP 2025"
27
+ track: "Verification"
28
+ hors-concours: true
29
+ tool_version: "svcomp20"
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: "svcomp20"
29
39
  jury_member:
30
40
  name: Hors Concours
@@ -33,6 +43,7 @@ competition_participations:
33
43
  url: null
34
44
  - competition: "SV-COMP 2023"
35
45
  track: "Verification"
46
+ hors-concours: true
36
47
  tool_version: "svcomp20"
37
48
  jury_member:
38
49
  name: Hors Concours
@@ -10,13 +10,23 @@ fmtools_entry_maintainers:
10
10
  - levente.bajczi
11
11
 
12
12
  maintainers:
13
- - orcid: 0000-0002-6551-5860
14
- name: Levente Bajczi
13
+ - name: Levente Bajczi
14
+ orcid: 0000-0002-6551-5860
15
15
  institution: Budapest University of Technology and Economics
16
16
  country: Hungary
17
17
  url: http://mit.bme.hu/~bajczi
18
+ - name: Zsófia Ádám
19
+ orcid: 0000-0003-2354-1750
20
+ institution: Budapest University of Technology and Economics
21
+ country: Hungary
22
+ url: http://mit.bme.hu/~adamzsofi
18
23
 
19
24
  versions:
25
+ - version: "svcomp25"
26
+ benchexec_toolinfo_options: []
27
+ required_ubuntu_packages:
28
+ - python3
29
+ doi: 10.5281/zenodo.14063728
20
30
  - version: "svcomp24"
21
31
  benchexec_toolinfo_options: []
22
32
  required_ubuntu_packages:
@@ -25,6 +35,15 @@ versions:
25
35
 
26
36
 
27
37
  competition_participations:
38
+ - competition: "SV-COMP 2025"
39
+ track: "Validation of Violation Witnesses 1.0"
40
+ tool_version: "svcomp25"
41
+ jury_member:
42
+ orcid: 0000-0003-2354-1750
43
+ name: Zsófia Ádám
44
+ institution: Budapest University of Technology and Economics
45
+ country: Hungary
46
+ url: http://mit.bme.hu/~adamzsofi
28
47
  - competition: "SV-COMP 2024"
29
48
  track: "Validation of Violation Witnesses 1.0"
30
49
  tool_version: "svcomp24"
@@ -0,0 +1,51 @@
1
+ name: CoOpeRace
2
+ input_languages:
3
+ - C
4
+ project_url: https://github.com/sws-lab/cooperace
5
+ repository_url: https://github.com/sws-lab/cooperace
6
+ spdx_license_identifier: MIT
7
+ benchexec_toolinfo_module: cooperace.py
8
+ fmtools_format_version: "2.0"
9
+ fmtools_entry_maintainers:
10
+ - vesal.vojdani
11
+
12
+ maintainers:
13
+ - orcid: 0009-0009-1203-923X
14
+ name: Chris Matsiselts
15
+ institution: University of Tartu
16
+ country: Estonia
17
+ url: null
18
+ - orcid: 0000-0003-4336-7980
19
+ name: Vesal Vojdani
20
+ institution: University of Tartu
21
+ country: Estonia
22
+ url: null
23
+
24
+ versions:
25
+ - version: "svcomp25"
26
+ doi: 10.5281/zenodo.13958298
27
+ benchexec_toolinfo_options: []
28
+ required_ubuntu_packages:
29
+ - clang-14
30
+ - llvm-14
31
+
32
+ competition_participations:
33
+ - competition: "SV-COMP 2025"
34
+ track: "Verification"
35
+ hors-concours: true
36
+ tool_version: "svcomp25"
37
+ jury_member:
38
+ orcid: 0000-0003-4336-7980
39
+ name: Vesal Vojdani
40
+ institution: University of Tartu
41
+ country: Estonia
42
+ url: null
43
+
44
+ techniques:
45
+ - Concurrency Support
46
+ - Algorithm Selection
47
+ - Portfolio
48
+
49
+ frameworks_solvers: []
50
+
51
+ literature: []
@@ -35,10 +35,22 @@ versions:
35
35
  - python3-lxml
36
36
  - gcc
37
37
  - libc6-dev-i386
38
+ full_container_images:
39
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
38
40
 
39
41
  competition_participations:
42
+ - competition: "SV-COMP 2025"
43
+ track: "Verification"
44
+ hors-concours: true
45
+ tool_version: "svcomp23"
46
+ jury_member:
47
+ name: Hors Concours
48
+ institution: --
49
+ country: --
50
+ url: null
40
51
  - competition: "SV-COMP 2024"
41
52
  track: "Verification"
53
+ hors-concours: true
42
54
  tool_version: "svcomp23"
43
55
  jury_member:
44
56
  name: Hors Concours
@@ -47,6 +59,7 @@ competition_participations:
47
59
  url: null
48
60
  - competition: "SV-COMP 2023"
49
61
  track: "Verification"
62
+ hors-concours: true
50
63
  tool_version: "svcomp23"
51
64
  jury_member:
52
65
  name: Hors Concours
@@ -35,10 +35,22 @@ versions:
35
35
  - python3-lxml
36
36
  - gcc
37
37
  - libc6-dev-i386
38
+ full_container_images:
39
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
38
40
 
39
41
  competition_participations:
42
+ - competition: "SV-COMP 2025"
43
+ track: "Verification"
44
+ hors-concours: true
45
+ tool_version: "svcomp23"
46
+ jury_member:
47
+ name: Hors Concours
48
+ institution: --
49
+ country: --
50
+ url: null
40
51
  - competition: "SV-COMP 2024"
41
52
  track: "Verification"
53
+ hors-concours: true
42
54
  tool_version: "svcomp23"
43
55
  jury_member:
44
56
  name: Hors Concours
@@ -47,6 +59,7 @@ competition_participations:
47
59
  url: null
48
60
  - competition: "SV-COMP 2023"
49
61
  track: "Verification"
62
+ hors-concours: true
50
63
  tool_version: "svcomp23"
51
64
  jury_member:
52
65
  name: Hors Concours
@@ -17,6 +17,11 @@ maintainers:
17
17
  url: https://www.sosy-lab.org/people/jakobs/
18
18
 
19
19
  versions:
20
+ - version: "testcomp25"
21
+ doi: 10.5281/zenodo.13952266
22
+ benchexec_toolinfo_options: ['--benchmark', '--heap', '10000M', '--testcomp25', "--option", "log.consoleLevel=SEVERE"]
23
+ required_ubuntu_packages:
24
+ - openjdk-17-jre-headless
20
25
  - version: "testcomp24"
21
26
  doi: 10.5281/zenodo.10066216
22
27
  benchexec_toolinfo_options: ['-benchmark', '-heap', '10000M', '-testcomp24', "-setprop", "log.consoleLevel=SEVERE"]
@@ -29,6 +34,15 @@ versions:
29
34
  - openjdk-11-jre-headless
30
35
 
31
36
  competition_participations:
37
+ - competition: "Test-Comp 2025"
38
+ track: "Test Generation"
39
+ tool_version: "testcomp25"
40
+ jury_member:
41
+ orcid: 0000-0002-5890-4673
42
+ name: Marie-Christine Jakobs
43
+ institution: LMU Munich
44
+ country: Germany
45
+ url: null
32
46
  - competition: "Test-Comp 2024"
33
47
  track: "Test Generation"
34
48
  tool_version: "testcomp24"
@@ -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
@@ -23,8 +23,18 @@ versions:
23
23
  - openjdk-11-jre-headless
24
24
 
25
25
  competition_participations:
26
+ - competition: "SV-COMP 2025"
27
+ track: "Verification"
28
+ hors-concours: true
29
+ tool_version: "svcomp22"
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: "svcomp22"
29
39
  jury_member:
30
40
  name: Hors Concours
@@ -33,6 +43,7 @@ competition_participations:
33
43
  url: null
34
44
  - competition: "SV-COMP 2023"
35
45
  track: "Verification"
46
+ hors-concours: true
36
47
  tool_version: "svcomp22"
37
48
  jury_member:
38
49
  name: Hors Concours
@@ -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: "svcomp21"
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: "svcomp21"
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: "svcomp21"
38
49
  jury_member:
39
50
  name: Hors Concours
@@ -41,6 +41,15 @@ versions:
41
41
  - openjdk-11-jre-headless
42
42
 
43
43
  competition_participations:
44
+ - competition: "SV-COMP 2025"
45
+ track: "Validation of Violation Witnesses 1.0"
46
+ hors-concours: true
47
+ tool_version: "2.3"
48
+ jury_member:
49
+ name: Hors Concours
50
+ institution: --
51
+ country: --
52
+ url: null
44
53
  - competition: "SV-COMP 2024"
45
54
  track: "Validation of Violation Witnesses 1.0"
46
55
  tool_version: "2.3"
@@ -14,6 +14,7 @@ fmtools_format_version: "2.0"
14
14
  fmtools_entry_maintainers:
15
15
  - dbeyer
16
16
  - ricffb
17
+ - PhilippWendler
17
18
 
18
19
  maintainers:
19
20
  - orcid: 0000-0003-4832-7662
@@ -25,9 +26,30 @@ maintainers:
25
26
  name: Philipp Wendler
26
27
  institution: LMU Munich
27
28
  country: Germany
28
- url: https://www.sosy-lab.org/people/pwendler/
29
+ url: https://www.sosy-lab.org/people/wendler/
29
30
 
30
31
  versions:
32
+ - version: "3.1-svn-0a5c0e8a85"
33
+ doi: 10.5281/zenodo.14169834
34
+ benchexec_toolinfo_options: ["--svcomp25", "--heap", "10000M", "--benchmark", "--timelimit", "900 s"]
35
+ required_ubuntu_packages:
36
+ - openjdk-17-jdk-headless
37
+ base_container_images:
38
+ - docker.io/ubuntu:22.04
39
+ - version: "3.1-svn-0a5c0e8a85-validation-correctness"
40
+ doi: 10.5281/zenodo.14169834
41
+ benchexec_toolinfo_options: ["--correctness-witness-validation", "--heap", "5000m", "--benchmark", "--option", "witness.checkProgramHash=false", "--option", "cpa.predicate.memoryAllocationsAlwaysSucceed=true"]
42
+ required_ubuntu_packages:
43
+ - openjdk-17-jdk-headless
44
+ base_container_images:
45
+ - docker.io/ubuntu:22.04
46
+ - version: "3.1-svn-0a5c0e8a85-validation-violation"
47
+ doi: 10.5281/zenodo.14169834
48
+ benchexec_toolinfo_options: ["--violation-witness-validation", "--heap", "5000m", "--benchmark", "--option", "witness.checkProgramHash=false", "--option", "cpa.predicate.memoryAllocationsAlwaysSucceed=true", "--option", "cpa.smg.memoryAllocationFunctions=malloc,__kmalloc,kmalloc,kzalloc,kzalloc_node,ldv_zalloc,ldv_malloc", "--option", "cpa.smg.arrayAllocationFunctions=calloc,kmalloc_array,kcalloc", "--option", "cpa.smg.zeroingMemoryAllocation=calloc,kzalloc,kcalloc,kzalloc_node,ldv_zalloc", "--option", "cpa.smg.deallocationFunctions=free,kfree,kfree_const"]
49
+ required_ubuntu_packages:
50
+ - openjdk-17-jdk-headless
51
+ base_container_images:
52
+ - docker.io/ubuntu:22.04
31
53
  - version: "2.3.1"
32
54
  doi: 10.5281/zenodo.11074229
33
55
  benchexec_toolinfo_options: ["-svcomp24", "-heap", "10000M", "-benchmark", "-timelimit", "900 s"]
@@ -81,6 +103,51 @@ versions:
81
103
  - openjdk-11-jre-headless
82
104
 
83
105
  competition_participations:
106
+ - competition: "SV-COMP 2025"
107
+ track: "Verification"
108
+ tool_version: "3.1-svn-0a5c0e8a85"
109
+ jury_member:
110
+ orcid: 0000-0002-8172-3184
111
+ name: Marian Lingsch-Rosenfeld
112
+ institution: LMU Munich
113
+ country: Germany
114
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
115
+ - competition: "SV-COMP 2025"
116
+ track: "Validation of Correctness Witnesses 1.0"
117
+ tool_version: "3.1-svn-0a5c0e8a85-validation-correctness"
118
+ jury_member:
119
+ orcid: 0000-0002-8172-3184
120
+ name: Marian Lingsch-Rosenfeld
121
+ institution: LMU Munich
122
+ country: Germany
123
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
124
+ - competition: "SV-COMP 2025"
125
+ track: "Validation of Correctness Witnesses 2.0"
126
+ tool_version: "3.1-svn-0a5c0e8a85-validation-correctness"
127
+ jury_member:
128
+ orcid: 0000-0002-8172-3184
129
+ name: Marian Lingsch-Rosenfeld
130
+ institution: LMU Munich
131
+ country: Germany
132
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
133
+ - competition: "SV-COMP 2025"
134
+ track: "Validation of Violation Witnesses 1.0"
135
+ tool_version: "3.1-svn-0a5c0e8a85-validation-violation"
136
+ jury_member:
137
+ orcid: 0000-0002-8172-3184
138
+ name: Marian Lingsch-Rosenfeld
139
+ institution: LMU Munich
140
+ country: Germany
141
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
142
+ - competition: "SV-COMP 2025"
143
+ track: "Validation of Violation Witnesses 2.0"
144
+ tool_version: "3.1-svn-0a5c0e8a85-validation-violation"
145
+ jury_member:
146
+ orcid: 0000-0002-8172-3184
147
+ name: Marian Lingsch-Rosenfeld
148
+ institution: LMU Munich
149
+ country: Germany
150
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
84
151
  - competition: "SV-COMP 2024"
85
152
  track: "Verification"
86
153
  tool_version: "2.3"
@@ -23,7 +23,13 @@ maintainers:
23
23
  url: https://www.sosy-lab.org/people/lee/
24
24
 
25
25
  versions:
26
- - version: "svcomp24"
26
+ - version: "0.5.1"
27
+ doi: 10.5281/zenodo.14034969
28
+ benchexec_toolinfo_options: ["--svcomp", "--no-cache-update"]
29
+ required_ubuntu_packages:
30
+ - python3-lxml
31
+ - python3-bitstring
32
+ - version: "0.4"
27
33
  doi: 10.5281/zenodo.10203472
28
34
  benchexec_toolinfo_options: ["--svcomp", "--no-cache-update"]
29
35
  required_ubuntu_packages:
@@ -31,9 +37,17 @@ versions:
31
37
  - python3-bitstring
32
38
 
33
39
  competition_participations:
40
+ - competition: "SV-COMP 2025"
41
+ track: "Verification"
42
+ tool_version: "0.5.1"
43
+ jury_member:
44
+ name: Po-Chun Chien
45
+ institution: LMU Munich
46
+ country: Germany
47
+ url: https://www.sosy-lab.org/people/chien/
34
48
  - competition: "SV-COMP 2024"
35
49
  track: "Verification"
36
- tool_version: "svcomp24"
50
+ tool_version: "0.4"
37
51
  jury_member:
38
52
  name: Po-Chun Chien
39
53
  institution: LMU Munich
@@ -41,6 +55,7 @@ competition_participations:
41
55
  url: https://www.sosy-lab.org/people/chien/
42
56
 
43
57
  techniques:
58
+ - Algorithm Selection
44
59
  - Bit-Precise Analysis
45
60
  - Bounded Model Checking
46
61
  - CEGAR
@@ -23,8 +23,18 @@ versions:
23
23
  - openjdk-11-jre-headless
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
@@ -33,6 +43,7 @@ competition_participations:
33
43
  url: https://ryanglscott.github.io/
34
44
  - competition: "SV-COMP 2023"
35
45
  track: "Verification"
46
+ hors-concours: true
36
47
  tool_version: "svcomp23"
37
48
  jury_member:
38
49
  name: Hors Concours
@@ -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: "svcomp22"
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: "svcomp22"
28
38
  jury_member:
29
39
  name: Hors Concours
@@ -32,6 +42,7 @@ competition_participations:
32
42
  url: https://github.com/Emersonwds
33
43
  - competition: "SV-COMP 2023"
34
44
  track: "Verification"
45
+ hors-concours: true
35
46
  tool_version: "svcomp22"
36
47
  jury_member:
37
48
  name: Hors Concours
@@ -48,10 +59,6 @@ frameworks_solvers:
48
59
  - CProver
49
60
  - MiniSAT
50
61
 
51
- frameworks_solvers:
52
- - CProver
53
- - MiniSAT
54
-
55
62
  used_actors:
56
63
  - actor_type: "Specification Transformer"
57
64
  description: |
@@ -17,6 +17,12 @@ maintainers:
17
17
  url: https://hernanponcedeleon.github.io
18
18
 
19
19
  versions:
20
+ - version: "svcomp25"
21
+ doi: 10.5281/zenodo.14079770
22
+ benchexec_toolinfo_options: []
23
+ required_ubuntu_packages:
24
+ - clang-14
25
+ - llvm-14
20
26
  - version: "svcomp24"
21
27
  doi: 10.5281/zenodo.10161362
22
28
  benchexec_toolinfo_options: []
@@ -31,6 +37,22 @@ versions:
31
37
  - llvm-11
32
38
 
33
39
  competition_participations:
40
+ - competition: "SV-COMP 2025"
41
+ track: "Verification"
42
+ tool_version: "svcomp25"
43
+ jury_member:
44
+ name: Hernán Ponce de León
45
+ institution: Huawei Dresden Research Center
46
+ country: Germany
47
+ url: https://hernanponcedeleon.github.io
48
+ - competition: "SV-COMP 2025"
49
+ track: "Validation of Violation Witnesses 1.0"
50
+ tool_version: "svcomp25"
51
+ jury_member:
52
+ name: Hernán Ponce de León
53
+ institution: Huawei Dresden Research Center
54
+ country: Germany
55
+ url: https://hernanponcedeleon.github.io
34
56
  - competition: "SV-COMP 2024"
35
57
  track: "Verification"
36
58
  tool_version: "svcomp24"
@@ -10,12 +10,22 @@ fmtools_entry_maintainers:
10
10
  - Misasasa
11
11
 
12
12
  maintainers:
13
- - name: Fei He
13
+ - orcid: 0000-0002-4266-875X
14
+ name: Fei He
14
15
  institution: Tsinghua University
15
16
  country: China
16
17
  url: https://feihe.github.io/
18
+ - orcid: 0000-0002-3787-0144
19
+ name: Zhihang Sun
20
+ institution: Tsinghua University
21
+ country: China
22
+ url: https://thufv.github.io/team/
17
23
 
18
24
  versions:
25
+ - version: "svcomp25"
26
+ doi: 10.5281/zenodo.14169280
27
+ benchexec_toolinfo_options: []
28
+ required_ubuntu_packages: []
19
29
  - version: "svcomp24"
20
30
  doi: 10.5281/zenodo.10207348
21
31
  benchexec_toolinfo_options: []
@@ -26,10 +36,20 @@ versions:
26
36
  required_ubuntu_packages: []
27
37
 
28
38
  competition_participations:
39
+ - competition: "SV-COMP 2025"
40
+ track: "Verification"
41
+ tool_version: "svcomp25"
42
+ jury_member:
43
+ orcid: 0000-0002-4266-875X
44
+ name: Fei He
45
+ institution: Tsinghua University
46
+ country: China
47
+ url: https://feihe.github.io/
29
48
  - competition: "SV-COMP 2024"
30
49
  track: "Verification"
31
50
  tool_version: "svcomp24"
32
51
  jury_member:
52
+ orcid: 0000-0002-4266-875X
33
53
  name: Fei He
34
54
  institution: Tsinghua University
35
55
  country: China
@@ -38,6 +58,7 @@ competition_participations:
38
58
  track: "Verification"
39
59
  tool_version: "svcomp23"
40
60
  jury_member:
61
+ orcid: 0000-0002-4266-875X
41
62
  name: Fei He
42
63
  institution: Tsinghua University
43
64
  country: China
@@ -49,3 +70,8 @@ techniques:
49
70
 
50
71
  frameworks_solvers:
51
72
  - MiniSAT
73
+
74
+ literature:
75
+ - doi: 10.1007/978-3-030-99527-0_25
76
+ title: "Deagle: An SMT-based Verifier for Multi-threaded Programs (Competition Contribution)"
77
+ year: 2022
@@ -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: "svcomp22"
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: "svcomp22"
28
38
  jury_member:
29
39
  name: Hors Concours
@@ -32,6 +42,7 @@ competition_participations:
32
42
  url: null
33
43
  - competition: "SV-COMP 2023"
34
44
  track: "Verification"
45
+ hors-concours: true
35
46
  tool_version: "svcomp22"
36
47
  jury_member:
37
48
  name: Hors Concours
@@ -26,6 +26,15 @@ versions:
26
26
  required_ubuntu_packages: []
27
27
 
28
28
  competition_participations:
29
+ - competition: "SV-COMP 2025"
30
+ track: "Verification"
31
+ hors-concours: true
32
+ tool_version: "svcomp24"
33
+ jury_member:
34
+ name: Hors Concours
35
+ institution: --
36
+ country: --
37
+ url: null
29
38
  - competition: "SV-COMP 2024"
30
39
  track: "Verification"
31
40
  tool_version: "svcomp24"