Skip to content

Commit

Permalink
DNMY: MOI (#53)
Browse files Browse the repository at this point in the history
* Add MOI

* Add MOI to require

* Add atomic tests

* Update obj sense

* More tidying

* Latest updates

* Updates for latest MOI

* Remove dict maps

* Partial rename of LQOI

* More Renamings

* More Renamings

* More Renamings

* More Renamings

* Update version bounds

* More Renamings

* Add explict ranged constraint methods

* Add LQOI to REQUIRE

* support SingleVariable objective functions

* clone LinQuadOptInterface.jl on Travis

* Add latest MOI unit tests

* Exclude new tests

* Remove vaf in reals

* Basic constraint tests

* Updates for LQOI#15

* Updates for CSRMatrix

* Updates to CSRMatrix

* Add get_range for the set of an interval constraint

* Return 1-indexed columns

* Add modification tests

* Enable modification tests

* Bump LQOI to tagged version

* Comment failing tests

* Update .travis.yml

* Update appveyor.yml
  • Loading branch information
odow authored Jun 28, 2018
1 parent 0da1a79 commit 5155ffb
Show file tree
Hide file tree
Showing 8 changed files with 1,199 additions and 12 deletions.
14 changes: 9 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ os:
- osx
julia:
- 0.6
- nightly
# - nightly
env:
matrix:
- CC="gcc"
Expand All @@ -15,10 +15,14 @@ sudo: false # use a docker worker
addons:
apt_packages:
- libgmp-dev
# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("GLPK"); Pkg.test("GLPK")'

# This replaces the `git fetch --unshallow` in the default Julia Travis script
git:
depth: 99999999

script:
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("GLPK"); Pkg.test("GLPK")'

after_success:
- julia --check-bounds=yes --inline=no -e 'cd(Pkg.dir("GLPK")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'
branches:
Expand Down
1 change: 1 addition & 0 deletions REQUIRE
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ julia 0.6
BinDeps
@osx Homebrew
Compat 0.63
LinQuadOptInterface 0.1 0.2
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ environment:
matrix:
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"

branches:
only:
Expand Down
1 change: 1 addition & 0 deletions deps/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ builds
downloads
src
deps.jl
glpk*
2 changes: 2 additions & 0 deletions src/GLPK.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2234,4 +2234,6 @@ end

#}}}

include("MOIWrapper.jl")

end # module
Loading

0 comments on commit 5155ffb

Please sign in to comment.