mirror of https://github.com/CGAL/cgal
Remove useless parameter from Eigen_sparse_matrix
This commit is contained in:
parent
5e9748d275
commit
f6b512f599
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue