You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .travis.yml
+6-5
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,8 @@ os:
5
5
# - osx
6
6
7
7
julia:
8
-
- 0.6
8
+
- 0.7
9
+
- 1.0
9
10
- nightly
10
11
11
12
matrix:
@@ -15,13 +16,13 @@ matrix:
15
16
notifications:
16
17
email: false
17
18
# uncomment the following lines to override the default test script
18
-
script:
19
-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
20
-
- julia -e 'Pkg.clone(pwd()); Pkg.build("LightGraphsExtras"); Pkg.test("LightGraphsExtras"; coverage=true)'
19
+
#script:
20
+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
21
+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("LightGraphsExtras"); Pkg.test("LightGraphsExtras"; coverage=true)'
21
22
22
23
# cache:
23
24
# directories:
24
25
# - $HOME/.julia/v0.4/JuMP/
25
26
# - $HOME/.julia/v0.5/JuMP/
26
27
after_success:
27
-
- julia -e 'cd(Pkg.dir("LightGraphsExtras")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
28
+
- julia -e 'cd(using Pkg; Pkg.dir("LightGraphsExtras")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
@@ -202,14 +202,13 @@ use of the solver keyword, as it is similar to the `Model()` method there.
202
202
203
203
All algorithms return a tuple with 1) a lower bound and 2) an upper bound.
204
204
For the Multilink Attack algorithm, it also returns the restriction values (to use with
205
-
the function maximum_flow in LightGraphs.jl) associated with 3-a) the lower bound and
205
+
the function maximum_flow in LightGraphsFlows.jl) associated with 3-a) the lower bound and
206
206
4-a) the upper bound. When the BMILP is used, the third element returned is 3-b) the
207
207
time used by the algorithm.
208
208
209
209
When the number of attacks is set to -1, an array with the results for any possible number of attacks will be output. Each result will be output as above.
0 commit comments