pagerank implementation

This commit is contained in:
2025-04-18 09:46:23 +02:00
parent 67e846c758
commit 151ffe8dd8
19 changed files with 575 additions and 0 deletions

8
src/read_from_rb.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef RB_READER_H
#define RB_READER_H
#include "sparse_matrix.h"
SparseMatrix* read_sparse_matrix_from_rb(const char *filename);
#endif