LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
ParetoPoint.m
1classdef ParetoPoint < handle
2 % ParetoPoint One point of a cost-performance tradeoff curve produced by
3 % opt.ParetoSweep. Mirrors native-Python ParetoPoint.
4 properties
5 epsilon = 0.0;
6 objectiveValue = inf;
7 feasible = false;
8 result = [];
9 end
10 methods
11 function obj = ParetoPoint(epsilon, objectiveValue, feasible, result)
12 if nargin >= 1, obj.epsilon = epsilon; end
13 if nargin >= 2, obj.objectiveValue = objectiveValue; end
14 if nargin >= 3, obj.feasible = feasible; end
15 if nargin >= 4, obj.result = result; end
16 end
17 end
18end