summaryrefslogtreecommitdiff
path: root/Source/Concurrency/CivlTypeChecker.cs
diff options
context:
space:
mode:
authorGravatar Shaz Qadeer <qadeer@microsoft.com>2015-10-01 09:40:42 -0700
committerGravatar Shaz Qadeer <qadeer@microsoft.com>2015-10-01 09:40:42 -0700
commitc1b06a908ab1ed746672dd42eaf9417916a297cc (patch)
tree4c7669f9f6303936e2c7d45916a1a457ffa05090 /Source/Concurrency/CivlTypeChecker.cs
parent597a558b2fde558b7f5c581481fd51258aa37c46 (diff)
another fix requested by Chris
verification is performed now for all created layers
Diffstat (limited to 'Source/Concurrency/CivlTypeChecker.cs')
-rw-r--r--Source/Concurrency/CivlTypeChecker.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/Source/Concurrency/CivlTypeChecker.cs b/Source/Concurrency/CivlTypeChecker.cs
index dba7ab4b..5215bc52 100644
--- a/Source/Concurrency/CivlTypeChecker.cs
+++ b/Source/Concurrency/CivlTypeChecker.cs
@@ -486,26 +486,6 @@ namespace Microsoft.Boogie
}
}
- private HashSet<int> allImplementedLayerNums;
- public IEnumerable<int> AllImplementedLayerNums
- {
- get
- {
- if (allImplementedLayerNums == null)
- {
- allImplementedLayerNums = new HashSet<int>();
- foreach (ActionInfo actionInfo in procToActionInfo.Values)
- {
- if (actionInfo.hasImplementation)
- {
- allImplementedLayerNums.Add(actionInfo.createdAtLayerNum);
- }
- }
- }
- return allImplementedLayerNums;
- }
- }
-
private HashSet<int> allCreatedLayerNums;
public IEnumerable<int> AllCreatedLayerNums
{