Move SparseColEtree common to SparseLU and SparseQR to SparseCore and fix build issue of sparseqr

This commit is contained in:
Desire NUENTSA
2013-01-14 15:59:46 +01:00
parent 904c2f137b
commit c05848a330
4 changed files with 5 additions and 5 deletions

View File

@@ -28,8 +28,8 @@
* granted, provided the above notices are retained, and a notice that
* the code was modified is included with the above copyright notice.
*/
#ifndef SPARSELU_COLETREE_H
#define SPARSELU_COLETREE_H
#ifndef SPARSE_COLETREE_H
#define SPARSE_COLETREE_H
namespace Eigen {
@@ -194,4 +194,4 @@ void treePostorder(int n, IndexVector& parent, IndexVector& post)
} // end namespace Eigen
#endif // SPARSELU_COLETREE_H
#endif // SPARSE_COLETREE_H

View File

@@ -12,7 +12,6 @@
namespace Eigen {
#include "../SparseLU/SparseLU_Coletree.h"
template<typename MatrixType, typename OrderingType> class SparseQR;
template<typename SparseQRType> struct SparseQRMatrixQReturnType;