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

polyrun.solver.GLPSolver Maven / Gradle / Ivy

Go to download

A library containing implementation of uniform sampling from bounded convex polytopes.

There is a newer version: 1.1.0
Show newest version
package polyrun.solver;

import polyrun.constraints.ConstraintsSystem;
import polyrun.exceptions.UnboundedSystemException;

/**
 * Solver of General Linear Programming problem.
 */
public interface GLPSolver {
    enum Direction {
        Maximize,
        Minimize
    }

    SolverResult solve(Direction direction, double[] objective, ConstraintsSystem constraints) throws UnboundedSystemException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy