#ifndef MIN_T #define MIN_T 1 template T Min( const T & a, const T & b) { if (a < b) { return a; } else { return b; } } #endif