cantera/Cantera/src/sort.h
2003-04-14 17:57:48 +00:00

18 lines
239 B
C++
Executable file

/**
* @file sort.h
*/
#ifndef CT_SORT_H
#define CT_SORT_H
#include "ct_defs.h"
namespace Cantera {
// sort (x,y) pairs by x
void heapsort(vector_fp& x, vector_int& y);
void heapsort(vector_fp& x, vector_fp& y);
}
#endif