haskell-igraph-0.8.0: igraph/include/igraph_spmatrix.h
/* -*- mode: C -*- */
/*
IGraph library.
Copyright (C) 2009-2012 Gabor Csardi <csardi.gabor@gmail.com>
334 Harvard street, Cambridge, MA 02139 USA
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
*/
#ifndef IGRAPH_SPMATRIX_H
#define IGRAPH_SPMATRIX_H
#include "igraph_decls.h"
#include "igraph_vector.h"
__BEGIN_DECLS
/* -------------------------------------------------- */
/* Sparse matrix */
/* -------------------------------------------------- */
/**
* \section about_igraph_spmatrix_t_objects About \type igraph_spmatrix_t objects
*
* <para>The \type igraph_spmatrix_t type stores a sparse matrix with the
* assumption that the number of nonzero elements in the matrix scales
* linearly with the row or column count of the matrix (so most of the
* elements are zero). Of course it can store an arbitrary real matrix,
* but if most of the elements are nonzero, one should use \type igraph_matrix_t
* instead.</para>
*
* <para>The elements are stored in column compressed format, so the elements
* in the same column are stored adjacent in the computer's memory. The storage
* requirement for a sparse matrix is O(n) where n is the number of nonzero
* elements. Actually it can be a bit larger, see the documentation of
* the vector type for an explanation.</para>
*/
typedef struct s_spmatrix {
igraph_vector_t ridx, cidx, data;
long int nrow, ncol;
} igraph_spmatrix_t;
#define IGRAPH_SPMATRIX_INIT_FINALLY(m, nr, nc) \
do { IGRAPH_CHECK(igraph_spmatrix_init(m, nr, nc)); \
IGRAPH_FINALLY(igraph_spmatrix_destroy, m); } while (0)
DECLDIR int igraph_spmatrix_init(igraph_spmatrix_t *m, long int nrow, long int ncol);
DECLDIR void igraph_spmatrix_destroy(igraph_spmatrix_t *m);
DECLDIR int igraph_spmatrix_resize(igraph_spmatrix_t *m, long int nrow, long int ncol);
DECLDIR igraph_real_t igraph_spmatrix_e(const igraph_spmatrix_t *m, long int row, long int col);
DECLDIR int igraph_spmatrix_set(igraph_spmatrix_t *m, long int row, long int col,
igraph_real_t value);
DECLDIR int igraph_spmatrix_add_e(igraph_spmatrix_t *m, long int row, long int col,
igraph_real_t value);
DECLDIR int igraph_spmatrix_add_col_values(igraph_spmatrix_t *m, long int to, long int from);
DECLDIR long int igraph_spmatrix_count_nonzero(const igraph_spmatrix_t *m);
DECLDIR long int igraph_spmatrix_size(const igraph_spmatrix_t *m);
DECLDIR long int igraph_spmatrix_nrow(const igraph_spmatrix_t *m);
DECLDIR long int igraph_spmatrix_ncol(const igraph_spmatrix_t *m);
DECLDIR int igraph_spmatrix_copy_to(const igraph_spmatrix_t *m, igraph_real_t *to);
DECLDIR int igraph_spmatrix_null(igraph_spmatrix_t *m);
DECLDIR int igraph_spmatrix_add_cols(igraph_spmatrix_t *m, long int n);
DECLDIR int igraph_spmatrix_add_rows(igraph_spmatrix_t *m, long int n);
DECLDIR int igraph_spmatrix_clear_col(igraph_spmatrix_t *m, long int col);
DECLDIR int igraph_spmatrix_clear_row(igraph_spmatrix_t *m, long int row);
DECLDIR int igraph_spmatrix_copy(igraph_spmatrix_t *to, const igraph_spmatrix_t *from);
DECLDIR igraph_real_t igraph_spmatrix_max_nonzero(const igraph_spmatrix_t *m,
igraph_real_t *ridx, igraph_real_t *cidx);
DECLDIR igraph_real_t igraph_spmatrix_max(const igraph_spmatrix_t *m,
igraph_real_t *ridx, igraph_real_t *cidx);
DECLDIR void igraph_spmatrix_scale(igraph_spmatrix_t *m, igraph_real_t by);
DECLDIR int igraph_spmatrix_colsums(const igraph_spmatrix_t *m, igraph_vector_t *res);
DECLDIR int igraph_spmatrix_rowsums(const igraph_spmatrix_t *m, igraph_vector_t *res);
DECLDIR int igraph_spmatrix_print(const igraph_spmatrix_t *matrix);
DECLDIR int igraph_spmatrix_fprint(const igraph_spmatrix_t *matrix, FILE* file);
DECLDIR int igraph_i_spmatrix_get_col_nonzero_indices(const igraph_spmatrix_t *m,
igraph_vector_t *res, long int col);
DECLDIR int igraph_i_spmatrix_clear_row_fast(igraph_spmatrix_t *m, long int row);
DECLDIR int igraph_i_spmatrix_cleanup(igraph_spmatrix_t *m);
typedef struct s_spmatrix_iter {
const igraph_spmatrix_t *m; /* pointer to the matrix we are iterating over */
long int pos; /* internal index into the data vector */
long int ri; /* row index */
long int ci; /* column index */
igraph_real_t value; /* value at the given cell */
} igraph_spmatrix_iter_t;
DECLDIR int igraph_spmatrix_iter_create(igraph_spmatrix_iter_t *mit, const igraph_spmatrix_t *m);
DECLDIR int igraph_spmatrix_iter_reset(igraph_spmatrix_iter_t *mit);
DECLDIR int igraph_spmatrix_iter_next(igraph_spmatrix_iter_t *mit);
DECLDIR igraph_bool_t igraph_spmatrix_iter_end(igraph_spmatrix_iter_t *mit);
DECLDIR void igraph_spmatrix_iter_destroy(igraph_spmatrix_iter_t *mit);
__END_DECLS
#endif