From 0241f36d26cd8dafdbe93ed53c1b4d1321d163f7 Mon Sep 17 00:00:00 2001 From: stephey Date: Wed, 23 Mar 2011 01:00:01 +0000 Subject: [PATCH] Jim told me to do this... --- Robust/src/Analysis/Disjoint/SMFEState.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Robust/src/Analysis/Disjoint/SMFEState.java b/Robust/src/Analysis/Disjoint/SMFEState.java index 9f9818f2..cce0a082 100644 --- a/Robust/src/Analysis/Disjoint/SMFEState.java +++ b/Robust/src/Analysis/Disjoint/SMFEState.java @@ -62,6 +62,7 @@ public class SMFEState { this.iHashCode = fnWhereDefined.hashCode(); effects = new HashSet(); + conflicts = new HashSet(); e2states = new Hashtable< Effect, Set >(); refCount = 0; } @@ -98,6 +99,8 @@ public class SMFEState { } public Set getConflicts() { + //TODO JIM! Fix this when have a chance! + conflicts.addAll(effects); return this.conflicts; } -- 2.34.1