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

momentsketch.optimizer.GenericOptimizer Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
package momentsketch.optimizer;

public interface GenericOptimizer {
    void setVerbose(boolean flag);

    void setMaxIter(int maxIter);

    boolean isConverged();

    int getStepCount();

    FunctionWithHessian getP();

    double[] solve(double[] start, double gradTol);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy