~ubuntu-branches/ubuntu/hardy/suitesparse/hardy

« back to all changes in this revision

Viewing changes to UFconfig/UFconfig.h

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere, Rafael Laboissiere, Ondrej Certik
  • Date: 2008-02-21 14:46:50 UTC
  • mfrom: (1.1.2 upstream) (5.1.1 hardy)
  • Revision ID: james.westby@ubuntu.com-20080221144650-tgeppgj0t7s759i8
Tags: 3.1.0-3
[ Rafael Laboissiere ]
* Upload to unstable

[ Ondrej Certik ]
* XS-DM-Upload-Allowed: yes field added
* Ondrej Certik added to uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
 * version of SuiteSparse, with another package from another version of
77
77
 * SuiteSparse, may or may not work.
78
78
 *
79
 
 * SuiteSparse Version 3.0.0 contains the following packages:
 
79
 * SuiteSparse Version 3.1.0 contains the following packages:
80
80
 *
81
81
 *  AMD             version 2.2.0
82
82
 *  CAMD            version 2.2.0
83
 
 *  COLAMD          version 2.7.0
84
 
 *  CCOLAMD         version 2.7.0
85
 
 *  CHOLMOD         version 1.5.0
86
 
 *  CSparse         version 2.2.0
87
 
 *  CXSparse        version 2.2.0
88
 
 *  KLU             version 1.0.0
89
 
 *  BTF             version 1.0.0
90
 
 *  LDL             version 2.0.0
 
83
 *  COLAMD          version 2.7.1
 
84
 *  CCOLAMD         version 2.7.1
 
85
 *  CHOLMOD         version 1.6.0
 
86
 *  CSparse         version 2.2.1
 
87
 *  CXSparse        version 2.2.1
 
88
 *  KLU             version 1.0.1
 
89
 *  BTF             version 1.0.1
 
90
 *  LDL             version 2.0.1
91
91
 *  UFconfig        version number is the same as SuiteSparse
92
 
 *  UMFPACK         version 5.1.0
93
 
 *  RBio            version 1.1.0
94
 
 *  UFcollection    version 1.1.0
 
92
 *  UMFPACK         version 5.2.0
 
93
 *  RBio            version 1.1.1
 
94
 *  UFcollection    version 1.1.1
 
95
 *  LINFACTOR       version 1.1.0
 
96
 *  MESHND          version 1.1.0
 
97
 *  SSMULT          version 1.1.0
 
98
 *  MATLAB_Tools    no specific version number
95
99
 *
96
100
 * Other package dependencies:
97
101
 *  BLAS            required by CHOLMOD and UMFPACK
99
103
 *  METIS 4.0.1     required by CHOLMOD (optional) and KLU (optional)
100
104
 */
101
105
 
102
 
#define SUITESPARSE_DATE "May 31, 2007"
 
106
#define SUITESPARSE_DATE "Nov 1, 2007"
103
107
#define SUITESPARSE_VER_CODE(main,sub) ((main) * 1000 + (sub))
104
108
#define SUITESPARSE_MAIN_VERSION 3
105
 
#define SUITESPARSE_SUB_VERSION 0
 
109
#define SUITESPARSE_SUB_VERSION 1
106
110
#define SUITESPARSE_SUBSUB_VERSION 0
107
111
#define SUITESPARSE_VERSION \
108
112
    SUITESPARSE_VER_CODE(SUITESPARSE_MAIN_VERSION,SUITESPARSE_SUB_VERSION)