aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/benchCholesky.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/benchCholesky.cpp')
-rw-r--r--bench/benchCholesky.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/benchCholesky.cpp b/bench/benchCholesky.cpp
index ca9bb20bc..42b3e1285 100644
--- a/bench/benchCholesky.cpp
+++ b/bench/benchCholesky.cpp
@@ -49,8 +49,8 @@ __attribute__ ((noinline)) void benchLLT(const MatrixType& m)
BenchTimer timerNoSqrt, timerSqrt;
Scalar acc = 0;
- int r = ei_random<int>(0,covMat.rows()-1);
- int c = ei_random<int>(0,covMat.cols()-1);
+ int r = internal::random<int>(0,covMat.rows()-1);
+ int c = internal::random<int>(0,covMat.cols()-1);
for (int t=0; t<TRIES; ++t)
{
timerNoSqrt.start();