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
76d4dea086
commit
f4f1d8adc5
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue