Merge branch 'release-4-6'
[alexxy/gromacs.git] / src / gromacs / linearalgebra / sparsematrix.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2012, by the GROMACS development team, led by
7  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8  * and including many others, as listed in the AUTHORS file in the
9  * top-level source directory and at http://www.gromacs.org.
10  *
11  * GROMACS is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public License
13  * as published by the Free Software Foundation; either version 2.1
14  * of the License, or (at your option) any later version.
15  *
16  * GROMACS is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with GROMACS; if not, see
23  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
25  *
26  * If you want to redistribute modifications to GROMACS, please
27  * consider that scientific software is very special. Version
28  * control is crucial - bugs must be traceable. We will be happy to
29  * consider code for inclusion in the official distribution, but
30  * derived work must not be called official GROMACS. Details are found
31  * in the README & COPYING files - if they are missing, get the
32  * official version at http://www.gromacs.org.
33  *
34  * To help us fund GROMACS development, we humbly ask that you cite
35  * the research papers on the package. Check out http://www.gromacs.org.
36  */
37 #ifndef GMX_LINEARALGEBRA_SPARSEMATRIX_H
38 #define GMX_LINEARALGEBRA_SPARSEMATRIX_H
39
40 #include <stdio.h>
41
42 #include "../legacyheaders/types/simple.h"
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47
48 typedef struct
49     gmx_sparsematrix_entry
50 {
51     int      col;
52     real     value;
53 } gmx_sparsematrix_entry_t;
54
55 /*! \brief Sparse matrix storage format
56  *
57  *  This structure specifies a storage format for a sparse matrix.
58  *  The memory requirements are only proportional to the number
59  *  of nonzero elements, and it provides a reasonably fast way to
60  *  perform matrix-vector multiplications.
61  *
62  *  The data format is very similar to a neighborlist. It is optimized
63  *  for fast access, but it is difficult to add entries. If you are
64  *  constructing a matrix you should either do it in exactly the order
65  *  specified here, or use some other more flexible intermediate structure.
66  *
67  *  The index array is of size nrow+1. All non-zero matrix elements
68  *  on row i are stored in positions index[i] through index[i+1]-1 in
69  *  the arrays column and value. The column array contains the column
70  *  index for each entry, in ascending order, and the corresponding
71  *  position in the value array contains the floating point matrix element.
72  *
73  *  index[nrow] should be equal to the total number of elements stored.
74  *
75  *  Thus, to find the value of matrix element [5,4] you should loop
76  *  over positions index[5] to index[6]-1 in column until you either find
77  *  the value 4, or a higher value (meaning the element was zero).
78  *
79  *  It is fairly easy to construct the matrix on-the-fly if you can do
80  *  it row-by-row.
81  *
82  *  IMPORTANT:
83  *  If compressed_symmetric is set to TRUE, you should only store EITHER the upper OR
84  *  lower triangle (and the diagonal), and the other half is assumed to be
85  *  symmetric. Otherwise, if compressed_symmetric==FALSE, no symmetry is implied and all
86  *  elements should be stored.
87  *
88  *  The symmetry compression saves us a factor 2 both in storage and
89  *  matrix multiplication CPU-time, which can be very useful for huge eigenproblems.
90  *
91  *  If you are unsure, just set compressed_symmetric to FALSE and list all elements. If
92  *  you enable it but still list all elements (both upper and lower triangle) you will be sorry...
93  *
94  *  Internally, the sparse data is stored as a separate list for each row, where the list
95  *  element is a structure with a column and (floating-point) data value. This makes it
96  *  possible, although not completely transparent, to update values in random access order.
97  *  The drawback is that the structure will allocate nrow memory regions.
98  *  The matrix data could be stored in a single contiguous array with indices for each row,
99  *  but then we could only insert elements at the end without copying the entire matrix.
100  *
101  *  After you have
102  *
103  *  In other words: Not perfect, but it works.
104  */
105 typedef struct
106     gmx_sparsematrix
107 {
108     gmx_bool                     compressed_symmetric; /**< Store half elements and assume symmetry. */
109     int                          nrow;                 /**< Number of rows in matrix                 */
110     int *                        ndata;                /**< Number of entries on each row (list)     */
111     int *                        nalloc;               /**< Allocated entry list length for each row */
112     gmx_sparsematrix_entry_t **  data;                 /**< data[i] is a list with entries on row i  */
113 }
114 gmx_sparsematrix_t;
115
116
117 /*! \brief Allocate a new sparse matrix structure
118  *
119  *  The number of rows is used to allocate the index array entry. Obviously you
120  *  can reallocate these later yourself if necessary - this is a
121  *  convenience routine.
122  *
123  *  By default, the compressed_symmetric flag in the structure will
124  *  be FALSE. Set it to TRUE manually if you are only storing either the
125  *  upper or lower half of the matrix.
126  */
127 gmx_sparsematrix_t *
128 gmx_sparsematrix_init            (int                    nrow);
129
130
131 /*! \brief Release all resources used by a sparse matrix structure
132  *
133  *  All arrays in the structure will be freed, and the structure itself.
134  */
135 void
136 gmx_sparsematrix_destroy         (gmx_sparsematrix_t *   A);
137
138
139 /*! \brief Print sparse matrix to a stream.
140  *
141  *  Mainly used for debugging. Be warned that the real sparse matrices used
142  *  in Gromacs runs can be HUGE (think 100,000 rows).
143  */
144 void
145 gmx_sparsematrix_print           (FILE *                 stream,
146                                   gmx_sparsematrix_t *   A);
147
148 /* Adds value at row,col. If the value did not exist
149  * previously it is added, otherwise it is incremented with difference.
150  *
151  * The column sort order might change, so you need to run fix_sparsematrix
152  * once you are done changing the matrix.
153  */
154 real
155 gmx_sparsematrix_value          (gmx_sparsematrix_t *    A,
156                                  int                     row,
157                                  int                     col);
158
159
160 /* Adds value at row,col. If the value did not exist
161  * previously it is added, otherwise it is incremented with difference.
162  *
163  * The column sort order might change, so you need to run fix_sparsematrix
164  * once you are done changing the matrix.
165  */
166 void
167 gmx_sparsematrix_increment_value(gmx_sparsematrix_t *    A,
168                                  int                     row,
169                                  int                     col,
170                                  real                    difference);
171
172
173
174 /*! \brief Sort elements in each column and remove zeros.
175  *
176  *  Sparse matrix access is faster when the elements are stored in
177  *  increasing column order in each row. In some cases previously non-zero
178  *  elements will be zero after adding more data, and this routine also removes
179  *  those entries to reduce the storage requirements.
180  *
181  *  It never hurts to run this routine if you have been updating the matrix...
182  */
183 void
184 gmx_sparsematrix_compress       (gmx_sparsematrix_t *    A);
185
186
187
188 /*! \brief Sparse matrix vector multiplication
189  *
190  * Calculate y = A * x for a sparse matrix A.
191  */
192 void
193 gmx_sparsematrix_vector_multiply(gmx_sparsematrix_t *    A,
194                                  real *                  x,
195                                  real *                  y);
196
197 #ifdef __cplusplus
198 }
199 #endif
200
201
202 #endif