Alpha beta speed

Started by
10 comments, last by AndyTang 21 years, 7 months ago
ok, this may sound stupid and overly simple, but here is a suggestion

if you are calling the algorithm in the loop, as in, the loop wont continue until the algorithm is done, you can speed it up(visually) by incrementing the steps it will take. So for one loop, it does the first step, for the next loop, it does the next step, etc. etc. This may be nearly impossible for complictaed algorithms (like with for loops, those would require about 3 - 4 steps in one loop)

--Fireking

Owner/Leader
Genetics 3rd Dimension Development
--FirekingOwner/LeaderFiregames Development &Blackdragon Studios
Advertisement
Didn''t think of that, but if you don''t already do so, you should have your algorithm running in a different thread. I don''t know exactly what algorithm you use, but it will be very hard to code it single threaded and keep you app responsive, like fireking suggested.

This topic is closed to new replies.

Advertisement