3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-04 14:25:46 +00:00

Merge pull request #675 from FabianWolff/master

Fix spelling errors
This commit is contained in:
Christoph M. Wintersteiger 2016-07-09 17:32:10 +01:00 committed by GitHub
commit 7cf80845fd
15 changed files with 18 additions and 18 deletions

View file

@ -6,7 +6,7 @@ Module Name:
cmd_util.cpp
Abstract:
Macros for definining new SMT2 front-end cmds.
Macros for defining new SMT2 front-end cmds.
Author:

View file

@ -6,7 +6,7 @@ Module Name:
cmd_util.h
Abstract:
Macros for definining new SMT2 front-end cmds.
Macros for defining new SMT2 front-end cmds.
Author:

View file

@ -97,7 +97,7 @@ void help_tactic(cmd_context & ctx) {
buf << "- (or-else <tactic>+) tries the given tactics in sequence until one of them succeeds (i.e., the first that doesn't fail).\n";
buf << "- (par-or <tactic>+) executes the given tactics in parallel until one of them succeeds (i.e., the first that doesn't fail).\n";
buf << "- (par-then <tactic1> <tactic2>) executes tactic1 and then tactic2 to every subgoal produced by tactic1. All subgoals are processed in parallel.\n";
buf << "- (try-for <tactic> <num>) excutes the given tactic for at most <num> milliseconds, it fails if the execution takes more than <num> milliseconds.\n";
buf << "- (try-for <tactic> <num>) executes the given tactic for at most <num> milliseconds, it fails if the execution takes more than <num> milliseconds.\n";
buf << "- (if <probe> <tactic> <tactic>) if <probe> evaluates to true, then execute the first tactic. Otherwise execute the second.\n";
buf << "- (when <probe> <tactic>) shorthand for (if <probe> <tactic> skip).\n";
buf << "- (fail-if <probe>) fail if <probe> evaluates to true.\n";