------------------------------------------------------------------------ r71641 | xinhuan | 2008-04-26 11:09:12 -0400 (Sat, 26 Apr 2008) | 1 line Changed paths: M /trunk/Routes/TSP.lua Routes: Remove unnecessary semicolons and brackets for consistency with the rest of the addon. ------------------------------------------------------------------------ r71639 | xinhuan | 2008-04-26 10:48:04 -0400 (Sat, 26 Apr 2008) | 1 line Changed paths: M /trunk/Routes/TSP.lua Routes: Reduce execution time of the route generating algorithm by about 20%. This is done by taking a time consuming line of code (it performs a = b^c / d^e) out of an inner loop and pre-calculating the results, which reduced the number of times it is executed from roughly O(N^3) to O(N^2). ------------------------------------------------------------------------ r69846 | xinhuan | 2008-04-15 03:30:30 -0400 (Tue, 15 Apr 2008) | 2 lines Changed paths: M /trunk/Routes/Routes.lua M /trunk/Routes/TSP.lua Routes: - Remove hooking and unhooking mechanism for SetZoom minimap updates by using the existing OnUpdate frame instead. This fixes hooking issues with other addons and also reduces the amount of unnecessary minimap line redraws. - Tweak the initial starting pheromone value of every edge in the complete graph from 0 to 0.1. This gives every edge an initial small but unequal (because of the inverse distance used) probability of being traveled to by an ant in the first iteration of route construction instead of the probability being all 0. This means we get better route generation. ------------------------------------------------------------------------ r69237 | xinhuan | 2008-04-12 02:27:32 -0400 (Sat, 12 Apr 2008) | 1 line Changed paths: M /trunk/Routes/Modules/AutoShow.lua Routes: Convert to use GetSpellInfo() ------------------------------------------------------------------------ r68036 | onlyfly | 2008-04-04 06:45:15 -0400 (Fri, 04 Apr 2008) | 1 line Changed paths: M /trunk/Routes/Locales/Locale-zhCN.lua M /trunk/Routes/Routes.toc Routes: Update zhCN localizations ------------------------------------------------------------------------ r67774 | xinhuan | 2008-04-02 21:48:00 -0400 (Wed, 02 Apr 2008) | 1 line Changed paths: M /trunk/Routes/Locales/Locale-zhTW.lua Routes: Add zhTW translation by NightOwl ------------------------------------------------------------------------ r67627 | wang | 2008-04-02 01:36:01 -0400 (Wed, 02 Apr 2008) | 1 line Changed paths: M /trunk/Routes/Locales/Locale-zhCN.lua Routes: zhCN local added ------------------------------------------------------------------------