#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