/usr/include/igraph/igraph_spmatrix.h is in libigraph0-dev 0.6.5-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | /* -*- 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
#undef __BEGIN_DECLS
#undef __END_DECLS
#ifdef __cplusplus
# define __BEGIN_DECLS extern "C" {
# define __END_DECLS }
#else
# define __BEGIN_DECLS /* empty */
# define __END_DECLS /* empty */
#endif
#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)
int igraph_spmatrix_init(igraph_spmatrix_t *m, long int nrow, long int ncol);
void igraph_spmatrix_destroy(igraph_spmatrix_t *m);
int igraph_spmatrix_resize(igraph_spmatrix_t *m, long int nrow, long int ncol);
igraph_real_t igraph_spmatrix_e(const igraph_spmatrix_t *m, long int row, long int col);
int igraph_spmatrix_set(igraph_spmatrix_t *m, long int row, long int col,
igraph_real_t value);
int igraph_spmatrix_add_e(igraph_spmatrix_t *m, long int row, long int col,
igraph_real_t value);
int igraph_spmatrix_add_col_values(igraph_spmatrix_t *m, long int to, long int from);
long int igraph_spmatrix_count_nonzero(const igraph_spmatrix_t *m);
long int igraph_spmatrix_size(const igraph_spmatrix_t *m);
long int igraph_spmatrix_nrow(const igraph_spmatrix_t *m);
long int igraph_spmatrix_ncol(const igraph_spmatrix_t *m);
int igraph_spmatrix_copy_to(const igraph_spmatrix_t *m, igraph_real_t *to);
int igraph_spmatrix_null(igraph_spmatrix_t *m);
int igraph_spmatrix_add_cols(igraph_spmatrix_t *m, long int n);
int igraph_spmatrix_add_rows(igraph_spmatrix_t *m, long int n);
int igraph_spmatrix_clear_col(igraph_spmatrix_t *m, long int col);
int igraph_spmatrix_clear_row(igraph_spmatrix_t *m, long int row);
int igraph_spmatrix_copy(igraph_spmatrix_t *to, const igraph_spmatrix_t *from);
igraph_real_t igraph_spmatrix_max_nonzero(const igraph_spmatrix_t *m,
igraph_real_t *ridx, igraph_real_t *cidx);
igraph_real_t igraph_spmatrix_max(const igraph_spmatrix_t *m,
igraph_real_t *ridx, igraph_real_t *cidx);
void igraph_spmatrix_scale(igraph_spmatrix_t *m, igraph_real_t by);
int igraph_spmatrix_colsums(const igraph_spmatrix_t *m, igraph_vector_t *res);
int igraph_spmatrix_rowsums(const igraph_spmatrix_t *m, igraph_vector_t *res);
int igraph_spmatrix_print(const igraph_spmatrix_t *matrix);
int igraph_spmatrix_fprint(const igraph_spmatrix_t *matrix, FILE* file);
int igraph_i_spmatrix_get_col_nonzero_indices(const igraph_spmatrix_t *m,
igraph_vector_t *res, long int col);
int igraph_i_spmatrix_clear_row_fast(igraph_spmatrix_t *m, long int row);
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;
int igraph_spmatrix_iter_create(igraph_spmatrix_iter_t *mit, const igraph_spmatrix_t *m);
int igraph_spmatrix_iter_reset(igraph_spmatrix_iter_t *mit);
int igraph_spmatrix_iter_next(igraph_spmatrix_iter_t *mit);
igraph_bool_t igraph_spmatrix_iter_end(igraph_spmatrix_iter_t *mit);
void igraph_spmatrix_iter_destroy(igraph_spmatrix_iter_t *mit);
__END_DECLS
#endif
|