[mlpack-svn] r14926 - mlpack/trunk/src/mlpack/methods/kmeans

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Thu Apr 18 21:04:50 EDT 2013


Author: rcurtin
Date: 2013-04-18 21:04:50 -0400 (Thu, 18 Apr 2013)
New Revision: 14926

Modified:
   mlpack/trunk/src/mlpack/methods/kmeans/kmeans.hpp
Log:
I don't like how Doxygen does @see; this should look a little better.


Modified: mlpack/trunk/src/mlpack/methods/kmeans/kmeans.hpp
===================================================================
--- mlpack/trunk/src/mlpack/methods/kmeans/kmeans.hpp	2013-04-19 00:54:20 UTC (rev 14925)
+++ mlpack/trunk/src/mlpack/methods/kmeans/kmeans.hpp	2013-04-19 01:04:50 UTC (rev 14926)
@@ -47,10 +47,12 @@
  *     metric::LMetric for an example.
  * @tparam InitialPartitionPolicy Initial partitioning policy; must implement a
  *     default constructor and 'void Cluster(const arma::mat&, const size_t,
- *     arma::Col<size_t>&)'.  @see RandomPartition for an example.
+ *     arma::Col<size_t>&)'.
  * @tparam EmptyClusterPolicy Policy for what to do on an empty cluster; must
  *     implement a default constructor and 'void EmptyCluster(const arma::mat&,
- *     arma::Col<size_t&)'.  @see AllowEmptyClusters and MaxVarianceNewCluster.
+ *     arma::Col<size_t&)'.
+ *
+ * @see RandomPartition, RefinedStart, AllowEmptyClusters, MaxVarianceNewCluster
  */
 template<typename DistanceMetric = metric::SquaredEuclideanDistance,
          typename InitialPartitionPolicy = RandomPartition,




More information about the mlpack-svn mailing list