aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Replicate.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-06-29 10:10:47 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-06-29 10:10:47 -0400
commite5de9e5226495f6d012dcace3bb227f6ba1e413c (patch)
tree83e7c49ebc0e12e478a569a73016edd557b2b23f /Eigen/src/Core/Replicate.h
parent76152e9844582d1afc636f6e64738a8400306e48 (diff)
Remove \nonstable yet. The stability rules for Eigen3 are much simpler:
- all what's not in unsupported/ is considered stable API (except internal stuff e.g. expression templates).
Diffstat (limited to 'Eigen/src/Core/Replicate.h')
-rw-r--r--Eigen/src/Core/Replicate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/Replicate.h b/Eigen/src/Core/Replicate.h
index 2f9355d33..23f02c2d9 100644
--- a/Eigen/src/Core/Replicate.h
+++ b/Eigen/src/Core/Replicate.h
@@ -25,7 +25,7 @@
#ifndef EIGEN_REPLICATE_H
#define EIGEN_REPLICATE_H
-/** \nonstableyet
+/**
* \class Replicate
*
* \brief Expression of the multiple replication of a matrix or vector
@@ -125,7 +125,7 @@ template<typename MatrixType,int RowFactor,int ColFactor> class Replicate
const ei_variable_if_dynamic<Index, ColFactor> m_colFactor;
};
-/** \nonstableyet
+/**
* \return an expression of the replication of \c *this
*
* Example: \include MatrixBase_replicate.cpp
@@ -141,7 +141,7 @@ DenseBase<Derived>::replicate() const
return Replicate<Derived,RowFactor,ColFactor>(derived());
}
-/** \nonstableyet
+/**
* \return an expression of the replication of \c *this
*
* Example: \include MatrixBase_replicate_int_int.cpp
@@ -156,7 +156,7 @@ DenseBase<Derived>::replicate(Index rowFactor,Index colFactor) const
return Replicate<Derived,Dynamic,Dynamic>(derived(),rowFactor,colFactor);
}
-/** \nonstableyet
+/**
* \return an expression of the replication of each column (or row) of \c *this
*
* Example: \include DirectionWise_replicate_int.cpp