MATH-870: deprecated OpenMapRealVector, SparseRealVector.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1390684 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2012-09-26 19:17:29 +00:00
parent dadeacc23e
commit e2bab1ae13
2 changed files with 9 additions and 1 deletions

View File

@ -32,7 +32,11 @@ import org.apache.commons.math3.util.OpenIntToDoubleHashMap.Iterator;
* {@link OpenIntToDoubleHashMap} backing store.
* @version $Id$
* @since 2.0
*/
* @deprecated As of version 3.1, this class is deprecated, for reasons exposed
* in this JIRA
* <a href="https://issues.apache.org/jira/browse/MATH-870">ticket</a>.
*/
@Deprecated
public class OpenMapRealVector extends SparseRealVector
implements Serializable {
/** Default Tolerance for having a value considered zero. */

View File

@ -20,6 +20,10 @@ package org.apache.commons.math3.linear;
* Marker class for RealVectors that require sparse backing storage
* @version $Id$
* @since 2.0
* @deprecated As of version 3.1, this class is deprecated, for reasons exposed
* in this JIRA
* <a href="https://issues.apache.org/jira/browse/MATH-870">ticket</a>.
*
*/
@Deprecated
public abstract class SparseRealVector extends RealVector {}