34 #include "HilbertTriplet.hpp"
36 #ifndef _H_HILBERTTRIPLETCOMPARE
37 #define _H_HILBERTTRIPLETCOMPARE
40 template<
typename T >
55 if( ihilbert1 < jhilbert1 )
return true;
56 if( ihilbert1 > jhilbert1 )
return false;
59 if( ihilbert2 < jhilbert2 )
return true;
Hilbert-coordinate-aware triplet.
Definition: HilbertTriplet.hpp:46
size_t getLeastSignificantHilbertBits()
Definition: HilbertTriplet.hpp:107
Class-comparator of HilbertTriplet.
Definition: HilbertTripletCompare.hpp:41
size_t getMostSignificantHilbertBits()
Definition: HilbertTriplet.hpp:102
bool operator()(HilbertTriplet< T > i, HilbertTriplet< T > j)
Compares two Hilbert triplets.
Definition: HilbertTripletCompare.hpp:52