All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.sandia.cognition.math.AbstractUnivariateScalarFunction Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
/*
 * File:                AbstractScalarFunction.java
 * Authors:             Kevin R. Dixon
 * Company:             Sandia National Laboratories
 * Project:             Cognitive Foundry
 *
 * Copyright November 1, 2007, Sandia Corporation.  Under the terms of Contract
 * DE-AC04-94AL85000, there is a non-exclusive license for use of this work by
 * or on behalf of the U.S. Government. Export of this program may require a
 * license from the United States Government. See CopyrightHistory.txt for
 * complete details.
 *
 */

package gov.sandia.cognition.math;

import gov.sandia.cognition.annotation.CodeReview;
import gov.sandia.cognition.annotation.CodeReviews;
import gov.sandia.cognition.util.AbstractCloneableSerializable;

/**
 * Abstract implementation of ScalarFunction where the evaluate(Double) method
 * calls back into the evaluate(double) method.
 *
 * @author Kevin R. Dixon
 * @since  2.0
 *
 */
@CodeReviews(
    reviews={
        @CodeReview(
            reviewer="Kevin R. Dixon",
            date="2008-12-02",
            changesNeeded=false,
            comments={
                "Now extends AbstractCloneableSerializeable.",
                "Removed extraneous javadoc.",
                "Otherwise, class looks fine."
            }
        )
        ,
        @CodeReview(
            reviewer="Kevin R. Dixon",
            date="2008-02-08",
            changesNeeded=false,
            comments="Looks fine."
        )
    }
)
public abstract class AbstractUnivariateScalarFunction
    extends AbstractCloneableSerializable
    implements UnivariateScalarFunction
{

    public Double evaluate(
        Double input )
    {
        return this.evaluate( (double) input );
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy