Click or drag to resize

AnnealingHistory Class

Class AnnealingHistory encapsulates all of the data generated during a series of steps through an annealing schedule.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreAnnealingHistory

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public class AnnealingHistory : ICloneable

The AnnealingHistory type exposes the following members.

Properties
 NameDescription
Public propertyErrors Gets the vector of errors at each step in the annealing history.
Public propertyFunctionObsolete.
Gets the function that was minimized.
Public propertyFunctional Gets the functional that was minimized.
Public propertyItem Gets a specified step in the annealing history.
Public propertyIterations Gets the number of iterations actually performed at each step in the annealing history.
Public propertyMaximumIterations Gets the number of maximum iterations at each step in the annealing history.
Public propertyMinimumPoints Gets the minima computed at each step in the annealing history.
Public propertyMinimumValues Gets a vector of the function evaluated at the minima computed at each step in the annealing history.
Public propertySimplexes Gets an array of the starting simplexes at each step in the annealing history.
Public propertySteps Gets a list of steps in the annealing history.
Public propertyTemperatures Gets the vector of temperatures at each step in the annealing history.
Top
Methods
 NameDescription
Public methodClone Creates a deep copy of self.
Public methodToString String representation of an annealing history.
(Overrides ObjectToString)
Public methodToString(String) String representation of an annealing history with specified format string.
Top
Remarks
AnnealingMinimizer performs a minimization at each step in an annealing schedule. At each step, data is captured in an AnnealingHistoryStep and stored in an AnnealingHistory object. This data may be useful when adjusting the schedule for optimal performance.
See Also