Interface ConstrainedOptimSubProblem
-
- All Superinterfaces:
ConstrainedOptimProblem
,OptimProblem
public interface ConstrainedOptimSubProblem extends ConstrainedOptimProblem
A constrained optimization sub-problem takes this form. \[ \min_x f(x) \] s.t.,
This representations is simply the union of the original optimization problem and the fixed values.{x_i = v_i}, for some i's, i.e., some values of x are fixed hi(x) = 0 gi(x) ≤ 0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<Integer,Double>
fixing()
Gets the restrictions or fixed values;-
Methods inherited from interface dev.nm.solver.multivariate.constrained.problem.ConstrainedOptimProblem
getEqualityConstraints, getLessThanConstraints
-
Methods inherited from interface dev.nm.solver.problem.OptimProblem
dimension, f
-
-