betaMemory.getRightTupleMemory().add( new RightTuple( fh8, null ) );
betaMemory.getRightTupleMemory().add( new RightTuple( fh9, null ) );
RightTupleIndexHashTable hashTable = (RightTupleIndexHashTable) betaMemory.getRightTupleMemory();
// can't create a 0 hashCode, so forcing
RightTupleList rightTupleList = new RightTupleList();
rightTupleList.add( new RightTuple( fh10, null) );
hashTable.getTable()[0] = rightTupleList;
rightTupleList = new RightTupleList();
rightTupleList.add( new RightTuple( fh11, null ) );
rightTupleList.add( new RightTuple( fh12, null ) );
rightTupleList.add( new RightTuple( fh13, null ) );
((RightTupleList)hashTable.getTable()[0]).setNext( rightTupleList );
Entry[] table = hashTable.getTable();
List list = new ArrayList();
for ( int i = 0; i < table.length; i++ ) {