geneticengine.algorithms.hill_climbing

Classes

HC

Hill Climbing performs a local search within a neighbourhood.

Module Contents

class geneticengine.algorithms.hill_climbing.HC(problem, budget, representation, random=None, tracker=None, number_of_mutations=5)

Bases: geneticengine.algorithms.heuristics.HeuristicSearch

Hill Climbing performs a local search within a neighbourhood.

Parameters:
number_of_mutations = 5
Return type:

list[geneticengine.solutions.individual.Individual] | None