forked from sosy-lab/benchexec
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Ultimate Referee, a witness validator
- Loading branch information
1 parent
66ef233
commit a321056
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# This file is part of BenchExec, a framework for reliable benchmarking: | ||
# https://github.com/sosy-lab/benchexec | ||
# | ||
# SPDX-FileCopyrightText: 2024 Daniel Dietsch <[email protected]> | ||
# SPDX-FileCopyrightText: 2024 Dirk Beyer <https://www.sosy-lab.org> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
from . import ultimate | ||
|
||
|
||
class Tool(ultimate.UltimateTool): | ||
""" | ||
This is the tool info module for ULTIMATE Referee. | ||
You can download the latest release from GitHub or build the latest development snapshot by following the | ||
instructions at https://github.com/ultimate-pa/ultimate/wiki/Usage | ||
Please report any issues to our issue tracker at https://github.com/ultimate-pa/ultimate/issues | ||
Latest release: https://github.com/ultimate-pa/ultimate/releases/latest | ||
Git repository: https://github.com/ultimate-pa/ultimate.git | ||
""" | ||
|
||
def name(self): | ||
return "ULTIMATE Referee" |