summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/VC.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2014-07-10 13:47:44 +0200
committerGravatar wuestholz <unknown>2014-07-10 13:47:44 +0200
commit9abbf5e9060e152fb13c0cd5c9fbbdc3aba19f30 (patch)
treedd4ee649076e5b1a0db2cdc40542554a7f54be22 /Source/VCGeneration/VC.cs
parent5e52d81030d85b76cc6a0209617af8c21159755d (diff)
Worked on the more advanced verification result caching.
Diffstat (limited to 'Source/VCGeneration/VC.cs')
-rw-r--r--Source/VCGeneration/VC.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/VCGeneration/VC.cs b/Source/VCGeneration/VC.cs
index 239cecdb..18e47ac1 100644
--- a/Source/VCGeneration/VC.cs
+++ b/Source/VCGeneration/VC.cs
@@ -1623,15 +1623,13 @@ namespace VC {
// Report all recycled failing assertions for this implementation.
if (impl.RecycledFailingAssertions != null && impl.RecycledFailingAssertions.Any())
{
- // TODO(wuestholz): Uncomment this.
- // outcome = Outcome.Errors;
+ outcome = Outcome.Errors;
foreach (var a in impl.RecycledFailingAssertions)
{
var oldCex = impl.ErrorChecksumToCachedError[a.Checksum] as Counterexample;
if (oldCex != null)
{
- // TODO(wuestholz): Uncomment this.
- // callback.OnCounterexample(oldCex, null);
+ callback.OnCounterexample(oldCex, null);
}
}
}