update sparse*sparse product: the default is now a conservative algorithm preserving symbolic non zeros. The previous with auto pruning of the small value is avaible doing: (A*B).pruned() or (A*B).pruned(ref) or (A*B).pruned(ref,eps)

This commit is contained in:
Gael Guennebaud
2011-10-24 11:44:53 +02:00
parent a997dacc67
commit 1ddf88060b
7 changed files with 475 additions and 413 deletions

View File

@@ -51,8 +51,9 @@ struct Sparse {};
#include "src/Sparse/SparseAssign.h"
#include "src/Sparse/SparseRedux.h"
#include "src/Sparse/SparseFuzzy.h"
#include "src/Sparse/ConservativeSparseSparseProduct.h"
#include "src/Sparse/SparseSparseProductWithPruning.h"
#include "src/Sparse/SparseProduct.h"
#include "src/Sparse/SparseSparseProduct.h"
#include "src/Sparse/SparseDenseProduct.h"
#include "src/Sparse/SparseDiagonalProduct.h"
#include "src/Sparse/SparseTriangularView.h"