00001 #include "bary.h" 00002 void init_barycentering (void); 00003 void barycentering (void); 00004 00005 int main() 00006 { 00007 max_baryiterations=1000; 00008 maxdepth=100; 00009 init_barycentering(); 00010 00011 // level_to_array needs to have the following data :a 00012 // (tmp_layer[i]).succlist is read, following the next 00013 // sort_array is filled 00014 00015 barycentering (); 00016 00017 00018 }