启发式产线分配
This commit is contained in:
11
optimizer_spidermonkey.py
Normal file
11
optimizer_spidermonkey.py
Normal file
@ -0,0 +1,11 @@
|
||||
# implementation of
|
||||
# <<Hybrid spider monkey optimisation algorithm for multi-level planning and scheduling problems of assembly lines>>
|
||||
def assemblyline_optimizer_spidermonkey(pcb_data, component_data):
|
||||
# number of swarms: 10
|
||||
# maximum number of groups: 5
|
||||
# number of loops: 100
|
||||
# food source population: 50
|
||||
# mutation rate: 0.1
|
||||
# crossover rate: 0.9
|
||||
# computation time(s): 200
|
||||
pass
|
Reference in New Issue
Block a user