You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Math-Numerical/PMHillClimbingOptimizer.class.st
+31-12Lines changed: 31 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,10 @@
1
+
"
2
+
PMHillClimbingOptimizer is a class implementing the Powell's algorithm. Powell's algorithm is one of many hill climbing algorithms.
3
+
The idea underlying Powell’s algorithm is that once an optimum has been found in one direction, the chance for the biggest improvement lies in the direction perpendicular to that direction.
4
+
5
+
It has only one additional instance variable, unidimensionalFinder to hold the one-dimensional
6
+
optimizer used to find an optimum of the goal function along a given direction.
0 commit comments