Skip to content

Commit 06e22cb

Browse files
committed
Increase version number to 1.7
* Update README.txt so that Python 3.7 is required
1 parent 547f73a commit 06e22cb

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

README.txt

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
SLiVER 1.6
3-
February 2021
2+
SLiVER 1.7
3+
July 2021
44

55
Symbolic LAbS VERifier
66

@@ -26,7 +26,7 @@ cbmc-simulator A build of CBMC 5.4
2626

2727
To install SLiVER, please follow the steps below:
2828

29-
1. install Python 3.5 or higher
29+
1. install Python 3.7 or higher
3030

3131
2. create a directory, suppose this is called /workspace
3232

@@ -46,12 +46,14 @@ The following command should instead report that a property is violated:
4646

4747
./sliver.py --steps 18 --fair examples/boids-aw.labs birds=4 delta=13 grid=10
4848

49-
Use the --backend=<cbmc|cseq|esbmc> option to select a different
49+
Use the --backend=<cbmc|cseq|esbmc|cadp> option to select a different
5050
verification backend.
51-
Please keep in mind that ESBMC support is still experimental, therefore:
51+
Please keep in mind that:
52+
53+
1. We only bundled the CBMC executable as part of this package. Therefore,
54+
cadp, cseq, or esbmc must be obtained separately.
55+
2. Our counterexample translation does not support esbmc yet.
5256

53-
1. The esbmc executable is not provided as part of this package
54-
2. Our counterexample translation only supports CBMC and CSeq.
5557

5658
Invoking the tool without options:
5759

__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
__summary__ = "The SLiVER LAbS VERification tool"
77
__uri__ = "https://github.com/labs-lang/sliver"
88

9-
__version__ = "1.6"
10-
__date__ = "February 2021"
9+
__version__ = "1.7"
10+
__date__ = "July 2021"

sliver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def make_filename(file, values, bound, fair, sync, language):
7878
@click.option('--verbose', **DEFAULTS("verbose", default=False, is_flag=True))
7979
def main(file, backend_arg, fair, simulate, show, values, **kwargs):
8080
"""
81-
* * * SLiVER - Symbolic LAbS VERification. v1.6 (February 2021) * * *
81+
* * * SLiVER - Symbolic LAbS VERification. v1.7 (July 2021) * * *
8282
8383
FILE -- path of LABS file to analyze
8484

0 commit comments

Comments
 (0)