MSUStudentWork/WorkingArrays/22Ex/local_minimum.h

13 lines
249 B
C

#ifndef LOCAL_MINIMUM
#define LOCAL_MINIMUM
#include <math.h>
#include <string.h>
#include <stdbool.h>
#define exp 1.e-6
int transposition(double * numbers, unsigned * start_end);
int searching_loc_min(double * numbers);
#endif // LOCAL_MINIMUM