def IntVar( self, lb: "double", ub: "double", name: "std::string const &" ) -> "operations_research::MPVariable *": r""" Creates an integer variable.""" return _pywraplp.Solver_IntVar(self, lb, ub, name)
def IntVar( self, lb: 'double', ub: 'double', name: 'std::string const &' ) -> "operations_research::MPVariable *": return _pywraplp.Solver_IntVar(self, lb, ub, name)
def IntVar(self, lb, ub, name): return _pywraplp.Solver_IntVar(self, lb, ub, name)