Removed redundant conjugation operations from matrix_traits. (#65)

This commit is contained in:
Andrew Kerr 2019-11-20 11:27:13 -08:00 committed by GitHub
parent 8aca98f9a7
commit 45ecbc885b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,9 +43,7 @@ enum class MatrixLayout {
/// Transformation applied to matrix operands /// Transformation applied to matrix operands
enum class MatrixTransform { enum class MatrixTransform {
kNone, /// no operation kNone, /// no operation
kTranspose, /// transpose operation kTranspose /// transpose operation
kConjugate, /// conjugate
kHermitian /// conjugate transpose
}; };
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////