I have lately been wondering about the pros and cons of breaking down a GA search into subproblems.
Consider a superset of the travelling salesman problem, in which the salesman must first solve a combinatorial optimization problem of which cities to visit. This may be complex - he must decide what to buy and sell at each city, the profit margin on which may depend on many factors.
Having decided on a set of cities he must decide on a route (classic TSP) which will of course have cost implications as well.
So there are two alternatives for an algorithm here:
construct a genome from
[which cities and what to trade][route], and run a GA on thisconstruct a genome from
[which cities and what to trade]. Evaluating the fitness of each combination entails running an inner GA loop to figure out an optimal[route], before the profit from that combination of cities/commodities is known. The outer GA loop optimises[which cities and what to trade].
So which is best?
On efficiency - I'm not sure. The overall search space is just as big either way, so presumably there isn't much in it. There is a risk with option 2 that the outer GA loop will be forced to pick combinations that the inner GA loop finds more tractable. But then I think the same problem is there with option 1, albeit phrased as "we must pick genomes that work well as a whole". Swings and roundabouts then?
On modularity - from a software engineering perspective, option 2 better allows you to work on and test different subsystems of the model separately. So is better.
On reusability - one disadvantage of option 2 is that it's not easy to test an individual scenario
[which cities and what to trade][route]without running the inner optimization loop. This may be a disadvantage if trying to reuse the fitness routines in e.g. a Bayesian model.
I get the impression this is a software engineering consideration rather than a GA problem. Am I right?