Go to the documentation of this file.
6 #ifndef _ClpParameters_H
7 #define _ClpParameters_H
86 memcpy(
reinterpret_cast< void *
>(newArray), array, size *
sizeof(T));
91 ClpFillN(T *array,
const CoinBigIndex size, T value)
94 for (i = 0; i < size; i++)
102 T *arrayNew =
new T[size];
116 T *arrayNew =
new T[size];
@ ClpObjOffset
Objective function constant.
T * ClpCopyOfArray(const T *array, const CoinBigIndex size, T value)
This returns a non const array filled with input from scalar or actual array.
@ ClpPrimalObjectiveLimit
Primal objective limit.
For a structure to be used by trusted code.
@ ClpLastDblParam
Just a marker, so that we can allocate a static sized array to store parameters.
@ ClpProbName
Name of the problem.
@ ClpPresolveTolerance
Tolerance to use in presolve.
void ClpDisjointCopyN(const T *array, const CoinBigIndex size, T *newArray)
Copy (I don't like complexity of Coin version)
@ ClpLastStrParam
Just a marker, so that we can allocate a static sized array to store parameters.
@ ClpMaxWallSeconds
Maximum wallclock running time in seconds - after, this action is as max iterations.
@ ClpMaxNumIterationHotStart
The maximum number of iterations Clp can execute in hotstart before terminating.
@ ClpPrimalTolerance
The maximum amount the primal constraints can be violated and still be considered feasible.
ClpIntParam
This is where to put any useful stuff.
@ ClpMaxNumIteration
The maximum number of iterations Clp can execute in the simplex methods.
@ ClpMaxSeconds
Maximum time in seconds - after, this action is as max iterations.
@ ClpNameDiscipline
The name discipline; specifies how the solver will handle row and column names.
@ ClpDualObjectiveLimit
Set Dual objective limit.
@ ClpDualTolerance
The maximum amount the dual constraints can be violated and still be considered feasible.
void ClpFillN(T *array, const CoinBigIndex size, T value)
And set.
@ ClpLastIntParam
Just a marker, so that we can allocate a static sized array to store parameters.