
- Removed obsolete Matvei source files (tasks 01–04, array/matrix/io_status modules, Makefile) - Introduced new Linux-compatible structure in Linux/Matvei - Updated build logic via new Makefile - Adjusted .gitignore to exclude new artifacts
15 lines
432 B
C
15 lines
432 B
C
#ifndef SOLVE_H
|
|
#define SOLVE_H
|
|
|
|
int t1_solve(double *a, int m, int n);
|
|
int t2_solve(double *a, int m, int n);
|
|
int t3_solve(double *a, int m, int n);
|
|
int t4_solve(double *a, int m, int n);
|
|
int t5_solve(double *a, int m, int n);
|
|
int t6_solve(double *a, int m, int n);
|
|
int t7_solve(double *a, int m, int n);
|
|
int t8_solve(double *a, int m, int n);
|
|
int t9_solve(double *a, int m, int n);
|
|
int t10_solve(double *a, int m, int n);
|
|
|
|
#endif
|