gaus seidel h file

This commit is contained in:
Sam Hadow 2025-05-14 18:40:46 +02:00
parent b1c6a1dd00
commit e2a3a53cca

8
src/gauss_seidel.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef GAUSS_SEIDEL_H
#define GAUSS_SEIDEL_H
#include "sparse_matrix.h"
double* gauss_seidel_pagerank(const SparseMatrix *matrix, double epsilon, double alpha);
#endif