Clp  1.16.11
ClpParameters.hpp
Go to the documentation of this file.
1 /* $Id: ClpParameters.hpp 2046 2014-08-14 04:13:10Z tkr $ */
2 // Copyright (C) 2000, 2002, International Business Machines
3 // Corporation and others. All Rights Reserved.
4 // This code is licensed under the terms of the Eclipse Public License (EPL).
5 
6 #ifndef _ClpParameters_H
7 #define _ClpParameters_H
8 
41 };
42 
70 };
71 
72 
80 };
81 
83 template <class T> inline void
84 ClpDisjointCopyN( const T * array, const int size, T * newArray)
85 {
86  memcpy(reinterpret_cast<void *> (newArray), array, size * sizeof(T));
87 }
89 template <class T> inline void
90 ClpFillN( T * array, const int size, T value)
91 {
92  int i;
93  for (i = 0; i < size; i++)
94  array[i] = value;
95 }
97 template <class T> inline T*
98 ClpCopyOfArray( const T * array, const int size, T value)
99 {
100  T * arrayNew = new T[size];
101  if (array)
102  ClpDisjointCopyN(array, size, arrayNew);
103  else
104  ClpFillN ( arrayNew, size, value);
105  return arrayNew;
106 }
107 
109 template <class T> inline T*
110 ClpCopyOfArray( const T * array, const int size)
111 {
112  if (array) {
113  T * arrayNew = new T[size];
114  ClpDisjointCopyN(array, size, arrayNew);
115  return arrayNew;
116  } else {
117  return NULL;
118  }
119 }
121 typedef struct {
122  int typeStruct; // allocated as 1,2 etc
123  int typeCall;
124  void * data;
126 #endif
ClpObjOffset
@ ClpObjOffset
Objective function constant.
Definition: ClpParameters.hpp:60
ClpPrimalObjectiveLimit
@ ClpPrimalObjectiveLimit
Primal objective limit.
Definition: ClpParameters.hpp:51
ClpFillN
void ClpFillN(T *array, const int size, T value)
And set.
Definition: ClpParameters.hpp:90
ClpTrustedData::data
void * data
Definition: ClpParameters.hpp:124
ClpTrustedData
For a structure to be used by trusted code.
Definition: ClpParameters.hpp:121
ClpDblParam
ClpDblParam
Definition: ClpParameters.hpp:43
ClpLastDblParam
@ ClpLastDblParam
Just a marker, so that we can allocate a static sized array to store parameters.
Definition: ClpParameters.hpp:69
ClpProbName
@ ClpProbName
Name of the problem.
Definition: ClpParameters.hpp:76
ClpPresolveTolerance
@ ClpPresolveTolerance
Tolerance to use in presolve.
Definition: ClpParameters.hpp:66
ClpLastStrParam
@ ClpLastStrParam
Just a marker, so that we can allocate a static sized array to store parameters.
Definition: ClpParameters.hpp:79
ClpMaxWallSeconds
@ ClpMaxWallSeconds
Maximum wallclock running time in seconds - after, this action is as max iterations.
Definition: ClpParameters.hpp:64
ClpMaxNumIterationHotStart
@ ClpMaxNumIterationHotStart
The maximum number of iterations Clp can execute in hotstart before terminating.
Definition: ClpParameters.hpp:18
ClpPrimalTolerance
@ ClpPrimalTolerance
The maximum amount the primal constraints can be violated and still be considered feasible.
Definition: ClpParameters.hpp:57
ClpCopyOfArray
T * ClpCopyOfArray(const T *array, const int size, T value)
This returns a non const array filled with input from scalar or actual array.
Definition: ClpParameters.hpp:98
ClpTrustedData::typeCall
int typeCall
Definition: ClpParameters.hpp:123
ClpTrustedData::typeStruct
int typeStruct
Definition: ClpParameters.hpp:122
ClpIntParam
ClpIntParam
This is where to put any useful stuff.
Definition: ClpParameters.hpp:12
ClpMaxNumIteration
@ ClpMaxNumIteration
The maximum number of iterations Clp can execute in the simplex methods.
Definition: ClpParameters.hpp:15
ClpMaxSeconds
@ ClpMaxSeconds
Maximum time in seconds - after, this action is as max iterations.
Definition: ClpParameters.hpp:62
ClpNameDiscipline
@ ClpNameDiscipline
The name discipline; specifies how the solver will handle row and column names.
Definition: ClpParameters.hpp:37
ClpDualObjectiveLimit
@ ClpDualObjectiveLimit
Set Dual objective limit.
Definition: ClpParameters.hpp:47
ClpDualTolerance
@ ClpDualTolerance
The maximum amount the dual constraints can be violated and still be considered feasible.
Definition: ClpParameters.hpp:54
ClpDisjointCopyN
void ClpDisjointCopyN(const T *array, const int size, T *newArray)
Copy (I don't like complexity of Coin version)
Definition: ClpParameters.hpp:84
ClpStrParam
ClpStrParam
Definition: ClpParameters.hpp:73
ClpLastIntParam
@ ClpLastIntParam
Just a marker, so that we can allocate a static sized array to store parameters.
Definition: ClpParameters.hpp:40