Lines Matching full:tasks
4 """The framework stage that produces the next generation of tasks to run.
15 """The core method template that produces the next generation of tasks to run.
17 This method waits for the results of the tasks from the previous generation.
19 next generation of tasks.
23 produced by combining two parents tasks, while in the hill climbing algorithm,
27 method, produces the next generation and submits the tasks in this generation
33 generations: The initial generations of tasks to be run.
36 result_queue: The output task queue for this pipeline stage. The new tasks
41 # Generations that have pending tasks to be executed. Pending tasks are those
42 # whose results are not ready. The tasks that have their results ready are
43 # referenced to as ready tasks. Once there is no pending generation, the
47 # Record how many initial tasks there are. If there is no task at all, the
51 # Submit all the tasks in the initial generations to the next stage of the
93 # All the tasks in the generation are finished. The generation is ready to
109 # Send the tasks of the new generations to the next stage for execution.