Add Sparse Subset of Matrix Inverse

This commit is contained in:
Julian Kent
2022-07-28 18:04:35 +00:00
committed by Rasmus Munk Larsen
parent 34780d8bd1
commit 69714ff613
4 changed files with 329 additions and 0 deletions

View File

@@ -33,6 +33,7 @@
*
* This module contains some experimental features extending the sparse module:
* - A RandomSetter which is a wrapper object allowing to set/update a sparse matrix with random access.
* - A SparseInverse which calculates a sparse subset of the inverse of a sparse matrix corresponding to nonzeros of the input
* - MatrixMarket format(https://math.nist.gov/MatrixMarket/formats.html) readers and writers for sparse and dense matrices.
*
* \code
@@ -42,6 +43,7 @@
#include "src/SparseExtra/RandomSetter.h"
#include "src/SparseExtra/SparseInverse.h"
#include "src/SparseExtra/MarketIO.h"