Jan 23, 2005 #1 B banh Advanced Member level 1 Joined Dec 16, 2004 Messages 458 Helped 17 Reputation 34 Reaction score 5 Trophy points 1,298 Activity points 3,935 micromouse algorithm i'm glad u can share some experiences on implementing micromouse fast run algorithm.. i did use Bellman flood algorithm. quite simple, just need another array for storing costs. flood over a few iterations until it converges. so basically, in terms of memory -> need at least 2 16x16 array: 1 for the maze itself, and 1 for bellman flood -> 512 bytes.. is there any algorithm taking less memory?
micromouse algorithm i'm glad u can share some experiences on implementing micromouse fast run algorithm.. i did use Bellman flood algorithm. quite simple, just need another array for storing costs. flood over a few iterations until it converges. so basically, in terms of memory -> need at least 2 16x16 array: 1 for the maze itself, and 1 for bellman flood -> 512 bytes.. is there any algorithm taking less memory?
Jan 23, 2005 #2 F feiutm9898 Full Member level 4 Joined May 31, 2004 Messages 224 Helped 4 Reputation 8 Reaction score 0 Trophy points 1,296 Location Singapore Activity points 2,027 Hello. I heard that the fuzzy controller with AI could be the best alternative in the design.
Jan 24, 2005 #3 B banh Advanced Member level 1 Joined Dec 16, 2004 Messages 458 Helped 17 Reputation 34 Reaction score 5 Trophy points 1,298 Activity points 3,935 micromouse solving algorithm do you have that algorithm? it sounds like consuming lotsa RAM..