Task 14 doesn't work correctly

This commit is contained in:
AZEN-SGG 2025-04-02 00:14:36 +03:00
parent f21c2aaf05
commit b4c7f2d872
8 changed files with 165 additions and 76 deletions

View file

@ -1,10 +1,8 @@
#ifndef SOLVE_H
#define SOLVE_H
typedef struct {
double val;
int i;
int j;
} max_t;
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);
#endif