Files
pagerank/src/matrix_print.h
2025-04-18 09:46:23 +02:00

9 lines
181 B
C

#ifndef MATRIX_PRINT_H
#define MATRIX_PRINT_H
#include "sparse_matrix.h"
void print_vector(double *vector, int size);
void print_sparse_matrix(const SparseMatrix *matrix);
#endif