12 lines
416 B
Python
12 lines
416 B
Python
# 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
|