summaryrefslogtreecommitdiff
path: root/Source/Provers/Z3
diff options
context:
space:
mode:
authorGravatar MichalMoskal <unknown>2011-02-11 19:37:42 +0000
committerGravatar MichalMoskal <unknown>2011-02-11 19:37:42 +0000
commitafb3de0ebf0539a89f2073a74f76bd811bee06c0 (patch)
tree32149207e61a851c614344c4ada8ca792cb0b483 /Source/Provers/Z3
parent3b7e0b36496f504ae62acc61294d5b399feaf11c (diff)
Get rid of -smtOutput option. Add /proverOpt:OUTPUT=... to SMT and TPTP provers. Add handling of help message about /proverOpt.
Diffstat (limited to 'Source/Provers/Z3')
-rw-r--r--Source/Provers/Z3/ProverInterface.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Provers/Z3/ProverInterface.cs b/Source/Provers/Z3/ProverInterface.cs
index af9668d4..9fd87127 100644
--- a/Source/Provers/Z3/ProverInterface.cs
+++ b/Source/Provers/Z3/ProverInterface.cs
@@ -123,7 +123,7 @@ void ObjectInvariant()
base.Parse(opt);
}
- protected override void PostParse()
+ public override void PostParse()
{
base.PostParse();
@@ -133,12 +133,11 @@ void ObjectInvariant()
}
}
- public string Help
+ public override string Help
{
get
{
- return
- // base.Help +
+ return
@"
Z3-specific options:
~~~~~~~~~~~~~~~~~~~~
@@ -149,7 +148,8 @@ Obscure options:
~~~~~~~~~~~~~~~~
DIST=<bool> Use z3-dist.exe binary.
REVERSE_IMPLIES=<bool> Encode P==>Q as Q||!P.
-";
+
+" + base.Help;
// DIST requires non-public binaries
}
}