Skip to content

Commit

Permalink
[MATH-917] deprecated old stat.clustering package.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1461871 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
netomi committed Mar 27, 2013
1 parent 000f980 commit 5e33544
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 1 deletion.
Expand Up @@ -26,7 +26,10 @@
* @param <T> the type of points that can be clustered
* @version $Id$
* @since 2.0
* @deprecated As of 3.2 (to be removed in 4.0),
* use {@link org.apache.commons.math3.ml.clustering.Cluster} instead
*/
@Deprecated
public class Cluster<T extends Clusterable<T>> implements Serializable {

/** Serializable version identifier. */
Expand Down
Expand Up @@ -24,7 +24,10 @@
* @param <T> the type of point that can be clustered
* @version $Id$
* @since 2.0
* @deprecated As of 3.2 (to be removed in 4.0),
* use {@link org.apache.commons.math3.ml.clustering.Clusterable} instead
*/
@Deprecated
public interface Clusterable<T> {

/**
Expand Down
Expand Up @@ -57,7 +57,10 @@
* A Density-Based Algorithm for Discovering Clusters in Large Spatial Databases with Noise</a>
* @version $Id$
* @since 3.1
* @deprecated As of 3.2 (to be removed in 4.0),
* use {@link org.apache.commons.math3.ml.clustering.DBSCANClusterer} instead
*/
@Deprecated
public class DBSCANClusterer<T extends Clusterable<T>> {

/** Maximum radius of the neighborhood to be considered. */
Expand Down
Expand Up @@ -26,7 +26,10 @@
* A simple implementation of {@link Clusterable} for points with double coordinates.
* @version $Id$
* @since 3.1
* @deprecated As of 3.2 (to be removed in 4.0),
* use {@link org.apache.commons.math3.ml.clustering.DoublePoint} instead
*/
@Deprecated
public class EuclideanDoublePoint implements Clusterable<EuclideanDoublePoint>, Serializable {

/** Serializable version identifier. */
Expand Down
Expand Up @@ -27,7 +27,10 @@
* A simple implementation of {@link Clusterable} for points with integer coordinates.
* @version $Id$
* @since 2.0
* @deprecated As of 3.2 (to be removed in 4.0),
* use {@link org.apache.commons.math3.ml.clustering.DoublePoint} instead
*/
@Deprecated
public class EuclideanIntegerPoint implements Clusterable<EuclideanIntegerPoint>, Serializable {

/** Serializable version identifier. */
Expand Down
Expand Up @@ -36,7 +36,10 @@
* @see <a href="http://en.wikipedia.org/wiki/K-means%2B%2B">K-means++ (wikipedia)</a>
* @version $Id$
* @since 2.0
* @deprecated As of 3.2 (to be removed in 4.0),
* use {@link org.apache.commons.math3.ml.clustering.KMeansPlusPlusClusterer} instead
*/
@Deprecated
public class KMeansPlusPlusClusterer<T extends Clusterable<T>> {

/** Strategies to use for replacing an empty cluster. */
Expand Down
Expand Up @@ -15,6 +15,15 @@
* limitations under the License.
*/
/**
* Clustering algorithms
* <h2>All classes and sub-packages of this package are deprecated.</h2>
* <h3>Please use their replacements, to be found under
* <ul>
* <li>{@link org.apache.commons.math3.ml.clustering}</li>
* </ul>
* </h3>
*
* <p>
* Clustering algorithms.
* </p>
*/
package org.apache.commons.math3.stat.clustering;

0 comments on commit 5e33544

Please sign in to comment.