diff options
author | MichalMoskal <unknown> | 2011-02-17 19:00:30 +0000 |
---|---|---|
committer | MichalMoskal <unknown> | 2011-02-17 19:00:30 +0000 |
commit | 6b85a0f0d4f88b6ad57812175354acf3a2947a0e (patch) | |
tree | c214ed7a953471eaf2689a6b7517cd0ead5fb9bf /Source/Core | |
parent | 12027267b93833110c0a1a044e1bc80ebf6e7b29 (diff) |
Provide /p: as the short form of /proverOpt:.
Add /p:O:<name>=<value> and /p:C:<solver-argument> prover options in SMT.
Add default Z3 options when using Z3.
Diffstat (limited to 'Source/Core')
-rw-r--r-- | Source/Core/CommandLineOptions.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs index 0c47754b..4396d837 100644 --- a/Source/Core/CommandLineOptions.cs +++ b/Source/Core/CommandLineOptions.cs @@ -1063,6 +1063,8 @@ namespace Microsoft.Boogie { }
break;
+ case "-p":
+ case "/p":
case "-proverOpt":
case "/proverOpt":
if (ps.ConfirmArgumentCount(1)) {
@@ -2242,7 +2244,7 @@ namespace Microsoft.Boogie { SMTLib (only writes to a file)
ContractInference (uses Z3)
Z3api (Z3 using Managed .NET API)
- /proverOpt:KEY[=VALUE] : Provide a prover-specific option.
+ /proverOpt:KEY[=VALUE] : Provide a prover-specific option (short form /p).
/proverLog:<file> : Log input for the theorem prover. Like filenames
supplied as arguments to other options, <file> can use the
following macros:
|