Example #1
0
 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)
Example #3
0
 def IntVar(self, lb, ub, name):
     return _pywraplp.Solver_IntVar(self, lb, ub, name)