C# Class Cream.SimulatedAnneallingSearch

SA Solving Method
Inheritance: LocalSearch
Show file Open project: kikoanis/CSharpCream Class Usage Examples

Public Methods

Method Description
SimulatedAnneallingSearch ( Cream.Network network ) : System

Initializes a new instance of the SimulatedAnneallingSearch class.

SimulatedAnneallingSearch ( Cream.Network network, int option ) : System

Initializes a new instance of the SimulatedAnneallingSearch class.

SimulatedAnneallingSearch ( Cream.Network network, int option, string name ) : System

Initializes a new instance of the SimulatedAnneallingSearch class.

SimulatedAnneallingSearch ( Cream.Network network, string name ) : System

Initializes a new instance of the SimulatedAnneallingSearch class.

Protected Methods

Method Description
NextSearch ( ) : void

The next search.

StartSearch ( ) : void

The start search.

Method Details

NextSearch() protected method

The next search.
protected NextSearch ( ) : void
return void

SimulatedAnneallingSearch() public method

Initializes a new instance of the SimulatedAnneallingSearch class.
public SimulatedAnneallingSearch ( Cream.Network network ) : System
network Cream.Network /// The network. ///
return System

SimulatedAnneallingSearch() public method

Initializes a new instance of the SimulatedAnneallingSearch class.
public SimulatedAnneallingSearch ( Cream.Network network, int option ) : System
network Cream.Network /// The network. ///
option int /// The option. ///
return System

SimulatedAnneallingSearch() public method

Initializes a new instance of the SimulatedAnneallingSearch class.
public SimulatedAnneallingSearch ( Cream.Network network, int option, string name ) : System
network Cream.Network /// The network. ///
option int /// The option. ///
name string /// The solver name. ///
return System

SimulatedAnneallingSearch() public method

Initializes a new instance of the SimulatedAnneallingSearch class.
public SimulatedAnneallingSearch ( Cream.Network network, string name ) : System
network Cream.Network /// The network. ///
name string /// The solver name. ///
return System

StartSearch() protected method

The start search.
protected StartSearch ( ) : void
return void