Lines Matching refs:newCoeff
214 Scalar newCoeff = m_lu.coeffLower(row, col) - rowVal.dot(colVal); in computeRowMajor() local
220 Scalar newCoeff = m_lu.coeffLower(row, col); in computeRowMajor() local
223 const Scalar tmp = newCoeff; in computeRowMajor()
224 newCoeff = tmp - lIt.value() * uIt.value(); in computeRowMajor()
230 m_lu.coeffRefLower(row, col) = newCoeff / diag; in computeRowMajor()
249 Scalar newCoeff = m_lu.coeffUpper(rrow, col) - rowVal.dot(colVal); in computeRowMajor() local
255 Scalar newCoeff = m_lu.coeffUpper(rrow, col); in computeRowMajor() local
257 const Scalar tmp = newCoeff; in computeRowMajor()
258 newCoeff = tmp - lIt.value() * uIt.value(); in computeRowMajor()
264 m_lu.coeffRefUpper(rrow, col) = newCoeff; in computeRowMajor()
279 Scalar newCoeff = m_lu.coeffDiag(row) - rowVal.dot(colVal); in computeRowMajor() local
285 Scalar newCoeff = m_lu.coeffDiag(row); in computeRowMajor() local
287 const Scalar tmp = newCoeff; in computeRowMajor()
288 newCoeff = tmp - lIt.value() * uIt.value(); in computeRowMajor()
293 m_lu.coeffRefDiag(row) = newCoeff; in computeRowMajor()