Lines Matching refs:j1
127 Index j1 = internal::random<Index>(0,outer-1); in sparse_block() local
132 …VERIFY_IS_APPROX(m2.innerVector(j0)+m2.innerVector(j1), innervec(refMat2,j0)+innervec(refMat2,j1)); in sparse_block()
191 Index j1 = internal::random<Index>(0,outer-2); in sparse_block() local
192 Index n0 = internal::random<Index>(1,outer-(std::max)(j0,j1)); in sparse_block()
198 VERIFY_IS_APPROX(m2.innerVectors(j0,n0)+m2.innerVectors(j1,n0), in sparse_block()
199 refMat2.middleRows(j0,n0)+refMat2.middleRows(j1,n0)); in sparse_block()
201 VERIFY_IS_APPROX(m2.innerVectors(j0,n0)+m2.innerVectors(j1,n0), in sparse_block()
202 refMat2.block(0,j0,rows,n0)+refMat2.block(0,j1,rows,n0)); in sparse_block()
208 m2.innerVectors(j0,n0) = m2.innerVectors(j0,n0) + m2.innerVectors(j1,n0); in sparse_block()
210 refMat2.middleRows(j0,n0) = (refMat2.middleRows(j0,n0) + refMat2.middleRows(j1,n0)).eval(); in sparse_block()
212 refMat2.middleCols(j0,n0) = (refMat2.middleCols(j0,n0) + refMat2.middleCols(j1,n0)).eval(); in sparse_block()
223 Index j1 = internal::random<Index>(0,outer-2); in sparse_block() local
224 Index n0 = internal::random<Index>(1,outer-(std::max)(j0,j1)); in sparse_block()
231 VERIFY_IS_APPROX(m2.block(j0,0,n0,cols)+m2.block(j1,0,n0,cols), in sparse_block()
232 refMat2.block(j0,0,n0,cols)+refMat2.block(j1,0,n0,cols)); in sparse_block()
234 VERIFY_IS_APPROX(m2.block(0,j0,rows,n0)+m2.block(0,j1,rows,n0), in sparse_block()
235 refMat2.block(0,j0,rows,n0)+refMat2.block(0,j1,rows,n0)); in sparse_block()