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:
|
/// @heading Parameters:
|
||||||
/// @param T Number type.
|
/// @param T Number type.
|
||||||
|
|
||||||
template<class T, int Options = Eigen::RowMajor>
|
template<class T>
|
||||||
struct Eigen_sparse_matrix
|
struct Eigen_sparse_matrix
|
||||||
{
|
{
|
||||||
// Public types
|
// Public types
|
||||||
public:
|
public:
|
||||||
|
|
||||||
typedef Eigen::SparseMatrix<T, Options> EigenType;
|
typedef Eigen::SparseMatrix<T> EigenType;
|
||||||
typedef T NT;
|
typedef T NT;
|
||||||
|
|
||||||
// Public operations
|
// Public operations
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ namespace CGAL {
|
||||||
|
|
||||||
template <class FT, class EigenMatrix, class EigenOrdering>
|
template <class FT, class EigenMatrix, class EigenOrdering>
|
||||||
struct Get_eigen_matrix< ::Eigen::SparseLU<EigenMatrix, EigenOrdering >, FT> {
|
struct Get_eigen_matrix< ::Eigen::SparseLU<EigenMatrix, EigenOrdering >, FT> {
|
||||||
typedef Eigen_sparse_matrix<FT, ::Eigen::ColMajor> type;
|
typedef Eigen_sparse_matrix<FT> type;
|
||||||
};
|
};
|
||||||
} //internal
|
} //internal
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue