Home
last modified time | relevance | path

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

/dports/math/arpack++/arpackpp-2.3.0/include/
H A Daruspen.h332 int * tripj = new int[mynnz]; in ExpandAsB() local
334 if (tripi == NULL || tripj == NULL || tripx ==NULL) in ExpandAsB()
345 tripj[count] = A->irow[j]; in ExpandAsB()
350 tripj[count] = i; in ExpandAsB()
363 tripj[count] = B->irow[j]; in ExpandAsB()
368 tripj[count] = i; in ExpandAsB()
389 …int status = umfpack_di_triplet_to_col (A->n, A->n, count, tripi, tripj, tripx, Ap, Ai, Ax, (int … in ExpandAsB()
395 delete [] tripj; in ExpandAsB()
H A Darusmat.h246 int * tripj = new int[mynnz]; in ExpandA() local
261 tripj[count] = irow[j]; in ExpandA()
274 tripj[count] = irow[j]; in ExpandA()
277 tripj[count] = i; in ExpandA()
286 tripj[count] = i; in ExpandA()
297 …status = umfpack_di_triplet_to_col (this->n, this->n, count, tripi, tripj, tripx, Ap, Ai, Ax, (in… in ExpandA()
306 delete [] tripj; in ExpandA()
H A Dumfpackc.h122 int * tripj, double* tripx, unsigned int nnz) in Write_Triplet_Matrix() argument
129 myfile << tripi[i]+1 << " " << tripj[i]+1 << " " << tripx[i] << std::endl; in Write_Triplet_Matrix()