#ifndef MIN_H #define MIN_H template inline L min(L l, R r) { if (l < r) { return l; }else{ return r; } } #endif // MIN_H