Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
threw an ArrayIndexOutOfBoundsException for the following use-case: // input: [1.0, 1.0, 1.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.0], dim=2 // the should-be result with the fix deep: [[1.0, 1.0, 1.0, 0.0, 0.0], [1.0, 0.0, 0.5, 0.0, 1.0]] // without the fix java.lang.ArrayIndexOutOfBoundsException: 5 at net.imglib2.kdtree.KDTreeUtils.unflatten(KDTreeUtils.java:229)
- Loading branch information