mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
committed by
Antonio Sanchez
parent
a11bdf3965
commit
f55a112cb1
@@ -70,8 +70,8 @@
|
|||||||
#define EIGEN_LU_STRUCTS
|
#define EIGEN_LU_STRUCTS
|
||||||
namespace Eigen {
|
namespace Eigen {
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
|
||||||
typedef enum {LUSUP, UCOL, LSUB, USUB, LLVL, ULVL} MemType;
|
enum MemType {LUSUP, UCOL, LSUB, USUB, LLVL, ULVL};
|
||||||
|
|
||||||
template <typename IndexVector, typename ScalarVector>
|
template <typename IndexVector, typename ScalarVector>
|
||||||
struct LU_GlobalLU_t {
|
struct LU_GlobalLU_t {
|
||||||
|
|||||||
@@ -254,10 +254,10 @@ struct nested<const TensorRef<PlainObjectType> >
|
|||||||
// the SAME case.
|
// the SAME case.
|
||||||
// When the stride is 1, we have the simplified case R'=R-K+1, C'=C-K+1, Pr=0,
|
// When the stride is 1, we have the simplified case R'=R-K+1, C'=C-K+1, Pr=0,
|
||||||
// Pc=0.
|
// Pc=0.
|
||||||
typedef enum {
|
enum PaddingType {
|
||||||
PADDING_VALID = 1,
|
PADDING_VALID = 1,
|
||||||
PADDING_SAME = 2
|
PADDING_SAME = 2
|
||||||
} PaddingType;
|
};
|
||||||
|
|
||||||
} // end namespace Eigen
|
} // end namespace Eigen
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user