HxParam Class¶
- class Hexaly.Optimizer.HxParam¶
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.
Summary¶
Returns the Hexaly Optimizer object associated to these parameters. |
|
Sets the seed of the pseudo-random number generator used by the solver. |
|
Gets the seed of the pseudo-random number generator used by the solver. |
|
Sets the number of threads used to parallelize the search. |
|
Gets the number of threads. |
|
Sets the time limit in seconds. |
|
Gets the time limit in seconds. |
|
Sets the maximum number of iterations. |
|
Gets the maximum number of iterations. |
|
Sets the simulated annealing levelDeprecated since version 8.5: The annealing level doesn’t have a significant influence on the search anymore. |
|
Gets the simulated annealing levelDeprecated since version 8.5: The annealing level doesn’t have a significant influence on the search anymore. |
|
Sets the verbosity level of the solver. |
|
Gets the verbosity level of the solver. |
|
Sets the time in seconds between two consecutive displays in console while the solver is running. |
|
Gets the time in seconds between two consecutive displays in console while the solver is running. |
|
Sets the time in seconds between two events of type LSCallbackType.TimeTicked. |
|
Gets the time in seconds between two events of type LSCallbackType.TimeTicked. |
|
Sets the number of iterations between two events of type LSCallbackType.IterationTicked. |
|
Gets the number of iterations between two events of type LSCallbackType.IterationTicked. |
|
Sets the writer used by Hexaly Optimizer for its logging. |
|
Returns the writer used by Hexaly Optimizer for its logging. |
|
Sets the path of the Hexaly Optimizer log file. |
|
Returns the path of the Hexaly Optimizer log file. |
|
Sets the threshold of the objective with the given index. |
|
Sets the threshold of the objective with the given index. |
|
Sets the threshold of the objective with the given index. |
|
Gets the threshold of the objective with the given index. |
|
Gets the threshold of the objective with the given index. |
|
Gets the threshold of the objective with the given index. |
|
Reserved for maintenance purpose. |
|
Reserved for maintenance purpose. |
|
Returns a string representation of these parameters. |
Instance methods¶
- HexalyOptimizer GetOptimizer()¶
Returns the Hexaly Optimizer object associated to these parameters.
- Returns:
HexalyOptimizer object
- Return type:
- void SetSeed(int seed)¶
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 states
Modeling
orStopped
.- Arguments:
seed (int) – Seed of the pseudo-random number generator.
- int GetSeed()¶
Gets the seed of the pseudo-random number generator used by the solver.
- Returns:
Seed of the pseudo-random number generator.
- See:
- void SetNbThreads(int nbThreads)¶
Sets the number of threads used to parallelize the search. The number of threads must be a positive integer. The default number of threads is set to 0 which means that the number of threads is automatically adapted to your computer and to your optimization model. Only allowed in states
Modeling
orStopped
.This parameter is indicative, if needed Hexaly Optimizer may use more threads. The actual number of threads can also vary during the search.
- Arguments:
nbThreads (int) – Number of threads.
- int GetNbThreads()¶
Gets the number of threads. By convention, value 0 means that the number of threads is automatically adapted to your computer and to your optimization model.
- Returns:
Number of threads.
- See:
- void SetTimeLimit(int timeLimit)¶
Sets the time limit in seconds. Only allowed in states
Modeling
orStopped
.This is not allowed if you have defined multiple phases. Use
HxPhase.SetTimeLimit
to set the limit for each phase instead.- Arguments:
timeLimit (int) – Time limit in seconds.
- See:
- int GetTimeLimit()¶
Gets the time limit in seconds.
This is not allowed if you have defined multiple phases. Use
HxPhase.GetTimeLimit
instead.- Returns:
Time limit in seconds.
- See:
- See:
- void SetIterationLimit(long iterationLimit)¶
Sets the maximum number of iterations. Only allowed in states
Modeling
orStopped
.- Arguments:
iterationLimit (long) – Iteration limit.
- See:
- long GetIterationLimit()¶
Gets the maximum number of iterations.
- Returns:
Iteration limit.
- See:
- See:
- void SetAnnealingLevel(int annealingLevel)¶
Sets the simulated annealing level
Deprecated since version 8.5: The annealing level doesn’t have a significant influence on the search anymore. The tuning of this parameter won’t be allowed in a future version.
The level must be an integer between 0 and 9. The default simulated annealing level is set to 1. Only allowed in states
Modeling
orStopped
.- Arguments:
annealingLevel (int) – Simulated annealing level.
- int GetAnnealingLevel()¶
Gets the simulated annealing level
Deprecated since version 8.5: The annealing level doesn’t have a significant influence on the search anymore. The tuning of this parameter won’t be allowed in a future version.
- Returns:
Simulated annealing level.
- See:
- void SetVerbosity(int verbosity)¶
Sets the verbosity level of the solver. The default verbosity is set to 1. Only allowed in states
Modeling
orStopped
. There are 3 defined verbosity levels:0: All the traces are disabled.
1: Normal verbosity. This is the default level.
2: Detailed verbosity. Displays statistics during the search.
- Arguments:
verbosity (int) – Verbosity level: 0, 1, 2.
- int GetVerbosity()¶
Gets the verbosity level of the solver.
- Returns:
verbosity Verbosity level: 0, 1 or 2.
- See:
- void SetTimeBetweenDisplays(int timeBetweenDisplays)¶
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 states
Modeling
orStopped
.- Arguments:
timeBetweenDisplays (int) – Time in seconds between displays.
- int GetTimeBetweenDisplays()¶
Gets the time in seconds between two consecutive displays in console while the solver is running.
- Returns:
Time in seconds between displays.
- Return type:
int
- See:
- void SetTimeBetweenTicks(int timeBetweenTicks)¶
Sets the time in seconds between two events of type
LSCallbackType.TimeTicked
. The default time between ticks is set to 1 second. Only allowed in statesModeling
orStopped
.- Since:
6.0
- Arguments:
timeBetweenTicks (int) – Time in seconds between ticks.
- int GetTimeBetweenTicks()¶
Gets the time in seconds between two events of type
LSCallbackType.TimeTicked
.- Since:
6.0
- Returns:
Time in seconds between ticks.
- See:
- void SetIterationBetweenTicks(long iterationBetweenTicks)¶
Sets the number of iterations between two events of type
LSCallbackType.IterationTicked
. The default number of iterations between ticks is set to 10,000. Only allowed in statesModeling
orStopped
.- Since:
6.0
- Arguments:
iterationBetweenTicks (long) – Number of iterations between ticks.
- long GetIterationBetweenTicks()¶
Gets the number of iterations between two events of type
LSCallbackType.IterationTicked
.- Since:
6.0
- Returns:
Number of iterations between ticks.
- See:
- void SetLogWriter(System.IO.TextWriter writer)¶
Sets the writer used by Hexaly Optimizer for its logging. The default is to log to the standard output. To tune the logging verbosity of the output, see
SetVerbosity
. Note that you can specify both the log writer and the log file by using the methodSetLogFile
.- Arguments:
writer – Writer for the logging or null to disable logging.
- Since:
9.5
- System.IO.TextWriter GetLogWriter()¶
Returns the writer used by Hexaly Optimizer for its logging. The default value is initialized to the standard output, retrieved with
Console.Out
. If no console is available, logging is disabled.To tune the logging verbosity of the output, see
SetVerbosity
.- Returns:
The writer used by Hexaly Optimizer for its logging or null if logging is disabled.
- Since:
9.5
- void SetLogFile(string path)¶
Sets the path of the Hexaly Optimizer log file. If the path is empty, no log will be saved. To tune the logging verbosity, see
HxParam.SetVerbosity
. Only allowed in statesModeling
orStopped
.- Arguments:
path (string) – Path of the log file. Leave empty to disable the logging mechanism.
- See:
- See:
- string GetLogFile()¶
Returns the path of the Hexaly Optimizer log file. If no log file was specified, an empty string is returned.
- Returns:
The path of the log file or an empty string.
- See:
- void SetObjectiveThreshold(int objectiveIndex, long threshold)¶
Sets the threshold 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) threshold is reached. It can be useful for goal programming. Only allowed in states
Stopped
.This method has the same behavior as
HxParam.SetIntObjectiveThreshold
.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
threshold (long) – Objective threshold.
- See:
- See:
- void SetObjectiveThreshold(int objectiveIndex, double threshold)
Sets the threshold 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) threshold is reached. It can be useful for goal programming. Only allowed in states
Stopped
.This method has the same behavior as
HxParam.SetDoubleObjectiveThreshold
.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
threshold (double) – Objective threshold.
- See:
- See:
- void SetIntObjectiveThreshold(int objectiveIndex, long threshold)¶
Sets the threshold 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) threshold is reached. It can be useful for goal programming. Only allowed in states
Stopped
.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
threshold (long) – Objective threshold.
- See:
- See:
- void SetDoubleObjectiveThreshold(int objectiveIndex, double threshold)¶
Sets the threshold 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) threshold is reached. It can be useful for goal programming. Only allowed in states
Stopped
.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
threshold (double) – Objective threshold.
- See:
- See:
- long GetObjectiveThreshold(int objectiveIndex)¶
Gets the threshold of the objective with the given index. Only allowed in states
Paused
orStopped
.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
- Returns:
Objective threshold.
- Return type:
long
- See:
- long GetIntObjectiveThreshold(int objectiveIndex)¶
Gets the threshold of the objective with the given index. Only allowed in states
Paused
orStopped
.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
- Returns:
Objective threshold.
- Return type:
long
- See:
- double GetDoubleObjectiveThreshold(int objectiveIndex)¶
Gets the threshold of the objective with the given index. Only allowed in states
Paused
orStopped
.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
- Returns:
Objective threshold.
- Return type:
double
- See:
- void SetAdvancedParam(string key, int value)¶
Reserved for maintenance purpose.
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
Modeling
orStopped
.- Arguments:
key – Name of the parameter.
value – Value of the parameter.
- int GetAdvancedParam(string key)¶
Reserved for maintenance purpose.
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.
- Arguments:
key – Name of the parameter.
- Returns:
Value of the parameter.
- See:
- int GetAdvancedParam(string key, int defaultValue)
Reserved for maintenance purpose.
Returns the value of an advanced parameter. Advanced parameters are reserved for fine tuning or debugging and should not be used by end-users. The default value is returned if the parameter does not exist or if no value was set for this one.
- Arguments:
key (string) – Name of the parameter.
defaultValue (int) – Default value of the parameter.
- See:
- void SetAdvancedParam(string key, double value)
Reserved for maintenance purpose.
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
Modeling
orStopped
.- Arguments:
key – Name of the parameter.
value – Value of the parameter.
- double GetAdvancedParam(string key, double defaultValue)
Reserved for maintenance purpose.
Returns the value of an advanced parameter. Advanced parameters are reserved for fine tuning or debugging and should not be used by end-users. The default value is returned if the parameter does not exist or if no value was set for this one.
- Arguments:
key (string) – Name of the parameter.
defaultValue (double) – Default value of the parameter.
- See:
- void SetAdvancedParam(string key, string value)
Reserved for maintenance purpose.
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
Modeling
orStopped
.- Arguments:
key (string) – Name of the parameter.
value (string) – Value of the parameter.
- string GetAdvancedParam(string key, string defaultValue)
Reserved for maintenance purpose.
Returns the value of an advanced parameter. Advanced parameters are reserved for fine tuning or debugging and should not be used by end-users. The default value is returned if the parameter does not exist or if no value was set for this one.
- Arguments:
key (string) – Name of the parameter.
defaultValue (string) – Default value of the parameter.
- See:
- string ToString()¶
Returns a string representation of these parameters. Useful for debugging or logging purposes.
- Returns:
String representation.