| Overview | Group | Tree | Graph | Deprecated | Index | Concepts |

An instance of this class can be used to save MIP start information for
one instance of IloCplex
and restore it on other instances of IloCplex.
Either you cannot mix getStart with attah method that is either you get a MIP Start from an existing cplex either you build it by hands.
See Also:
IloCplex::setStart, IloAlgorithm::getValue
| Method Summary | |
|---|---|
public void | attach(IloIntVarMap vars, IloIntMap values) |
public void | attach(IloNumVarMap vars, IloNumMap values) |
public void | clear() |
public void | deleteStart(IloCplex cplex) |
public void | end() |
public IloInt | getNcols() const |
public IloInt | getNrows() const |
public IloBool | getStart(IloCplex cplex) |
public IloInt | getStatus() const |
public | IloOplCplexVectors(IloEnv env) |
public IloBool | setStart(IloCplex cplex) |
| Method Detail |
|---|
Constructor.
Attach a variable map vars to a value map values.
After some attachments have been done only the elements with attachments
are taken into account to get/set vectors.
| vars |
The IloNumVarMap to be attached.
|
| values |
The IloIntMap to be attached.
|
Attach a variable map vars to a value map values.
After some attachments have been done only the elements with attachments
are taken into account to get/set vectors.
| vars |
The IloNumVarMap to be attached.
|
| values |
The IloNumMap to be attached.
|
Clears this objects and gets it back to a clean version
Delete all the MIP start information of the given cplex
| cplex |
Will clear the MIP Starts from this cplex
|
Clears the memory used by this object
Returns the number of columns in the currently saved basis.
Returns the number of rows in the currently saved basis.
Saves the MIP start information.
| cplex |
Saves the MIP start currently available on the given CPLEX instance.
|
IloTrue if MIP start was successfully saved. Returns the CPLEX status of the last invocation of CPLEX API.
Restores the MIP start information.
| cplex |
Restores this MIP start on the given CPLEX instance.
|
IloTrue if MIP start was successfully restored.