summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/Check.cs
diff options
context:
space:
mode:
authorGravatar qadeer <qadeer@microsoft.com>2012-02-28 11:26:36 -0800
committerGravatar qadeer <qadeer@microsoft.com>2012-02-28 11:26:36 -0800
commitb57156a672830930d62a48a54256181848950cc2 (patch)
tree5d19592c2c91ab0cbada9b0a0c83d2019b9bd09d /Source/VCGeneration/Check.cs
parent747c773165cadabc9f82d65a52ab26e5ae1ec9d9 (diff)
fixed up SI to work with new error trace generation
Diffstat (limited to 'Source/VCGeneration/Check.cs')
-rw-r--r--Source/VCGeneration/Check.cs6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/VCGeneration/Check.cs b/Source/VCGeneration/Check.cs
index 73ca71b2..5176d494 100644
--- a/Source/VCGeneration/Check.cs
+++ b/Source/VCGeneration/Check.cs
@@ -734,10 +734,6 @@ namespace Microsoft.Boogie {
Undetermined
}
public class ErrorHandler {
- public virtual void OnModel(Dictionary<int, IList<string>> labels, ErrorModel errModel) {
-
- }
-
public virtual void OnModel(IList<string> labels, ErrorModel errModel) {
Contract.Requires(cce.NonNullElements(labels));
}
@@ -774,7 +770,7 @@ namespace Microsoft.Boogie {
public abstract void BeginCheck(string descriptiveName, VCExpr vc, ErrorHandler handler);
[NoDefaultContract]
public abstract Outcome CheckOutcome(ErrorHandler handler);
- public virtual Outcome CheckOutcome(ErrorHandler handler, IEnumerable<int> controlFlowConstants) {
+ public virtual string[] CalculatePath(int controlFlowConstant) {
throw new System.NotImplementedException();
}
public virtual void LogComment(string comment) {