We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A coding error in bsplinebasis.cpp line 122 :for (SparseMatrix::InnerIterator it(Ji,k); it; ++it)
When I try the lastest Eigen, it output the following error:
error: calling a private constructor of class 'Eigen::SparseCompressedBase<Eigen::SparseMatrix<double, 0, int> >::InnerIterator' for (SparseMatrix::InnerIterator it(Ji,k); it; ++it) ^ /Users/jerry/Documents/articles/Faces/mycode/shadow_face/3rdparty/src/splinter/thirdparty/Eigen/Eigen/src/SparseCore/SparseCompressedBase.h:210:26: note: declared private here template InnerIterator(const SparseMatrixBase&, Ind...
I think it shoud be: for (SparseVector::InnerIterator it(Ji,k); it; ++it), because the type of Ji is SparseVector. And it works
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A coding error in bsplinebasis.cpp line 122 :for (SparseMatrix::InnerIterator it(Ji,k); it; ++it)
When I try the lastest Eigen, it output the following error:
error:
calling a private constructor of class
'Eigen::SparseCompressedBase<Eigen::SparseMatrix<double, 0, int>
>::InnerIterator'
for (SparseMatrix::InnerIterator it(Ji,k); it; ++it)
^
/Users/jerry/Documents/articles/Faces/mycode/shadow_face/3rdparty/src/splinter/thirdparty/Eigen/Eigen/src/SparseCore/SparseCompressedBase.h:210:26: note:
declared private here
template InnerIterator(const SparseMatrixBase&, Ind...
I think it shoud be: for (SparseVector::InnerIterator it(Ji,k); it; ++it), because the type of Ji is SparseVector. And it works
The text was updated successfully, but these errors were encountered: