mirror of
https://github.com/ada-dmitry/tmp_project.git
synced 2026-09-24 01:10:31 +00:00
15 lines
489 B
C
15 lines
489 B
C
extern double a, b, eps, x, *pa, *pb, *px;
|
|
extern short method, *mth, sig_flag;
|
|
|
|
// Декларирование глобальных переменных,
|
|
// как внешних для последующего использования их во всей программе.
|
|
#define H 0.000001
|
|
|
|
double f(double x);
|
|
void ctrlc_handler(int signum);
|
|
void choose_path();
|
|
void fork_method();
|
|
void chord_method();
|
|
void newton_method();
|
|
double numerical_derivative(double x);
|
|
void exit_777(); |