OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nnzL
(Results
1 - 4
of
4
) sorted by null
/external/eigen/Eigen/src/SparseLU/
SparseLU_Utils.h
21
void SparseLUImpl<Scalar,Index>::countnz(const Index n, Index&
nnzL
, Index& nnzU, GlobalLU_t& glu)
23
nnzL
= 0;
37
nnzL
+= jlen;
SparseLUImpl.h
54
void countnz(const Index n, Index&
nnzL
, Index& nnzU, GlobalLU_t& glu);
/external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteLUT.h
271
Index
nnzL
= fill_in/2;
272
Index nnzU =
nnzL
;
273
m_lu.reserve(n * (
nnzL
+ nnzU + 1));
402
len = (std::min)(sizel,
nnzL
);
/external/eigen/bench/spbench/
test_sparseLU.cpp
90
cout << "Number of nonzeros in the factor : " << solver.
nnzL
() + solver.nnzU() << std::endl;
Completed in 478 milliseconds