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

Comparing Tree-M/MT/MTnode.cpp (file contents):
Revision 1.1 by root, Sun May 6 00:45:52 2001 UTC vs.
Revision 1.2 by root, Sun May 6 03:30:18 2001 UTC

23 23
24#include <string.h> 24#include <string.h>
25#include "MT.h" 25#include "MT.h"
26#include "MTpredicate.h" 26#include "MTpredicate.h"
27 27
28double MIN_UTIL; // minimum node utilization 28double MIN_UTIL = 0.35; // minimum node utilization
29pp_function PROMOTE_PART_FUNCTION; // promotion method 29pp_function PROMOTE_PART_FUNCTION = CONFIRMED; // promotion method
30pv_function PROMOTE_VOTE_FUNCTION; // confirmed promotion method (if needed) 30pv_function PROMOTE_VOTE_FUNCTION = mM_RAD; // confirmed promotion method (if needed)
31pp_function SECONDARY_PART_FUNCTION; // root promotion method (can't use stored distances): used only for confirmed and MAX_UB_DIST methods 31pp_function SECONDARY_PART_FUNCTION = RANDOM; // root promotion method (can't use stored distances): used only for confirmed and MAX_UB_DIST methods
32r_function RADIUS_FUNCTION; // mM_RAD promotion method (if needed) 32r_function RADIUS_FUNCTION = LB; // mM_RAD promotion method (if needed)
33int NUM_CANDIDATES; // number of candidates for sampling 33int NUM_CANDIDATES = 10; // number of candidates for sampling
34s_function SPLIT_FUNCTION; // split method 34s_function SPLIT_FUNCTION = BAL_G_HYPERPL; // split method
35 35
36extern int IOread; 36extern int IOread;
37 37
38// used to quick-sort the entries in a node according to their distance from the parent 38// used to quick-sort the entries in a node according to their distance from the parent
39int 39int

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines