From af3de9aa4d8914cd7ade036b962af3fb447b412c Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Fri, 29 Jul 2016 15:00:16 -0400 Subject: [PATCH] [Numerics] Fix BandMatrix assignment operator --- src/numerics/BandMatrix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/numerics/BandMatrix.cpp b/src/numerics/BandMatrix.cpp index 51dc341dc..0b4c27846 100644 --- a/src/numerics/BandMatrix.cpp +++ b/src/numerics/BandMatrix.cpp @@ -92,6 +92,7 @@ BandMatrix& BandMatrix::operator=(const BandMatrix& y) size_t ldab = (2 * m_kl + m_ku + 1); for (size_t j = 0; j < m_n; j++) { m_colPtrs[j] = &data[ldab * j]; + m_lu_col_ptrs[j] = &ludata[ldab * j]; } return *this; }