diff -r 096d83158d41 -r 81b47fc5c444 lemon/preflow.h --- a/lemon/preflow.h Fri Mar 02 17:56:22 2007 +0000 +++ b/lemon/preflow.h Fri Mar 02 18:04:28 2007 +0000 @@ -234,8 +234,8 @@ ///give minimum value cuts unless calling \ref phase2(). void phase1() { - int heur0=(int)(H0*_node_num); //time while running 'bound decrease' - int heur1=(int)(H1*_node_num); //time while running 'highest label' + int heur0=int(H0*_node_num); //time while running 'bound decrease' + int heur1=int(H1*_node_num); //time while running 'highest label' int heur=heur1; //starting time interval (#of relabels) int numrelabel=0;