Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed minor bug in Interpreter, and in tutorial file #1687

Merged
merged 6 commits into from
Jun 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions doc/tutorial/code/double.saw
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ let thm = {{ \x -> double_ref x == double_imp x }};
r <- prove yices thm;
print r;

r <- prove yices thm;
print r;

r <- prove z3 thm;
print r;

Expand Down
Binary file modified doc/tutorial/sawScriptTutorial.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion doc/tutorial/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ $include all code/double.c
In this trivial example, an integer can be doubled either using
multiplication or shifting. The following SAWScript program (in
`double.saw`) verifies that the two are equivalent using both internal
ABC, Yices, and Z3 modes, and by exporting an SMT-Lib theorem to be
Yices and Z3 modes, and by exporting an SMT-Lib theorem to be
checked later, by an external SAT solver.

```
Expand Down