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

math.optim.Optimizer Maven / Gradle / Ivy

Go to download

Elementary math utilities with a focus on random number generation, non-linear optimization, interpolation and solvers

The newest version!
/*
 * Copyright (C) 2002 Univ. of Massachusetts Amherst, Computer Science Dept.
 * This file is part of "MALLET" (MAchine Learning for LanguagE Toolkit).
 * http://mallet.cs.umass.edu/
 * This software is licensed under the terms of the Apache License, Version 2.0
 * or (at your option) any subsequent version.
 */
package math.optim;

/**
 * @author Andrew McCallum
 *         [email protected]
 */
public interface Optimizer {
    boolean optimize();

    boolean optimize(int numIterations);

    boolean isConverged();

    Optimizable getOptimizable();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy