LUCENE-7290: Restore XYZBounds fudge factor to its previous value.

This commit is contained in:
Karl Wright 2016-05-20 13:54:09 -04:00
parent 908225d174
commit c0784d29bd
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public class XYZBounds implements Bounds {
* unacceptably large.
* Also, see LUCENE-7290 for a description of how geometry can magnify the bounds delta.
*/
private static final double FUDGE_FACTOR = Vector.MINIMUM_RESOLUTION * 100.0;
private static final double FUDGE_FACTOR = Vector.MINIMUM_RESOLUTION * 500.0;
/** Minimum x */
private Double minX = null;