#ifndef btc_is_trivial_int_range_H #define btc_is_trivial_int_range_H /* Checking whether the range of an integer BTC price bubble parameter is trivial. */ /* Last edited on 2015-04-20 01:07:04 by stolfilocal */ #include bool_t btc_is_trivial_int_range(int vlo, int v, int vhi, int ib, char* vname, bool_t die); /* Checks whether the interval {vlo..vhi} is trivial. If it is, returns {THUE}; if not, returns {FALSE} when {die} is {FALSE}, fails if {die} is TRUE. In any case, checks that {vlo <= v <= vhi}, fails if not. The bubble index {ib} and the field name {*vname} are printed if error. */ #endif