14package com.google.ortools.modelbuilder;
17public class Variable
implements LinearArgument {
18 Variable(ModelBuilderHelper
helper,
double lb,
double ub,
boolean isIntegral, String name) {
21 this.helper.setVarName(
index, name);
22 this.helper.setVarIntegrality(
index, isIntegral);
23 this.helper.setVarLowerBound(
index, lb);
24 this.helper.setVarUpperBound(
index, ub);