Bugzilla – Attachment 315 Details for
Bug 557
InnerIterator cannot be assigned, copy- or default-constructed
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Forgot Password
Login:
[x]
This bugzilla service is closed. All entries have been migrated to
https://gitlab.com/libeigen/eigen
A patch which fixes all described issues.
eigen-InnerIterator.patch (text/plain), 771 bytes, created by
Clemens Hofreither
on 2013-02-21 15:13:54 UTC
(
hide
)
Description:
A patch which fixes all described issues.
Filename:
MIME Type:
Creator:
Clemens Hofreither
Created:
2013-02-21 15:13:54 UTC
Size:
771 bytes
patch
obsolete
>Index: Eigen/src/SparseCore/SparseMatrix.h >=================================================================== >--- Eigen/src/SparseCore/SparseMatrix.h (revision 321) >+++ Eigen/src/SparseCore/SparseMatrix.h (working copy) >@@ -1027,6 +1027,10 @@ > class SparseMatrix<Scalar,_Options,_Index>::InnerIterator > { > public: >+ InnerIterator() >+ : m_values(0), m_indices(0), m_outer(0), m_id(0), m_end(0) >+ { } >+ > InnerIterator(const SparseMatrix& mat, Index outer) > : m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer), m_id(mat.m_outerIndex[outer]) > { >@@ -1051,7 +1055,7 @@ > protected: > const Scalar* m_values; > const Index* m_indices; >- const Index m_outer; >+ Index m_outer; > Index m_id; > Index m_end; > };
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 557
: 315 |
362