Home | History | Annotate | Download | only in bestflags

Lines Matching refs:SPECS

38 def RandomMutate(specs, flag_set, mutation_rate):
42 specs: A list of spec from which the flag set is created.
52 for spec in specs:
93 def ReproduceWith(self, other, specs, mutation_rate):
98 specs: A list of spec from which the flag set is created.
140 return RandomMutate(specs, FlagSet(output_flags), mutation_rate)
162 SPECS = None
168 def InitMetaData(stop_threshold, num_chromosomes, num_trials, specs,
178 specs: The flags that can be used to generate new tasks.
185 GAGeneration.SPECS = specs
244 specs = GAGeneration.SPECS
268 child = mother.ReproduceWith(father, specs, mutation_rate)
280 child = RandomMutate(specs, keep_task.GetFlags(), mutation_rate)