momentsketch.optimizer.GenericOptimizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of momentsketch-solver Show documentation
Show all versions of momentsketch-solver Show documentation
Approximate quantile sketch using moments.
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);
}