11 lines
185 B
C
11 lines
185 B
C
#ifndef MAX_DISTANCE
|
|
#define MAX_DISTANCE
|
|
|
|
#define exp 1.e-6
|
|
#define OUT 0
|
|
#define NO_LOCAL_MINIMA -1
|
|
#define ONE_LOCAL_MINIMUM -2
|
|
|
|
int maxDistance(double * array, int length);
|
|
|
|
#endif
|