:mod:`learner.simanneal` -- Simulated annealing learner
=======================================================

.. module:: pebl.learner.simanneal
    :synopsis: Simulated annealing learner

This module provides a learner implementing the Simulated Annealing algorithm.
More information about simulated annealing: http://en.wikipedia.org/wiki/Simulated_annealing

Configuration Parameters
------------------------

.. Autogenerated by pebl.config.paramdocs at Wed Apr 30 10:09:41 2008

.. confparam:: simanneal.delta_temp

	Change in temp between steps.
	default=0.5

.. confparam:: simanneal.max_iters_at_temp

	Max iterations at any temperature.
	default=100

.. confparam:: simanneal.seed

	Starting network for a greedy search.
	default=

.. confparam:: simanneal.start_temp

	Starting temperature for a run.
	default=100.0


SimulatedAnnealingLearner Class
-------------------------------

.. autoclass:: SimulatedAnnealingLearner
    :members:

