Skip to content

Commit a00f013

Browse files
committed
fixed tests for latest JuMP/MOI versions
1 parent 497eaf5 commit a00f013

File tree

6 files changed

+42
-31
lines changed

6 files changed

+42
-31
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# ConstrainSolver.jl - Changelog
22

3+
## v0.3.1
4+
- Added `copy` function for constraint structs for latest JuMP/MOI versions
5+
36
## v0.3.0
47
- Reified constraint [#171](https://github.com/Wikunia/ConstraintSolver.jl/pull/171)
58

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ConstraintSolver"
22
uuid = "e0e52ebd-5523-408d-9ca3-7641f1cd1405"
33
authors = ["Ole Kröger <[email protected]>"]
4-
version = "0.3.0"
4+
version = "0.3.1"
55

66
[deps]
77
Formatting = "59287772-0a20-5a39-b81b-1366585eb4c0"

src/types.jl

+19-12
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,16 @@ end
4646
=================== SETS FOR VARIABLES AND CONSTRAINTS ==============================
4747
====================================================================================#
4848

49-
struct Integers <: MOI.AbstractScalarSet
49+
struct Integers <: MOI.AbstractScalarSet
5050
values::Vector{Int}
5151
end
5252
Integers(vals::Union{UnitRange{Int}, StepRange{Int, Int}}) = Integers(collect(vals))
53+
Base.copy(I::Integers) = Integers(I.values)
5354

5455
struct AllDifferentSetInternal <: MOI.AbstractVectorSet
5556
dimension :: Int
5657
end
58+
Base.copy(A::AllDifferentSetInternal) = AllDifferentSetInternal(A.dimension)
5759

5860
struct AllDifferentSet <: JuMP.AbstractVectorSet end
5961
JuMP.moi_set(::AllDifferentSet, dim) = AllDifferentSetInternal(dim)
@@ -62,22 +64,25 @@ struct TableSetInternal <: MOI.AbstractVectorSet
6264
dimension :: Int
6365
table :: Array{Int, 2}
6466
end
67+
Base.copy(T::TableSetInternal) = TableSetInternal(T.dimension, T.table)
6568

66-
struct TableSet <: JuMP.AbstractVectorSet
69+
struct TableSet <: JuMP.AbstractVectorSet
6770
table :: Array{Int, 2}
6871
end
6972
JuMP.moi_set(ts::TableSet, dim) = TableSetInternal(dim, ts.table)
7073

7174
struct EqualSetInternal <: MOI.AbstractVectorSet
7275
dimension::Int
7376
end
77+
Base.copy(E::EqualSetInternal) = EqualSetInternal(E.dimension)
7478

7579
struct EqualSet <: JuMP.AbstractVectorSet end
7680
JuMP.moi_set(::EqualSet, dim) = EqualSetInternal(dim)
7781

7882
struct NotEqualTo{T} <: MOI.AbstractScalarSet
7983
value::T
8084
end
85+
Base.copy(N::NotEqualTo) = NotEqualTo(N.value)
8186

8287
#====================================================================================
8388
====================== TYPES FOR CONSTRAINTS ========================================
@@ -86,7 +91,7 @@ end
8691
abstract type Constraint end
8792

8893
"""
89-
BoundRhsVariable
94+
BoundRhsVariable
9095
idx - variable index in the lp Model
9196
lb - lower bound of that variable
9297
ub - upper bound of that variable
@@ -110,10 +115,10 @@ mutable struct MatchingInit
110115
end
111116

112117
"""
113-
RSparseBitSet
118+
RSparseBitSet
114119
115120
See https://arxiv.org/pdf/1604.06641.pdf
116-
words[x] will save 64 possibilities in a TableConstraint a `1` at position y will mean that the
121+
words[x] will save 64 possibilities in a TableConstraint a `1` at position y will mean that the
117122
words in row (x-1)*64+y of the table are possible a 0 means that they aren't
118123
Similar to `Variable` a whole block of 64 rows can be removed by changing the `indices` and `last_ptr`.
119124
The `mask` saves the current mask to change words
@@ -123,21 +128,21 @@ mutable struct RSparseBitSet
123128
indices :: Vector{Int}
124129
last_ptr :: Int
125130
mask :: Vector{UInt64}
126-
RSparseBitSet() = new()
131+
RSparseBitSet() = new()
127132
end
128133

129134
mutable struct TableSupport
130-
# defines the range for each variable
135+
# defines the range for each variable
131136
# i.e [1,3,7,10] means that the first variable has 2 values, the second 4
132-
var_start :: Vector{Int}
137+
var_start :: Vector{Int}
133138
values :: Array{UInt64, 2}
134139
TableSupport() = new()
135140
end
136141

137142
mutable struct TableResidues
138-
# defines the range for each variable
143+
# defines the range for each variable
139144
# i.e [1,3,7,10] means that the first variable has 2 values, the second 4
140-
var_start :: Vector{Int}
145+
var_start :: Vector{Int}
141146
values :: Vector{Int}
142147
TableResidues() = new()
143148
end
@@ -153,18 +158,20 @@ struct IndicatorSet{A} <: MOI.AbstractVectorSet
153158
set :: MOI.AbstractVectorSet
154159
dimension::Int
155160
end
161+
Base.copy(I::IndicatorSet{A}) where A = IndicatorSet{A}(I.func, I.set, I.dimension)
156162

157163
struct ReifiedSet{A} <: MOI.AbstractVectorSet
158164
func :: Union{JuMP.GenericAffExpr, MOI.VectorOfVariables}
159165
set :: Union{MOI.AbstractScalarSet, MOI.AbstractVectorSet}
160166
dimension::Int
161167
end
168+
Base.copy(R::ReifiedSet{A}) where A = ReifiedSet{A}(R.func, R.set, R.dimension)
162169

163170
#====================================================================================
164171
====================================================================================#
165172

166173
mutable struct ImplementedConstraintFunctions
167-
init :: Bool
174+
init :: Bool
168175
finished_pruning :: Bool
169176
restore_pruning :: Bool
170177
single_reverse_pruning :: Bool
@@ -233,7 +240,7 @@ mutable struct TableConstraint <: Constraint
233240
supports::TableSupport
234241
last_sizes::Vector{Int}
235242
residues::TableResidues
236-
# holds current, last_ptr and indices from each node
243+
# holds current, last_ptr and indices from each node
237244
# maybe it's better to compute some of them to save some space...
238245
# This is the easy implementation first
239246
backtrack::Vector{TableBacktrackInfo}

test/killer_sudoku.jl

+4-3
Original file line numberDiff line numberDiff line change
@@ -124,18 +124,19 @@ end
124124
end
125125
com = JuMP.backend(m).optimizer.model.inner
126126
@test general_tree_test(com)
127-
127+
128128
return com
129129
end
130130

131131
@testset "Killer Sudoku niallsudoku_5503 with negative coefficients and -9 to -1" begin
132132
com1 = killer_negative()
133-
@test_reference "refs/niallsudoku_5503_negative" test_string([constraint.indices for constraint in com1.constraints])
133+
com1_str = test_string([constraint.indices for constraint in com1.constraints])
134134
# the constraint order now affects this but calling the same twice should have the same ordering
135135
# this tests that the order of constraints the user specified is actually moved correctly to ConstraintSolver instead of being random
136136
# see https://github.com/Wikunia/ConstraintSolver.jl/issues/180
137137
com2 = killer_negative()
138-
@test_reference "refs/niallsudoku_5503_negative" test_string([constraint.indices for constraint in com2.constraints])
138+
com2_str = test_string([constraint.indices for constraint in com2.constraints])
139+
@test com1_str == com2_str
139140
info_1 = com1.info
140141
info_2 = com2.info
141142
@test info_1.pre_backtrack_calls == info_2.pre_backtrack_calls

test/lp_solver.jl

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@testset "LP Solver" begin
22
@testset "Issue 83 TimeLimit" begin
3-
glpk_optimizer = optimizer_with_attributes(GLPK.Optimizer, "msg_lev" => GLPK.OFF)
3+
glpk_optimizer = optimizer_with_attributes(GLPK.Optimizer, "msg_lev" => GLPK.GLP_OFF)
44
model = Model(optimizer_with_attributes(
55
CS.Optimizer,
66
"lp_optimizer" => glpk_optimizer,
@@ -40,7 +40,7 @@
4040

4141

4242
@testset "Issue 83 max_bt_steps" begin
43-
glpk_optimizer = optimizer_with_attributes(GLPK.Optimizer, "msg_lev" => GLPK.OFF)
43+
glpk_optimizer = optimizer_with_attributes(GLPK.Optimizer, "msg_lev" => GLPK.GLP_OFF)
4444
model = Model(optimizer_with_attributes(
4545
CS.Optimizer,
4646
"lp_optimizer" => glpk_optimizer,
@@ -77,7 +77,7 @@
7777

7878

7979
@testset "Issue 83" begin
80-
glpk_optimizer = optimizer_with_attributes(GLPK.Optimizer, "msg_lev" => GLPK.OFF)
80+
glpk_optimizer = optimizer_with_attributes(GLPK.Optimizer, "msg_lev" => GLPK.GLP_OFF)
8181
model = Model(optimizer_with_attributes(
8282
CS.Optimizer,
8383
"lp_optimizer" => glpk_optimizer,
@@ -123,11 +123,11 @@
123123

124124
# Variables
125125
@variable(model, 1 <= x[1:10] <= 15, Int)
126-
126+
127127
# Constraints
128128
@constraint(model, sum(x[1:5]) >= 10)
129129
@constraint(model, sum(x[6:10]) <= 15)
130-
130+
131131
table_left = [
132132
1 2 3 4 5; # sum 16
133133
1 2 3 4 6; # 17
@@ -142,7 +142,7 @@
142142

143143
@constraint(model, x[1:5] in CS.TableSet(table_left))
144144
@constraint(model, x[6:10] in CS.TableSet(table_right))
145-
145+
146146
@objective(model, Max, sum(x))
147147
optimize!(model)
148148

@@ -162,7 +162,7 @@
162162

163163
# Variables
164164
@variable(model, 1 <= x[1:10] <= 15, Int)
165-
165+
166166
# Constraints
167167
@constraint(model, sum(x[1:4]) >= 10)
168168
@constraint(model, sum(x[5:10]) <= 15)
@@ -219,7 +219,7 @@
219219
@objective(model, Max, sum(x))
220220
optimize!(model)
221221
# possible solution 11+12+13+14+15 + 1+2+3+4+5
222-
# only works fast if the all different bound works
222+
# only works fast if the all different bound works
223223
@test JuMP.objective_value(model) 80
224224
@test sum(JuMP.value.(x[6:10])) 15
225225
@test !(1.5*JuMP.value(x[1]) + 2*JuMP.value(x[2]) 40.5)
@@ -238,18 +238,18 @@
238238

239239
# Variables
240240
@variable(model, 1 <= x[1:10] <= 15, Int)
241-
241+
242242
# Constraints
243243
@constraint(model, sum(x[1:5]) >= 10)
244244
@constraint(model, sum(x[6:10]) <= 15)
245245
# disallow x[1] = 11 and x[2] == 12
246246
@constraint(model, 1.5*x[1]+2*x[2] != 40.5)
247247
@constraint(model, x in CS.AllDifferentSet())
248-
248+
249249
@objective(model, Max, sum(x))
250250
optimize!(model)
251251
# possible solution 11+12+13+14+15 + 1+2+3+4+5
252-
# only works fast if the all different bound works
252+
# only works fast if the all different bound works
253253
@test JuMP.objective_value(model) 80
254254
@test sum(JuMP.value.(x[6:10])) 15
255255
@test !(1.5*JuMP.value(x[1]) + 2*JuMP.value(x[2]) 40.5)
@@ -271,18 +271,18 @@
271271

272272
# Variables
273273
@variable(model, 1 <= x[1:10] <= 15, Int)
274-
274+
275275
# Constraints
276276
@constraint(model, sum(x[1:5]) >= 10)
277277
@constraint(model, sum(x[6:10]) <= 15)
278278
# disallow x[1] = 11 and x[2] == 12
279279
@constraint(model, 1.5*x[1]+2*x[2] != 40.5)
280280
@constraint(model, x in CS.AllDifferentSet())
281-
281+
282282
@objective(model, Max, sum(x))
283283
optimize!(model)
284284
# possible solution 11+12+13+14+15 + 1+2+3+4+5
285-
# only works fast if the all different bound works
285+
# only works fast if the all different bound works
286286
@test JuMP.objective_value(model) 80
287287
@test sum(JuMP.value.(x[6:10])) 15
288288
@test !(1.5*JuMP.value(x[1]) + 2*JuMP.value(x[2]) 40.5)

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ end
2222
"""
2323
test_string(arr::AbstractArray)
2424
25-
In Julia 1.0 string(arr) starts with Array{Int, 1} or something. In 1.5 it doesn't.
25+
In Julia 1.0 string(arr) starts with Array{Int, 1} or something. In 1.5 it doesn't.
2626
This function removes Array{...} and starts with `[`. Additionally all white spaces are removed.
2727
"""
2828
function test_string(arr::AbstractArray)

0 commit comments

Comments
 (0)