11 lines
173 B
C
11 lines
173 B
C
#ifndef SOLVE_H
|
|
#define SOLVE_H
|
|
|
|
double t4_solve (
|
|
const double x_0, const int n,
|
|
const double * restrict X,
|
|
double * restrict Y,
|
|
double * restrict D
|
|
);
|
|
|
|
#endif
|