aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/nullary.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/nullary.cpp')
-rw-r--r--test/nullary.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/nullary.cpp b/test/nullary.cpp
index 3adfc33fe..6e91ddd52 100644
--- a/test/nullary.cpp
+++ b/test/nullary.cpp
@@ -51,8 +51,8 @@ void testVectorType(const VectorType& base)
{
typedef typename ei_traits<VectorType>::Scalar Scalar;
Scalar low = ei_random<Scalar>(-500,500);
- Scalar high = ei_random<Scalar>(-500,500);
- if (low>high) std::swap(low,high);
+ Scalar high = ei_random<Scalar>(-500,500);
+ if (low>high) std::swap(low,high);
const int size = base.size();
const Scalar step = (high-low)/(size-1);
@@ -91,7 +91,7 @@ void testVectorType(const VectorType& base)
Matrix<Scalar,Dynamic,1> size_changer(size+50);
size_changer.setLinSpaced(low,high,size);
- VERIFY( size_changer.size() == size );
+ VERIFY( size_changer.size() == size );
}
template<typename MatrixType>