aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/glpk-4.65/src/colamd/colamd.h
blob: 511735e5c5ea360e3cad6d85465cb021b09e8c2c (plain)
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
/* colamd.h */

/* Written by Andrew Makhorin <mao@gnu.org>. */

#ifndef COLAMD_H
#define COLAMD_H

#define _GLPSTD_STDIO
#include "env.h"

#define COLAMD_DATE "Nov 1, 2007"
#define COLAMD_VERSION_CODE(main, sub) ((main) * 1000 + (sub))
#define COLAMD_MAIN_VERSION 2
#define COLAMD_SUB_VERSION 7
#define COLAMD_SUBSUB_VERSION 1
#define COLAMD_VERSION \
        COLAMD_VERSION_CODE(COLAMD_MAIN_VERSION, COLAMD_SUB_VERSION)

#define COLAMD_KNOBS 20
#define COLAMD_STATS 20
#define COLAMD_DENSE_ROW 0
#define COLAMD_DENSE_COL 1
#define COLAMD_AGGRESSIVE 2
#define COLAMD_DEFRAG_COUNT 2
#define COLAMD_STATUS 3
#define COLAMD_INFO1 4
#define COLAMD_INFO2 5
#define COLAMD_INFO3 6

#define COLAMD_OK                            (0)
#define COLAMD_OK_BUT_JUMBLED                (1)
#define COLAMD_ERROR_A_not_present           (-1)
#define COLAMD_ERROR_p_not_present           (-2)
#define COLAMD_ERROR_nrow_negative           (-3)
#define COLAMD_ERROR_ncol_negative           (-4)
#define COLAMD_ERROR_nnz_negative            (-5)
#define COLAMD_ERROR_p0_nonzero              (-6)
#define COLAMD_ERROR_A_too_small             (-7)
#define COLAMD_ERROR_col_length_negative     (-8)
#define COLAMD_ERROR_row_index_out_of_bounds (-9)
#define COLAMD_ERROR_out_of_memory           (-10)
#define COLAMD_ERROR_internal_error          (-999)

#define colamd_recommended _glp_colamd_recommended
size_t colamd_recommended(int nnz, int n_row, int n_col);

#define colamd_set_defaults _glp_colamd_set_defaults
void colamd_set_defaults(double knobs [COLAMD_KNOBS]);

#define colamd _glp_colamd
int colamd(int n_row, int n_col, int Alen, int A[], int p[],
      double knobs[COLAMD_KNOBS], int stats[COLAMD_STATS]);

#define symamd _glp_symamd
int symamd(int n, int A[], int p[], int perm[],
      double knobs[COLAMD_KNOBS], int stats[COLAMD_STATS],
      void *(*allocate)(size_t, size_t), void(*release)(void *));

#define colamd_report _glp_colamd_report
void colamd_report(int stats[COLAMD_STATS]);

#define symamd_report _glp_symamd_report
void symamd_report(int stats[COLAMD_STATS]);

#define colamd_printf xprintf

#endif

/* eof */