summaryrefslogtreecommitdiff
path: root/Source/Core/AbsyCmd.cs
diff options
context:
space:
mode:
authorGravatar Ally Donaldson <unknown>2013-07-22 15:10:27 +0100
committerGravatar Ally Donaldson <unknown>2013-07-22 15:10:27 +0100
commit57fb103b7ae870973544f957ae1c230dbf570cdb (patch)
tree6fb2a02844e487dea5708016cbe882fffbdf8e46 /Source/Core/AbsyCmd.cs
parent5664c5e30f16b74eae4cdcb0b9ba65d5b030c815 (diff)
Changed Has method of PureSequence to Contains to make refactoring easier.
Diffstat (limited to 'Source/Core/AbsyCmd.cs')
-rw-r--r--Source/Core/AbsyCmd.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/AbsyCmd.cs b/Source/Core/AbsyCmd.cs
index 47f5505e..15a9fff7 100644
--- a/Source/Core/AbsyCmd.cs
+++ b/Source/Core/AbsyCmd.cs
@@ -2176,7 +2176,7 @@ namespace Microsoft.Boogie {
newBlockBody.Add(assign);
// fra
- if (!havocVarExprs.Has(f))
+ if (!havocVarExprs.Contains(f))
havocVarExprs.Add(f);
}
#endregion
@@ -2200,7 +2200,7 @@ namespace Microsoft.Boogie {
IdentifierExpr ie = new IdentifierExpr(cout.tok, cout);
substMap.Add(param, ie);
- if (!havocVarExprs.Has(ie))
+ if (!havocVarExprs.Contains(ie))
havocVarExprs.Add(ie);
}
// add the where clauses, now that we have the entire substitution map