Difference between revisions of "Thread:Talk:Raspberry Pi/BerryBots demo/reply (13)"

From Robowiki
Jump to navigation Jump to search
(Reply to BerryBots demo)
 
 
Line 1: Line 1:
Actually, speed in bots has more to do with game complexity than number representation. i.e. chess has an 8x8 discrete (integer) board and the top AIs in the world are incredibly complex and slow.
+
Actually, speed in bots has more to do with game tree size (complexity) than number representation. i.e. chess has an 8x8 discrete (integer) board and the top AIs in the world are incredibly complex and slow.
  
 
Want to make bots run fast? Add a real-time constraint (skipped turns), like Robocode has.
 
Want to make bots run fast? Add a real-time constraint (skipped turns), like Robocode has.

Latest revision as of 22:22, 8 October 2012

Actually, speed in bots has more to do with game tree size (complexity) than number representation. i.e. chess has an 8x8 discrete (integer) board and the top AIs in the world are incredibly complex and slow.

Want to make bots run fast? Add a real-time constraint (skipped turns), like Robocode has.