KratosMultiphysics
KRATOS Multiphysics (Kratos) is a framework for building parallel, multi-disciplinary simulation software, aiming at modularity, extensibility, and high performance. Kratos is written in C++, and counts with an extensive Python interface.
|
Short class definition. More...
#include <kd_tree.h>
Public Member Functions | |
Life Cycle | |
KDTreePartitionBase (IndexType CutingDimension, CoordinateType Position, CoordinateType LeftEnd, CoordinateType RightEnd, TreeNodeType *pLeftChild=NULL, TreeNodeType *pRightChild=NULL) | |
Partition constructor. More... | |
void | PrintData (std::ostream &rOStream, std::string const &Perfix=std::string()) const override |
virtual | ~KDTreePartitionBase () |
Destructor. More... | |
Public Member Functions inherited from Kratos::TreeNode< TLeafType::Dimension, TLeafType::PointType, TLeafType::PointerType, TLeafType::IteratorType, TLeafType::DistanceIteratorType > | |
KRATOS_CLASS_POINTER_DEFINITION (TreeNode) | |
Pointer definition of TreeNode. More... | |
TreeNode () | |
virtual | ~TreeNode () |
virtual void | SearchNearestPoint (PointType const &ThisPoint, PointerType &rResult, CoordinateType &rResultDistance) |
virtual void | SearchNearestPoint (PointType const &ThisPoint, PointerType &rResult, CoordinateType &rResultDistance, SearchStructureType &Auxiliar) |
virtual void | SearchInRadius (PointType const &ThisPoint, CoordinateType const &Radius, CoordinateType const &Radius2, IteratorType &Results, DistanceIteratorType &ResultsDistances, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults) |
virtual void | SearchInRadius (PointType const &ThisPoint, CoordinateType const &Radius, CoordinateType const &Radius2, IteratorType &Results, DistanceIteratorType &ResultsDistances, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults, SearchStructureType &Auxiliar) |
virtual void | SearchInRadius (PointType const &ThisPoint, CoordinateType const &Radius, CoordinateType const &Radius2, IteratorType &Results, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults) |
virtual void | SearchInRadius (PointType const &ThisPoint, CoordinateType const &Radius, CoordinateType const &Radius2, IteratorType &Results, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults, SearchStructureType &Auxiliar) |
virtual void | SearchInBox (PointType const &SearchMinPoint, PointType const &SearchMaxPoint, IteratorType &Results, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults) |
Type Definitions | |
enum | { Dimension = LeafType::Dimension } |
typedef TLeafType | LeafType |
typedef LeafType::PointType | PointType |
typedef LeafType::ContainerType | ContainerType |
typedef LeafType::IteratorType | IteratorType |
typedef LeafType::DistanceIteratorType | DistanceIteratorType |
typedef LeafType::PointerType | PointerType |
typedef LeafType::DistanceFunction | DistanceFunction |
typedef TreeNode< Dimension, PointType, PointerType, IteratorType, DistanceIteratorType > | TreeNodeType |
typedef TreeNodeType::CoordinateType | CoordinateType |
typedef TreeNodeType::SizeType | SizeType |
typedef TreeNodeType::IndexType | IndexType |
typedef LeafType::SearchStructureType | SearchStructureType |
KRATOS_CLASS_POINTER_DEFINITION (KDTreePartitionBase) | |
Pointer definition of KDTree. More... | |
Operations | |
void | SearchNearestPoint (PointType const &rThisPoint, PointerType &rResult, CoordinateType &rResultDistance) override |
void | SearchNearestPoint (PointType const &rThisPoint, PointerType &rResult, CoordinateType &rResultDistance, SearchStructureType &Auxiliar) override |
void | SearchInRadius (PointType const &ThisPoint, CoordinateType const &Radius, CoordinateType const &Radius2, IteratorType &Results, DistanceIteratorType &ResultsDistances, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults) override |
void | SearchInRadius (PointType const &ThisPoint, CoordinateType const &Radius, CoordinateType const &Radius2, IteratorType &Results, DistanceIteratorType &ResultsDistances, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults, SearchStructureType &Auxiliar) override |
void | SearchInRadius (PointType const &ThisPoint, CoordinateType const &Radius, CoordinateType const &Radius2, IteratorType &Results, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults) override |
void | SearchInRadius (PointType const &ThisPoint, CoordinateType const &Radius, CoordinateType const &Radius2, IteratorType &Results, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults, SearchStructureType &Auxiliar) override |
void | SearchInBox (PointType const &SearchMinPoint, PointType const &SearchMaxPoint, IteratorType &Results, SizeType &NumberOfResults, SizeType const &MaxNumberOfResults) override |
Additional Inherited Members | |
Public Types inherited from Kratos::TreeNode< TLeafType::Dimension, TLeafType::PointType, TLeafType::PointerType, TLeafType::IteratorType, TLeafType::DistanceIteratorType > | |
using | SizeType = std::size_t |
Define SizeType as std::size_t. More... | |
using | IndexType = std::size_t |
Define IndexType as std::size_t. More... | |
using | CoordinateType = double |
Define CoordinateType as double. More... | |
using | PointType = TLeafType::PointType |
Define PointType as TPointType. More... | |
using | PointerType = TLeafType::PointerType |
Define PointerType as TPointerType. More... | |
using | IteratorType = TLeafType::IteratorType |
Define IteratorType as TIteratorType. More... | |
using | DistanceIteratorType = TLeafType::DistanceIteratorType |
Define DistanceIteratorType as TDistanceIteratorType. More... | |
using | TreeNodeType = TreeNode< TDimension, TLeafType::PointType, TLeafType::PointerType, TLeafType::IteratorType, TLeafType::DistanceIteratorType > |
Define TreeNodeType as a TreeNode type with the given template arguments. More... | |
using | IteratorIteratorType = typename std::vector< IteratorType >::iterator |
Define IteratorIteratorType as an iterator type for a vector of IteratorType. More... | |
using | SearchStructureType = SearchStructure< IndexType, SizeType, CoordinateType, TLeafType::IteratorType, IteratorIteratorType, TDimension > |
Define SearchStructureType as a SearchStructure type with the given template arguments. More... | |
Static Public Member Functions inherited from Kratos::TreeNode< TLeafType::Dimension, TLeafType::PointType, TLeafType::PointerType, TLeafType::IteratorType, TLeafType::DistanceIteratorType > | |
static IteratorType & | NullIterator () |
static PointerType & | NullPointer () |
static TreeNode & | NullLeaf () |
Short class definition.
Detail class definition.
typedef LeafType::ContainerType Kratos::KDTreePartitionBase< TLeafType >::ContainerType |
typedef TreeNodeType::CoordinateType Kratos::KDTreePartitionBase< TLeafType >::CoordinateType |
typedef LeafType::DistanceFunction Kratos::KDTreePartitionBase< TLeafType >::DistanceFunction |
typedef LeafType::DistanceIteratorType Kratos::KDTreePartitionBase< TLeafType >::DistanceIteratorType |
typedef TreeNodeType::IndexType Kratos::KDTreePartitionBase< TLeafType >::IndexType |
typedef LeafType::IteratorType Kratos::KDTreePartitionBase< TLeafType >::IteratorType |
typedef TLeafType Kratos::KDTreePartitionBase< TLeafType >::LeafType |
typedef LeafType::PointerType Kratos::KDTreePartitionBase< TLeafType >::PointerType |
typedef LeafType::PointType Kratos::KDTreePartitionBase< TLeafType >::PointType |
typedef LeafType::SearchStructureType Kratos::KDTreePartitionBase< TLeafType >::SearchStructureType |
typedef TreeNodeType::SizeType Kratos::KDTreePartitionBase< TLeafType >::SizeType |
typedef TreeNode<Dimension,PointType, PointerType, IteratorType, DistanceIteratorType> Kratos::KDTreePartitionBase< TLeafType >::TreeNodeType |
|
inline |
Partition constructor.
|
inlinevirtual |
Destructor.
Kratos::KDTreePartitionBase< TLeafType >::KRATOS_CLASS_POINTER_DEFINITION | ( | KDTreePartitionBase< TLeafType > | ) |
Pointer definition of KDTree.
|
inlineoverridevirtual |
|
inlineoverride |
|
inlineoverride |
|
inlineoverride |
|
inlineoverride |
|
inlineoverride |
|
inlineoverride |
|
inlineoverride |