aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Random.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-03-13 09:33:26 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-03-13 09:33:26 +0000
commitafc64f3332941653a52faa7d441c6af1adbaccc7 (patch)
tree3815cc60888c0abd247ed0c75eb672d5c219cf87 /Eigen/src/Core/Random.h
parent16257d44ddd4e9b6ba883f3233d0364cb46d3396 (diff)
a lot of renaming
internal classes: AaBb -> ei_aa_bb IntAtRunTimeIfDynamic -> ei_int_if_dynamic unify UNROLLING_LIMIT (there was no reason to have operator= use a higher limit) etc...
Diffstat (limited to 'Eigen/src/Core/Random.h')
-rw-r--r--Eigen/src/Core/Random.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/Random.h b/Eigen/src/Core/Random.h
index 1c2154b43..e560a708d 100644
--- a/Eigen/src/Core/Random.h
+++ b/Eigen/src/Core/Random.h
@@ -44,12 +44,12 @@ struct ei_traits<Random<MatrixType> >
};
};
-template<typename MatrixType> class Random : NoOperatorEquals,
+template<typename MatrixType> class Random : ei_no_assignment_operator,
public MatrixBase<Random<MatrixType> >
{
public:
- EIGEN_BASIC_PUBLIC_INTERFACE(Random)
+ EIGEN_GENERIC_PUBLIC_INTERFACE(Random)
const Random& _asArg() const { return *this; }
int _rows() const { return m_rows.value(); }
@@ -70,8 +70,8 @@ template<typename MatrixType> class Random : NoOperatorEquals,
}
protected:
- const IntAtRunTimeIfDynamic<RowsAtCompileTime> m_rows;
- const IntAtRunTimeIfDynamic<ColsAtCompileTime> m_cols;
+ const ei_int_if_dynamic<RowsAtCompileTime> m_rows;
+ const ei_int_if_dynamic<ColsAtCompileTime> m_cols;
};
/** \returns a random matrix (not an expression, the matrix is immediately evaluated).