Revert "Add template to specify QR permutation index type, Fix ColPivHouseholderQR Lapacke bindings"

This reverts commit be7791e097
This commit is contained in:
Rasmus Munk Larsen
2023-01-11 18:50:52 +00:00
parent be7791e097
commit 6156797016
10 changed files with 252 additions and 309 deletions

View File

@@ -77,9 +77,9 @@ EIGEN_ALWAYS_INLINE EIGEN_CONSTEXPR lapack_int lapack_storage_of(const EigenBase
}
/// translate UpLo type to the corresponding letter code
//template<UpLoType mode> char translate_mode;
//template<> constexpr char translate_mode<Lower> = 'L';
//template<> constexpr char translate_mode<Upper> = 'U';
template<UpLoType mode> char translate_mode;
template<> constexpr char translate_mode<Lower> = 'L';
template<> constexpr char translate_mode<Upper> = 'U';
// ---------------------------------------------------------------------------------------------------------------------