Start Task 3

This commit is contained in:
AZEN-SGG 2025-03-26 15:17:02 +03:00
parent 4134eda893
commit 3eb349f81c
32 changed files with 475 additions and 16 deletions

View file

@ -1,6 +1,7 @@
#include "solve.h"
#include <math.h>
#define eps 1e-17
int compare(const double a, const double b)
@ -38,3 +39,5 @@ void matvec_mul(int n, double * restrict A, double * restrict x, double * restri
x_k[i] = sum;
}
}