#include <vector>#include <stack>#include <iostream>#include "fastjet/internal/ClosestPair2DBase.hh"#include "fastjet/internal/SearchTree.hh"#include "fastjet/internal/MinHeap.hh"Include dependency graph for ClosestPair2D.hh:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Namespaces | |
| namespace | fastjet |
Functions | |
| bool | floor_ln2_less (unsigned x, unsigned y) |
| returns true if floor(ln_base2(x)) < floor(ln_base2(y)), using Chan's neat trick. | |
|
||||||||||||
|
returns true if floor(ln_base2(x)) < floor(ln_base2(y)), using Chan's neat trick. .. Definition at line 212 of file ClosestPair2D.hh. Referenced by fastjet::ClosestPair2D::Shuffle::operator<(). 00212 {
00213 if (x>y) return false;
00214 return (x < (x^y)); // beware of operator precedence...
00215 }
|
1.4.2