-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLPPar.txt
More file actions
79 lines (56 loc) · 2.74 KB
/
Copy pathLPPar.txt
File metadata and controls
79 lines (56 loc) · 2.74 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# - - - - - - - - - - - - - - - - LPPar.txt - - - - - - - - - - - - - - - - -
#
# A txt description of a BlockSolverConfig for a Block containing the LP
# representation of the problem solved by the tester for
# PolyhedralFunctionBlock; this being a simple LP (albeit one with
# sub-Block), a :MILPSolver
#
# Enrico Gorgone, Antonio Frangioni
#
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
BlockSolverConfig # exact type of the Configuration object
0 # the BlockSolverConfig is not a "differential" one: values are being set
1 # number of (the names of) Solver in this BlockSolverConfig
# now all the names of the Solver - - - - - - - - - - - - - - - - - - - - - -
#CPXMILPSolver # name of Solver
#GRBMILPSolver # name of Solver
#SCIPMILPSolver # name of Solver
HiGHSMILPSolver # name of Solver
1 # number of ComputeConfig in this BlockSolverConfig
# now all the ComputeConfig
# 1st ComputeConfig - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ComputeConfig # exact type of the ComputeConfig object
1 # f_diff == 0 ==> all non-provided parameters are set to the default value
# f_diff == 1 ==> all non-provided parameters are not changed
1 # number of integer parameters
# now all the integer parameters
intLogVerb 0 # LogVerb, log verbosity of the MILPSolver
2 # number of double parameters
# now all the double parameters
dblRelAcc 1e-8 # relative accuracy required to solution
dblFAccSol 1e-9 # tight feasibility tolerance: needed because the test
# tolerance (2e-7 relative) is tighter than CPLEX's default
# LP simplex feasibility tolerance (1e-6), so an LP solved
# at default precision can drift past the test tolerance
# over many iterations of accumulated modifications
0 # number of string parameters
# now all the string parameters
#strOutputFile LP0.lp
0 # number of vector-of-int parameters
# now all the vector-of-int parameters
# [none]
0 # number of vector-of-double parameters
# now all the vector-of-double parameters
# [none]
0 # number of vector-of-string parameters
# now all the vector-of-string parameters
# [none]
# pointer to the "extra" Configuration
* # [none]
# end of 1st ComputeConfig- - - - - - - - - - - - - - - - - - - - - - - - - -
# end of BlockSolverConfig- - - - - - - - - - - - - - - - - - - - - - - - - -
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# - - - - - - - - - - - - - - - - END LPPar.txt - - - - - - - - - - - - - - -
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -