mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-17 03:43:13 +08:00
mv the Skyline module to unsupported/
This commit is contained in:
parent
1333fe651d
commit
1879403562
@ -201,7 +201,7 @@ enum { AsRequested=0, EnforceAlignedAccess=2 };
|
||||
enum { ConditionalJumpCost = 5 };
|
||||
enum CornerType { TopLeft, TopRight, BottomLeft, BottomRight };
|
||||
enum DirectionType { Vertical, Horizontal, BothDirections };
|
||||
enum ProductEvaluationMode { NormalProduct, CacheFriendlyProduct, SparseTimeSparseProduct, SparseTimeDenseProduct, DenseTimeSparseProduct, SkylineTimeDenseProduct };
|
||||
enum ProductEvaluationMode { NormalProduct, CacheFriendlyProduct, SparseTimeSparseProduct, SparseTimeDenseProduct, DenseTimeSparseProduct };
|
||||
|
||||
enum {
|
||||
/** \internal Equivalent to a slice vectorization for fixed-size matrices having good alignment
|
||||
|
@ -74,7 +74,6 @@ template<typename DecompositionType> struct ei_image_retval_base;
|
||||
template<typename DecompositionType> struct ei_image_retval;
|
||||
|
||||
template<typename _Scalar, int Rows=Dynamic, int Cols=Dynamic, int Supers=Dynamic, int Subs=Dynamic, int Options=0> class BandMatrix;
|
||||
template<typename _Scalar, int Rows=Dynamic, int Cols=Dynamic, int ColsUsed=Dynamic, int Options=0> class ColumnMatrix;
|
||||
|
||||
template<typename Lhs, typename Rhs> struct ei_product_type;
|
||||
template<typename Lhs, typename Rhs,
|
||||
@ -150,8 +149,6 @@ template<typename MatrixType,int Direction> class Homogeneous;
|
||||
|
||||
// Sparse module:
|
||||
template<typename Lhs, typename Rhs, int ProductMode> class SparseProduct;
|
||||
// Skyline module:
|
||||
template<typename Lhs, typename Rhs, int ProductMode> class SkylineProduct;
|
||||
|
||||
|
||||
#endif // EIGEN_FORWARDDECLARATIONS_H
|
||||
|
@ -2,3 +2,6 @@ ADD_SUBDIRECTORY(IterativeSolvers)
|
||||
ADD_SUBDIRECTORY(BVH)
|
||||
ADD_SUBDIRECTORY(AutoDiff)
|
||||
ADD_SUBDIRECTORY(MoreVectorization)
|
||||
ADD_SUBDIRECTORY(FFT)
|
||||
ADD_SUBDIRECTORY(Skyline)
|
||||
ADD_SUBDIRECTORY(MatrixFunctions)
|
||||
|
@ -35,8 +35,6 @@
|
||||
*
|
||||
* \param Derived
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
template<typename Derived> class SkylineMatrixBase : public AnyMatrixBase<Derived> {
|
||||
public:
|
@ -1,7 +1,7 @@
|
||||
// This file is part of Eigen, a lightweight C++ template library
|
||||
// for linear algebra.
|
||||
//
|
||||
// Copyright (C) 2008 Guillaume Saupin <guillaume.saupin@cea.fr>
|
||||
// Copyright (C) 2008-2009 Guillaume Saupin <guillaume.saupin@cea.fr>
|
||||
//
|
||||
// Eigen is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Lesser General Public
|
@ -33,7 +33,7 @@
|
||||
|
||||
const unsigned int SkylineBit = 0x1200;
|
||||
template<typename Lhs, typename Rhs, int ProductMode> class SkylineProduct;
|
||||
enum AdditionalProductEvaluationMode {SkylineTimeSkylineProduct, DenseTimeSkylineProduct};
|
||||
enum AdditionalProductEvaluationMode {SkylineTimeDenseProduct, SkylineTimeSkylineProduct, DenseTimeSkylineProduct};
|
||||
enum {IsSkyline = SkylineBit};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user