bug #86 : use internal:: namespace instead of ei_ prefix

This commit is contained in:
Benoit Jacob
2010-10-25 10:15:22 -04:00
parent ca85a1f6c5
commit 4716040703
330 changed files with 7615 additions and 7032 deletions

View File

@@ -47,8 +47,8 @@ template<typename MatrixType> void replicate(const MatrixType& m)
MatrixX x1, x2;
VectorX vx1;
int f1 = ei_random<int>(1,10),
f2 = ei_random<int>(1,10);
int f1 = internal::random<int>(1,10),
f2 = internal::random<int>(1,10);
x1.resize(rows*f1,cols*f2);
for(int j=0; j<f2; j++)