You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by jm...@apache.org on 2010/02/23 18:12:19 UTC

svn commit: r915440 - /lucene/mahout/trunk/core/src/main/java/org/apache/mahout/math/hadoop/decomposer/DistributedLanczosSolver.java

Author: jmannix
Date: Tue Feb 23 17:12:19 2010
New Revision: 915440

URL: http://svn.apache.org/viewvc?rev=915440&view=rev
Log:
As noticed by Danny Leshem, these few lines should not have been in the file.  Spurious errors generated, but the code was still outputting correct results, but
trying to run another job.  

Modified:
    lucene/mahout/trunk/core/src/main/java/org/apache/mahout/math/hadoop/decomposer/DistributedLanczosSolver.java

Modified: lucene/mahout/trunk/core/src/main/java/org/apache/mahout/math/hadoop/decomposer/DistributedLanczosSolver.java
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/core/src/main/java/org/apache/mahout/math/hadoop/decomposer/DistributedLanczosSolver.java?rev=915440&r1=915439&r2=915440&view=diff
==============================================================================
--- lucene/mahout/trunk/core/src/main/java/org/apache/mahout/math/hadoop/decomposer/DistributedLanczosSolver.java (original)
+++ lucene/mahout/trunk/core/src/main/java/org/apache/mahout/math/hadoop/decomposer/DistributedLanczosSolver.java Tue Feb 23 17:12:19 2010
@@ -66,12 +66,6 @@
     matrix.configure(new JobConf(getConf()));
     solve(matrix, desiredRank, eigenVectors, eigenValues);
 
-    // TODO ack!
-    EigenVerificationJob evj = new EigenVerificationJob();
-    evj.setEigensToVerify(eigenVectors);
-    evj.setConf(getConf());
-    evj.run(new String[] {"--input", parsedArgs.get("--input"), "--output", parsedArgs.get("--output")});
-
     serializeOutput(eigenVectors, eigenValues, outputEigenVectorPath);  
     return 0;
   }