2nd_Sem_Bogachev/2025.03.21/dist/Linux/solve.h
AZEN-SGG 2d77179904 chore(cleanup): replace legacy Matvei project with updated Linux-based version
- 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
2025-03-25 23:35:44 +03:00

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