Home
last modified time | relevance | path

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

/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineInplaceLU.h214 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()
[all …]