Search
AnnealLayout.TemperatureScale Property
See Also
 



Gets or sets how much the simulated temperature is decreased at each stage of the algorithm.

 Syntax

VB6  Copy Code

Public Property Get TemperatureScale() As Double
Public Property Let TemperatureScale( _
    ByVal value As Double _
)

C++  Copy Code

public:
double get_TemperatureScale ()
void put_TemperatureScale (
    double value
)

 Property Value

A double value. The default is 0.75.

 Remarks

This value should be in the interval (0,1). The algorithm produces better results when running for many Stages with a gradual temperature decrease, that is, a TemperatureScale closer to 1.

 See Also