Searched defs:fillratio (Results 1 - 1 of 1) sorted by relevance

/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_Memory.h146 * \param fillratio estimated ratio of fill in the factors
152 Index SparseLUImpl<Scalar,Index>::memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& glu) argument
156 glu.nzumax = glu.nzlumax = (std::min)(fillratio * annz / n, m) * n; // estimated number of nonzeros in U
157 glu.nzlmax = (std::max)(Index(4), fillratio) * annz / 4; // estimated nnz in L factor

Completed in 113 milliseconds