Home
last modified time | relevance | path

Searched refs:outSparseMat (Results 1 – 3 of 3) sorted by relevance

/dports/science/siconos/siconos-4.4.0/numerics/swig/
H A DNumerics_typemaps_numericsmatrices.i283 %typemap(in) (const SparseBlockStructuredMatrix* const A, CSparseMatrix *outSparseMat)
301 %typemap(argout) (CSparseMatrix *outSparseMat)
/dports/science/siconos/siconos-4.4.0/numerics/src/tools/
H A DSparseBlockMatrix.h460 int SBM_to_sparse(const SparseBlockStructuredMatrix* const A, CSparseMatrix *outSparseMat);
H A DSparseBlockMatrix.c3106 int SBM_to_sparse(const SparseBlockStructuredMatrix* const A, CSparseMatrix *outSparseMat) in SBM_to_sparse() argument
3113 assert(outSparseMat); in SBM_to_sparse()
3114 assert(outSparseMat->p); in SBM_to_sparse()
3115 assert(outSparseMat->i); in SBM_to_sparse()
3116 assert(outSparseMat->x); in SBM_to_sparse()
3126 outSparseMat->p[0] = 0; /* We assume that the first row is non empty */ in SBM_to_sparse()
3155 outSparseMat->p[isparserow + 1] = outSparseMat->p[isparserow]; in SBM_to_sparse()
3175 outSparseMat->p[isparserow + 1] += nbColumns ; in SBM_to_sparse()
3189 outSparseMat->i[nnz] = isparsecolumn; in SBM_to_sparse()
3211 outSparseMat->x[nnz] = A->block[blockNum][colintheblock * nbRows + rowintheblock]; in SBM_to_sparse()