--- trunk/src/utils/Utility.hpp 2005/04/15 22:04:00 507 +++ trunk/src/utils/Utility.hpp 2006/05/17 21:51:42 963 @@ -43,10 +43,11 @@ #define UTILS_UTILITY_HPP #include #include +#include "config.h" #include "utils/next_combination.hpp" namespace oopse { - inline double roundMe( double x ){ + inline RealType roundMe( RealType x ){ return ( x >= 0 ) ? floor( x + 0.5 ) : ceil( x - 0.5 ); }