org.jgrapht.experimental.alg.ApproximationAlgorithm Maven / Gradle / Ivy
Go to download
JGraphT is a free Java graph library
that provides mathematical graph-theory objects and algorithms
The newest version!
package org.jgrapht.experimental.alg;
import java.util.*;
public interface ApproximationAlgorithm
{
//~ Methods ----------------------------------------------------------------
ResultType getUpperBound(Map optionalData);
ResultType getLowerBound(Map optionalData);
boolean isExact();
}
// End ApproximationAlgorithm.java