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