summaryrefslogtreecommitdiff
path: root/Source/ExecutionEngine/VerificationResultCache.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/ExecutionEngine/VerificationResultCache.cs')
-rw-r--r--Source/ExecutionEngine/VerificationResultCache.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/ExecutionEngine/VerificationResultCache.cs b/Source/ExecutionEngine/VerificationResultCache.cs
index eed92d31..e647ea3b 100644
--- a/Source/ExecutionEngine/VerificationResultCache.cs
+++ b/Source/ExecutionEngine/VerificationResultCache.cs
@@ -136,7 +136,7 @@ namespace Microsoft.Boogie
var p = ExecutionEngine.CachedProgram(vr.ProgramId);
if (p != null)
{
- SetAssertionChecksumsInPreviousSnapshot(impl, p);
+ SetAssertionChecksumsInCachedSnapshot(impl, p);
eai.Inject(impl, p);
run.RewrittenImplementationCount++;
}
@@ -154,7 +154,7 @@ namespace Microsoft.Boogie
var p = ExecutionEngine.CachedProgram(vr.ProgramId);
if (p != null)
{
- SetAssertionChecksumsInPreviousSnapshot(impl, p);
+ SetAssertionChecksumsInCachedSnapshot(impl, p);
}
}
}
@@ -202,12 +202,12 @@ namespace Microsoft.Boogie
}
}
- private static void SetAssertionChecksumsInPreviousSnapshot(Implementation implementation, Program program)
+ private static void SetAssertionChecksumsInCachedSnapshot(Implementation implementation, Program program)
{
- var implPrevSnap = program.FindImplementation(implementation.Id);
- if (implPrevSnap != null)
+ var cachedImpl = program.FindImplementation(implementation.Id);
+ if (cachedImpl != null)
{
- implementation.AssertionChecksumsInPreviousSnapshot = implPrevSnap.AssertionChecksums;
+ implementation.AssertionChecksumsInCachedSnapshot = cachedImpl.AssertionChecksums;
}
}