From 1ec881f5e72ced01463ffb0e1f1b2c189d531c2e Mon Sep 17 00:00:00 2001 From: mtzikara Date: Sun, 30 Sep 2018 23:38:39 +0200 Subject: [PATCH] Delete lil_sparse_matrix.h --- serial_csr/lil_sparse_matrix.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 serial_csr/lil_sparse_matrix.h diff --git a/serial_csr/lil_sparse_matrix.h b/serial_csr/lil_sparse_matrix.h deleted file mode 100644 index 599cdae..0000000 --- a/serial_csr/lil_sparse_matrix.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef LIL_SPARSE_MATRIX_H /* Include guard */ -#define LIL_SPARSE_MATRIX_H - -#include -#include -#include -#include - -typedef struct lilSparseMatrixElement { - double value; - int rowIndex, columnIndex; - struct lilSparseMatrixElement *nextElement; -} LilSparseMatrixElement; - -typedef struct lilSparseMatrix { - int elements; - LilSparseMatrixElement *firstElement; - LilSparseMatrixElement *lastElement; -} LilSparseMatrix; - -LilSparseMatrix createLilSparseMatrix(); -void apendElement(LilSparseMatrix *sparseMatrix, double value, int row, - int column); -void lilSparseMatrixVectorMultiplication(LilSparseMatrix sparseMatrix, - double *vector, double **product, int vectorSize); -void destroyLilSparseMatrix(LilSparseMatrix *sparseMatrix); -void printLilSparseMatrix(LilSparseMatrix sparseMatrix); - -#endif // LIL_SPARSE_MATRIX_H \ No newline at end of file