gurobipy 13.0.0b1__cp310-cp310-manylinux_2_26_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,491 @@
1
+ # Wrapper for 'GRB.Param' object
2
+
3
+ class ParamConstClass(object):
4
+ '''
5
+ Gurobi parameters are used to control the optimization process. They all
6
+ have default values, but their values can be changed using the setParam()
7
+ function. Current values can be retrieved using the Model.getParamInfo()
8
+ method.
9
+
10
+ Parameters fall into the following categories:
11
+
12
+ Termination: affect the termination of an optimize() call
13
+ BarIterLimit: limits the number of barrier iterations performed
14
+ BestBdStop: sets a best bound values at which optimization should stop
15
+ BestObjStop: sets an objective value at which optimization should stop
16
+ Cutoff: sets a target objective value
17
+ IterationLimit: limits the number of simplex iterations performed
18
+ MemLimit: returns an error if the total amount of memory used by Gurobi exceeds this limit (in GB)
19
+ NLBarIterLimit: limits the number of NL barrier iterations performed
20
+ NodeLimit: limits the number of MIP nodes explored
21
+ PDHGIterLimit: limits the number of PDHG iterations performed
22
+ SoftMemLimit: limits the total amount of memory that Gurobi can use (in GB)
23
+ SolutionLimit: sets a target for the number of feasible solutions found
24
+ TimeLimit: limits the total time expended (in seconds)
25
+ WorkLimit: limits the total work expended (in work units)
26
+
27
+ Tolerances: control the allowable feasibility or optimality violations
28
+ BarConvTol: barrier convergence tolerance
29
+ BarQCPConvTol: barrier convergence tolerance for QCP models
30
+ FeasibilityTol: primal feasibility tolerance
31
+ IntFeasTol: integer feasibility tolerance
32
+ MarkowitzTol: threshold pivoting tolerance
33
+ MIPGap: target relative MIP optimality gap
34
+ MIPGapAbs: target absolute MIP optimality gap
35
+ NLBarCFeasTol: NL barrier complementarity feasibility tolerance
36
+ NLBarDFeasTol: NL barrier dual feasibility tolerance
37
+ NLBarPFeasTol: NL barrier primal feasibility tolerance
38
+ OptimalityTol: dual feasibility tolerance
39
+ PDHGRelTol: PDHG relative termination tolerance
40
+ PDHGAbsTol: PDHG absolute termination tolerance
41
+ PDHGConvTol: PDHG relative objective gap tolerance
42
+ PSDTol: QP positive semidefinite tolerance
43
+
44
+ Simplex: affect the simplex algorithms
45
+ InfUnbdInfo: makes additional information available for infeasible or
46
+ unbounded LP models
47
+ LPWarmStart: controls whether and how to warm-start LP optimization
48
+ NetworkAlg: controls whether to use network simplex, if an LP is
49
+ a network problem
50
+ NormAdjust: chooses different pricing norm variants
51
+ ObjScale: controls objective scaling
52
+ PerturbValue: controls the magnitude of any simplex perturbations
53
+ Quad: turns quad precision on or off
54
+ ScaleFlag: turns model scaling on or off
55
+ Sifting: dual simplex sifting strategy for LP, MIP root and MIP nodes
56
+ SiftMethod: chooses from dual, primal and barrier to solve sifting
57
+ subproblems
58
+ SimplexPricing: determines variable pricing strategy
59
+ SolutionTarget: specifies the solution target for LPs
60
+
61
+ Barrier: affect the barrier algorithms
62
+ BarCorrectors: limits the number of central corrections
63
+ BarHomogeneous: selects the barrier homogeneous algorithm
64
+ BarOrder: determines the fill reducing ordering strategy
65
+ Crossover: controls barrier crossover
66
+ CrossoverBasis: controls initial crossover basis construction
67
+ QCPDual: enables dual variable computation for continuous QCP models
68
+
69
+ MIP: affect the MIP algorithms
70
+ BranchDir: controls the branching node selection
71
+ ConcurrentMIP: enables concurrent MIP optimization
72
+ ConcurrentJobs: enables distributed concurrent optimization
73
+ DegenMoves: limit degenerate simplex moves
74
+ FixVarsInIndicators: controls whether variables in indicators should be fixed in a fixed model
75
+ Heuristics: controls the amount of time spent in MIP heuristics
76
+ ImproveStartGap: gap at which to switch MIP search strategies
77
+ ImproveStartNodes: node count at which to switch MIP search strategies
78
+ ImproveStartTime: time at which to switch MIP search strategies
79
+ ImproveStartWork: work at which to switch MIP search strategies
80
+ IntegralityFocus: controls integrality focus
81
+ MinRelNodes: controls the minimum relaxation heuristic
82
+ MIPFocus: affects the high-level MIP search strategy
83
+ MIQCPMethod: controls whether to solve QCP node relaxation or to use OA
84
+ NLPHeur: controls the NLP heuristic for non-convex quadratic models
85
+ NodefileDir: determines the directory used to store nodes on disk
86
+ NodefileStart: memory nodes may use (in GB) before being written to disk
87
+ NodeMethod: determines the algorithm used to solve MIP node relaxations
88
+ NonConvex: controls how to deal with non-convex quadratic programs
89
+ NoRelHeurSolutions: limits the number of solutions found by the NoRel heuristic
90
+ NoRelHeurTime: controls the time spent in the NoRel heuristic
91
+ NoRelHeurWork: controls the work spent in the NoRel heuristic
92
+ OBBT: controls the aggressiveness of optimality-based bound tightening
93
+ PartitionPlace: controls when the partition heuristic runs
94
+ PumpPasses: controls the feasibility pump heuristic
95
+ RINS: sets the frequency of the RINS heuristic
96
+ SolFiles: location to store intermediate solution files
97
+ SolutionNumber: controls access to alternate MIP solutions
98
+ StartNodeLimit: limits nodes in MIP start sub-MIP
99
+ StartNumber: selects the MIP start index
100
+ StartTimeLimit: limits time (in seconds) in MIP start sub-MIP
101
+ StartWorkLimit: limits work (in work units) in MIP start sub-MIP
102
+ SubMIPNodes: limits the numbers of nodes explored in a RINS sub-MIP
103
+ Symmetry: controls access to alternate MIP solutions
104
+ VarBranch: controls the branch variable selection strategy
105
+ ZeroObjNodes: controls the zero objective heuristic
106
+
107
+ Presolve: affect the presolve algorithms
108
+ AggFill: controls the level of presolve aggregation
109
+ Aggregate: turns presolve aggregation on or off
110
+ DualReductions: controls presolve dual reductions
111
+ PreCrush: allows presolve to crush any user cut
112
+ PreDepRow: controls the presolve dependent row reduction
113
+ PreDual: determines whether presolve forms the dual of the input model
114
+ PreMIQCPForm: chooses the form for MIQCP presolved model
115
+ PrePasses: limits the number of presolve passes
116
+ PreQLinearize: controls presolve Q matrix linearization
117
+ Presolve: turns presolve on or off
118
+ PreSOS1BigM: threshold for presolve SOS1 conversion to binary form
119
+ PreSOS1Encoding: Encoding used to reformulate SOS1
120
+ PreSOS2BigM: threshold for presolve SOS2 conversion to binary form
121
+ PreSOS2Encoding: Encoding used to reformulate SOS2
122
+ PreSparsify: enables the presolve sparsify reduction
123
+
124
+ Tuning: affect the operation of the tuning tool
125
+ TuneCriterion: specify different tuning criteria
126
+ TuneJobs: enables distributed tuning using permanent workers
127
+ TuneDynamicJobs: enables distributed tuning using dynamic workers
128
+ TuneOutput: tuning output level
129
+ TuneResults: number of imroved parameter sets returned
130
+ TuneTimeLimit: tuning time limit
131
+ TuneTrials: number of trial runs with each parameter set
132
+ TuneCleanup: time percentage spend in a cleanup phase
133
+ TuneTargetMIPGap: a target gap to be reached
134
+ TuneTargetTime: a target runtime in seconds to be reached
135
+ TuneMetric: method for aggregating results
136
+
137
+ Multiple solutions: determines how the MIP search looks for solutions
138
+ PoolGap: determines the quality of the retained solutions (relative)
139
+ PoolGapAbs: determines the quality of the retained solutions (absolute)
140
+ PoolSearchMode: chooses the approach used to search for solutions
141
+ PoolSolutions: determines the number of solutions that are stored
142
+
143
+ MIP cuts: affect the generation of MIP cutting planes
144
+ BQPCuts: controls BQP cut generation
145
+ CliqueCuts: controls clique cut generation
146
+ CoverCuts: controls cover cut generation
147
+ CutAggPasses: limits aggregation during cut generation
148
+ CutPasses: limits the number of cut passes
149
+ Cuts: global cut generation control
150
+ DualImpliedCuts: controls dual implied bound cut generation
151
+ FlowCoverCuts: controls flow cover cut generation
152
+ FlowPathCuts: controls flow path cut generation
153
+ GomoryPasses: controls the number of Gomory cut passes
154
+ GUBCoverCuts: controls GUB cover cut generation
155
+ ImpliedCuts: controls implied bound cut generation
156
+ InfProofCuts: controls infeasibility proof cut generation
157
+ MIPSepCuts: controls MIP separation cut generation
158
+ MIRCuts: controls MIR cut generation
159
+ ModKCuts: controls mod-k cut generation
160
+ NetworkCuts: controls network cut generation
161
+ ProjImpliedCuts: controls projected implied bound cut generation
162
+ PSDCuts: controls PSD cut generation
163
+ LiftProjectCuts: controls lift-and-project cut generation
164
+ MasterKnapsackCuts: controls master knapsack cut generation
165
+ MixingCuts: controls mixing cut generation
166
+ RelaxLiftCuts: controls relax-and-lift cut generation
167
+ RLTCuts: controls RLT cut generation
168
+ StrongCGCuts: controls Strong-CG cut generation
169
+ SubMIPCuts: controls sub-MIP cut generation
170
+ ZeroHalfCuts: controls zero-half cut generation
171
+
172
+ NL barrier: affect the NL barrier algorithm
173
+ OptimalityTarget: selects search for global or local optimum
174
+
175
+ Distributed algorithms: used for distributed optimization
176
+ WorkerPassword: cluster client password
177
+ WorkerPool: server URL to access the cluster
178
+
179
+ Cloud: parameters used for cloud-based optimization
180
+ CloudAccessID: Instant Cloud access ID
181
+ CloudPool: Instant Cloud pool name
182
+ CloudSecretKey: Instant Cloud secret key
183
+
184
+ Compute Server and Cluster Manager: used for optimization with Remote Services
185
+ CSAPIAccessID: API access ID to access the Cluster Manager
186
+ CSAPISecret: API secret key to access the Cluster Manager
187
+ CSAppName: application name
188
+ CSAuthToken: Authentication token used internally to access a Cluster Manager
189
+ CSBatchMode: Controls Batch-Mode optimization with a Cluster Manager
190
+ CSClientLog: Turns logging on or off
191
+ CSGroup: Group placement request for cluster
192
+ CSIdleTimeout: job idle timeout
193
+ CSManager: access URL of the Cluster Manager
194
+ CSPriority: compute server job priority
195
+ CSQueueTimeout: queue timeout for new jobs
196
+ CSRouter: remote services router URL
197
+ CSTLSInsecure: enable TLS insecurity mode
198
+ ComputeServer: server URL to access the cluster
199
+ ServerPassword: cluster client password
200
+ ServerTimeout: network timeout
201
+ UserName: User name to use when connecting to the Cluster Manager
202
+
203
+ Token Server: affect token server parameters
204
+ TokenServer: address of token server
205
+ TSPort: token server port
206
+
207
+ Web License Service (WLS): affect WLS parameters
208
+ WLSAccessID: WLS access ID
209
+ WLSSecret: WLS secret key
210
+ WLSTokenDuration: lifespan of a Web License Services token (in minutes)
211
+ WLSTokenRefresh: Relative refresh interval for Web License Services tokens
212
+ WLSToken: WLS token
213
+ LicenseID: WLS license ID
214
+ WLSProxy: WLS proxy
215
+ WLSConfig: WLS configuration
216
+
217
+ Other:
218
+ Disconnected: controls the disconnected component strategy
219
+ DisplayInterval: sets the frequency at which log lines are printed
220
+ FeasRelaxBigM: BigM value for feasibility relaxation
221
+ FuncMaxVal: maximal value for |lb| and |ub| of x and y variables of
222
+ general function constraints
223
+ FuncNonlinear: controls whether nonlinear general constraints are treated
224
+ as nonlinear constraints or whether they are approximated
225
+ via piece-wise linear constraints
226
+ FuncPieceError: error allowed for PWL translation of general function
227
+ constraints without own options specified
228
+ FuncPieceLength: piece length for PWL translation of general function
229
+ constraints without own options specified
230
+ FuncPieceRatio: control whether to link function values or to have
231
+ pieces below or above the function
232
+ FuncPieces: control PWL translation of general function constraints
233
+ without own options specified, whether to use equal piece
234
+ length, to limit error or to limit the total number of pieces
235
+ IgnoreNames: indicates whether to ignore names provided by users
236
+ IISMethod: method used to find an IIS
237
+ InheritParams: control how a supporting environment is applied
238
+ JSONSolDetail: controls amount of information in a JSON solution string
239
+ LazyConstraints: programs that use lazy constraints must set this to 1
240
+ LogFile: sets the name of the Gurobi log file
241
+ LogToConsole: turn logging to the console on or off
242
+ Method: algorithm used to solve a continuous model or the root node of a
243
+ MIP model (auto, primal simplex, dual simplex, barrier, or
244
+ concurrent)
245
+ ConcurrentMethod: algorithms used with concurrently when solving continuous
246
+ models using concurrent
247
+ NumericFocus: controls numerically conservative level
248
+ MultiObjMethod: warm-start method to solve for subsequent objectives
249
+ MultiObjPre: controls initial presolve level on multi-objective models
250
+ ObjNumber: selects the objective index of multi-objectives
251
+ OutputFlag: turn logging on or off
252
+ PDHGGPU: Enable GPU for PDHG
253
+ Record: enables replay
254
+ ResultFile: result file to write when optimization completes
255
+ ScenarioNumber: selects the scenario index of multi-scenario models
256
+ Seed: sets the random number seed
257
+ ThreadLimit: sets a thread limit when starting an environment
258
+ Threads: sets the number of threads to apply to parallel MIP
259
+ UpdateMode: controls the way how to update a model
260
+
261
+ Parameters can be referred to using the Param class (e.g.
262
+ "setParam(GRB.param.threads, 1)"), or by using the name as a string
263
+ (e.g., "setParam('threads', 1)). You can use the '*' and '?' wildcards
264
+ when inputting parameter names, and text case is ignored
265
+ (so "setParam('thr*', 1)" would also work).
266
+
267
+ For further information on any of these parameters, type
268
+ paramHelp('paramname') (e.g., paramHelp("NodeLimit")). Wildcards
269
+ are also accepted for paramHelp().
270
+ '''
271
+
272
+ def __setattr__(self, name, value):
273
+ raise AttributeError("Gurobi parameter constants are not modifiable")
274
+
275
+ BarIterLimit = "BarIterLimit"
276
+ Cutoff = "Cutoff"
277
+ IterationLimit = "IterationLimit"
278
+ MemLimit = "MemLimit"
279
+ NLBarIterLimit = "NLBarIterLimit"
280
+ NodeLimit = "NodeLimit"
281
+ SoftMemLimit = "SoftMemLimit"
282
+ SolutionLimit = "SolutionLimit"
283
+ TimeLimit = "TimeLimit"
284
+ WorkLimit = "WorkLimit"
285
+ BestObjStop = "BestObjStop"
286
+ BestBdStop = "BestBdStop"
287
+
288
+ BarConvTol = "BarConvTol"
289
+ BarQCPConvTol = "BarQCPConvTol"
290
+ FeasibilityTol = "FeasibilityTol"
291
+ IntFeasTol = "IntFeasTol"
292
+ MarkowitzTol = "MarkowitzTol"
293
+ MIPGap = "MIPGap"
294
+ MIPGapAbs = "MIPGapAbs"
295
+ NLBarCFeasTol = "NLBarCFeasTol"
296
+ NLBarDFeasTol = "NLBarDFeasTol"
297
+ NLBarPFeasTol = "NLBarPFeasTol"
298
+ OptimalityTol = "OptimalityTol"
299
+ PSDTol = "PSDTol"
300
+
301
+ InfUnbdInfo = "InfUnbdInfo"
302
+ LPWarmStart = "LPWarmStart"
303
+ NetworkAlg = "NetworkAlg"
304
+ NormAdjust = "NormAdjust"
305
+ ObjScale = "ObjScale"
306
+ PerturbValue = "PerturbValue"
307
+ Quad = "Quad"
308
+ ScaleFlag = "ScaleFlag"
309
+ Sifting = "Sifting"
310
+ SiftMethod = "SiftMethod"
311
+ SimplexPricing = "SimplexPricing"
312
+ SolutionTarget = "SolutionTarget"
313
+
314
+ BarCorrectors = "BarCorrectors"
315
+ BarHomogeneous = "BarHomogeneous"
316
+ BarOrder = "BarOrder"
317
+ Crossover = "Crossover"
318
+ CrossoverBasis = "CrossoverBasis"
319
+ QCPDual = "QCPDual"
320
+
321
+ PDHGIterLimit = "PDHGIterLimit"
322
+ PDHGRelTol = "PDHGRelTol"
323
+ PDHGAbsTol = "PDHGAbsTol"
324
+ PDHGConvTol = "PDHGConvTol"
325
+ PDHGGPU = "PDHGGPU"
326
+
327
+ BranchDir = "BranchDir"
328
+ DegenMoves = "DegenMoves"
329
+ ConcurrentJobs = "ConcurrentJobs"
330
+ ConcurrentMIP = "ConcurrentMIP"
331
+ Disconnected = "Disconnected"
332
+ DistributedMIPJobs = "DistributedMIPJobs"
333
+ FixVarsInIndicators = "FixVarsInIndicators"
334
+ Heuristics = "Heuristics"
335
+ ImproveStartGap = "ImproveStartGap"
336
+ ImproveStartNodes = "ImproveStartNodes"
337
+ ImproveStartTime = "ImproveStartTime"
338
+ ImproveStartWork = "ImproveStartWork"
339
+ MinRelNodes = "MinRelNodes"
340
+ MIPFocus = "MIPFocus"
341
+ MIQCPMethod = "MIQCPMethod"
342
+ NLPHeur = "NLPHeur"
343
+ NodefileDir = "NodefileDir"
344
+ NodefileStart = "NodefileStart"
345
+ NodeMethod = "NodeMethod"
346
+ NonConvex = "NonConvex"
347
+ NoRelHeurSolutions = "NoRelHeurSolutions"
348
+ NoRelHeurTime = "NoRelHeurTime"
349
+ NoRelHeurWork = "NoRelHeurWork"
350
+ OBBT = "OBBT"
351
+ PartitionPlace = "PartitionPlace"
352
+ PumpPasses = "PumpPasses"
353
+ RINS = "RINS"
354
+ SolFiles = "SolFiles"
355
+ SolutionNumber = "SolutionNumber"
356
+ SubMIPNodes = "SubMIPNodes"
357
+ Symmetry = "Symmetry"
358
+ VarBranch = "VarBranch"
359
+ ZeroObjNodes = "ZeroObjNodes"
360
+
361
+ TuneCriterion = "TuneCriterion"
362
+ TuneJobs = "TuneJobs"
363
+ TuneDynamicJobs = "TuneDynamicJobs"
364
+ TuneMetric = "TuneMetric"
365
+ TuneOutput = "TuneOutput"
366
+ TuneResults = "TuneResults"
367
+ TuneTimeLimit = "TuneTimeLimit"
368
+ TuneTrials = "TuneTrials"
369
+ TuneCleanup = "TuneCleanup"
370
+ TuneTargetMIPGap = "TuneTargetMIPGap"
371
+ TuneTargetTime = "TuneTargetTime"
372
+
373
+ PoolSearchMode = "PoolSearchMode"
374
+ PoolSolutions = "PoolSolutions"
375
+ PoolGap = "PoolGap"
376
+ PoolGapAbs = "PoolGapAbs"
377
+
378
+ BQPCuts = "BQPCuts"
379
+ Cuts = "Cuts"
380
+ CliqueCuts = "CliqueCuts"
381
+ CoverCuts = "CoverCuts"
382
+ FlowCoverCuts = "FlowCoverCuts"
383
+ FlowPathCuts = "FlowPathCuts"
384
+ GUBCoverCuts = "GUBCoverCuts"
385
+ ImpliedCuts = "ImpliedCuts"
386
+ InfProofCuts = "InfProofCuts"
387
+ MIPSepCuts = "MIPSepCuts"
388
+ MIRCuts = "MIRCuts"
389
+ ModKCuts = "ModKCuts"
390
+ NetworkCuts = "NetworkCuts"
391
+ DualImpliedCuts = "DualImpliedCuts"
392
+ ProjImpliedCuts = "ProjImpliedCuts"
393
+ PSDCuts = "PSDCuts"
394
+ LiftProjectCuts = "LiftProjectCuts"
395
+ MasterKnapsackCuts = "MasterKnapsackCuts"
396
+ MixingCuts = "MixingCuts"
397
+ RelaxLiftCuts = "RelaxLiftCuts"
398
+ RLTCuts = "RLTCuts"
399
+ StrongCGCuts = "StrongCGCuts"
400
+ SubMIPCuts = "SubMIPCuts"
401
+ ZeroHalfCuts = "ZeroHalfCuts"
402
+ CutAggPasses = "CutAggPasses"
403
+ CutPasses = "CutPasses"
404
+ GomoryPasses = "GomoryPasses"
405
+
406
+ OptimalityTarget = "OptimalityTarget"
407
+
408
+ WorkerPassword = "WorkerPassword"
409
+ WorkerPool = "WorkerPool"
410
+ ComputeServer = "ComputeServer"
411
+ ServerPassword = "ServerPassword"
412
+ ServerTimeout = "ServerTimeout"
413
+ CSRouter = "CSRouter"
414
+ CSGroup = "CSGroup"
415
+ CSPriority = "CSPriority"
416
+ CSQueueTimeout = "CSQueueTimeout"
417
+ CSTLSInsecure = "CSTLSInsecure"
418
+ CSAppName = "CSAppName"
419
+ CSClientLog = "CSClientLog"
420
+ CSIdleTimeout = "CSIdleTimeout"
421
+ TokenServer = "TokenServer"
422
+ TSPort = "TSPort"
423
+ CloudAccessID = "CloudAccessID"
424
+ CloudSecretKey = "CloudSecretKey"
425
+ CloudPool = "CloudPool"
426
+ CloudHost = "CloudHost"
427
+ JobID = "JobID"
428
+ CSAPIAccessID = "CSAPIAccessID"
429
+ CSAPISecret = "CSAPISecret"
430
+ CSAuthToken = "CSAuthToken"
431
+ CSBatchMode = "CSBatchMode"
432
+ CSManager = "CSManager"
433
+ UserName = "UserName"
434
+ WLSAccessID = "WLSAccessID"
435
+ WLSSecret = "WLSSecret"
436
+ WLSTokenDuration = "WLSTokenDuration"
437
+ WLSTokenRefresh = "WLSTokenRefresh"
438
+ WLSToken = "WLSToken"
439
+ LicenseID = "LicenseID"
440
+ WLSProxy = "WLSProxy"
441
+ WLSConfig = "WLSConfig"
442
+
443
+ AggFill = "AggFill"
444
+ Aggregate = "Aggregate"
445
+ DisplayInterval = "DisplayInterval"
446
+ DualReductions = "DualReductions"
447
+ FeasRelaxBigM = "FeasRelaxBigM"
448
+ FuncMaxVal = "FuncMaxVal"
449
+ FuncNonlinear = "FuncNonlinear"
450
+ FuncPieceError = "FuncPieceError"
451
+ FuncPieceLength = "FuncPieceLength"
452
+ FuncPieceRatio = "FuncPieceRatio"
453
+ FuncPieces = "FuncPieces"
454
+ IISMethod = "IISMethod"
455
+ IntegralityFocus = "IntegralityFocus"
456
+ InheritParams = "InheritParams"
457
+ JSONSolDetail = "JSONSolDetail"
458
+ LazyConstraints = "LazyConstraints"
459
+ LogFile = "LogFile"
460
+ LogToConsole = "LogToConsole"
461
+ Method = "Method"
462
+ ConcurrentMethod = "ConcurrentMethod"
463
+ NumericFocus = "NumericFocus"
464
+ MultiObjMethod = "MultiObjMethod"
465
+ MultiObjPre = "MultiObjPre"
466
+ IgnoreNames = "IgnoreNames"
467
+ ObjNumber = "ObjNumber"
468
+ OutputFlag = "OutputFlag"
469
+ PreCrush = "PreCrush"
470
+ PreDepRow = "PreDepRow"
471
+ PreDual = "PreDual"
472
+ PrePasses = "PrePasses"
473
+ PreQLinearize = "PreQLinearize"
474
+ Presolve = "Presolve"
475
+ PreSOS1BigM = "PreSOS1BigM"
476
+ PreSOS1Encoding = "PreSOS1Encoding"
477
+ PreSOS2BigM = "PreSOS2BigM"
478
+ PreSOS2Encoding = "PreSOS2Encoding"
479
+ PreSparsify = "PreSparsify"
480
+ PreMIQCPForm = "PreMIQCPForm"
481
+ Record = "Record"
482
+ ResultFile = "ResultFile"
483
+ ScenarioNumber = "ScenarioNumber"
484
+ Seed = "Seed"
485
+ StartNodeLimit = "StartNodeLimit"
486
+ StartNumber = "StartNumber"
487
+ StartTimeLimit = "StartTimeLimit"
488
+ StartWorkLimit = "StartWorkLimit"
489
+ ThreadLimit = "ThreadLimit"
490
+ Threads = "Threads"
491
+ UpdateMode = "UpdateMode"