You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by kw...@apache.org on 2016/06/01 13:17:42 UTC

[1/2] lucene-solr:master: LUCENE-7310: Increase bounds slop factor by 2x to cover a specific failure.

Repository: lucene-solr
Updated Branches:
  refs/heads/master 34d9f0a7a -> 770c6ddf2


LUCENE-7310: Increase bounds slop factor by 2x to cover a specific failure.


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/e990bd53
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/e990bd53
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/e990bd53

Branch: refs/heads/master
Commit: e990bd534a76686b606ddad024c300504ca3c24c
Parents: 18256fc
Author: Karl Wright <Da...@gmail.com>
Authored: Wed Jun 1 09:17:16 2016 -0400
Committer: Karl Wright <Da...@gmail.com>
Committed: Wed Jun 1 09:17:16 2016 -0400

----------------------------------------------------------------------
 .../src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/e990bd53/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java
----------------------------------------------------------------------
diff --git a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java
index c895743..9f44157 100644
--- a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java
+++ b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java
@@ -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 * 500.0;
+  private static final double FUDGE_FACTOR = Vector.MINIMUM_RESOLUTION * 1000.0;
   
   /** Minimum x */
   private Double minX = null;