Esempio n. 1
0
 def NumVar(
         self, lb: "double", ub: "double", name: "std::string const &"
 ) -> "operations_research::MPVariable *":
     r""" Creates a continuous variable."""
     return _pywraplp.Solver_NumVar(self, lb, ub, name)
Esempio n. 2
0
 def NumVar(
         self, lb: 'double', ub: 'double', name: 'std::string const &'
 ) -> "operations_research::MPVariable *":
     return _pywraplp.Solver_NumVar(self, lb, ub, name)
Esempio n. 3
0
 def NumVar(self, lb, ub, name):
     return _pywraplp.Solver_NumVar(self, lb, ub, name)