testing task 1

This commit is contained in:
AZEN-SGG 2025-04-30 13:07:07 +03:00
parent 8e114b5c29
commit c2952fa8a1
2 changed files with 20 additions and 6 deletions

View file

@ -14,7 +14,7 @@ int main(int argc, char *argv[])
status ret;
double (*f) (double);
double (*f_lst[]) (double) = {f0, f1, f2, f3, f4, f5, f6, sin};
double (*f_lst[]) (double) = {f0, f1, f2, f3, f4, f5, f6, sin}; // TODO: Remove sin
int len_f = sizeof(f_lst) / sizeof(f_lst[0]);
if (
@ -34,9 +34,11 @@ int main(int argc, char *argv[])
t = clock();
ret = t1_solve(f, a, b, eps, m, &x, &it);
t = (clock() - t) / CLOCKS_PER_SEC;
cl = get_call_count();
// printf("x = %e\tf(x) = %e\n", x, f(x));
do {
switch (ret)
{