Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Random optimization
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Algorithm == {{See also|Simulated annealing}} Let <math>f: \mathbb{R}^{n} \rarr \mathbb{R}</math> be the fitness or cost function which must be minimized. Let <math>x \isin \mathbb{R}^{n}</math> designate a position or candidate solution in the search-space. The basic RO algorithm can then be described as: * Initialize '''x''' with a random position in the search-space. * Until a termination criterion is met (e.g. number of iterations performed, or adequate fitness reached), repeat the following: ** Sample a new position '''y''' by adding a [[normal distribution|normally distributed]] random vector to the current position '''x''' ** If (''f''('''y''') < ''f''('''x''')) then move to the new position by setting '''x''' = '''y''' * Now '''x''' holds the best-found position. This algorithm corresponds to a (1+1) [[evolution strategy]] with constant step-size.
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)