OptimizeObjective constructor

OptimizeObjective({
  1. required Bound lowerBound,
  2. required AST lowerValue,
  3. required Bound upperBound,
  4. required AST upperValue,
  5. required AST objective,
})

Implementation

OptimizeObjective({
  required this.lowerBound,
  required this.lowerValue,
  required this.upperBound,
  required this.upperValue,
  required this.objective,
});