mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
Fix spelling errors
This commit is contained in:
parent
d5ee7e24bc
commit
6eaab00e83
15 changed files with 18 additions and 18 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue