Class BisectionSolver

java.lang.Object
jline.opt.solver.BisectionSolver

public class BisectionSolver extends Object
Exact O(log n) solver for a single integer decision variable with monotone feasibility (the standard sizing pattern), an alternative to differential evolution. direction='min_feasible' finds the smallest feasible value (server sizing); 'max_feasible' the largest (population sizing). Mirrors native-Python line_solver.opt.sizing.BisectionSolver.