You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by ss...@apache.org on 2013/09/20 04:36:12 UTC

svn commit: r1524889 - /mahout/trunk/math/src/main/java/org/apache/mahout/math/solver/ConjugateGradientSolver.java

Author: sslavic
Date: Fri Sep 20 02:36:11 2013
New Revision: 1524889

URL: http://svn.apache.org/r1524889
Log:
Fixed typo in javadoc

Modified:
    mahout/trunk/math/src/main/java/org/apache/mahout/math/solver/ConjugateGradientSolver.java

Modified: mahout/trunk/math/src/main/java/org/apache/mahout/math/solver/ConjugateGradientSolver.java
URL: http://svn.apache.org/viewvc/mahout/trunk/math/src/main/java/org/apache/mahout/math/solver/ConjugateGradientSolver.java?rev=1524889&r1=1524888&r2=1524889&view=diff
==============================================================================
--- mahout/trunk/math/src/main/java/org/apache/mahout/math/solver/ConjugateGradientSolver.java (original)
+++ mahout/trunk/math/src/main/java/org/apache/mahout/math/solver/ConjugateGradientSolver.java Fri Sep 20 02:36:11 2013
@@ -33,7 +33,7 @@ import org.slf4j.LoggerFactory;
  * <p>Conjugate gradient requires the matrix A in the linear system Ax = b to be symmetric and positive
  * definite. For convenience, this implementation allows the input matrix to be be non-symmetric, in
  * which case the system A'Ax = b is solved. Because this requires only one pass through the matrix A, it
- * is faster than explictly computing A'A, then passing the results to the solver.
+ * is faster than explicitly computing A'A, then passing the results to the solver.
  * 
  * <p>For inputs that may be ill conditioned (often the case for highly sparse input), this solver
  * also accepts a parameter, lambda, which adds a scaled identity to the matrix A, solving the system