You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 8, 2024. It is now read-only.
SparseBlockMatrix is only partially integrated with the Eigen library. In particular, it is not possible to use SparseBlockMatrix as template parameter of a sparse solver. This means that the following code doesn't compile
In this case the compiler fails because of method outerIndexPtr() not found. Providing this method will solve the issue, neverthless this feature requires an in-depth reogranization of the data type internals.
Currently we can circumvent the problem by using an instance of SparseLU<SpMatrix<double>> to factorize a SparseBlockMatrix. Neverthless this would most likely cause Eigen to perform a costly copy of the matrix into temprary storage because of the type mismatch.