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
@@ -11,11 +11,19 @@ fmtools_entry_maintainers:
11
11
 
12
12
  maintainers:
13
13
  - name: Levente Bajczi
14
+ orcid: 0000-0002-6551-5860
14
15
  institution: Budapest University of Technology and Economics
15
16
  country: Hungary
16
17
  url: http://mit.bme.hu/~bajczi
17
18
 
18
19
  versions:
20
+ - version: "svcomp25"
21
+ doi: 10.5281/zenodo.14168248
22
+ benchexec_toolinfo_options: ["--svcomp", "--portfolio", "EMERGENT", "--loglevel", "RESULT"]
23
+ required_ubuntu_packages:
24
+ - openjdk-17-jre-headless
25
+ - libgomp1
26
+ - libmpfr6
19
27
  - version: "svcomp24"
20
28
  doi: 10.5281/zenodo.10198872
21
29
  benchexec_toolinfo_options: ['--witness-only', '--backend', 'IMC_THEN_KIND', '--loglevel', 'RESULT']
@@ -25,6 +33,15 @@ versions:
25
33
  - libmpfr6
26
34
 
27
35
  competition_participations:
36
+ - competition: "SV-COMP 2025"
37
+ track: "Verification"
38
+ tool_version: "svcomp25"
39
+ jury_member:
40
+ orcid: 0000-0002-6551-5860
41
+ name: Levente Bajczi
42
+ institution: Budapest University of Technology and Economics
43
+ country: Hungary
44
+ url: http://mit.bme.hu/~bajczi
28
45
  - competition: "SV-COMP 2024"
29
46
  track: "Verification"
30
47
  tool_version: "svcomp24"
@@ -44,3 +61,9 @@ techniques:
44
61
  - Portfolio
45
62
 
46
63
  frameworks_solvers: []
64
+
65
+
66
+ literature:
67
+ - doi: 10.1007/978-3-031-57256-2_23
68
+ title: "EmergenTheta: Verification Beyond Abstraction Refinement (Competition Contribution)"
69
+ year: 2024
@@ -7,24 +7,42 @@ spdx_license_identifier: "Apache-2.0"
7
7
  benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/esbmc.py"
8
8
  fmtools_format_version: "2.0"
9
9
  fmtools_entry_maintainers:
10
- - feliperodri
10
+ - lucasccordeiro81
11
+ - ChenfengWei1
11
12
 
12
13
  maintainers:
13
- - orcid: 0000-0001-9420-9056
14
- name: Felipe R. Monteiro
15
- institution: Federal University of Amazonas
16
- country: Brazil
14
+ - orcid: 0000-0002-6235-4272
15
+ name: Lucas C. Cordeiro
16
+ institution: University of Manchester
17
+ country: UK
17
18
  url: null
18
19
 
19
20
  versions:
21
+ - version: "svcomp25"
22
+ doi: 10.5281/zenodo.14165983
23
+ benchexec_toolinfo_options: ['-s', 'incr', '--concurrency']
24
+ required_ubuntu_packages: []
20
25
  - version: "svcomp22"
21
26
  doi: 10.5281/zenodo.10396755
22
27
  benchexec_toolinfo_options: ['-s', 'incr', '--concurrency']
23
28
  required_ubuntu_packages: []
29
+ - version: "testcomp25"
30
+ doi: 10.5281/zenodo.14165983
31
+ benchexec_toolinfo_options: ["-s", "incr", "-o", "condition"]
32
+ required_ubuntu_packages: []
24
33
 
25
34
  competition_participations:
35
+ - competition: "SV-COMP 2025"
36
+ track: "Verification"
37
+ tool_version: "svcomp25"
38
+ jury_member:
39
+ name: Tong Wu
40
+ institution: the University of Manchester
41
+ country: UK
42
+ url: null
26
43
  - competition: "SV-COMP 2024"
27
44
  track: "Verification"
45
+ hors-concours: true
28
46
  tool_version: "svcomp22"
29
47
  jury_member:
30
48
  name: Hors Concours
@@ -33,12 +51,21 @@ competition_participations:
33
51
  url: null
34
52
  - competition: "SV-COMP 2023"
35
53
  track: "Verification"
54
+ hors-concours: true
36
55
  tool_version: "svcomp22"
37
56
  jury_member:
38
57
  name: Hors Concours
39
58
  institution: --
40
59
  country: --
41
60
  url: null
61
+ - competition: "Test-Comp 2025"
62
+ track: "Test Generation"
63
+ tool_version: "testcomp25"
64
+ jury_member:
65
+ name: Chenfeng Wei
66
+ institution: University of Manchester
67
+ country: UK
68
+ url: null
42
69
 
43
70
  techniques:
44
71
  - Bounded Model Checking
@@ -11,12 +11,17 @@ fmtools_entry_maintainers:
11
11
  - fbrausse
12
12
 
13
13
  maintainers:
14
- - name: Rafael Sá Menezes
14
+ - orcid: 0000-0002-6102-4343
15
+ name: Rafael Sá Menezes
15
16
  institution: University of Manchester
16
17
  country: UK
17
18
  url: null
18
19
 
19
20
  versions:
21
+ - version: "svcomp25"
22
+ doi: "10.5281/zenodo.14165983"
23
+ benchexec_toolinfo_options: ["-s", "kinduction"]
24
+ required_ubuntu_packages: []
20
25
  - version: "svcomp24"
21
26
  doi: "10.5281/zenodo.10198805"
22
27
  benchexec_toolinfo_options: ["-s", "kinduction"]
@@ -25,12 +30,24 @@ versions:
25
30
  url: "https://gitlab.com/sosy-lab/sv-comp/archives-2023/-/raw/svcomp23/2023/esbmc-kind.zip"
26
31
  benchexec_toolinfo_options: ["-s", "kinduction"]
27
32
  required_ubuntu_packages: []
33
+ - version: "testcomp25"
34
+ doi: 10.5281/zenodo.14165983
35
+ benchexec_toolinfo_options: ["-s", "kinduction","-o","branch"]
36
+ required_ubuntu_packages: []
28
37
  - version: "testcomp23"
29
38
  doi: 10.5281/zenodo.10412876
30
39
  benchexec_toolinfo_options: ["-s", "kinduction"]
31
40
  required_ubuntu_packages: []
32
41
 
33
42
  competition_participations:
43
+ - competition: "SV-COMP 2025"
44
+ track: "Verification"
45
+ tool_version: "svcomp25"
46
+ jury_member:
47
+ name: Tong Wu
48
+ institution: University of Manchester
49
+ country: UK
50
+ url: null
34
51
  - competition: "SV-COMP 2024"
35
52
  track: "Verification"
36
53
  tool_version: "svcomp24"
@@ -47,8 +64,17 @@ competition_participations:
47
64
  institution: University of Manchester
48
65
  country: UK
49
66
  url: null
67
+ - competition: "Test-Comp 2025"
68
+ track: "Test Generation"
69
+ tool_version: "testcomp25"
70
+ jury_member:
71
+ name: Chenfeng Wei
72
+ institution: University of Manchester
73
+ country: UK
74
+ url: null
50
75
  - competition: "Test-Comp 2024"
51
76
  track: "Test Generation"
77
+ hors-concours: true
52
78
  tool_version: "testcomp23"
53
79
  jury_member:
54
80
  name: Hors Concours
@@ -76,3 +102,9 @@ techniques:
76
102
  frameworks_solvers:
77
103
  - ESBMC
78
104
  - MathSAT
105
+
106
+ literature:
107
+ - doi: "10.1109/TSE.2011.59"
108
+ title: "SMT-based bounded model checking for embedded ANSI-C software"
109
+ year: 2011
110
+
@@ -22,6 +22,15 @@ 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: "testcomp24"
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"
27
36
  tool_version: "testcomp24"
@@ -17,6 +17,20 @@ maintainers:
17
17
  url: null
18
18
 
19
19
  versions:
20
+ - version: "testcomp25"
21
+ doi: 10.5281/zenodo.14064195
22
+ benchexec_toolinfo_options: [
23
+ "--max_seconds", "865",
24
+ "--optimizer_max_seconds", "30",
25
+ "--max_exec_milliseconds", "500",
26
+ "--max_exec_megabytes", "13312",
27
+ "--max_stdin_bytes", "65536",
28
+ "--max_trace_length", "10000",
29
+ "--max_stack_size", "25",
30
+ "--stdin_model", "stdin_replay_bytes_then_repeat_zero",
31
+ "--test_type", "testcomp"
32
+ ]
33
+ required_ubuntu_packages: []
20
34
  - version: "testcomp24"
21
35
  doi: 10.5281/zenodo.10183158
22
36
  benchexec_toolinfo_options: [
@@ -30,6 +44,15 @@ versions:
30
44
  required_ubuntu_packages: []
31
45
 
32
46
  competition_participations:
47
+ - competition: "Test-Comp 2025"
48
+ track: "Test Generation"
49
+ tool_version: "testcomp25"
50
+ jury_member:
51
+ orcid: 0009-0009-6122-9574
52
+ name: Marek Trtík
53
+ institution: Masaryk University, Brno
54
+ country: Czechia
55
+ url: null
33
56
  - competition: "Test-Comp 2024"
34
57
  track: "Test Generation"
35
58
  tool_version: "testcomp24"
@@ -23,6 +23,8 @@ versions:
23
23
  required_ubuntu_packages:
24
24
  - python3-pycparser
25
25
  - python3-pandas
26
+ full_container_images:
27
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
26
28
  - version: "svcomp23"
27
29
  url: "https://gitlab.com/sosy-lab/sv-comp/archives-2023/-/raw/svcomp23/2023/frama-c-sv.zip"
28
30
  benchexec_toolinfo_options: ["--reach-as-overflow", "--allow-unsafe"]
@@ -31,6 +33,15 @@ versions:
31
33
  - python3-pandas
32
34
 
33
35
  competition_participations:
36
+ - competition: "SV-COMP 2025"
37
+ track: "Verification"
38
+ hors-concours: true
39
+ tool_version: "svcomp24"
40
+ jury_member:
41
+ name: Hors Concours
42
+ institution: --
43
+ country: --
44
+ url: null
34
45
  - competition: "SV-COMP 2024"
35
46
  track: "Verification"
36
47
  tool_version: "svcomp24"
@@ -25,8 +25,18 @@ versions:
25
25
  - libc6-dev-i386
26
26
 
27
27
  competition_participations:
28
+ - competition: "SV-COMP 2025"
29
+ track: "Validation of Violation Witnesses 1.0"
30
+ hors-concours: true
31
+ tool_version: "svcomp23"
32
+ jury_member:
33
+ name: Hors Concours
34
+ institution: --
35
+ country: --
36
+ url: null
28
37
  - competition: "SV-COMP 2024"
29
38
  track: "Validation of Violation Witnesses 1.0"
39
+ hors-concours: true
30
40
  tool_version: "svcomp23"
31
41
  jury_member:
32
42
  name: Hors Concours
@@ -31,6 +31,15 @@ versions:
31
31
  required_ubuntu_packages: []
32
32
 
33
33
  competition_participations:
34
+ - competition: "Test-Comp 2025"
35
+ track: "Test Generation"
36
+ hors-concours: true
37
+ tool_version: "testcomp24"
38
+ jury_member:
39
+ name: Hors Concours
40
+ institution: --
41
+ country: --
42
+ url: null
34
43
  - competition: "Test-Comp 2024"
35
44
  track: "Test Generation"
36
45
  tool_version: "testcomp24"
@@ -10,12 +10,17 @@ fmtools_entry_maintainers:
10
10
  - kaled-alshmrany
11
11
 
12
12
  maintainers:
13
- - name: Kaled Alshmrany
13
+ - orcid: 0000-0002-5822-5435
14
+ name: Kaled Alshmrany
14
15
  institution: University of Manchester / Institute of Public Administration
15
16
  country: UK / Saudi Arabia
16
17
  url: https://research.manchester.ac.uk/en/persons/kaled.alshmrany
17
18
 
18
19
  versions:
20
+ - version: "testcomp25"
21
+ doi: "10.5281/zenodo.13983351"
22
+ benchexec_toolinfo_options: ["-s", "incr"]
23
+ required_ubuntu_packages: []
19
24
  - version: "testcomp24"
20
25
  doi: "10.5281/zenodo.10113374"
21
26
  benchexec_toolinfo_options: ["-s", "incr"]
@@ -26,6 +31,14 @@ versions:
26
31
  required_ubuntu_packages: []
27
32
 
28
33
  competition_participations:
34
+ - competition: "Test-Comp 2025"
35
+ track: "Test Generation"
36
+ tool_version: "testcomp25"
37
+ jury_member:
38
+ name: Kaled Alshmrany
39
+ institution: University of Manchester / Institute of Public Administration
40
+ country: UK / Saudi Arabia
41
+ url: https://research.manchester.ac.uk/en/persons/kaled.alshmrany
29
42
  - competition: "Test-Comp 2024"
30
43
  track: "Test Generation"
31
44
  tool_version: "testcomp24"
@@ -51,3 +64,8 @@ techniques:
51
64
  - Portfolio
52
65
 
53
66
  frameworks_solvers: []
67
+
68
+ literature:
69
+ - doi: "10.1145/3665337"
70
+ title: "FuSeBMC v4: Improving Code Coverage with Smart Seeds via BMC, Fuzzing and Static Analysis"
71
+ year: 2024
@@ -24,10 +24,22 @@ versions:
24
24
  - python3
25
25
  - openjdk-11-jre-headless
26
26
  - libgomp1
27
+ full_container_images:
28
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
27
29
 
28
30
  competition_participations:
31
+ - competition: "SV-COMP 2025"
32
+ track: "Verification"
33
+ hors-concours: true
34
+ tool_version: "svcomp23"
35
+ jury_member:
36
+ name: Hors Concours
37
+ institution: --
38
+ country: --
39
+ url: null
29
40
  - competition: "SV-COMP 2024"
30
41
  track: "Verification"
42
+ hors-concours: true
31
43
  tool_version: "svcomp23"
32
44
  jury_member:
33
45
  name: Hors Concours
@@ -36,6 +48,7 @@ competition_participations:
36
48
  url: null
37
49
  - competition: "SV-COMP 2023"
38
50
  track: "Verification"
51
+ hors-concours: true
39
52
  tool_version: "svcomp23"
40
53
  jury_member:
41
54
  name: Hors Concours
@@ -24,8 +24,18 @@ versions:
24
24
  required_ubuntu_packages: []
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
@@ -15,8 +15,19 @@ maintainers:
15
15
  institution: TU Dortmund
16
16
  country: Germany
17
17
  url: https://falkhowar.de
18
+ orcid: 0000-0002-9524-4459
19
+ - name: Malte Mues
20
+ institution: TU Dortmund
21
+ country: Germany
22
+ url: https://aqua.cs.tu-dortmund.de/team/researchers/malte-mues/
23
+ orcid: 0000-0002-6291-9886
18
24
 
19
25
  versions:
26
+ - version: "svcomp25"
27
+ doi: "10.5281/zenodo.10059535"
28
+ benchexec_toolinfo_options: []
29
+ required_ubuntu_packages:
30
+ - openjdk-11-jre-headless
20
31
  - version: "svcomp24"
21
32
  doi: "10.5281/zenodo.10059535"
22
33
  benchexec_toolinfo_options: []
@@ -29,6 +40,14 @@ versions:
29
40
  - openjdk-11-jre-headless
30
41
 
31
42
  competition_participations:
43
+ - competition: "SV-COMP 2025"
44
+ track: "Verification"
45
+ tool_version: "svcomp25"
46
+ jury_member:
47
+ name: Falk Howar
48
+ institution: TU Dortmund
49
+ country: Germany
50
+ url: https://falkhowar.de
32
51
  - competition: "SV-COMP 2024"
33
52
  track: "Verification"
34
53
  tool_version: "svcomp24"
@@ -54,3 +73,15 @@ techniques:
54
73
  frameworks_solvers:
55
74
  - CVC
56
75
  - Z3
76
+
77
+ literature:
78
+ - doi: 10.1007/978-3-030-99527-0_27
79
+ title: "GDart: an ensemble of tools for dynamic symbolic execution on the Java virtual machine (competition contribution)"
80
+ year: 2022
81
+ - doi: 10.1007/978-3-031-17108-6_6
82
+ title: "SPouT: Symbolic Path Recording During Testing - A Concolic Executor for the JVM"
83
+ year: 2022
84
+ - doi: 10.17877/DE290R-23694
85
+ title: "The integration of multi-color taint-analysis with dynamic symbolic execution for Java web application security analysis"
86
+ year: 2023
87
+
@@ -10,16 +10,26 @@ fmtools_entry_maintainers:
10
10
  - sim642
11
11
 
12
12
  maintainers:
13
- - name: Simmo Saan
13
+ - orcid: 0000-0003-4553-1350
14
+ name: Simmo Saan
14
15
  institution: University of Tartu
15
16
  country: Estonia
16
17
  url: https://sim642.eu/
17
- - name: Michael Schwarz
18
+ - orcid: 0000-0002-9828-0308
19
+ name: Michael Schwarz
18
20
  institution: Technische Universität München
19
21
  country: Germany
20
22
  url: https://www.cs.cit.tum.de/en/pl/personen/michael-schwarz/
21
23
 
22
24
  versions:
25
+ - version: "svcomp25"
26
+ doi: 10.5281/zenodo.14054652
27
+ benchexec_toolinfo_options: ["--conf", "conf/svcomp25.json"]
28
+ required_ubuntu_packages: []
29
+ - version: "svcomp25-validation-correctness"
30
+ doi: 10.5281/zenodo.14054652
31
+ benchexec_toolinfo_options: ["--conf", "conf/svcomp25-validate.json"]
32
+ required_ubuntu_packages: []
23
33
  - version: "svcomp24"
24
34
  doi: 10.5281/zenodo.10202867
25
35
  benchexec_toolinfo_options: ["--conf", "conf/svcomp24.json"]
@@ -34,10 +44,29 @@ versions:
34
44
  required_ubuntu_packages: []
35
45
 
36
46
  competition_participations:
47
+ - competition: "SV-COMP 2025"
48
+ track: "Verification"
49
+ tool_version: "svcomp25"
50
+ jury_member:
51
+ orcid: 0000-0003-4553-1350
52
+ name: Simmo Saan
53
+ institution: University of Tartu
54
+ country: Estonia
55
+ url: https://sim642.eu/
56
+ - competition: "SV-COMP 2025"
57
+ track: "Validation of Correctness Witnesses 2.0"
58
+ tool_version: "svcomp25-validation-correctness"
59
+ jury_member:
60
+ orcid: 0000-0003-4553-1350
61
+ name: Simmo Saan
62
+ institution: University of Tartu
63
+ country: Estonia
64
+ url: https://sim642.eu/
37
65
  - competition: "SV-COMP 2024"
38
66
  track: "Verification"
39
67
  tool_version: "svcomp24"
40
68
  jury_member:
69
+ orcid: 0000-0003-4553-1350
41
70
  name: Simmo Saan
42
71
  institution: University of Tartu
43
72
  country: Estonia
@@ -46,6 +75,7 @@ competition_participations:
46
75
  track: "Validation of Correctness Witnesses 2.0"
47
76
  tool_version: "svcomp24-validation-correctness"
48
77
  jury_member:
78
+ orcid: 0000-0003-4553-1350
49
79
  name: Simmo Saan
50
80
  institution: University of Tartu
51
81
  country: Estonia
@@ -54,6 +84,7 @@ competition_participations:
54
84
  track: "Verification"
55
85
  tool_version: "svcomp23"
56
86
  jury_member:
87
+ orcid: 0000-0003-4553-1350
57
88
  name: Simmo Saan
58
89
  institution: University of Tartu
59
90
  country: Estonia
@@ -66,3 +97,20 @@ techniques:
66
97
 
67
98
  frameworks_solvers:
68
99
  - Apron
100
+
101
+ literature:
102
+ - doi: 10.1145/2970276.2970337
103
+ title: "Static race detection for device drivers: the Goblint approach"
104
+ year: 2016
105
+ - doi: 10.1007/978-3-031-57256-2_17
106
+ title: "Goblint Validator: Correctness Witness Validation by Abstract Interpretation (Competition Contribution)"
107
+ year: 2024
108
+ - doi: 10.1007/978-3-031-57256-2_25
109
+ title: "Goblint: Abstract Interpretation for Memory Safety and Termination (Competition Contribution)"
110
+ year: 2024
111
+ - doi: 10.1007/978-3-031-30820-8_34
112
+ title: "Goblint: Autotuning Thread-Modular Abstract Interpretation (Competition Contribution)"
113
+ year: 2023
114
+ - doi: 10.1007/978-3-030-72013-1_28
115
+ title: "Goblint: Thread-Modular Abstract Interpretation Using Side-Effecting Constraints (Competition Contribution)"
116
+ year: 2021
@@ -27,10 +27,22 @@ versions:
27
27
  - python3-lxml
28
28
  - gcc
29
29
  - libc6-dev-i386
30
+ full_container_images:
31
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
30
32
 
31
33
  competition_participations:
34
+ - competition: "SV-COMP 2025"
35
+ track: "Verification"
36
+ hors-concours: true
37
+ tool_version: "svcomp23"
38
+ jury_member:
39
+ name: Hors Concours
40
+ institution: --
41
+ country: --
42
+ url: null
32
43
  - competition: "SV-COMP 2024"
33
44
  track: "Verification"
45
+ hors-concours: true
34
46
  tool_version: "svcomp23"
35
47
  jury_member:
36
48
  name: Hors Concours
@@ -39,6 +51,7 @@ competition_participations:
39
51
  url: null
40
52
  - competition: "SV-COMP 2023"
41
53
  track: "Verification"
54
+ hors-concours: true
42
55
  tool_version: "svcomp23"
43
56
  jury_member:
44
57
  name: Hors Concours
@@ -23,10 +23,22 @@ versions:
23
23
  - openjdk-11-jre-headless
24
24
  - llvm-11
25
25
  - clang-11
26
+ full_container_images:
27
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
26
28
 
27
29
  competition_participations:
30
+ - competition: "SV-COMP 2025"
31
+ track: "Verification"
32
+ hors-concours: true
33
+ tool_version: "svcomp23"
34
+ jury_member:
35
+ name: Hors Concours
36
+ institution: --
37
+ country: --
38
+ url: null
28
39
  - competition: "SV-COMP 2024"
29
40
  track: "Verification"
41
+ hors-concours: true
30
42
  tool_version: "svcomp23"
31
43
  jury_member:
32
44
  name: Hors Concours
@@ -29,6 +29,15 @@ versions:
29
29
  - openjdk-11-jre-headless
30
30
 
31
31
  competition_participations:
32
+ - competition: "SV-COMP 2025"
33
+ track: "Validation of Violation Witnesses 1.0"
34
+ hors-concours: true
35
+ tool_version: "svcomp24"
36
+ jury_member:
37
+ name: Hors Concours
38
+ institution: --
39
+ country: --
40
+ url: null
32
41
  - competition: "SV-COMP 2024"
33
42
  track: "Validation of Violation Witnesses 1.0"
34
43
  tool_version: "svcomp24"
@@ -0,0 +1,55 @@
1
+ name: Hornix
2
+ input_languages:
3
+ - C
4
+ project_url: https://github.com/d3sformal/hornix
5
+ repository_url: https://github.com/d3sformal/hornix
6
+ spdx_license_identifier: Apache 2.0
7
+ benchexec_toolinfo_module: benchexec.tools.hornix
8
+ fmtools_format_version: "2.0"
9
+ fmtools_entry_maintainers:
10
+ - jan.kofron
11
+
12
+ maintainers:
13
+ - orcid: "0000-0000-0000-0000"
14
+ name: Oliver Glitta
15
+ institution: Charles University
16
+ country: Czech Republic
17
+ url: null
18
+ - orcid: "0000-0001-8140-4098"
19
+ name: Martin Blicha
20
+ institution: University of Lugano
21
+ country: Switzerland
22
+ url: null
23
+ - orcid: "0000-0003-0391-4812"
24
+ name: Jan Kofron
25
+ institution: Charles University
26
+ country: Czech Republic
27
+ url: https://d3s.mff.cuni.cz/people/jankofron/
28
+
29
+ versions:
30
+ - version: "svcomp25"
31
+ doi: "10.5281/zenodo.13950398"
32
+ benchexec_toolinfo_options: []
33
+ required_ubuntu_packages: []
34
+
35
+ competition_participations:
36
+ - competition: "SV-COMP 2025"
37
+ track: "Verification"
38
+ tool_version: "svcomp25"
39
+ jury_member:
40
+ orcid: 0000-0001-8140-4098
41
+ name: Martin Blicha
42
+ institution: University of Lugano
43
+ country: Switzerland
44
+ url: null
45
+
46
+ techniques:
47
+ - Property-Directed Reachability
48
+
49
+ frameworks_solvers:
50
+ - Z3
51
+
52
+ literature: []
53
+
54
+
55
+