The Tiny HTM Library
|
00001 00007 #ifndef HTM_SELECT_H 00008 #define HTM_SELECT_H 00009 00010 #include "common.h" 00011 00012 #ifdef __cplusplus 00013 extern "C" { 00014 #endif 00015 00038 double htm_select(double *array, size_t n, size_t k); 00039 00056 double htm_selectmm(double *array, size_t n, size_t k); 00057 00067 double htm_min(const double *array, size_t n); 00068 00072 #ifdef __cplusplus 00073 } 00074 #endif 00075 00076 #endif /* HTM_SELECT_H */ 00077