tupleMemory = new LeftTupleIndexHashTable( new FieldIndex[]{index} );
} else {
tupleMemory = new LeftTupleList();
}
RightTupleMemory factHandleMemory;
if ( this.conf.isIndexRightBetaMemory() ) {
factHandleMemory = new RightTupleIndexHashTable( new FieldIndex[]{index} );
} else {
factHandleMemory = new RightTupleList();
}