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 #125

Merged
merged 43 commits into from
Jul 24, 2018
Merged
Show file tree
Hide file tree
Changes from 42 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
5ca43d2
Add code from MathOptInterfaceGurobi and reorganise
odow Apr 27, 2018
fec3ce3
Fix quadratic constraints
odow Apr 27, 2018
791e4b4
qcp tests passing
odow Apr 27, 2018
982043a
Passing these tests
odow Apr 27, 2018
104f9a2
enable copytest
odow Apr 27, 2018
1f42243
rename files
odow Apr 27, 2018
57c9991
sort out obj sense
odow Apr 28, 2018
f4cf529
Add atomic tests
odow Apr 29, 2018
1f2ab9f
atomic->unit tests
odow Apr 30, 2018
1d7c830
Remove dict maps
odow May 1, 2018
c0bfd73
Partial rename of LQOI
odow May 1, 2018
f7e5f20
Don't test SAF-in-Interval
odow May 1, 2018
ce55030
More Renamings
odow May 7, 2018
20cc85f
More Renamings
odow May 7, 2018
40170e8
More Renamings
odow May 7, 2018
4d73077
More Renamings
odow May 7, 2018
ff988a4
Add MOI to REQUIRE
odow May 7, 2018
36378ca
More Renamings
odow May 7, 2018
b608d2b
remove ranged constraint
odow May 7, 2018
3d551e2
Add LQOI to REQUIRE
odow May 8, 2018
e0da333
Last renaming
odow May 8, 2018
650c527
Updates for latest LQOI and MOI
odow May 12, 2018
4dd120b
add support for deleting qconstrs
odow May 12, 2018
0c86b5d
Add semiinteger and semicont variables to MOI
odow May 12, 2018
f01295b
Remove vaf in reals
odow May 13, 2018
6bab0ba
Basic constraint tests
odow May 13, 2018
6932dfe
Callbacks working!
odow May 17, 2018
c93b86e
Update for MOI 0.3
odow Jun 4, 2018
7f0ff70
Updates for LQOI#15
odow Jun 4, 2018
edb8b5a
Updates for CSRMatrix
odow Jun 4, 2018
9202b9d
Tidy up MOIWrapper
odow Jun 5, 2018
3b099fb
Various fixes for Quadratic functions
odow Jun 5, 2018
beffecf
Fix comment
odow Jun 5, 2018
1fb747f
Updates to CSRMatrix
odow Jun 5, 2018
921379b
Lazy constraints in MOI
odow Jun 6, 2018
96e6b3c
Tidy up callbacks
odow Jun 6, 2018
389a932
Add get function and set of quadratic constraints
odow Jun 11, 2018
21b4eac
Return 1-index columns
odow Jun 14, 2018
726ef44
Add modification tests
odow Jun 19, 2018
080298b
Enable modification tests
odow Jun 19, 2018
2dcbd5a
Update REQUIRE
odow Jun 28, 2018
41cc64d
Comment failing MOI tests
odow Jun 28, 2018
8819312
Update bound for LQOI
odow Jul 24, 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
@@ -1,3 +1,4 @@
julia 0.6
MathProgBase 0.5 0.8
Compat 0.18
LinQuadOptInterface 0.1 0.2
3 changes: 2 additions & 1 deletion src/Gurobi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,6 @@ module Gurobi
include("grb_solve.jl")
include("grb_callbacks.jl")

include("GurobiSolverInterface.jl")
include("MPBWrapper.jl")
include("MOIWrapper.jl")
end
Loading