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 cc26341345
commit 56bae72a45
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 * Values that are all considered to be essentially zero have a magnitude
* less than this. * 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. * For squared quantities, the bound is squared too.
*/ */