utils.h 229 B

1234567891011
  1. #ifndef _UTILS_H_
  2. #define _UTILS_H_
  3. #include "types.h"
  4. pyReal distSquared(const pyReal * u, const pyReal * v, const pyWord nFeatures);
  5. int initNbhHeaps(SearchParams * params);
  6. void freeNbhHeaps(SearchParams * params);
  7. #endif