Lines Matching full:tasks
4 """A generation of a set of tasks.
8 This module contains the base generation class. This class contains the tasks of
10 until all the tasks in this generation are done executing. It also contains a
11 set of tasks that could potentially be used to generate the next generation,
35 """Set up the tasks set of this generation.
38 exe_set: A set of tasks to be run.
39 candidate_pool: A set of tasks to be considered to be used to generate the
46 # Keeping the record of how many tasks are pending. Pending tasks are the
49 # generations until all its pending tasks have been executed.
53 """Return the candidate tasks of this generation."""
63 """All the tasks in this generation are done.
66 True if all the tasks have been executed. That is the number of pending
77 that is the same as the input task. Two tasks are the same if their flag
128 _: A set of tasks that have been generated before. The overridden method