Author: jmannix Date: Wed Feb 24 02:57:42 2010 New Revision: 915645 URL: http://svn.apache.org/viewvc?rev=915645&view=rev Log: Revert change which made DistributedLanczosSolver have numRows be an optional argument, because I don't use optional arguments correctly, it appears.
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=915645&r1=915644&r2=915645&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 Wed Feb 24 02:57:42 2010 @@ -129,8 +129,7 @@ Option numRowsOpt = buildOption("numRows", "nr", - "Number of rows of the input matrix", - "0"); + "Number of rows of the input matrix"); Option numColsOpt = buildOption("numCols", "nc", "Number of columns of the input matrix");