Home
last modified time | relevance | path

Searched refs:Alen (Results 1 – 2 of 2) sorted by relevance

/external/eigen/Eigen/src/OrderingMethods/
DOrdering.h133 Index Alen = internal::colamd_recommended(nnz, m, n); in operator() local
139 IndexVector p(n+1), A(Alen); in operator()
143 Index info = internal::colamd(m, n, Alen, A.data(), p.data(), knobs, stats); in operator()
DEigen_Colamd.h224 static Index find_ordering (Index n_row, Index n_col, Index Alen, Colamd_Row<Index> Row [], colamd_…
329 static bool colamd(Index n_row, Index n_col, Index Alen, Index *A, Index *p, double knobs[COLAMD_KN… in colamd() argument
423 if (need > Alen) in colamd()
428 stats [COLAMD_INFO2] = Alen ; in colamd()
429 COLAMD_DEBUG0 (("colamd: Need Alen >= %d, given only Alen = %d\n", need,Alen)); in colamd()
433 Alen -= Col_size + Row_size ; in colamd()
434 Col = (colamd_col<Index> *) &A [Alen] ; in colamd()
435 Row = (Colamd_Row<Index> *) &A [Alen + Col_size] ; in colamd()
453 ngarbage = Eigen::internal::find_ordering (n_row, n_col, Alen, Row, Col, A, p, in colamd()
948 Index Alen, /* size of A, 2*nnz + n_col or larger */ in find_ordering() argument
[all …]