SuperLU 6.0.1
superlu_config.h
Go to the documentation of this file.
1
2#ifndef SUPERLU_CONFIG_H
3#define SUPERLU_CONFIG_H
4
5/* Enable metis */
6/* #undef HAVE_METIS */
7
8/* Enable colamd */
9/* #undef HAVE_COLAMD */
10
11/* enable 64bit index mode */
12#define XSDK_INDEX_SIZE 64
13
14/* Integer type for indexing sparse matrix meta structure */
15#if (XSDK_INDEX_SIZE == 64)
16#include <stdint.h>
17#define _LONGINT 1
18typedef int64_t int_t;
19#else
20typedef int int_t; /* default */
21#endif
22
23#endif /* SUPERLU_CONFIG_H */
24
int64_t int_t
Definition: superlu_config.h:18