You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by sr...@apache.org on 2009/06/22 19:51:43 UTC

svn commit: r787329 - /lucene/mahout/trunk/core/src/main/java/org/apache/mahout/matrix/Vector.java

Author: srowen
Date: Mon Jun 22 17:51:43 2009
New Revision: 787329

URL: http://svn.apache.org/viewvc?rev=787329&view=rev
Log:
Oops, Vector should now extend Cloneable

Modified:
    lucene/mahout/trunk/core/src/main/java/org/apache/mahout/matrix/Vector.java

Modified: lucene/mahout/trunk/core/src/main/java/org/apache/mahout/matrix/Vector.java
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/core/src/main/java/org/apache/mahout/matrix/Vector.java?rev=787329&r1=787328&r2=787329&view=diff
==============================================================================
--- lucene/mahout/trunk/core/src/main/java/org/apache/mahout/matrix/Vector.java (original)
+++ lucene/mahout/trunk/core/src/main/java/org/apache/mahout/matrix/Vector.java Mon Jun 22 17:51:43 2009
@@ -24,7 +24,7 @@
 /**
  * The basic interface including numerous convenience functions
  */
-public interface Vector extends Iterable<Vector.Element>, Writable {
+public interface Vector extends Iterable<Vector.Element>, Cloneable, Writable {
 
   /**
    * Vectors may have a name associated with them, which makes them easy to identify