Cần người biết về lập trình Python

Hiện tại mình là sinh viên cuối khoá đang làm đề án tốt nghiệp . Mình cần người làm giúp vài dòng code Python, đã có source code bằng tiếng Anh sẵn . Ai có lòng hảo tâm giúp em hoặc lấy tiền công rẻ rẻ vì cũng là sinh viên :(
 
Mình sãn sàng chỉ giúp bạn, Mà code về cái gì vậy bạn ơi
Trong này có file PDF về thuật toán nó làm sẵn bằng ngôn ngữ Python http://goo.gl/js6Et9. Mình cần bổ sung thêm vài dòng toán nũa mà ko bit class, function của nó như thế nào
Bạn có thể cho mình Yh hoặc sdt liện lạc dc ko . Mình còn 1 tháng nữa , mình ko có ai giúp chắc chết :(
 
Upvote 0
Toán học dịch ra Python nó như thế này :D

def _build_problem(self):
'''
builds the problem from provided data,
i.e. adds constraints, defines obj func. etc.
'''
if self.modelBuild:
return
self.modelBuild = True
x = {}
for i in self.taskList:
x = {}
for k in self.workstationList:
x[k] = LpVariable('x_'+i+','+k, 0, 1, LpBinary)
t = LpVariable('T', None, None, LpContinuous)
# add obj function
self.__iadd__(t)
#add task assignment constraint
for i in self.taskList:
taskAssignment = lpSum(x[k] for k in self.workstationList)
self.__iadd__(taskAssignment==1)
#add cycle time constraints
for k in self.workstationList:
cycleTimeC = lpSum(self.taskTime*x[k] for i in self.taskList)
self.__iadd__(t>=cycleTimeC)
#add precedence constraints
for i in self.taskList:
if i in self.pred:
for h in self.pred:
for k in self.workstationList:
precedenceC = lpSum(x[h][str(j)] for j in range(1,int(k)+1))
precedenceC = precedenceC - x[k]
self.__iadd__(precedenceC>=0)
 
Upvote 0

Announcements

Today's birthdays

Forum statistics

Threads
426,424
Messages
7,176,873
Members
178,861
Latest member
jolibet2com

Most viewed of week

Most viewed of week

Back
Top Bottom