Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DNMY: MOI #53

Merged
merged 36 commits into from
Jun 28, 2018
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
bcb542c
Add MOI
odow Apr 28, 2018
e5d5146
Add MOI to require
odow Apr 28, 2018
d5722da
Add atomic tests
odow Apr 28, 2018
0dfc6f3
Update obj sense
odow Apr 28, 2018
d58ccc4
More tidying
odow Apr 29, 2018
29d83a5
Latest updates
odow Apr 29, 2018
ae15904
Updates for latest MOI
odow Apr 30, 2018
a0c7078
Remove dict maps
odow May 1, 2018
23c3610
Partial rename of LQOI
odow May 1, 2018
e9e793e
More Renamings
odow May 7, 2018
479aaa4
More Renamings
odow May 7, 2018
989d3bc
More Renamings
odow May 7, 2018
062f577
More Renamings
odow May 7, 2018
1e7e707
Update version bounds
odow May 7, 2018
f1a23c4
Merge branch 'oscar' of https://github.com/odow/GLPK.jl into oscar
odow May 7, 2018
ae9dfc1
More Renamings
odow May 7, 2018
a06859c
Add explict ranged constraint methods
odow May 7, 2018
d8737f0
Add LQOI to REQUIRE
odow May 8, 2018
d035c94
support SingleVariable objective functions
rdeits May 10, 2018
5cade41
clone LinQuadOptInterface.jl on Travis
rdeits May 10, 2018
7efe811
Merge pull request #1 from rdeits/single-var-obj
odow May 10, 2018
4a541eb
Add latest MOI unit tests
odow May 12, 2018
ef654d2
Exclude new tests
odow May 12, 2018
753472c
Remove vaf in reals
odow May 13, 2018
658bfbf
Basic constraint tests
odow May 13, 2018
40fb549
Updates for LQOI#15
odow Jun 4, 2018
69b285d
Updates for CSRMatrix
odow Jun 4, 2018
cfc95c6
Updates to CSRMatrix
odow Jun 5, 2018
5e714ac
Add get_range for the set of an interval constraint
odow Jun 11, 2018
d39cfe0
Return 1-indexed columns
odow Jun 14, 2018
dd66ef3
Add modification tests
odow Jun 19, 2018
750cb94
Enable modification tests
odow Jun 19, 2018
022e04e
Bump LQOI to tagged version
odow Jun 27, 2018
1356c19
Comment failing tests
odow Jun 27, 2018
681222f
Update .travis.yml
odow Jun 28, 2018
b075666
Update appveyor.yml
odow Jun 28, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.0 0.1
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