You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by to...@apache.org on 2012/10/08 17:14:27 UTC

svn commit: r1395605 - /hama/trunk/ml/src/main/java/org/apache/hama/ml/regression/HypothesisFunction.java

Author: tommaso
Date: Mon Oct  8 15:14:26 2012
New Revision: 1395605

URL: http://svn.apache.org/viewvc?rev=1395605&view=rev
Log:
[HAMA-651] - fixed format

Modified:
    hama/trunk/ml/src/main/java/org/apache/hama/ml/regression/HypothesisFunction.java

Modified: hama/trunk/ml/src/main/java/org/apache/hama/ml/regression/HypothesisFunction.java
URL: http://svn.apache.org/viewvc/hama/trunk/ml/src/main/java/org/apache/hama/ml/regression/HypothesisFunction.java?rev=1395605&r1=1395604&r2=1395605&view=diff
==============================================================================
--- hama/trunk/ml/src/main/java/org/apache/hama/ml/regression/HypothesisFunction.java (original)
+++ hama/trunk/ml/src/main/java/org/apache/hama/ml/regression/HypothesisFunction.java Mon Oct  8 15:14:26 2012
@@ -24,13 +24,13 @@ import org.apache.hama.ml.math.DoubleVec
  */
 public interface HypothesisFunction {
 
-    /**
-     * Applies the applyHypothesis given a set of parameters theta to a given input x
-     *
-     * @param theta the parameters vector
-     * @param x     the input
-     * @return a <code>double</code> number
-     */
-    public double applyHypothesis(DoubleVector theta, DoubleVector x);
+  /**
+   * Applies the applyHypothesis given a set of parameters theta to a given input x
+   *
+   * @param theta the parameters vector
+   * @param x     the input
+   * @return a <code>double</code> number
+   */
+  public double applyHypothesis(DoubleVector theta, DoubleVector x);
 
 }