You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by iv...@apache.org on 2019/10/14 17:36:14 UTC

[lucene-solr] branch master updated (a4ac3fe -> 68a3886)

This is an automated email from the ASF dual-hosted git repository.

ivera pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from a4ac3fe  LUCENE-9003: Compute numDocs() lazily. (#939)
     add 68a3886  LUCENE-8746: Refactor EdgeTree  (#878)

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |   3 +
 .../LatLonDocValuesPointInPolygonQuery.java        |   5 +-
 .../lucene/document/LatLonPointInPolygonQuery.java |  21 +-
 .../java/org/apache/lucene/geo/Component2D.java    |  96 ++++
 .../java/org/apache/lucene/geo/ComponentTree.java  | 206 +++++++++
 .../src/java/org/apache/lucene/geo/EdgeTree.java   | 495 ++++++++-------------
 .../org/apache/lucene/geo/GeoEncodingUtils.java    |  17 +-
 .../src/java/org/apache/lucene/geo/Polygon2D.java  | 219 ++++-----
 .../test/org/apache/lucene/geo/TestPolygon2D.java  |  88 ++--
 .../lucene/document/LatLonShapeLineQuery.java      |   5 +-
 .../lucene/document/LatLonShapePolygonQuery.java   |   5 +-
 .../apache/lucene/document/XYShapeLineQuery.java   |  13 +-
 .../lucene/document/XYShapePolygonQuery.java       |   6 +-
 .../src/java/org/apache/lucene/geo/Line2D.java     | 126 ++++--
 .../java/org/apache/lucene/geo/XYPolygon2D.java    |  10 +-
 .../lucene/document/BaseLatLonShapeTestCase.java   |   5 +-
 .../lucene/document/BaseShapeEncodingTestCase.java |   6 +-
 .../apache/lucene/document/BaseShapeTestCase.java  |  17 +-
 .../lucene/document/BaseXYShapeTestCase.java       |   5 +-
 .../document/TestLatLonLineShapeQueries.java       |  19 +-
 .../document/TestLatLonMultiLineShapeQueries.java  |  22 +-
 .../document/TestLatLonMultiPointShapeQueries.java |  22 +-
 .../TestLatLonMultiPolygonShapeQueries.java        |  22 +-
 .../document/TestLatLonPointShapeQueries.java      |  18 +-
 .../document/TestLatLonPolygonShapeQueries.java    |  18 +-
 .../apache/lucene/document/TestLatLonShape.java    |  11 +-
 .../lucene/document/TestLatLonShapeEncoding.java   |   3 +-
 .../lucene/document/TestXYLineShapeQueries.java    |  19 +-
 .../document/TestXYMultiLineShapeQueries.java      |  22 +-
 .../document/TestXYMultiPointShapeQueries.java     |  22 +-
 .../document/TestXYMultiPolygonShapeQueries.java   |  22 +-
 .../lucene/document/TestXYPointShapeQueries.java   |  18 +-
 .../lucene/document/TestXYPolygonShapeQueries.java |  18 +-
 .../lucene/document/TestXYShapeEncoding.java       |   3 +-
 .../src/test/org/apache/lucene/geo/TestLine2D.java |  18 +-
 35 files changed, 826 insertions(+), 799 deletions(-)
 create mode 100644 lucene/core/src/java/org/apache/lucene/geo/Component2D.java
 create mode 100644 lucene/core/src/java/org/apache/lucene/geo/ComponentTree.java