File tree 6 files changed +607
-684
lines changed
6 files changed +607
-684
lines changed Original file line number Diff line number Diff line change 1
1
language : julia
2
+
2
3
os :
3
4
- linux
4
5
- osx
6
+
5
7
julia :
6
8
- 0.5
7
9
- nightly
10
+
8
11
notifications :
9
12
email : false
13
+
10
14
sudo : required
15
+
11
16
addons :
12
17
apt_packages :
13
18
- gfortran
Load Diff This file was deleted.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
julia 0.5
2
2
MathProgBase 0.5.7
3
3
MAT 0.3.1
4
- Clp 0.2.2
Original file line number Diff line number Diff line change @@ -39,24 +39,21 @@ if solverName == "CPLEX"
39
39
40
40
elseif solverName == " GLPKMathProgInterface" || solverName == " GLPK"
41
41
solParams = [:Simplex , # Method
42
- true # presolve
42
+ true # presolve
43
43
] # end of solParams
44
44
45
45
elseif solverName == " Gurobi"
46
46
solParams = [2 , # Method
47
- 0 # OutputFlag
47
+ 0 # OutputFlag
48
48
] # end of solParams
49
49
50
50
elseif solverName == " Clp"
51
- solParams = [
52
- ] # end of solParams
51
+ solParams = [] # end of solParams
53
52
54
53
elseif solverName == " Mosek"
55
- solParams = [
56
- ] # end of solParams
54
+ solParams = [] # end of solParams
57
55
58
56
else
59
- solParams = [
60
- ] # end of solParams
57
+ solParams = [] # end of solParams
61
58
warn (" The solver is not supported. No solver parameters have been set." )
62
59
end
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ MathProgBase 0.5.7
3
3
MAT 0.3.1
4
4
GLPKMathProgInterface 0.2.3
5
5
GLPK 0.3.0
6
+ Clp 0.2.2
You can’t perform that action at this time.
0 commit comments