Skip to content

Commit

Permalink
Update rs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Evolutionary-Intelligence authored Dec 13, 2024
1 parent c8087af commit c26a6a9
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions pypop7/optimizers/rs/rs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ class RS(Optimizer):
This is the **abstract** class for all `RS` classes. Please use any of
its instantiated subclasses to optimize the black-box problem at hand.
.. note:: `"The topic of local search was reinvigorated in the early 1990s by surprisingly good results for large
(combinatorial) problems ... and by the incorporation of randomness, multiple simultaneous searches, and other
improvements."---[Russell&Norvig, 2022] <http://aima.cs.berkeley.edu/global-index.html>`_
**Randomized Local Search (RLS)** is often seen as one of `heuristic optimization algorithms <>`_.
.. note:: `"Local search was reinvigorated in the early 1990s by
surprisingly good results for large (combinatorial) problems ...
and by the incorporation of randomness, multiple simultaneous
searches, and other improvements."---[Russell&Norvig, 2022, AIMA]
<http://aima.cs.berkeley.edu/global-index.html>`_
**Randomized Local Search (RLS)** is often seen as one of `heuristic
optimization algorithms, also called hill climbing, steepest ascent,
or greedy search <>`_.
Parameters
----------
Expand Down

0 comments on commit c26a6a9

Please sign in to comment.