summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorGravatar Michal Moskal <michal@moskal.me>2011-12-07 11:14:12 -0800
committerGravatar Michal Moskal <michal@moskal.me>2011-12-07 11:14:12 -0800
commitbe9a2d297ccd8900cccc750c15a9c02c9e23a83b (patch)
tree02cfb69273e847e8b68ecfc84d90a24fe40e5dbe /Source
parenta292a359149e852f658d33a268b175b4ba60fa38 (diff)
Fix atg file and add comment about Set/*Variable*/
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/AbsyExpr.cs2
-rw-r--r--Source/Core/BoogiePL.atg2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/AbsyExpr.cs b/Source/Core/AbsyExpr.cs
index 7e5651f2..86fda429 100644
--- a/Source/Core/AbsyExpr.cs
+++ b/Source/Core/AbsyExpr.cs
@@ -18,7 +18,7 @@ namespace Microsoft.Boogie {
using System.Diagnostics.Contracts;
using Microsoft.Basetypes;
- using Set = GSet<object>;
+ using Set = GSet<object>; // not that the set used is not a set of Variable only, as it also contains TypeVariables
//---------------------------------------------------------------------
diff --git a/Source/Core/BoogiePL.atg b/Source/Core/BoogiePL.atg
index c7950c9a..33172e7f 100644
--- a/Source/Core/BoogiePL.atg
+++ b/Source/Core/BoogiePL.atg
@@ -97,7 +97,7 @@ private class BvBounds : Expr {
Contract.Requires(stream != null);
{Contract.Assert(false);throw new cce.UnreachableException();}
}
- public override void ComputeFreeVariables(Set/*!*/ freeVars) {Contract.Requires(freeVars != null); {Contract.Assert(false);throw new cce.UnreachableException();} }
+ public override void ComputeFreeVariables(GSet<object>/*!*/ freeVars) {Contract.Requires(freeVars != null); {Contract.Assert(false);throw new cce.UnreachableException();} }
public override AI.IExpr/*!*/ IExpr { get { Contract.Ensures(Contract.Result<AI.IExpr>()!=null); {Contract.Assert(false);throw new cce.UnreachableException();} } }
}