diff options
author | qadeer <qadeer@microsoft.com> | 2012-05-29 11:40:50 -0700 |
---|---|---|
committer | qadeer <qadeer@microsoft.com> | 2012-05-29 11:40:50 -0700 |
commit | 80f21079d9b8bdb92cdf3dd206dbe2b5049d52e0 (patch) | |
tree | 37b9d8a1c4b549146c1852b077be0ab1c4b5a636 /Source/BoogieDriver | |
parent | 37cdf90fc8d8fb0ddfb32d5017fecc8fa10346a6 (diff) |
Removed program argument from VerifyImplementation. It is redundant since the constructor of ConditionGeneration
takes a program reference and stashes it in a field.
Diffstat (limited to 'Source/BoogieDriver')
-rw-r--r-- | Source/BoogieDriver/BoogieDriver.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/BoogieDriver/BoogieDriver.cs b/Source/BoogieDriver/BoogieDriver.cs index 0911cbd3..44adce15 100644 --- a/Source/BoogieDriver/BoogieDriver.cs +++ b/Source/BoogieDriver/BoogieDriver.cs @@ -701,7 +701,7 @@ namespace Microsoft.Boogie { Console.WriteLine();
}
else {
- outcome = vcgen.VerifyImplementation(impl, program, out errors);
+ outcome = vcgen.VerifyImplementation(impl, out errors);
if (CommandLineOptions.Clo.ExtractLoops && vcgen is VCGen && errors != null) {
for (int i = 0; i < errors.Count; i++) {
errors[i] = (vcgen as VCGen).extractLoopTrace(errors[i], impl.Name, program, extractLoopMappingInfo);
|