Trivial Model
- Rather than do a simulation, we will just optimize a function f of four parameters a, b, c, and d:
- f(a, b, c, d) = 10.0 - (a-1)*(a-1) - (b-2)*(b-2) -
(c-3)*(c-3) - (d-4)*(d-4)
- Evaluation of the model:
- fitness = f(a, b, c, d)
- Range of parameters:
- Evaluation is definitely well-behaved.
- Stopping criterion: Stop after 1000 individuals.
Notes:
No notes for slide 51