Localsolver
5.5
|
Solving parameters.
This class contains some methods allowing you to parameterize the resolution of the model. For the sake of simplicity, only a few parameters are actually offered to tune the search.
Public Member Functions | |
void | SetSeed (int seed) |
Sets the seed of the pseudo-random number generator used by the solver. | |
int | GetSeed () |
Gets the seed of the pseudo-random number generator used by the solver. | |
void | SetNbThreads (int nbThreads) |
Sets the number of threads used to parallelize the search. | |
int | GetNbThreads () |
Gets the number of threads. | |
void | SetAnnealingLevel (int annealingLevel) |
Sets the simulated annealing level. | |
int | GetAnnealingLevel () |
Gets the simulated annealing level. | |
void | SetVerbosity (int verbosity) |
Sets the verbosity level of the solver. | |
int | GetVerbosity () |
Gets the verbosity level of the solver. | |
void | SetObjectiveBound (int objectiveIndex, long bound) |
Sets the bound of the objective with the given index. | |
void | SetObjectiveBound (int objectiveIndex, double bound) |
Sets the bound of the objective with the given index. | |
void | SetIntObjectiveBound (int objectiveIndex, long bound) |
Sets the bound of the objective with the given index. | |
void | SetDoubleObjectiveBound (int objectiveIndex, double bound) |
Sets the bound of the objective with the given index. | |
long | GetObjectiveBound (int objectiveIndex) |
Gets the bound of the objective with the given index. | |
long | GetIntObjectiveBound (int objectiveIndex) |
Gets the bound of the objective with the given index. | |
double | GetDoubleObjectiveBound (int objectiveIndex) |
Gets the bound of the objective with the given index. | |
void | SetTimeBetweenDisplays (int timeBetweenDisplays) |
Sets the time in seconds between two consecutive displays in console while the solver is running. | |
int | GetTimeBetweenDisplays () |
Gets the time in seconds between two consecutive displays in console while the solver is running. | |
void | SetLogFile (string path) |
Sets the path of the LocalSolver log file. | |
string | GetLogFile () |
Returns the path of the LocalSolver log file. | |
void | SetAdvancedParam (string key, int value) |
Sets the value of an advanced parameter. | |
int | GetAdvancedParam (string key) |
Returns the value of an advanced parameter. | |
int | GetAdvancedParam (string key, int defaultValue) |
Returns the value of an advanced parameter. | |
void | SetAdvancedParam (string key, string value) |
Sets the value of an advanced parameter. | |
string | GetAdvancedParam (string key, string defaultValue) |
Returns the value of an advanced parameter. | |
override string | ToString () |
Returns a string representation of these parameters. |
|
inline |
Sets the seed of the pseudo-random number generator used by the solver.
The seed must be a positive integer. The default seed is set to 0. Only allowed in state LSState.Stopped. The search for solutions is highly randomized. Fixing the seed and the number of iterations of the solver allows you to reproduce exactly its results over several runs.
seed | Seed of the pseudo-random number generator. |
|
inline |
Gets the seed of the pseudo-random number generator used by the solver.
Only allowed in states LSState.Paused or LSState.Stopped.
|
inline |
Sets the number of threads used to parallelize the search.
The number of threads must be a strictly positive integer. The default number of threads is set to 2. Only allowed in state LSState.Stopped. By increasing the number of threads, you increase the robustness of the solver (that is, the chance to find better solutions). However, we recommend you to avoid running a number of threads which exceeds the number of cores available on your machine. Since the performance of the solver is sensible to the number of cache misses, the recommended ratio for maximizing its efficiency is to launch at most k/2 searches with k the number of cores of your hardware.
nbThreads | Number of threads. |
|
inline |
Gets the number of threads.
Only allowed in states LSState.Paused or LSState.Stopped.
|
inline |
Sets the simulated annealing level.
The level must be an integer between 0 and 9. The default simulated annealing level is set to 1. Only allowed in state LSState.Stopped. If set to 0, the search heuristic is equivalent to a standard descent: moves deteriorating the current solution are rejected. By increasing this parameter, you increase the number of uphill moves (that is, moves deteriorating the objective value of the current solution): this increases chances to reach better solutions (diversification), but slows the convergence of the search.
annealingLevel | Simulated annealing level. |
|
inline |
Gets the simulated annealing level.
Only allowed in states LSState.Paused or LSState.Stopped.
|
inline |
Sets the verbosity level of the solver.
The default verbosity is set to 1. There are 3 defined verbosity levels :
verbosity | Verbosity level: 0, 1, 2. |
|
inline |
Gets the verbosity level of the solver.
|
inline |
Sets the bound of the objective with the given index.
If the objective is minimized (resp. maximized), then the optimization of this objective is stopped as soon as this lower (resp. upper) bound is reached. It can be useful for goal programming. Only allowed in states LSState.Stopped. This method has the same behavior as SetIntObjectiveBound.
objectiveIndex | Index of the objective. |
bound | Objective bound. |
|
inline |
Sets the bound of the objective with the given index.
If the objective is minimized (resp. maximized), then the optimization of this objective is stopped as soon as this lower (resp. upper) bound is reached. It can be useful for goal programming. Only allowed in states LSState.Stopped. This method has the same behavior as SetDoubleObjectiveBound.
objectiveIndex | Index of the objective. |
bound | Objective bound. |
LSExpression.IsObjective LSExpression.IsDouble Since version 3.1
|
inline |
Sets the bound of the objective with the given index.
If the objective is minimized (resp. maximized), then the optimization of this objective is stopped as soon as this lower (resp. upper) bound is reached. It can be useful for goal programming. Only allowed in states LSState.Stopped.
objectiveIndex | Index of the objective. |
bound | Objective bound. |
LSExpression.IsObjective LSExpression.IsInt Since version 3.0
|
inline |
Sets the bound of the objective with the given index.
If the objective is minimized (resp. maximized), then the optimization of this objective is stopped as soon as this lower (resp. upper) bound is reached. It can be useful for goal programming. Only allowed in states LSState.Stopped.
objectiveIndex | Index of the objective. |
bound | Objective bound. |
LSExpression.IsObjective LSExpression.IsDouble Since version 3.0
|
inline |
Gets the bound of the objective with the given index.
Only allowed in states LSState.Paused or LSState.Stopped.
objectiveIndex | Index of the objective. |
|
inline |
Gets the bound of the objective with the given index.
Only allowed in states LSState.Paused or LSState.Stopped.
objectiveIndex | Index of the objective. |
LSParam.SetObjectiveBound Since version 3.O
|
inline |
Gets the bound of the objective with the given index.
Only allowed in states LSState.Paused or LSState.Stopped.
objectiveIndex | Index of the objective. |
LSParam.SetObjectiveBound Since version 3.0
|
inline |
Sets the time in seconds between two consecutive displays in console while the solver is running.
The default time between displays is set to 1 second. Only allowed in state LSState.Stopped.
timeBetweenDisplays | Time in seconds between displays. |
|
inline |
Gets the time in seconds between two consecutive displays in console while the solver is running.
Only allowed in states LSState.Paused or LSState.Stopped.
|
inline |
Sets the path of the LocalSolver log file.
If the path is empty, no log will be saved. To tune the logging verbosity, see SetVerbosity. Only allowed in states LSState.Stopped or LSState.Modeling.
path | Path of the log file. Leave empty to disable the logging mechanism. |
|
inline |
Returns the path of the LocalSolver log file.
If no log file was specified, an empty string is returned.
|
inline |
Sets the value of an advanced parameter.
Advanced parameters are reserved for fine tuning or debugging and should not be used by end-users. Only allowed in states LSState.Stopped.
key | Name of the parameter. |
value | Value of the parameter. |
|
inline |
Returns the value of an advanced parameter.
Advanced parameters are reserved for fine tuning or debugging and should not be used by end-users. Throws an exception if the parameter does not exist. Only allowed in states LSState.Paused or LSState.Stopped.
key | Name of the parameter. |
|
inline |
Returns the value of an advanced parameter.
Advanced parameters are reserved for fine tuning or debugging and should not be used by end-users. A default value is returned if the parameter does not exist or if no value was set for this one.
key | Name of the parameter. |
defaultValue | Default value of the parameter. |
|
inline |
Sets the value of an advanced parameter.
Advanced parameters are reserved for fine tuning or debugging and should not be used by end-users. Only allowed in states LSState.Stopped.
key | Name of the parameter. |
value | Value of the parameter. |
|
inline |
Returns the value of an advanced parameter.
Advanced parameters are reserved for fine tuning or debugging and should not be used by end-users. A default value is returned if the parameter does not exist or if no value was set for this one.
key | Name of the parameter. |
defaultValue | Default value of the parameter. |
|
inline |
Returns a string representation of these parameters.
Useful for debugging or logging purposes.