Localsolver  5.5
localsolver.LocalSolver Class Reference

Detailed Description

LocalSolver environment.

Main class of LocalSolver library. Here are described the basic steps for using LocalSolver:

  1. Build your model (LSModel) by creating some expressions (LSExpression).
  2. If desired, parameterize and add phases to the solver (LSParam, LSPhase).
  3. Run the solver (LocalSolver).
  4. Retrieve the best solution found by the solver (LSSolution).
  5. Consult the statistics of the resolution (LSStatistics).

Note that this API is not thread safe. If multiple threads access and modify a same LocalSolver environment, it must be synchronized. The only methods that can be used without synchronization are GetState() and Stop(). Please consult LSVersion for copyright and version info.

Public Member Functions

 LocalSolver ()
 Constructs a complete LocalSolver environment and take a token license.
void Dispose ()
 Delete the LocalSolver objects and release the licence token.
LSState GetState ()
 Gets the state of this LocalSolver environment.
LSModel GetModel ()
 Gets the model associated to this LocalSolver environment.
LSParam GetParam ()
 Gets the parameters of this LocalSolver environment.
void Solve ()
 Solves the model.
void Stop ()
 Aborts the resolution previously launched using Solve().
LSPhase CreatePhase ()
 Adds a new phase to this LocalSolver environment.
LSPhase GetPhase (int phaseIndex)
 Gets the phase with the given index.
int GetNbPhases ()
 Gets the number of phases.
LSSolution GetSolution ()
 Gets the best solution found by the solver.
LSStatistics GetStatistics ()
 Gets the statistics of this LocalSolver environment.
override string ToString ()
 Returns a string representation of this LocalSolver environment.
string GetInfo ()
 Returns useful info about the search while running.
void SaveEnvironment (string filename)
 Exports the complete environment (model, parameters, solution, ..) in a file.
void LoadEnvironment (string filename)
 Import a complete environment or a model from a file.
void AddCallback (LSCallbackType type, LSCallback callback)
 Add a new callback for a specific event type.
bool RemoveCallback (LSCallbackType type, LSCallback callback)
 Remove the callback for the given event type.

Constructor & Destructor Documentation

localsolver.LocalSolver.LocalSolver ( )
inline

Constructs a complete LocalSolver environment and take a token license.

If no token is available or if the token server is not accessible, an exception is thrown. The token license is released when the destructor of this LocalSolver environment is called.

Member Function Documentation

void localsolver.LocalSolver.Dispose ( )
inline

Delete the LocalSolver objects and release the licence token.

This method is automatically called when the LocalSolver object was created in a using statement (see IDisposable interface). Otherwise it must be called explicitly. It deletes the native memory used by LocalSolver and makes the LocalSolver licence available for another LocalSolver model.

LSState localsolver.LocalSolver.GetState ( )
inline

Gets the state of this LocalSolver environment.

This method can be called in any state. In particular, this method can be called in state LSState.Running.

Returns
State of LocalSolver.
LSModel localsolver.LocalSolver.GetModel ( )
inline

Gets the model associated to this LocalSolver environment.

Once the model is created and closed, the solver can be launched with Solve().

Returns
Model.
LSParam localsolver.LocalSolver.GetParam ( )
inline

Gets the parameters of this LocalSolver environment.

Returns
Parameters.
void localsolver.LocalSolver.Solve ( )
inline

Solves the model.

This method returns only when the time limit, the iteration limit or the objective bounds are reached. The model must be closed to launch the resolution.

void localsolver.LocalSolver.Stop ( )
inline

Aborts the resolution previously launched using Solve().

If no resolution was launched, this method does nothing. Called from another thread, this method enables users to stop the resolution properly. Solution and statistics remain valid. This method can be called in any state, notably in state LSState.Running.

LSPhase localsolver.LocalSolver.CreatePhase ( )
inline

Adds a new phase to this LocalSolver environment.

Only allowed in state LSState.Stopped.

Returns
Created phase.
LSPhase localsolver.LocalSolver.GetPhase ( int  phaseIndex)
inline

Gets the phase with the given index.

Only allowed in states LSState.Paused or LSState.Stopped.

Parameters
phaseIndexIndex of the phase.
Returns
Phase.
int localsolver.LocalSolver.GetNbPhases ( )
inline

Gets the number of phases.

Only allowed in states LSState.Paused or LSState.Stopped.

Returns
Number of phases.
LSSolution localsolver.LocalSolver.GetSolution ( )
inline

Gets the best solution found by the solver.

If the solver has not been started at least once, all the decision variables of the solution are set to 0 (such a solution may be infeasible). Only allowed in states LSState.Paused or LSState.Stopped.

Returns
Best solution.
LSStatistics localsolver.LocalSolver.GetStatistics ( )
inline

Gets the statistics of this LocalSolver environment.

Statistics are reset to zero before each resolution. Only allowed in states LSState.Paused or LSState.Stopped. Note that for performance reasons, this function always returns the same object.

Returns
Statistics.

LSStatistics

override string localsolver.LocalSolver.ToString ( )
inline

Returns a string representation of this LocalSolver environment.

This representation provides useful info related to the model, the parameters, and the phases (if any). Useful for debugging or logging purposes.

Returns
String representation of this LocalSolver.
string localsolver.LocalSolver.GetInfo ( )
inline

Returns useful info about the search while running.

Only allowed if the solver has been started at least once. Only allowed in states LSState.Paused or LSState.Stopped. Useful for debugging or logging purposes. Here are some explanations about the output string:

  • "sec" stands for the number of seconds.
  • "itr" stands for the number of iterations.
  • "infeas" corresponds to the infeasibility score of the best solution found, if infeasible.
  • "obj" corresponds to the objective values of the best solution found, if feasible.
  • "mov" corresponds to the number of moves performed.
  • "inf" corresponds to the percentage of infeasible moves.
  • "acc" corresponds to the percentage of accepted moves.
  • "imp" corresponds to the number of improving moves.
Returns
Info about the search while running.
void localsolver.LocalSolver.SaveEnvironment ( string  filename)
inline

Exports the complete environment (model, parameters, solution, ..) in a file.

This method is useful to debug or replay a model in the same conditions. Currently, this function supports 2 file formats : LSM and LSB. These two formats reproduce all the parameters and the features of this API. The main difference between LSM and LSB files is the way the fields are organized : LSB files are binary files. They are less readable but offer better performance and are more space-efficient than LSM files. The chosen file format is determined by the file suffix. An exception is thrown if the provided file suffix is not supported. The suffix may optionally be followed by .gz. In that case, this function produces a compressed result (using deflate algorithm).

Parameters
filenameName of the file.

LocalSolver.LoadEnvironment Since version 3.0

void localsolver.LocalSolver.LoadEnvironment ( string  filename)
inline

Import a complete environment or a model from a file.

Only allowed in state LSState.Modeling. The current model must be empty. Currently, this function supports 4 main file formats : LSM, LSB, LP and MPS. The first two are preferable since they are the native format of LocalSolver. The other ones are classically used by linear programming solvers. LocalSolver supports only a subset of features exposed by these last formats. Please refer to the documentation for more details on this subject. The chosen file format is determined by the file suffix. An exception is thrown if the provided file suffix is not supported. The suffix may optionally be followed by .gz. In that case, this function uncompress the stream before reading.

Parameters
filenameName of the file.

LocalSolver.SaveEnvironment Since version 3.0

void localsolver.LocalSolver.AddCallback ( LSCallbackType  type,
LSCallback  callback 
)
inline

Add a new callback for a specific event type.

The callback will be called each time the given event occurs. When a callback is called, the solver is paused. You can stop the resolution from a callback, retrieve the current solution, retrieve the statistics of the solver and, in general, call all the methods marked as "allowed in state {@link LSState.Paused}". The same callback can be used for different events. Only allowed in states LSState.Stopped or LSState.Modeling.

Parameters
typeEvent to watch.
callbackUser callback. Cannot be null.
userdataA pointer to a user structure.

Since version 4.0

bool localsolver.LocalSolver.RemoveCallback ( LSCallbackType  type,
LSCallback  callback 
)
inline

Remove the callback for the given event type.

Parameters
typeEvent.
callbackUser callback to delete.
Returns
false if the callback was not added for the given event, true otherwise.

LocalSolver.AddCallback Since version 4.0