Make AbstractEvaluation public
Allow custom implementations of LeastSquaresProblem to use the default methods for computing the covariance, rms, etc. JIRA: MATH-1102 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1571307 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9ac2b15e4a
commit
b122db9eda
|
@ -33,7 +33,7 @@ import org.apache.commons.math3.util.FastMath;
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @since 3.3
|
* @since 3.3
|
||||||
*/
|
*/
|
||||||
abstract class AbstractEvaluation implements Evaluation {
|
public abstract class AbstractEvaluation implements Evaluation {
|
||||||
|
|
||||||
/** number of observations */
|
/** number of observations */
|
||||||
private final int observationSize;
|
private final int observationSize;
|
||||||
|
|
Loading…
Reference in New Issue