summaryrefslogtreecommitdiff
path: root/Source/Provers/SMTLib/ProverInterface.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-07-05 15:37:01 -0700
committerGravatar wuestholz <unknown>2013-07-05 15:37:01 -0700
commit5fe9141ded93f6eab4e213c1d082b68ac557d81a (patch)
tree3db41e56be528544400e7f7b01325ec1162b2665 /Source/Provers/SMTLib/ProverInterface.cs
parentff756ddf4bb171ff6398199bfecf1d1f46a54225 (diff)
Worked on the parallelization.
Diffstat (limited to 'Source/Provers/SMTLib/ProverInterface.cs')
-rw-r--r--Source/Provers/SMTLib/ProverInterface.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/Provers/SMTLib/ProverInterface.cs b/Source/Provers/SMTLib/ProverInterface.cs
index 6e01ef26..9f82fd4a 100644
--- a/Source/Provers/SMTLib/ProverInterface.cs
+++ b/Source/Provers/SMTLib/ProverInterface.cs
@@ -395,7 +395,13 @@ namespace Microsoft.Boogie.SMTLib
FlushLogFile();
}
- public void Reset()
+ public override void Reset()
+ {
+ SendThisVC("(reset)");
+ Process.Send(common.ToString());
+ }
+
+ public override void FullReset()
{
SendThisVC("(reset)");
common.Clear();