Initial version

This commit is contained in:
2020-08-29 12:47:46 -05:00
commit 9b9f4d968d
14 changed files with 1027 additions and 0 deletions

14
test/runtests.jl Normal file
View File

@@ -0,0 +1,14 @@
# MIPLearn: Extensible Framework for Learning-Enhanced Mixed-Integer Optimization
# Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
# Released under the modified BSD license. See COPYING.md for more details.
using Test
using MIPLearn
MIPLearn.setup_logger()
@testset "MIPLearn" begin
include("knapsack.jl")
include("jump_solver_test.jl")
include("learning_solver_test.jl")
end