Task 8 is done

This commit is contained in:
AZEN-SGG 2025-05-01 22:49:14 +03:00
parent 7144337f0b
commit c5ae5840ff
3 changed files with 40 additions and 65 deletions

View file

@ -1,12 +1,10 @@
#ifndef SOLVE_H
#define SOLVE_H
#include "status.h"
status t8_solve (
int t8_solve (
double (*f) (double),
double a, double b,
double eps, int m, double *x, int *m_it
double eps, int m, double *x
);
#endif