/usr/include/sundials/sundials_direct.h is in libsundials-dev 2.7.0+dfsg-2build1.
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | /*
* -----------------------------------------------------------------
* $Revision: 4780 $
* $Date: 2016-06-22 17:28:19 -0700 (Wed, 22 Jun 2016) $
* -----------------------------------------------------------------
* Programmer: Radu Serban @ LLNL
* -----------------------------------------------------------------
* LLNS Copyright Start
* Copyright (c) 2014, Lawrence Livermore National Security
* This work was performed under the auspices of the U.S. Department
* of Energy by Lawrence Livermore National Laboratory in part under
* Contract W-7405-Eng-48 and in part under Contract DE-AC52-07NA27344.
* Produced at the Lawrence Livermore National Laboratory.
* All rights reserved.
* For details, see the LICENSE file.
* LLNS Copyright End
* -----------------------------------------------------------------
* This header file contains definitions and declarations for use by
* generic direct linear solvers for Ax = b. It defines types for
* dense and banded matrices and corresponding accessor macros.
* -----------------------------------------------------------------
*/
#ifndef _SUNDIALS_DIRECT_H
#define _SUNDIALS_DIRECT_H
#include <sundials/sundials_types.h>
#ifdef __cplusplus /* wrapper to enable C++ usage */
extern "C" {
#endif
/*
* =================================================================
* C O N S T A N T S
* =================================================================
*/
/*
* SUNDIALS_DENSE: dense matrix
* SUNDIALS_BAND: banded matrix
*/
#define SUNDIALS_DENSE 1
#define SUNDIALS_BAND 2
/*
* ==================================================================
* Type definitions
* ==================================================================
*/
/*
* -----------------------------------------------------------------
* Type : DlsMat
* -----------------------------------------------------------------
* The type DlsMat is defined to be a pointer to a structure
* with various sizes, a data field, and an array of pointers to
* the columns which defines a dense or band matrix for use in
* direct linear solvers. The M and N fields indicates the number
* of rows and columns, respectively. The data field is a one
* dimensional array used for component storage. The cols field
* stores the pointers in data for the beginning of each column.
* -----------------------------------------------------------------
* For DENSE matrices, the relevant fields in DlsMat are:
* type = SUNDIALS_DENSE
* M - number of rows
* N - number of columns
* ldim - leading dimension (ldim >= M)
* data - pointer to a contiguous block of realtype variables
* ldata - length of the data array =ldim*N
* cols - array of pointers. cols[j] points to the first element
* of the j-th column of the matrix in the array data.
*
* The elements of a dense matrix are stored columnwise (i.e. columns
* are stored one on top of the other in memory).
* If A is of type DlsMat, then the (i,j)th element of A (with
* 0 <= i < M and 0 <= j < N) is given by (A->data)[j*n+i].
*
* The DENSE_COL and DENSE_ELEM macros below allow a user to access
* efficiently individual matrix elements without writing out explicit
* data structure references and without knowing too much about the
* underlying element storage. The only storage assumption needed is
* that elements are stored columnwise and that a pointer to the
* jth column of elements can be obtained via the DENSE_COL macro.
* -----------------------------------------------------------------
* For BAND matrices, the relevant fields in DlsMat are:
* type = SUNDIALS_BAND
* M - number of rows
* N - number of columns
* mu - upper bandwidth, 0 <= mu <= min(M,N)
* ml - lower bandwidth, 0 <= ml <= min(M,N)
* s_mu - storage upper bandwidth, mu <= s_mu <= N-1.
* The dgbtrf routine writes the LU factors into the storage
* for A. The upper triangular factor U, however, may have
* an upper bandwidth as big as MIN(N-1,mu+ml) because of
* partial pivoting. The s_mu field holds the upper
* bandwidth allocated for A.
* ldim - leading dimension (ldim >= s_mu)
* data - pointer to a contiguous block of realtype variables
* ldata - length of the data array =ldim*(s_mu+ml+1)
* cols - array of pointers. cols[j] points to the first element
* of the j-th column of the matrix in the array data.
*
* The BAND_COL, BAND_COL_ELEM, and BAND_ELEM macros below allow a
* user to access individual matrix elements without writing out
* explicit data structure references and without knowing too much
* about the underlying element storage. The only storage assumption
* needed is that elements are stored columnwise and that a pointer
* into the jth column of elements can be obtained via the BAND_COL
* macro. The BAND_COL_ELEM macro selects an element from a column
* which has already been isolated via BAND_COL. The macro
* BAND_COL_ELEM allows the user to avoid the translation
* from the matrix location (i,j) to the index in the array returned
* by BAND_COL at which the (i,j)th element is stored.
* -----------------------------------------------------------------
*/
typedef struct _DlsMat {
int type;
long int M;
long int N;
long int ldim;
long int mu;
long int ml;
long int s_mu;
realtype *data;
long int ldata;
realtype **cols;
} *DlsMat;
/*
* ==================================================================
* Data accessor macros
* ==================================================================
*/
/*
* -----------------------------------------------------------------
* DENSE_COL and DENSE_ELEM
* -----------------------------------------------------------------
*
* DENSE_COL(A,j) references the jth column of the M-by-N dense
* matrix A, 0 <= j < N. The type of the expression DENSE_COL(A,j)
* is (realtype *). After the assignment col_j = DENSE_COL(A,j),
* col_j may be treated as an array indexed from 0 to M-1.
* The (i,j)-th element of A is thus referenced by col_j[i].
*
* DENSE_ELEM(A,i,j) references the (i,j)th element of the dense
* M-by-N matrix A, 0 <= i < M ; 0 <= j < N.
*
* -----------------------------------------------------------------
*/
#define DENSE_COL(A,j) ((A->cols)[j])
#define DENSE_ELEM(A,i,j) ((A->cols)[j][i])
/*
* -----------------------------------------------------------------
* BAND_COL, BAND_COL_ELEM, and BAND_ELEM
* -----------------------------------------------------------------
*
* BAND_COL(A,j) references the diagonal element of the jth column
* of the N by N band matrix A, 0 <= j <= N-1. The type of the
* expression BAND_COL(A,j) is realtype *. The pointer returned by
* the call BAND_COL(A,j) can be treated as an array which is
* indexed from -(A->mu) to (A->ml).
*
* BAND_COL_ELEM references the (i,j)th entry of the band matrix A
* when used in conjunction with BAND_COL. The index (i,j) should
* satisfy j-(A->mu) <= i <= j+(A->ml).
*
* BAND_ELEM(A,i,j) references the (i,j)th element of the M-by-N
* band matrix A, where 0 <= i,j <= N-1. The location (i,j) should
* further satisfy j-(A->mu) <= i <= j+(A->ml).
*
* -----------------------------------------------------------------
*/
#define BAND_COL(A,j) (((A->cols)[j])+(A->s_mu))
#define BAND_COL_ELEM(col_j,i,j) (col_j[(i)-(j)])
#define BAND_ELEM(A,i,j) ((A->cols)[j][(i)-(j)+(A->s_mu)])
/*
* ==================================================================
* Exported function prototypes (functions working on dlsMat)
* ==================================================================
*/
/*
* -----------------------------------------------------------------
* Function: NewDenseMat
* -----------------------------------------------------------------
* NewDenseMat allocates memory for an M-by-N dense matrix and
* returns the storage allocated (type DlsMat). NewDenseMat
* returns NULL if the request for matrix storage cannot be
* satisfied. See the above documentation for the type DlsMat
* for matrix storage details.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT DlsMat NewDenseMat(long int M, long int N);
/*
* -----------------------------------------------------------------
* Function: NewBandMat
* -----------------------------------------------------------------
* NewBandMat allocates memory for an M-by-N band matrix
* with upper bandwidth mu, lower bandwidth ml, and storage upper
* bandwidth smu. Pass smu as follows depending on whether A will
* be LU factored:
*
* (1) Pass smu = mu if A will not be factored.
*
* (2) Pass smu = MIN(N-1,mu+ml) if A will be factored.
*
* NewBandMat returns the storage allocated (type DlsMat) or
* NULL if the request for matrix storage cannot be satisfied.
* See the documentation for the type DlsMat for matrix storage
* details.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT DlsMat NewBandMat(long int N, long int mu, long int ml, long int smu);
/*
* -----------------------------------------------------------------
* Functions: DestroyMat
* -----------------------------------------------------------------
* DestroyMat frees the memory allocated by NewDenseMat or NewBandMat
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT void DestroyMat(DlsMat A);
/*
* -----------------------------------------------------------------
* Function: NewIntArray
* -----------------------------------------------------------------
* NewIntArray allocates memory an array of N int's and returns
* the pointer to the memory it allocates. If the request for
* memory storage cannot be satisfied, it returns NULL.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT int *NewIntArray(int N);
/*
* -----------------------------------------------------------------
* Function: NewLintArray
* -----------------------------------------------------------------
* NewLintArray allocates memory an array of N long int's and returns
* the pointer to the memory it allocates. If the request for
* memory storage cannot be satisfied, it returns NULL.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT long int *NewLintArray(long int N);
/*
* -----------------------------------------------------------------
* Function: NewRealArray
* -----------------------------------------------------------------
* NewRealArray allocates memory an array of N realtype and returns
* the pointer to the memory it allocates. If the request for
* memory storage cannot be satisfied, it returns NULL.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT realtype *NewRealArray(long int N);
/*
* -----------------------------------------------------------------
* Function: DestroyArray
* -----------------------------------------------------------------
* DestroyArray frees memory allocated by NewIntArray, NewLintArray,
* or NewRealArray.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT void DestroyArray(void *p);
/*
* -----------------------------------------------------------------
* Function : AddIdentity
* -----------------------------------------------------------------
* AddIdentity adds 1.0 to the main diagonal (A_ii, i=0,1,...,N-1) of
* the M-by-N matrix A (M>= N) and stores the result back in A.
* AddIdentity is typically used with square matrices.
* AddIdentity does not check for M >= N and therefore a segmentation
* fault will occur if M < N!
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT void AddIdentity(DlsMat A);
/*
* -----------------------------------------------------------------
* Function : SetToZero
* -----------------------------------------------------------------
* SetToZero sets all the elements of the M-by-N matrix A to 0.0.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT void SetToZero(DlsMat A);
/*
* -----------------------------------------------------------------
* Functions: PrintMat
* -----------------------------------------------------------------
* This function prints the M-by-N (dense or band) matrix A to
* standard output as it would normally appear on paper.
* It is intended as debugging tools with small values of M and N.
* The elements are printed using the %g/%lg/%Lg option.
* A blank line is printed before and after the matrix.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT void PrintMat(DlsMat A);
/*
* ==================================================================
* Exported function prototypes (functions working on realtype**)
* ==================================================================
*/
SUNDIALS_EXPORT realtype **newDenseMat(long int m, long int n);
SUNDIALS_EXPORT realtype **newBandMat(long int n, long int smu, long int ml);
SUNDIALS_EXPORT void destroyMat(realtype **a);
SUNDIALS_EXPORT int *newIntArray(int n);
SUNDIALS_EXPORT long int *newLintArray(long int n);
SUNDIALS_EXPORT realtype *newRealArray(long int m);
SUNDIALS_EXPORT void destroyArray(void *v);
#ifdef __cplusplus
}
#endif
#endif
|