From: Scott Worley Date: Sat, 26 Nov 2011 00:19:23 +0000 (-0800) Subject: Explicit -> implicit iteration. X-Git-Url: http://git.scottworley.com/planeteer/commitdiff_plain/0372f04533a4e361960bf2b662fb4492246f1a3d?hp=0372f04533a4e361960bf2b662fb4492246f1a3d Explicit -> implicit iteration. This eliminates the whole class of bugs where the iteration order is inconsistent with the data model. It also simplifies the code by simply removing the whole 9-nested-layers of for loops along with the barnacles that were growing there (multiple passes for selling and then buying, different iteration order depending on whether the planet sells Eden warps, etc.) The downside: Parallelism is lost. This is now a single-threaded program. ---