Applying Termination Criteria to the Cargo Problem
Explore how to implement and evaluate termination criteria in a genetic algorithm solving the cargo problem. Learn to decide when to stop the algorithm based on generations and understand the impact of termination on solution quality, preparing for deeper fitness function concepts.
We'll cover the following...
We'll cover the following...
Deciding the best termination criteria
With three possible means of determining when to stop, we need to decide which one works best for the cargo problem. The simplest is to stop after a certain number of generations. Of course, we could use a temperature mechanism, but that’s too complicated for the task at hand.
For our problem, firstly, ensure the terminate? ...