com.github.chen0040.glm.search.CostEvaluationMethod Maven / Gradle / Ivy
package com.github.chen0040.glm.search;
/**
* Created by xschen on 29/4/2017.
*/
public interface CostEvaluationMethod{
double apply(double[] x, double[] lowerBounds, double[] upperBounds, Object constraint);
}