#include <Comparator.h>
Public Member Functions | |
KeyDistanceComparator (const OverlayKey &relativeKey, uint32_t bitsPerDigit=1) | |
constructor | |
int | compare (const OverlayKey &lhs, const OverlayKey &rhs) const |
indicates which of the two given keys has a longer distance to the relative key | |
Private Attributes | |
KeyPrefixMetric | m |
indicates which metric to use for the comparison | |
OverlayKey | key |
the relative key to which distances are compared |
Definition at line 225 of file Comparator.h.
KeyDistanceComparator< KeyPrefixMetric >::KeyDistanceComparator | ( | const OverlayKey & | relativeKey, | |
uint32_t | bitsPerDigit = 1 | |||
) | [inline] |
constructor
Definition at line 235 of file Comparator.h.
00236 { 00237 key = relativeKey; 00238 m.setBitsPerDigit(bitsPerDigit); 00239 }
int KeyDistanceComparator< KeyPrefixMetric >::compare | ( | const OverlayKey & | lhs, | |
const OverlayKey & | rhs | |||
) | const [inline, virtual] |
indicates which of the two given keys has a longer distance to the relative key
lhs | first key | |
rhs | second key |
Reimplemented from Comparator< OverlayKey >.
Definition at line 249 of file Comparator.h.
OverlayKey KeyDistanceComparator< KeyPrefixMetric >::key [private] |
the relative key to which distances are compared
Definition at line 229 of file Comparator.h.
KeyPrefixMetric KeyDistanceComparator< KeyPrefixMetric >::m [private] |
indicates which metric to use for the comparison
Definition at line 228 of file Comparator.h.