Lines Matching refs:tv1
298 DenseVector tv1(n), tv2(n); //Temporary vectors
304 dgmresApplyDeflation(m_V.col(it), tv1); // Deflation
305 tv2 = precond.solve(tv1);
311 tv1 = mat * tv2;
317 coef = tv1.dot(m_V.col(i));
318 tv1 = tv1 - coef * m_V.col(i);
323 coef = tv1.norm();
324 m_V.col(it+1) = tv1/coef;
363 tv1 = m_V.leftCols(it) * nrs;
364 dgmresApplyDeflation(tv1, tv2);
475 DenseVector tv1(m);
478 tv1 = mat * X.col(j);
479 MX.col(j) = precond.solve(tv1);