﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
197	linear time membership test in loop module	Stephen Siegel		"The following code is in loop.StateFactory.java.    This is not the way to tell if a set contains an element.   It has time O(n) instead of O(1) (for a hash table) or O(log n) (for a binary tree).

Don't fix yet--I am still debugging.

{{{
		for (State temp : this.stateMap.values()) {
			if (temp.equals(state)) {
				return false;
			}
		}
}}}
"	defect	closed	major	Release 1.0	verify	1.0	fixed		
