/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2020-2021 Daniel Baston * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation. * See the COPYING file for more information. * **********************************************************************/ #pragma once #include #include namespace geos { namespace index { namespace strtree { template class TemplateSTRNodePair { public: using Node = TemplateSTRNode; TemplateSTRNodePair(const Node &node1, const Node &node2, ItemDistance& id) : m_node1(&node1), m_node2(&node2), m_distance(distance(id)) {} bool isLeaves() const { return getFirst().isLeaf() && getSecond().isLeaf(); } double getDistance() const { return m_distance; } std::pair getItems() const { assert(isLeaves()); return std::make_pair(getFirst().getItem(), getSecond().getItem()); } const Node &getFirst() const { return *m_node1; } const Node &getSecond() const { return *m_node2; } double distance(ItemDistance& id) { if (isLeaves()) { return id(getFirst().getItem(), getSecond().getItem()); } else { return BoundsTraits::distance(getFirst().getBounds(), getSecond().getBounds()); } } double maximumDistance() { return BoundsTraits::maxDistance(getFirst().getBounds(), getSecond().getBounds()); } private: const Node* m_node1; const Node* m_node2; double m_distance; }; } } }