--- trunk/OOPSE/libmdtools/SimInfo.cpp 2003/11/10 21:50:36 859 +++ trunk/OOPSE/libmdtools/SimInfo.cpp 2003/11/11 17:20:12 860 @@ -20,6 +20,9 @@ inline double roundMe( double x ){ return ( x >= 0 ) ? floor( x + 0.5 ) : ceil( x - 0.5 ); } +inline double min( double a, double b ){ + return (a < b ) ? a : b; +} SimInfo* currentInfo;