Difference between revisions of "Talk:DemonicRage"

From Robowiki
Jump to navigation Jump to search
m (a question:)
(reply to Jlm0924)
Line 1: Line 1:
 
:Recently I have build DemonicRage a new DCgun from the ground up that uses linked list and targets everyOne..(ver 2.5+) It performs very well untuned, but first I am addressing some speed issues ..(I get skipped turn event after 60,000 scan, but notice poor performance much sooner)  I have not tested to confirm, but i believe  the distancing calculation is the main bottle neck.. I'm going to try caching the distance calculations.  I figure it should work well, the percise distance isn't even important. Do you guys do this when using kd-Trees?? perhaps within a tree?    -[[User:Jlm0924|Jlm0924]]
 
:Recently I have build DemonicRage a new DCgun from the ground up that uses linked list and targets everyOne..(ver 2.5+) It performs very well untuned, but first I am addressing some speed issues ..(I get skipped turn event after 60,000 scan, but notice poor performance much sooner)  I have not tested to confirm, but i believe  the distancing calculation is the main bottle neck.. I'm going to try caching the distance calculations.  I figure it should work well, the percise distance isn't even important. Do you guys do this when using kd-Trees?? perhaps within a tree?    -[[User:Jlm0924|Jlm0924]]
 +
 +
:I'm not sure what you mean by caching, unless you start doing approximations which would really defeat the whole point of not just using bins like VCS. No distance calculations are cached with Kd-Trees. The point of the Kd-Tree is create groups of scans in a tree, as to be able to discard whole branches of the tree at once without needing to calculate the distance to every scan. --[[User:Rednaxela|Rednaxela]] 06:20, 7 January 2010 (UTC)

Revision as of 08:20, 7 January 2010

Recently I have build DemonicRage a new DCgun from the ground up that uses linked list and targets everyOne..(ver 2.5+) It performs very well untuned, but first I am addressing some speed issues ..(I get skipped turn event after 60,000 scan, but notice poor performance much sooner) I have not tested to confirm, but i believe the distancing calculation is the main bottle neck.. I'm going to try caching the distance calculations. I figure it should work well, the percise distance isn't even important. Do you guys do this when using kd-Trees?? perhaps within a tree? -Jlm0924
I'm not sure what you mean by caching, unless you start doing approximations which would really defeat the whole point of not just using bins like VCS. No distance calculations are cached with Kd-Trees. The point of the Kd-Tree is create groups of scans in a tree, as to be able to discard whole branches of the tree at once without needing to calculate the distance to every scan. --Rednaxela 06:20, 7 January 2010 (UTC)