#ifndef __MERGE_SORT_H__ 
#define __MERGE_SORT_H__ 1

int merge_sort(double *A, int p, int r);
int merge_sort_random(double *A, int n);

#endif
