summaryrefslogtreecommitdiff
path: root/Source/Houdini
diff options
context:
space:
mode:
authorGravatar qadeer <qadeer@microsoft.com>2011-11-16 11:40:16 -0800
committerGravatar qadeer <qadeer@microsoft.com>2011-11-16 11:40:16 -0800
commitf99b8c0a6af826c2b74f1b4143520e080453e033 (patch)
tree9e3aad9a2ce558f88a4bc064faa31c55cbe94427 /Source/Houdini
parent1fc8bd36cc4320fa6a7796c05f6805ecb3594fc8 (diff)
Eliminated unused argument in the constructor for Checker
Diffstat (limited to 'Source/Houdini')
-rw-r--r--Source/Houdini/Checker.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Houdini/Checker.cs b/Source/Houdini/Checker.cs
index 97c22cc9..519a01af 100644
--- a/Source/Houdini/Checker.cs
+++ b/Source/Houdini/Checker.cs
@@ -50,7 +50,7 @@ namespace Microsoft.Boogie.Houdini {
ModelViewInfo mvInfo;
Hashtable/*TransferCmd->ReturnCmd*/ gotoCmdOrigins = PassifyImpl(impl, program, out mvInfo);
Hashtable/*<int, Absy!>*/ label2absy;
- checker = new Checker(this, program, logFilePath, appendLogFile, impl, CommandLineOptions.Clo.ProverKillTime);
+ checker = new Checker(this, program, logFilePath, appendLogFile, CommandLineOptions.Clo.ProverKillTime);
if (!(checker.TheoremProver is Z3ProcessTheoremProver || checker.TheoremProver is SMTLibProcessTheoremProver)) {
throw new Exception("HdnChecker only works with z3");
}