OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IndexVector
(Results
1 - 6
of
6
) sorted by null
/external/eigen/Eigen/src/MetisSupport/
MetisSupport.h
26
typedef Matrix<Index,Dynamic,1>
IndexVector
;
37
IndexVector
visited(m);
106
IndexVector
perm(m),iperm(m);
132
IndexVector
m_indexPtr; // Pointer to the adjacenccy list of each row/column
133
IndexVector
m_innerIndices; // Adjacency list
/external/eigen/Eigen/src/SparseLU/
SparseLUImpl.h
24
typedef Matrix<Index,Dynamic,1>
IndexVector
;
28
typedef LU_GlobalLU_t<
IndexVector
, ScalarVector> GlobalLU_t;
37
void heap_relax_snode (const Index n,
IndexVector
& et, const Index relax_columns,
IndexVector
& descendants,
IndexVector
& relax_end);
38
void relax_snode (const Index n,
IndexVector
& et, const Index relax_columns,
IndexVector
& descendants,
IndexVector
& relax_end);
39
Index snode_dfs(const Index jcol, const Index kcol,const MatrixType& mat,
IndexVector
& xprune,
IndexVector
& marker, GlobalLU_t& glu);
[
all
...]
SparseLU_SupernodalMatrix.h
38
typedef Matrix<Index,Dynamic,1>
IndexVector
;
45
MappedSuperNodalMatrix(Index m, Index n, ScalarVector& nzval,
IndexVector
& nzval_colptr,
IndexVector
& rowind,
46
IndexVector
& rowind_colptr,
IndexVector
& col_to_sup,
IndexVector
& sup_to_col )
61
void setInfos(Index m, Index n, ScalarVector& nzval,
IndexVector
& nzval_colptr,
IndexVector
& rowind,
62
IndexVector
& rowind_colptr,
IndexVector
& col_to_sup, IndexVector& sup_to_col
[
all
...]
SparseLU.h
84
typedef Matrix<Index,Dynamic,1>
IndexVector
;
384
IndexVector
m_etree; // Column elimination tree
445
IndexVector
firstRowElt;
450
IndexVector
post, iwork;
504
typedef typename
IndexVector
::Scalar Index;
550
IndexVector
segrep(m); segrep.setZero();
551
IndexVector
parent(m); parent.setZero();
552
IndexVector
xplore(m); xplore.setZero();
553
IndexVector
repfnz(maxpanel);
554
IndexVector
panel_lsub(maxpanel)
[
all
...]
/external/eigen/Eigen/src/OrderingMethods/
Ordering.h
119
typedef Matrix<Index, Dynamic, 1>
IndexVector
;
139
IndexVector
p(n+1), A(Alen);
/external/eigen/Eigen/src/SparseQR/
SparseQR.h
74
typedef Matrix<Index, Dynamic, 1>
IndexVector
;
262
IndexVector
m_etree; // Column elimination tree
263
IndexVector
m_firstRowElt; // First element in each row
332
IndexVector
mark((std::max)(m,n)); mark.setConstant(-1); // Record the visited nodes
333
IndexVector
Ridx(n), Qidx(m); // Store temporarily the row indexes for the current column of R and Q
355
IndexVector
originalOuterIndicesCpy;
359
originalOuterIndicesCpy =
IndexVector
::Map(m_pmat.outerIndexPtr(),n+1);
Completed in 138 milliseconds