aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/OrderingMethods
diff options
context:
space:
mode:
authorGravatar Anshul Jaiswal <ajaiswal@fb.com>2019-08-15 20:21:56 +0000
committerGravatar Anshul Jaiswal <ajaiswal@fb.com>2019-08-15 20:21:56 +0000
commit283558face1688a69683b1124142325a3ac4855a (patch)
treee9fa951e298658e5732b20038803445430b885ae /Eigen/src/OrderingMethods
parent39f30923c29c77c3a17c77b9f59dbc73291cf02a (diff)
Ordering.h edited to fix dependencies on Eigen_Colamd.h
Diffstat (limited to 'Eigen/src/OrderingMethods')
-rw-r--r--Eigen/src/OrderingMethods/Ordering.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/OrderingMethods/Ordering.h b/Eigen/src/OrderingMethods/Ordering.h
index 8791158be..10ba6b464 100644
--- a/Eigen/src/OrderingMethods/Ordering.h
+++ b/Eigen/src/OrderingMethods/Ordering.h
@@ -131,8 +131,8 @@ class COLAMDOrdering
// Get the recommended value of Alen to be used by colamd
StorageIndex Alen = internal::colamd_recommended(nnz, m, n);
// Set the default parameters
- double knobs [COLAMD_KNOBS];
- StorageIndex stats [COLAMD_STATS];
+ double knobs [ColamdKnobs];
+ StorageIndex stats [ColamdStats];
internal::colamd_set_defaults(knobs);
IndexVector p(n+1), A(Alen);