mirror of https://github.com/apache/lucene.git
LUCENE-7290: Decrease MINIMUM_RESOLUTION, since it's too big for at least one test case.
This commit is contained in:
parent
cc26341345
commit
56bae72a45
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue