Remove useless parameter from Eigen_sparse_matrix

This commit is contained in:
iyaz 2013-05-29 19:15:57 +03:00
parent 5e9748d275
commit f6b512f599
2 changed files with 3 additions and 3 deletions

View File

@ -38,13 +38,13 @@ namespace CGAL {
/// @heading Parameters:
/// @param T Number type.
template<class T, int Options = Eigen::RowMajor>
template<class T>
struct Eigen_sparse_matrix
{
// Public types
public:
typedef Eigen::SparseMatrix<T, Options> EigenType;
typedef Eigen::SparseMatrix<T> EigenType;
typedef T NT;
// Public operations

View File

@ -48,7 +48,7 @@ namespace CGAL {
template <class FT, class EigenMatrix, class EigenOrdering>
struct Get_eigen_matrix< ::Eigen::SparseLU<EigenMatrix, EigenOrdering >, FT> {
typedef Eigen_sparse_matrix<FT, ::Eigen::ColMajor> type;
typedef Eigen_sparse_matrix<FT> type;
};
} //internal