Artificial Intelligence Search Question - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T10:27:21Z http://stackoverflow.com/feeds/question/589781 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/589781/artificial-intelligence-search-question 1 Artificial Intelligence Search Question Hani 2009-02-26T09:21:50Z 2009-07-03T01:00:03Z <p>Hello, everybody. I am working on a university timetable scheduler project. Mainly, I am using taboo search, but I want to ask:</p> <p>In general search, you can explore all neighbors of the current state and then take the best state - according to a fitness or evaluation function, - but in such a project, generating all neighbors will make performance down, so is there any way that make me bypass such problem? For example, can I generate children for only one state and then benefit from this generation for all other states during the search process?</p> <p>Please, if anyone has an expert in such algorithms, please tell me, because I have worked hard on such issues.</p> <p>Thanks All<br /> Hani Almousli</p> http://stackoverflow.com/questions/589781/artificial-intelligence-search-question/589816#589816 0 Answer by shoosh for Artificial Intelligence Search Question shoosh 2009-02-26T09:32:47Z 2009-02-26T09:32:47Z <p>I'm no expert but it's usually not hard thinking about optimization for such calculations.<br /> It really depends on the fitness function you use. Usually, knowing the fitness of a node you can deduce the range or even just worst to best case range of fitness of the children.<br /> With a simple enough function you might actually be able calculate the fitness of the children even without explicitly generating them and then only generate them if its worth while.</p> http://stackoverflow.com/questions/589781/artificial-intelligence-search-question/589896#589896 1 Answer by dirkgently for Artificial Intelligence Search Question dirkgently 2009-02-26T10:03:09Z 2009-02-26T10:03:09Z <p>Addendum to shoosh's comments: Are you looking for <a href="http://en.wikipedia.org/wiki/Pruning%5F%28algorithm%29" rel="nofollow">pruning</a>? Numerous such strategies exist including <a href="http://en.wikipedia.org/wiki/Alpha-beta%5Fpruning" rel="nofollow">this</a> one. Remember, one size does not fit all. So, you will probably have to design a heuristic to suit your needs.</p> http://stackoverflow.com/questions/589781/artificial-intelligence-search-question/598136#598136 0 Answer by joel.neely for Artificial Intelligence Search Question joel.neely 2009-02-28T15:13:03Z 2009-02-28T15:13:03Z <p>Addenda to previous comments: pruning can also be done at multiple levels, depending on your performance and memory constraints. For example:</p> <ol> <li><p>Put the initial state into a priority queue.</p></li> <li><p>Until termination (e.g. queue is empty, adequate solution found, time limit expired, ...), repeat the following:</p> <p>2.1. Take the top entry from the queue.</p> <p>2.2. Generate its children (using an estimator to get highest-value children first, if possible).</p> <p>2.3. As each child is generated, put it into the priority queue. Once the queue reaches a size limit (which you probably determine empirically by trial and error), each insertion into the queue should be accompanied by deletion of the lowest-value element in the queue.</p></li> </ol> <p>Obviously, having good estimating/evaluating functions is important to making this work. Your queue evaluation function can be tweaked to take "generation" into account (e.g. giving a weighted bonus to states nearer the initial state, at shallower depth) to tune its bias between depth-preferences and breadth-preference.</p>