diff options
Diffstat (limited to 'include/roots.h')
-rw-r--r-- | include/roots.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/roots.h b/include/roots.h deleted file mode 100644 index 138382b..0000000 --- a/include/roots.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef JUSTANOTHERCATGIRL_TASK4_ROOTS -#define JUSTANOTHERCATGIRL_TASK4_ROOTS - -typedef double(*func_t)(double); - -extern char root_ok; - -char is_root_ok(void); -double sol_binsr(func_t f, double a, double b, double ex, double ey); -double sol_chord(func_t f, double a, double b, double ex, double ey); -double sol_newtn(func_t f, double x0, double ex, double ey); -double sol_itern(func_t f, double x0, double ex, double ey); - - -#endif // JUSTANOTHERCATGIRL_TASK4_ROOTS |