/** \file util.h Generic utilities library. */ #ifndef FISH_UTIL_H #define FISH_UTIL_H #include #include #include /** Returns the larger of two ints */ template static inline T maxi(T a, T b) { return a>b?a:b; } /** Returns the smaller of two ints */ template static inline T mini(T a, T b) { return a