for (int i = 0; i < nCols; i++) lookupValues[0][i] = 0; GuidedLoopInterchangedHandler loop = new GuidedLoopInterchangedHandler(nCols, nThreads); for (j = 1; j < nRows; j++) loop.loopProcess(); return lookupValues;
this.nRows = nRows; this.nCols = nCols; this.nThreads = nThreads; lookupValues = new float[nRows][]; for (int j = 0; j < nRows; j++) { lookupValues[j] = new float[nCols]; }