-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have wrappers for SIMULATED-ANNEALING and HILL-CLIMBING? #368
Comments
Perspective from the aima-java repo: I had a look at the aima-java implementation to get a greater idea about this. Both the optimisation functions (Hill-Climbing and Simulated-Annealing) is to return a Node, rather than a state. HillClimbingSearch.java Maybe I was wrong with my edit - Hill-Climbing should have been changed instead of Simulated-Annealing. However, in my opinion, returning a solution state seems more intuitive than a solution node. Could somebody please weigh in on this? |
I'll have to think about this some more, and I welcome more discussion. Clearly, the path searching functions like A* search need to give you a path, which you get from a Node. For the optimization functions, if you are really using them for optimization, all you care about is the state. The difficulty is that sometimes you apply them where you aren't interested only in optimization, and you do want the path. I'm inclined to say that you should be returning the state, and if you really want to recover some other information, that should be part of the state. But I'm open to counter-arguments. |
We can have a different approach that combines the best of both features:
This has a major drawback though - the python implementation will look slightly different from the pseudocode - an outcome that is clearly undesirable given the explicit goals of the aimacode project. |
I think the algorithms and the pseudocode should be changed to use states rather than nodes. The only purpose of Nodes is to define paths, and in hillclimbing and simulated annealing, we don't define a path, so there is no need for Nodes. |
Figure 4.5 - SIMULATED-ANNEALING describes an optimization algorithm that is supposed to return a state, as per the first line of the function declaration. The rest of the implementation, however, goes on to return a node instead of its state. I am not certain about the reason behind this, but I think the pseudocode should change to match the function declaration (and the standard format of other optimisation functions in the book, such as HILL-CLIMBING). I am unsure about how to propose this as an edit to the pseudocode (or even whether I should do so or not).
The text was updated successfully, but these errors were encountered: