46
46
=================== SETS FOR VARIABLES AND CONSTRAINTS ==============================
47
47
====================================================================================#
48
48
49
- struct Integers <: MOI.AbstractScalarSet
49
+ struct Integers <: MOI.AbstractScalarSet
50
50
values:: Vector{Int}
51
51
end
52
52
Integers (vals:: Union{UnitRange{Int}, StepRange{Int, Int}} ) = Integers (collect (vals))
53
+ Base. copy (I:: Integers ) = Integers (I. values)
53
54
54
55
struct AllDifferentSetInternal <: MOI.AbstractVectorSet
55
56
dimension :: Int
56
57
end
58
+ Base. copy (A:: AllDifferentSetInternal ) = AllDifferentSetInternal (A. dimension)
57
59
58
60
struct AllDifferentSet <: JuMP.AbstractVectorSet end
59
61
JuMP. moi_set (:: AllDifferentSet , dim) = AllDifferentSetInternal (dim)
@@ -62,22 +64,25 @@ struct TableSetInternal <: MOI.AbstractVectorSet
62
64
dimension :: Int
63
65
table :: Array{Int, 2}
64
66
end
67
+ Base. copy (T:: TableSetInternal ) = TableSetInternal (T. dimension, T. table)
65
68
66
- struct TableSet <: JuMP.AbstractVectorSet
69
+ struct TableSet <: JuMP.AbstractVectorSet
67
70
table :: Array{Int, 2}
68
71
end
69
72
JuMP. moi_set (ts:: TableSet , dim) = TableSetInternal (dim, ts. table)
70
73
71
74
struct EqualSetInternal <: MOI.AbstractVectorSet
72
75
dimension:: Int
73
76
end
77
+ Base. copy (E:: EqualSetInternal ) = EqualSetInternal (E. dimension)
74
78
75
79
struct EqualSet <: JuMP.AbstractVectorSet end
76
80
JuMP. moi_set (:: EqualSet , dim) = EqualSetInternal (dim)
77
81
78
82
struct NotEqualTo{T} <: MOI.AbstractScalarSet
79
83
value:: T
80
84
end
85
+ Base. copy (N:: NotEqualTo ) = NotEqualTo (N. value)
81
86
82
87
#= ===================================================================================
83
88
====================== TYPES FOR CONSTRAINTS ========================================
86
91
abstract type Constraint end
87
92
88
93
"""
89
- BoundRhsVariable
94
+ BoundRhsVariable
90
95
idx - variable index in the lp Model
91
96
lb - lower bound of that variable
92
97
ub - upper bound of that variable
@@ -110,10 +115,10 @@ mutable struct MatchingInit
110
115
end
111
116
112
117
"""
113
- RSparseBitSet
118
+ RSparseBitSet
114
119
115
120
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
117
122
words in row (x-1)*64+y of the table are possible a 0 means that they aren't
118
123
Similar to `Variable` a whole block of 64 rows can be removed by changing the `indices` and `last_ptr`.
119
124
The `mask` saves the current mask to change words
@@ -123,21 +128,21 @@ mutable struct RSparseBitSet
123
128
indices :: Vector{Int}
124
129
last_ptr :: Int
125
130
mask :: Vector{UInt64}
126
- RSparseBitSet () = new ()
131
+ RSparseBitSet () = new ()
127
132
end
128
133
129
134
mutable struct TableSupport
130
- # defines the range for each variable
135
+ # defines the range for each variable
131
136
# 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}
133
138
values :: Array{UInt64, 2}
134
139
TableSupport () = new ()
135
140
end
136
141
137
142
mutable struct TableResidues
138
- # defines the range for each variable
143
+ # defines the range for each variable
139
144
# 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}
141
146
values :: Vector{Int}
142
147
TableResidues () = new ()
143
148
end
@@ -153,18 +158,20 @@ struct IndicatorSet{A} <: MOI.AbstractVectorSet
153
158
set :: MOI.AbstractVectorSet
154
159
dimension:: Int
155
160
end
161
+ Base. copy (I:: IndicatorSet{A} ) where A = IndicatorSet {A} (I. func, I. set, I. dimension)
156
162
157
163
struct ReifiedSet{A} <: MOI.AbstractVectorSet
158
164
func :: Union{JuMP.GenericAffExpr, MOI.VectorOfVariables}
159
165
set :: Union{MOI.AbstractScalarSet, MOI.AbstractVectorSet}
160
166
dimension:: Int
161
167
end
168
+ Base. copy (R:: ReifiedSet{A} ) where A = ReifiedSet {A} (R. func, R. set, R. dimension)
162
169
163
170
#= ===================================================================================
164
171
====================================================================================#
165
172
166
173
mutable struct ImplementedConstraintFunctions
167
- init :: Bool
174
+ init :: Bool
168
175
finished_pruning :: Bool
169
176
restore_pruning :: Bool
170
177
single_reverse_pruning :: Bool
@@ -233,7 +240,7 @@ mutable struct TableConstraint <: Constraint
233
240
supports:: TableSupport
234
241
last_sizes:: Vector{Int}
235
242
residues:: TableResidues
236
- # holds current, last_ptr and indices from each node
243
+ # holds current, last_ptr and indices from each node
237
244
# maybe it's better to compute some of them to save some space...
238
245
# This is the easy implementation first
239
246
backtrack:: Vector{TableBacktrackInfo}
0 commit comments