aboutsummaryrefslogtreecommitdiffstats
path: root/include/roots.h
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-10-13 19:28:57 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-10-13 19:28:57 +0300
commitf5e0076a8455eec5b4a515b39202217f8a8b9e71 (patch)
treef5cd306d8eb2a516e2d3a83a9276d5aa60b658c0 /include/roots.h
parent1fe251abc83ee3a38d9faea5be947c90d162c6ae (diff)
Initial committask5
Diffstat (limited to 'include/roots.h')
-rw-r--r--include/roots.h15
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