ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Tree-M/MT/MTcursor.h
(Generate patch)

Comparing Tree-M/MT/MTcursor.h (file contents):
Revision 1.1 by root, Sun May 6 00:45:52 2001 UTC vs.
Revision 1.2 by root, Fri Jul 27 12:48:23 2001 UTC

40class MTpred; 40class MTpred;
41 41
42class dst { // this class is used in the NN-search algorithm for the priority queue 42class dst { // this class is used in the NN-search algorithm for the priority queue
43public: 43public:
44 dst(): bound(0), d(MAXDOUBLE) {} 44 dst(): bound(0), d(MAXDOUBLE) {}
45 dst(GiSTpath p, double LB, double dist): path(p), bound(LB), d(dist) {} 45 dst(GiSTpath p, double LB, double dist): bound(LB), d(dist), path(p) {}
46 46
47 double Bound() const { return bound; } 47 double Bound() const { return bound; }
48 double Dist() const { return d; } 48 double Dist() const { return d; }
49 GiSTpath Path() { return path; } 49 GiSTpath Path() { return path; }
50private: 50private:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines