Lines Matching refs:knobs
214 …, colamd_col<IndexType> Col [], IndexType A [], IndexType head [], double knobs[COLAMD_KNOBS], Ind…
286 static inline void colamd_set_defaults(double knobs[COLAMD_KNOBS]) in colamd_set_defaults()
292 if (!knobs) in colamd_set_defaults()
298 knobs [i] = 0 ; in colamd_set_defaults()
300 knobs [COLAMD_DENSE_ROW] = 0.5 ; /* ignore rows over 50% dense */ in colamd_set_defaults()
301 knobs [COLAMD_DENSE_COL] = 0.5 ; /* ignore columns over 50% dense */ in colamd_set_defaults()
322 …_row, IndexType n_col, IndexType Alen, IndexType *A, IndexType *p, double knobs[COLAMD_KNOBS], Ind… in colamd()
404 if (!knobs) in colamd()
407 knobs = default_knobs ; in colamd()
441 Eigen::internal::init_scoring (n_row, n_col, Row, Col, A, p, knobs, in colamd()
708 double knobs [COLAMD_KNOBS],/* parameters */ in init_scoring()
735 …dense_row_count = numext::maxi(IndexType(0), numext::mini(IndexType(knobs [COLAMD_DENSE_ROW] * n_c… in init_scoring()
736 …dense_col_count = numext::maxi(IndexType(0), numext::mini(IndexType(knobs [COLAMD_DENSE_COL] * n_r… in init_scoring()