forked from phumthep/pyslp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_config.ini
More file actions
32 lines (29 loc) · 966 Bytes
/
user_config.ini
File metadata and controls
32 lines (29 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
; Parameters are overridden when specified in the function call.
[DW]
MAXITER = 200
; DWIMPROVE (FLOAT, percent) is a termination based on incremental improvement in objval of the master problem
; Use -1 to disable
DWIMPROVE = -1
; DWRMPGAP (FLOAT, percent) is a termination criterion based on the gap between RMP objval and its LB
DWRMPGAP = 0.0001
; RECOVER_INTEGER (BOOL) decides whether to convert lambdas to binary or leave as continuous. (0 or 1)
RECOVER_INTEGER = False
; VERBOSE (BOOL) decides whether to print out the new proposals added at each iteration.
VERBOSE = True
[DWMASTER]
MIPGAP = 0
TIMELIMIT = 600
VERBOSE = False
[DWSUBPROBLEM]
; It is not recommended to warmstart subproblems
WARMSTART = False
MIPGAP = 0
VERBOSE = False
; RELAX (BOOL) convert integer variables to continuous
RELAX = False
[GUROBI]
WARMSTART = False
MIPGAP = 0
VERBOSE = False
; RECORD decides whether to keep track of objective value, runtime, and itercount.
RECORD = True