// utility functions #ifndef UTILH #define UTILH #include #include void error( char s[] ); int min( int i, int j); inline double sq( double x ) { return x*x; } #endif