geneticengine.algorithms.heuristics
Module Contents
Classes
Randomly generates new solutions and keeps the best one. |
- class geneticengine.algorithms.heuristics.HeuristicSearch(problem, budget, representation, random=None, recorder=None)
Bases:
geneticengine.algorithms.api.SynthesisAlgorithmRandomly generates new solutions and keeps the best one.
- Parameters:
problem (geneticengine.problems.Problem) –
budget (geneticengine.evaluation.budget.SearchBudget) –
representation (geneticengine.representations.api.Representation) –
random (geneticengine.random.sources.RandomSource) –
recorder (geneticengine.evaluation.tracker.ProgressTracker | None) –