aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/basicstuff.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/basicstuff.cpp')
-rw-r--r--test/basicstuff.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/basicstuff.cpp b/test/basicstuff.cpp
index b48ebbe8e..8b322deda 100644
--- a/test/basicstuff.cpp
+++ b/test/basicstuff.cpp
@@ -34,19 +34,18 @@ template<typename MatrixType> void basicStuff(const MatrixType& m)
// this test relies a lot on Random.h, and there's not much more that we can do
// to test it, hence I consider that we will have tested Random.h
- MatrixType m1 = MatrixType::Random(rows, cols),
- m2 = MatrixType::Random(rows, cols),
+ MatrixType m1 = test_random_matrix<MatrixType>(rows, cols),
+ m2 = test_random_matrix<MatrixType>(rows, cols),
m3(rows, cols),
mzero = MatrixType::Zero(rows, cols),
identity = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
::Identity(rows, rows),
- square = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
- ::Random(rows, rows);
- VectorType v1 = VectorType::Random(rows),
- v2 = VectorType::Random(rows),
+ square = test_random_matrix<Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> >(rows, rows);
+ VectorType v1 = test_random_matrix<VectorType>(rows),
+ v2 = test_random_matrix<VectorType>(rows),
vzero = VectorType::Zero(rows);
- Scalar x = ei_random<Scalar>();
+ Scalar x = test_random<Scalar>();
int r = ei_random<int>(0, rows-1),
c = ei_random<int>(0, cols-1);