Google OR-Tools v9.14
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
environment.h
Go to the documentation of this file.
1// Copyright 2019-2023 RTE
2// Copyright 2010-2025 Google LLC
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// Initial version of this code was provided by RTE
16
17#ifndef OR_TOOLS_XPRESS_ENVIRONMENT_H_
18#define OR_TOOLS_XPRESS_ENVIRONMENT_H_
19
20#include <functional>
21#include <string>
22
23#include "absl/status/status.h"
25
26extern "C" {
27typedef struct xo_prob_struct* XPRSprob;
28}
29
30namespace operations_research {
31
32void printXpressBanner(bool error);
33
34bool initXpressEnv(bool verbose = true, int xpress_oem_license_key = 0);
35
37
38// Force the loading of the xpress dynamic library. It returns true if the
39// library was successfully loaded. This method can only be called once.
40// Successive calls are no-op.
41//
42// Note that it does not check if a token license can be grabbed.
43absl::Status LoadXpressDynamicLibrary(std::string& xpresspath);
44
45// The list of #define and extern std::function<> below is generated directly
46// from xprs.h via parse_header_xpress.py
47// See the top comment on the parse_header_xpress.py file.
48// This is the header section
49// NOLINTBEGIN(runtime/int)
50#if defined(_WIN32)
51#define XPRSint64 __int64
52#elif defined(__LP64__) || defined(_LP64) || defined(__ILP64__) || \
53 defined(_ILP64)
54#define XPRSint64 long
55#else
56#define XPRSint64 long long
57#endif
58// NOLINTEND(runtime/int)
59
60#if defined(_MSC_VER)
61#define XPRS_CC __stdcall
62#else
63#define XPRS_CC
64#endif
65// ***************************************************************************
66// * values related to XPRSinterrupt *
67// ***************************************************************************
68#define XPRS_STOP_NONE 0
69#define XPRS_STOP_TIMELIMIT 1
70#define XPRS_STOP_CTRLC 2
71#define XPRS_STOP_NODELIMIT 3
72#define XPRS_STOP_ITERLIMIT 4
73#define XPRS_STOP_MIPGAP 5
74#define XPRS_STOP_SOLLIMIT 6
75#define XPRS_STOP_GENERICERROR 7
76#define XPRS_STOP_MEMORYERROR 8
77#define XPRS_STOP_USER 9
78#define XPRS_STOP_SOLVECOMPLETE 10
79#define XPRS_STOP_LICENSELOST 11
80#define XPRS_STOP_NUMERICALERROR 13
81// ***************************************************************************
82// * values related to Set/GetControl/Attribinfo *
83// ***************************************************************************
84#define XPRS_TYPE_NOTDEFINED 0
85#define XPRS_TYPE_INT 1
86#define XPRS_TYPE_INT64 2
87#define XPRS_TYPE_DOUBLE 3
88#define XPRS_TYPE_STRING 4
89// ***************************************************************************
90// * values related to NAMESPACES *
91// ***************************************************************************
92#define XPRS_NAMES_ROW 1
93#define XPRS_NAMES_COLUMN 2
94
95#define XPRS_PLUSINFINITY 1.0e+20
96#define XPRS_MINUSINFINITY -1.0e+20
97#define XPRS_MAXBANNERLENGTH 512
98#define XPVERSION 41
99#define XPRS_MPSRHSNAME 6001
100#define XPRS_MPSOBJNAME 6002
101#define XPRS_MPSRANGENAME 6003
102#define XPRS_MPSBOUNDNAME 6004
103#define XPRS_OUTPUTMASK 6005
104#define XPRS_TUNERMETHODFILE 6017
105#define XPRS_TUNEROUTPUTPATH 6018
106#define XPRS_TUNERSESSIONNAME 6019
107#define XPRS_COMPUTEEXECSERVICE 6022
108#define XPRS_MAXCUTTIME 8149
109#define XPRS_MAXSTALLTIME 8443
110#define XPRS_TUNERMAXTIME 8364
111#define XPRS_MATRIXTOL 7001
112#define XPRS_PIVOTTOL 7002
113#define XPRS_FEASTOL 7003
114#define XPRS_OUTPUTTOL 7004
115#define XPRS_SOSREFTOL 7005
116#define XPRS_OPTIMALITYTOL 7006
117#define XPRS_ETATOL 7007
118#define XPRS_RELPIVOTTOL 7008
119#define XPRS_MIPTOL 7009
120#define XPRS_MIPTOLTARGET 7010
121#define XPRS_BARPERTURB 7011
122#define XPRS_MIPADDCUTOFF 7012
123#define XPRS_MIPABSCUTOFF 7013
124#define XPRS_MIPRELCUTOFF 7014
125#define XPRS_PSEUDOCOST 7015
126#define XPRS_PENALTY 7016
127#define XPRS_BIGM 7018
128#define XPRS_MIPABSSTOP 7019
129#define XPRS_MIPRELSTOP 7020
130#define XPRS_CROSSOVERACCURACYTOL 7023
131#define XPRS_PRIMALPERTURB 7024
132#define XPRS_DUALPERTURB 7025
133#define XPRS_BAROBJSCALE 7026
134#define XPRS_BARRHSSCALE 7027
135#define XPRS_CHOLESKYTOL 7032
136#define XPRS_BARGAPSTOP 7033
137#define XPRS_BARDUALSTOP 7034
138#define XPRS_BARPRIMALSTOP 7035
139#define XPRS_BARSTEPSTOP 7036
140#define XPRS_ELIMTOL 7042
141#define XPRS_MARKOWITZTOL 7047
142#define XPRS_MIPABSGAPNOTIFY 7064
143#define XPRS_MIPRELGAPNOTIFY 7065
144#define XPRS_BARLARGEBOUND 7067
145#define XPRS_PPFACTOR 7069
146#define XPRS_REPAIRINDEFINITEQMAX 7071
147#define XPRS_BARGAPTARGET 7073
148#define XPRS_DUMMYCONTROL 7075
149#define XPRS_BARSTARTWEIGHT 7076
150#define XPRS_BARFREESCALE 7077
151#define XPRS_SBEFFORT 7086
152#define XPRS_HEURDIVERANDOMIZE 7089
153#define XPRS_HEURSEARCHEFFORT 7090
154#define XPRS_CUTFACTOR 7091
155#define XPRS_EIGENVALUETOL 7097
156#define XPRS_INDLINBIGM 7099
157#define XPRS_TREEMEMORYSAVINGTARGET 7100
158#define XPRS_INDPRELINBIGM 7102
159#define XPRS_RELAXTREEMEMORYLIMIT 7105
160#define XPRS_MIPABSGAPNOTIFYOBJ 7108
161#define XPRS_MIPABSGAPNOTIFYBOUND 7109
162#define XPRS_PRESOLVEMAXGROW 7110
163#define XPRS_HEURSEARCHTARGETSIZE 7112
164#define XPRS_CROSSOVERRELPIVOTTOL 7113
165#define XPRS_CROSSOVERRELPIVOTTOLSAFE 7114
166#define XPRS_DETLOGFREQ 7116
167#define XPRS_MAXIMPLIEDBOUND 7120
168#define XPRS_FEASTOLTARGET 7121
169#define XPRS_OPTIMALITYTOLTARGET 7122
170#define XPRS_PRECOMPONENTSEFFORT 7124
171#define XPRS_LPLOGDELAY 7127
172#define XPRS_HEURDIVEITERLIMIT 7128
173#define XPRS_BARKERNEL 7130
174#define XPRS_FEASTOLPERTURB 7132
175#define XPRS_CROSSOVERFEASWEIGHT 7133
176#define XPRS_LUPIVOTTOL 7139
177#define XPRS_MIPRESTARTGAPTHRESHOLD 7140
178#define XPRS_NODEPROBINGEFFORT 7141
179#define XPRS_INPUTTOL 7143
180#define XPRS_MIPRESTARTFACTOR 7145
181#define XPRS_BAROBJPERTURB 7146
182#define XPRS_CPIALPHA 7149
183#define XPRS_GLOBALBOUNDINGBOX 7154
184#define XPRS_TIMELIMIT 7158
185#define XPRS_SOLTIMELIMIT 7159
186#define XPRS_REPAIRINFEASTIMELIMIT 7160
187#define XPRS_EXTRAROWS 8004
188#define XPRS_EXTRACOLS 8005
189#define XPRS_LPITERLIMIT 8007
190#define XPRS_LPLOG 8009
191#define XPRS_SCALING 8010
192#define XPRS_PRESOLVE 8011
193#define XPRS_CRASH 8012
194#define XPRS_PRICINGALG 8013
195#define XPRS_INVERTFREQ 8014
196#define XPRS_INVERTMIN 8015
197#define XPRS_MAXNODE 8018
198#define XPRS_MAXTIME 8020
199#define XPRS_MAXMIPSOL 8021
200#define XPRS_SIFTPASSES 8022
201#define XPRS_DEFAULTALG 8023
202#define XPRS_VARSELECTION 8025
203#define XPRS_NODESELECTION 8026
204#define XPRS_BACKTRACK 8027
205#define XPRS_MIPLOG 8028
206#define XPRS_KEEPNROWS 8030
207#define XPRS_MPSECHO 8032
208#define XPRS_MAXPAGELINES 8034
209#define XPRS_OUTPUTLOG 8035
210#define XPRS_BARSOLUTION 8038
211#define XPRS_CACHESIZE 8043
212#define XPRS_CROSSOVER 8044
213#define XPRS_BARITERLIMIT 8045
214#define XPRS_CHOLESKYALG 8046
215#define XPRS_BAROUTPUT 8047
216#define XPRS_EXTRAMIPENTS 8051
217#define XPRS_REFACTOR 8052
218#define XPRS_BARTHREADS 8053
219#define XPRS_KEEPBASIS 8054
220#define XPRS_CROSSOVEROPS 8060
221#define XPRS_VERSION 8061
222#define XPRS_CROSSOVERTHREADS 8065
223#define XPRS_BIGMMETHOD 8068
224#define XPRS_MPSNAMELENGTH 8071
225#define XPRS_ELIMFILLIN 8073
226#define XPRS_PRESOLVEOPS 8077
227#define XPRS_MIPPRESOLVE 8078
228#define XPRS_MIPTHREADS 8079
229#define XPRS_BARORDER 8080
230#define XPRS_BREADTHFIRST 8082
231#define XPRS_AUTOPERTURB 8084
232#define XPRS_DENSECOLLIMIT 8086
233#define XPRS_CALLBACKFROMMASTERTHREAD 8090
234#define XPRS_MAXMCOEFFBUFFERELEMS 8091
235#define XPRS_REFINEOPS 8093
236#define XPRS_LPREFINEITERLIMIT 8094
237#define XPRS_MIPREFINEITERLIMIT 8095
238#define XPRS_DUALIZEOPS 8097
239#define XPRS_CROSSOVERITERLIMIT 8104
240#define XPRS_PREBASISRED 8106
241#define XPRS_PRESORT 8107
242#define XPRS_PREPERMUTE 8108
243#define XPRS_PREPERMUTESEED 8109
244#define XPRS_MAXMEMORYSOFT 8112
245#define XPRS_CUTFREQ 8116
246#define XPRS_SYMSELECT 8117
247#define XPRS_SYMMETRY 8118
248#define XPRS_MAXMEMORYHARD 8119
249#define XPRS_MIQCPALG 8125
250#define XPRS_QCCUTS 8126
251#define XPRS_QCROOTALG 8127
252#define XPRS_PRECONVERTSEPARABLE 8128
253#define XPRS_ALGAFTERNETWORK 8129
254#define XPRS_TRACE 8130
255#define XPRS_MAXIIS 8131
256#define XPRS_CPUTIME 8133
257#define XPRS_COVERCUTS 8134
258#define XPRS_GOMCUTS 8135
259#define XPRS_LPFOLDING 8136
260#define XPRS_MPSFORMAT 8137
261#define XPRS_CUTSTRATEGY 8138
262#define XPRS_CUTDEPTH 8139
263#define XPRS_TREECOVERCUTS 8140
264#define XPRS_TREEGOMCUTS 8141
265#define XPRS_CUTSELECT 8142
266#define XPRS_TREECUTSELECT 8143
267#define XPRS_DUALIZE 8144
268#define XPRS_DUALGRADIENT 8145
269#define XPRS_SBITERLIMIT 8146
270#define XPRS_SBBEST 8147
271#define XPRS_BARINDEFLIMIT 8153
272#define XPRS_HEURFREQ 8155
273#define XPRS_HEURDEPTH 8156
274#define XPRS_HEURMAXSOL 8157
275#define XPRS_HEURNODES 8158
276#define XPRS_LNPBEST 8160
277#define XPRS_LNPITERLIMIT 8161
278#define XPRS_BRANCHCHOICE 8162
279#define XPRS_BARREGULARIZE 8163
280#define XPRS_SBSELECT 8164
281#define XPRS_LOCALCHOICE 8170
282#define XPRS_LOCALBACKTRACK 8171
283#define XPRS_DUALSTRATEGY 8174
284#define XPRS_L1CACHE 8175
285#define XPRS_HEURDIVESTRATEGY 8177
286#define XPRS_HEURSELECT 8178
287#define XPRS_BARSTART 8180
288#define XPRS_PRESOLVEPASSES 8183
289#define XPRS_BARNUMSTABILITY 8186
290#define XPRS_BARORDERTHREADS 8187
291#define XPRS_EXTRASETS 8190
292#define XPRS_FEASIBILITYPUMP 8193
293#define XPRS_PRECOEFELIM 8194
294#define XPRS_PREDOMCOL 8195
295#define XPRS_HEURSEARCHFREQ 8196
296#define XPRS_HEURDIVESPEEDUP 8197
297#define XPRS_SBESTIMATE 8198
298#define XPRS_BARCORES 8202
299#define XPRS_MAXCHECKSONMAXTIME 8203
300#define XPRS_MAXCHECKSONMAXCUTTIME 8204
301#define XPRS_HISTORYCOSTS 8206
302#define XPRS_ALGAFTERCROSSOVER 8208
303#define XPRS_MUTEXCALLBACKS 8210
304#define XPRS_BARCRASH 8211
305#define XPRS_HEURDIVESOFTROUNDING 8215
306#define XPRS_HEURSEARCHROOTSELECT 8216
307#define XPRS_HEURSEARCHTREESELECT 8217
308#define XPRS_MPS18COMPATIBLE 8223
309#define XPRS_ROOTPRESOLVE 8224
310#define XPRS_CROSSOVERDRP 8227
311#define XPRS_FORCEOUTPUT 8229
312#define XPRS_PRIMALOPS 8231
313#define XPRS_DETERMINISTIC 8232
314#define XPRS_PREPROBING 8238
315#define XPRS_TREEMEMORYLIMIT 8242
316#define XPRS_TREECOMPRESSION 8243
317#define XPRS_TREEDIAGNOSTICS 8244
318#define XPRS_MAXTREEFILESIZE 8245
319#define XPRS_PRECLIQUESTRATEGY 8247
320#define XPRS_REPAIRINFEASMAXTIME 8250
321#define XPRS_IFCHECKCONVEXITY 8251
322#define XPRS_PRIMALUNSHIFT 8252
323#define XPRS_REPAIRINDEFINITEQ 8254
324#define XPRS_MIPRAMPUP 8255
325#define XPRS_MAXLOCALBACKTRACK 8257
326#define XPRS_USERSOLHEURISTIC 8258
327#define XPRS_FORCEPARALLELDUAL 8265
328#define XPRS_BACKTRACKTIE 8266
329#define XPRS_BRANCHDISJ 8267
330#define XPRS_MIPFRACREDUCE 8270
331#define XPRS_CONCURRENTTHREADS 8274
332#define XPRS_MAXSCALEFACTOR 8275
333#define XPRS_HEURTHREADS 8276
334#define XPRS_THREADS 8278
335#define XPRS_HEURBEFORELP 8280
336#define XPRS_PREDOMROW 8281
337#define XPRS_BRANCHSTRUCTURAL 8282
338#define XPRS_QUADRATICUNSHIFT 8284
339#define XPRS_BARPRESOLVEOPS 8286
340#define XPRS_QSIMPLEXOPS 8288
341#define XPRS_MIPRESTART 8290
342#define XPRS_CONFLICTCUTS 8292
343#define XPRS_PREPROTECTDUAL 8293
344#define XPRS_CORESPERCPU 8296
345#define XPRS_RESOURCESTRATEGY 8297
346#define XPRS_CLAMPING 8301
347#define XPRS_SLEEPONTHREADWAIT 8302
348#define XPRS_PREDUPROW 8307
349#define XPRS_CPUPLATFORM 8312
350#define XPRS_BARALG 8315
351#define XPRS_SIFTING 8319
352#define XPRS_LPLOGSTYLE 8326
353#define XPRS_RANDOMSEED 8328
354#define XPRS_TREEQCCUTS 8331
355#define XPRS_PRELINDEP 8333
356#define XPRS_DUALTHREADS 8334
357#define XPRS_PREOBJCUTDETECT 8336
358#define XPRS_PREBNDREDQUAD 8337
359#define XPRS_PREBNDREDCONE 8338
360#define XPRS_PRECOMPONENTS 8339
361#define XPRS_MAXMIPTASKS 8347
362#define XPRS_MIPTERMINATIONMETHOD 8348
363#define XPRS_PRECONEDECOMP 8349
364#define XPRS_HEURFORCESPECIALOBJ 8350
365#define XPRS_HEURSEARCHROOTCUTFREQ 8351
366#define XPRS_PREELIMQUAD 8353
367#define XPRS_PREIMPLICATIONS 8356
368#define XPRS_TUNERMODE 8359
369#define XPRS_TUNERMETHOD 8360
370#define XPRS_TUNERTARGET 8362
371#define XPRS_TUNERTHREADS 8363
372#define XPRS_TUNERHISTORY 8365
373#define XPRS_TUNERPERMUTE 8366
374#define XPRS_TUNERVERBOSE 8370
375#define XPRS_TUNEROUTPUT 8372
376#define XPRS_PREANALYTICCENTER 8374
377#define XPRS_NETCUTS 8382
378#define XPRS_LPFLAGS 8385
379#define XPRS_MIPKAPPAFREQ 8386
380#define XPRS_OBJSCALEFACTOR 8387
381#define XPRS_TREEFILELOGINTERVAL 8389
382#define XPRS_IGNORECONTAINERCPULIMIT 8390
383#define XPRS_IGNORECONTAINERMEMORYLIMIT 8391
384#define XPRS_MIPDUALREDUCTIONS 8392
385#define XPRS_GENCONSDUALREDUCTIONS 8395
386#define XPRS_PWLDUALREDUCTIONS 8396
387#define XPRS_BARFAILITERLIMIT 8398
388#define XPRS_AUTOSCALING 8406
389#define XPRS_GENCONSABSTRANSFORMATION 8408
390#define XPRS_COMPUTEJOBPRIORITY 8409
391#define XPRS_PREFOLDING 8410
392#define XPRS_NETSTALLLIMIT 8412
393#define XPRS_SERIALIZEPREINTSOL 8413
394#define XPRS_NUMERICALEMPHASIS 8416
395#define XPRS_PWLNONCONVEXTRANSFORMATION 8420
396#define XPRS_MIPCOMPONENTS 8421
397#define XPRS_MIPCONCURRENTNODES 8422
398#define XPRS_MIPCONCURRENTSOLVES 8423
399#define XPRS_OUTPUTCONTROLS 8424
400#define XPRS_SIFTSWITCH 8425
401#define XPRS_HEUREMPHASIS 8427
402#define XPRS_COMPUTEMATX 8428
403#define XPRS_COMPUTEMATX_IIS 8429
404#define XPRS_COMPUTEMATX_IISMAXTIME 8430
405#define XPRS_BARREFITER 8431
406#define XPRS_COMPUTELOG 8434
407#define XPRS_SIFTPRESOLVEOPS 8435
408#define XPRS_CHECKINPUTDATA 8436
409#define XPRS_ESCAPENAMES 8440
410#define XPRS_IOTIMEOUT 8442
411#define XPRS_AUTOCUTTING 8446
412#define XPRS_CALLBACKCHECKTIMEDELAY 8451
413#define XPRS_MULTIOBJOPS 8457
414#define XPRS_MULTIOBJLOG 8458
415#define XPRS_GLOBALSPATIALBRANCHIFPREFERORIG 8465
416#define XPRS_PRECONFIGURATION 8470
417#define XPRS_FEASIBILITYJUMP 8471
418#define XPRS_EXTRAELEMS 8006
419#define XPRS_EXTRASETELEMS 8191
420#define XPRS_LPOBJVAL 2001
421#define XPRS_MIPOBJVAL 2003
422#define XPRS_BESTBOUND 2004
423#define XPRS_OBJRHS 2005
424#define XPRS_OBJSENSE 2008
425#define XPRS_ROWS 1001
426#define XPRS_SIMPLEXITER 1009
427#define XPRS_BARITER 5001
428#define XPRS_SOLSTATUS_NOTFOUND 0
429#define XPRS_SOLSTATUS_OPTIMAL 1
430#define XPRS_SOLSTATUS_FEASIBLE 2
431#define XPRS_SOLSTATUS_INFEASIBLE 3
432#define XPRS_SOLSTATUS_UNBOUNDED 4
433#define XPRS_LPSTATUS 1010
434#define XPRS_MIPSTATUS 1011
435#define XPRS_NODES 1013
436#define XPRS_COLS 1018
437#define XPRS_MAXPROBNAMELENGTH 1158
438#define XPRS_LP_UNSTARTED 0
439#define XPRS_LP_OPTIMAL 1
440#define XPRS_LP_INFEAS 2
441#define XPRS_LP_CUTOFF 3
442#define XPRS_LP_UNFINISHED 4
443#define XPRS_LP_UNBOUNDED 5
444#define XPRS_LP_CUTOFF_IN_DUAL 6
445#define XPRS_LP_UNSOLVED 7
446#define XPRS_LP_NONCONVEX 8
447#define XPRS_MIP_SOLUTION 4
448#define XPRS_MIP_INFEAS 5
449#define XPRS_MIP_OPTIMAL 6
450#define XPRS_MIP_UNBOUNDED 7
451#define XPRS_ALG_DUAL 2
452#define XPRS_ALG_PRIMAL 3
453#define XPRS_ALG_BARRIER 4
454#define XPRS_OBJ_MINIMIZE 1
455#define XPRS_OBJ_MAXIMIZE -1
456#define XPRS_UUID 3011
457// ***************************************************************************
458// * variable types *
459// ***************************************************************************
460#define XPRS_INTEGER 'I'
461#define XPRS_CONTINUOUS 'C'
462// ***************************************************************************
463// * constraint types *
464// ***************************************************************************
465#define XPRS_LESS_EQUAL 'L'
466#define XPRS_GREATER_EQUAL 'G'
467#define XPRS_EQUAL 'E'
468#define XPRS_RANGE 'R'
469#define XPRS_NONBINDING 'N'
470// ***************************************************************************
471// * basis status *
472// ***************************************************************************
473#define XPRS_AT_LOWER 0
474#define XPRS_BASIC 1
475#define XPRS_AT_UPPER 2
476#define XPRS_FREE_SUPER 3
477
478// Let's not reformat for rest of the file.
479// NOLINTBEGIN(whitespace/line_length)
480// clang-format off
481extern std::function<int(XPRSprob* p_prob)> XPRScreateprob;
482extern std::function<int(XPRSprob prob)> XPRSdestroyprob;
483extern std::function<int(const char* path)> XPRSinit;
484extern std::function<int(void)> XPRSfree;
485extern std::function<int(char* buffer, int maxbytes)> XPRSgetlicerrmsg;
486extern std::function<int(int* p_i, char* p_c)> XPRSlicense;
487extern std::function<int(char* banner)> XPRSgetbanner;
488extern std::function<int(char* version)> XPRSgetversion;
489extern std::function<int(XPRSprob prob, const char* probname)> XPRSsetprobname;
490extern std::function<int(XPRSprob prob, int control)> XPRSsetdefaultcontrol;
491extern std::function<int(XPRSprob prob, int reason)> XPRSinterrupt;
492extern std::function<int(XPRSprob prob, int control, int value)> XPRSsetintcontrol;
493extern std::function<int(XPRSprob prob, int control, XPRSint64 value)> XPRSsetintcontrol64;
494extern std::function<int(XPRSprob prob, int control, double value)> XPRSsetdblcontrol;
495extern std::function<int(XPRSprob prob, int control, const char* value)> XPRSsetstrcontrol;
496OR_DLL extern std::function<int(XPRSprob prob, int control, int* p_value)> XPRSgetintcontrol;
497OR_DLL extern std::function<int(XPRSprob prob, int control, XPRSint64* p_value)> XPRSgetintcontrol64;
498OR_DLL extern std::function<int(XPRSprob prob, int control, double* p_value)> XPRSgetdblcontrol;
499OR_DLL extern std::function<int(XPRSprob prob, int control, char* value, int maxbytes, int* p_nbytes)> XPRSgetstringcontrol;
500OR_DLL extern std::function<int(XPRSprob prob, int attrib, int* p_value)> XPRSgetintattrib;
501OR_DLL extern std::function<int(XPRSprob prob, int attrib, char* value, int maxbytes, int* p_nbytes)> XPRSgetstringattrib;
502OR_DLL extern std::function<int(XPRSprob prob, int attrib, double* p_value)> XPRSgetdblattrib;
503extern std::function<int(XPRSprob prob, const char* name, int* p_id, int* p_type)> XPRSgetcontrolinfo;
504OR_DLL extern std::function<int(XPRSprob prob, double objcoef[], int first, int last)> XPRSgetobj;
505OR_DLL extern std::function<int(XPRSprob prob, double rhs[], int first, int last)> XPRSgetrhs;
506OR_DLL extern std::function<int(XPRSprob prob, double rng[], int first, int last)> XPRSgetrhsrange;
507OR_DLL extern std::function<int(XPRSprob prob, double lb[], int first, int last)> XPRSgetlb;
508OR_DLL extern std::function<int(XPRSprob prob, double ub[], int first, int last)> XPRSgetub;
509OR_DLL extern std::function<int(XPRSprob prob, int row, int col, double* p_coef)> XPRSgetcoef;
510extern std::function<int(XPRSprob prob, int* status, double duals[], int first, int last)> XPRSgetduals;
511extern std::function<int(XPRSprob prob, int* status, double djs[], int first, int last)> XPRSgetredcosts;
512extern std::function<int(XPRSprob prob, int nrows, int ncoefs, const char rowtype[], const double rhs[], const double rng[], const int start[], const int colind[], const double rowcoef[])> XPRSaddrows;
513extern std::function<int(XPRSprob prob, int nrows, const int rowind[])> XPRSdelrows;
514extern std::function<int(XPRSprob prob, int ncols, int ncoefs, const double objcoef[], const int start[], const int rowind[], const double rowcoef[], const double lb[], const double ub[])> XPRSaddcols;
515extern std::function<int(XPRSprob prob, int type, const char names[], int first, int last)> XPRSaddnames;
516extern std::function<int(XPRSprob prob, int type, char names[], int first, int last)> XPRSgetnames;
517extern std::function<int(XPRSprob prob, int ncols, const int colind[])> XPRSdelcols;
518extern std::function<int(XPRSprob prob, int ncols, const int colind[], const char coltype[])> XPRSchgcoltype;
519extern std::function<int(XPRSprob prob, const int rowstat[], const int colstat[])> XPRSloadbasis;
520extern std::function<int(XPRSprob prob)> XPRSpostsolve;
521extern std::function<int(XPRSprob prob, int objsense)> XPRSchgobjsense;
522extern std::function<int(XPRSprob prob, char* errmsg)> XPRSgetlasterror;
523extern std::function<int(XPRSprob prob, int rowstat[], int colstat[])> XPRSgetbasis;
524extern std::function<int(XPRSprob prob, const char* filename, const char* flags)> XPRSwriteprob;
525OR_DLL extern std::function<int(XPRSprob prob, char rowtype[], int first, int last)> XPRSgetrowtype;
526OR_DLL extern std::function<int(XPRSprob prob, char coltype[], int first, int last)> XPRSgetcoltype;
527extern std::function<int(XPRSprob prob, int nbounds, const int colind[], const char bndtype[], const double bndval[])> XPRSchgbounds;
528extern std::function<int(XPRSprob prob, int length, const double solval[], const int colind[], const char* name)> XPRSaddmipsol;
529extern std::function<int(XPRSprob prob, double x[], double slack[], double duals[], double djs[])> XPRSgetlpsol;
530extern std::function<int(XPRSprob prob, double x[], double slack[])> XPRSgetmipsol;
531extern std::function<int(XPRSprob prob, int ncols, const int colind[], const double objcoef[])> XPRSchgobj;
532extern std::function<int(XPRSprob prob, int row, int col, double coef)> XPRSchgcoef;
533extern std::function<int(XPRSprob prob, int ncoefs, const int rowind[], const int colind[], const double rowcoef[])> XPRSchgmcoef;
534extern std::function<int(XPRSprob prob, XPRSint64 ncoefs, const int rowind[], const int colind[], const double rowcoef[])> XPRSchgmcoef64;
535extern std::function<int(XPRSprob prob, int ncoefs, const int objqcol1[], const int objqcol2[], const double objqcoef[])> XPRSchgmqobj;
536extern std::function<int(XPRSprob prob, int nrows, const int rowind[], const double rhs[])> XPRSchgrhs;
537extern std::function<int(XPRSprob prob, int nrows, const int rowind[], const double rng[])> XPRSchgrhsrange;
538extern std::function<int(XPRSprob prob, int nrows, const int rowind[], const char rowtype[])> XPRSchgrowtype;
539extern std::function<int(XPRSprob prob, int objidx)> XPRSdelobj;
540extern std::function<int(XPRSprob prob, void (XPRS_CC *f_intsol)(XPRSprob cbprob, void* cbdata), void* p, int priority)> XPRSaddcbintsol;
541extern std::function<int(XPRSprob prob, void (XPRS_CC *f_intsol)(XPRSprob cbprob, void* cbdata), void* p)> XPRSremovecbintsol;
542extern std::function<int(XPRSprob prob, void (XPRS_CC *f_message)(XPRSprob cbprob, void* cbdata, const char* msg, int msglen, int msgtype), void* p, int priority)> XPRSaddcbmessage;
543extern std::function<int(XPRSprob prob, const char* flags)> XPRSlpoptimize;
544extern std::function<int(XPRSprob prob, const char* flags)> XPRSmipoptimize;
545extern std::function<int(XPRSprob prob, const char* flags, int* solvestatus, int* solstatus)> XPRSoptimize;
546// clang-format on
547// NOLINTEND(whitespace/line_length)
548
549} // namespace operations_research
550
551#endif // OR_TOOLS_XPRESS_ENVIRONMENT_H_
#define OR_DLL
Definition base_export.h:27
In SWIG mode, we don't want anything besides these top-level includes.
std::function< int(XPRSprob prob, int objidx)> XPRSdelobj
std::function< int(XPRSprob prob, void(XPRS_CC *f_intsol)(XPRSprob cbprob, void *cbdata), void *p, int priority)> XPRSaddcbintsol
std::function< int(XPRSprob prob, int control)> XPRSsetdefaultcontrol
std::function< int(XPRSprob prob, int nrows, const int rowind[], const char rowtype[])> XPRSchgrowtype
std::function< int(char *banner)> XPRSgetbanner
absl::Status LoadXpressDynamicLibrary(std::string &xpresspath)
std::function< int(XPRSprob prob, char rowtype[], int first, int last)> XPRSgetrowtype
std::function< int(XPRSprob prob, int attrib, int *p_value)> XPRSgetintattrib
std::function< int(XPRSprob prob, int ncoefs, const int objqcol1[], const int objqcol2[], const double objqcoef[])> XPRSchgmqobj
std::function< int(XPRSprob prob, char coltype[], int first, int last)> XPRSgetcoltype
std::function< int(XPRSprob prob, int attrib, double *p_value)> XPRSgetdblattrib
std::function< int(XPRSprob prob, int *status, double djs[], int first, int last)> XPRSgetredcosts
std::function< int(XPRSprob prob, const char *filename, const char *flags)> XPRSwriteprob
std::function< int(XPRSprob prob, void(XPRS_CC *f_message)(XPRSprob cbprob, void *cbdata, const char *msg, int msglen, int msgtype), void *p, int priority)> XPRSaddcbmessage
std::function< int(XPRSprob prob, double rhs[], int first, int last)> XPRSgetrhs
bool initXpressEnv(bool verbose, int xpress_oem_license_key)
! init XPRESS environment.
std::function< int(XPRSprob prob, int length, const double solval[], const int colind[], const char *name)> XPRSaddmipsol
std::function< int(XPRSprob prob, double x[], double slack[])> XPRSgetmipsol
std::function< int(XPRSprob prob, int nbounds, const int colind[], const char bndtype[], const double bndval[])> XPRSchgbounds
std::function< int(XPRSprob prob, int row, int col, double *p_coef)> XPRSgetcoef
std::function< int(XPRSprob prob, const int rowstat[], const int colstat[])> XPRSloadbasis
std::function< int(XPRSprob prob, int row, int col, double coef)> XPRSchgcoef
std::function< int(XPRSprob prob, int nrows, const int rowind[])> XPRSdelrows
std::function< int(XPRSprob prob, int type, char names[], int first, int last)> XPRSgetnames
std::function< int(XPRSprob prob, int ncols, const int colind[])> XPRSdelcols
std::function< int(XPRSprob prob, int control, double *p_value)> XPRSgetdblcontrol
std::function< int(XPRSprob prob, double lb[], int first, int last)> XPRSgetlb
std::function< int(XPRSprob prob, const char *flags, int *solvestatus, int *solstatus)> XPRSoptimize
std::function< int(XPRSprob prob, int control, int *p_value)> XPRSgetintcontrol
std::function< int(XPRSprob prob, void(XPRS_CC *f_intsol)(XPRSprob cbprob, void *cbdata), void *p)> XPRSremovecbintsol
std::function< int(XPRSprob prob, int ncols, const int colind[], const char coltype[])> XPRSchgcoltype
std::function< int(char *version)> XPRSgetversion
std::function< int(XPRSprob prob, const char *name, int *p_id, int *p_type)> XPRSgetcontrolinfo
std::function< int(XPRSprob prob, double x[], double slack[], double duals[], double djs[])> XPRSgetlpsol
std::function< int(XPRSprob prob, int control, XPRSint64 *p_value)> XPRSgetintcontrol64
std::function< int(XPRSprob prob)> XPRSpostsolve
std::function< int(XPRSprob prob, double objcoef[], int first, int last)> XPRSgetobj
std::function< int(XPRSprob prob, int nrows, const int rowind[], const double rng[])> XPRSchgrhsrange
std::function< int(XPRSprob prob, int type, const char names[], int first, int last)> XPRSaddnames
std::function< int(XPRSprob prob, int ncoefs, const int rowind[], const int colind[], const double rowcoef[])> XPRSchgmcoef
std::function< int(void)> XPRSfree
std::function< int(XPRSprob prob, int reason)> XPRSinterrupt
bool XpressIsCorrectlyInstalled()
std::function< int(char *buffer, int maxbytes)> XPRSgetlicerrmsg
std::function< int(XPRSprob prob, int control, int value)> XPRSsetintcontrol
std::function< int(XPRSprob prob, int nrows, int ncoefs, const char rowtype[], const double rhs[], const double rng[], const int start[], const int colind[], const double rowcoef[])> XPRSaddrows
std::function< int(XPRSprob prob, char *errmsg)> XPRSgetlasterror
std::function< int(XPRSprob prob, int attrib, char *value, int maxbytes, int *p_nbytes)> XPRSgetstringattrib
std::function< int(XPRSprob prob)> XPRSdestroyprob
std::function< int(XPRSprob prob, int control, double value)> XPRSsetdblcontrol
std::function< int(XPRSprob prob, XPRSint64 ncoefs, const int rowind[], const int colind[], const double rowcoef[])> XPRSchgmcoef64
std::function< int(XPRSprob prob, double rng[], int first, int last)> XPRSgetrhsrange
std::function< int(XPRSprob prob, double ub[], int first, int last)> XPRSgetub
void printXpressBanner(bool error)
std::function< int(int *p_i, char *p_c)> XPRSlicense
std::function< int(XPRSprob prob, int control, const char *value)> XPRSsetstrcontrol
std::function< int(XPRSprob prob, int ncols, int ncoefs, const double objcoef[], const int start[], const int rowind[], const double rowcoef[], const double lb[], const double ub[])> XPRSaddcols
std::function< int(XPRSprob prob, int control, char *value, int maxbytes, int *p_nbytes)> XPRSgetstringcontrol
std::function< int(XPRSprob prob, const char *flags)> XPRSmipoptimize
std::function< int(XPRSprob prob, int nrows, const int rowind[], const double rhs[])> XPRSchgrhs
std::function< int(XPRSprob prob, int ncols, const int colind[], const double objcoef[])> XPRSchgobj
std::function< int(XPRSprob prob, int *status, double duals[], int first, int last)> XPRSgetduals
std::function< int(XPRSprob *p_prob)> XPRScreateprob
std::function< int(XPRSprob prob, const char *flags)> XPRSlpoptimize
std::function< int(XPRSprob prob, int control, XPRSint64 value)> XPRSsetintcontrol64
std::function< int(XPRSprob prob, int objsense)> XPRSchgobjsense
std::function< int(const char *path)> XPRSinit
std::function< int(XPRSprob prob, const char *probname)> XPRSsetprobname
std::function< int(XPRSprob prob, int rowstat[], int colstat[])> XPRSgetbasis
#define XPRSint64
Definition environment.h:56
struct xo_prob_struct * XPRSprob
Copyright 2019-2023 RTE.
Definition environment.h:27
#define XPRS_CC
NOLINTEND(runtime/int)
Definition environment.h:63