6 lines
178 B
C
6 lines
178 B
C
#ifndef SOLVE_H
|
|
#define SOLVE_H
|
|
|
|
void t9_solve(const double * restrict A, double * restrict x_0, const double * restrict b, double * restrict x, int n, int m, double t);
|
|
|
|
#endif
|