I've been writing a game in my free time, and I'm planning to add a transportation network based on a buildings demands and production. However, I'm not sure how to manage this efficiently, and most importantly with a limited CPU time.
Now I've seen this done to varying degrees in games like Tropico, or much more extensively Anno.
An open source project that seems to have similar features is OpenTTD. They define the problem as a Multi-commodity flow problem, but don't give many more details. The paper that describes their algorithm is no longer linked unfortunately.
So is defining a transportation network as an MCF problem a good approach for a game? If so, what is a good approach to solving the MCF problem. Otherwise, how would you go about solving the flow of goods from producers to consumers?