/** * Excludes points around the index i1,i2. * * @param i1 index in the fastest dim. * @param i2 index in the slowest dim. */ public void excludeAt(int i1, int i2) { if (_poiArray == null) { System.err.println("A PointOfInterest Array was not been declared."); System.exit(-1); } if (_threaded) excludeThreaded(i1, i2); else excludeLoop(i1, i2); }
static { System.loadLibrary("jrsf"); }