Fixed indentation

This commit is contained in:
Benoit Steiner
2016-02-04 10:34:10 -08:00
parent d93b71a301
commit 6c9cf117c1
6 changed files with 27 additions and 25 deletions

View File

@@ -54,11 +54,12 @@ template<> struct packet_traits<float> : default_packet_traits
AlignedOnScalar = 1,
size = 16,
HasHalfPacket = 1,
HasExp = 0,
HasLog = 1,
HasExp = 1,
HasDiv = 1,
HasBlend = 1,
HasSqrt = 0,
HasRsqrt = 0,
HasSqrt = 1,
HasRsqrt = 1,
HasSelect = 1,
HasEq = 1
};
@@ -72,11 +73,11 @@ template<> struct packet_traits<double> : default_packet_traits
AlignedOnScalar = 1,
size = 8,
HasHalfPacket = 1,
HasExp = 0,
HasExp = 1,
HasDiv = 1,
HasBlend = 1,
HasSqrt = 0,
HasRsqrt = 0,
HasSqrt = 1,
HasRsqrt = EIGEN_FAST_MATH,
HasSelect = 1,
HasEq = 1
};