Добавил решение Матвея

This commit is contained in:
AZEN-SGG 2025-04-13 19:02:35 +03:00
parent 3faacaed4f
commit c3db969196
11 changed files with 446 additions and 117 deletions

View file

@ -1,8 +1,8 @@
#ifndef SOLVE_H
#define SOLVE_H
int t14_solve(int n, double * restrict A, double * restrict X, int * restrict c);
void gauss_inverse(const int n, const int k, double * restrict A, double * restrict X);
void gauss_back_substitution(const int n, double * restrict A, double * restrict X);
int t14_solve(int n, double * restrict A, double * restrict X, int * restrict c);
#endif