LUCENE-7290: Decrease MINIMUM_RESOLUTION, since it's too big for at least one test case.

This commit is contained in:
Karl Wright 2016-05-18 20:34:49 -04:00
parent 76d4dea086
commit f4f1d8adc5
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public class Vector {
* Values that are all considered to be essentially zero have a magnitude
* less than this.
*/
public static final double MINIMUM_RESOLUTION = 1.0e-12;
public static final double MINIMUM_RESOLUTION = 1.0e-13;
/**
* For squared quantities, the bound is squared too.
*/