minimize.c
8.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
* minimize.c
*
* Created on: 30/01/2017
* Author: pedro
*/
#ifndef __OPENCL_VERSION__
#include <stddef.h>
#include <stdio.h>
#include <limits.h>
#include "minimize.h"
#include "../bitmaps.h"
#include "../config.h"
#include "../variables.h"
#endif
#include "../kernels/cl_aux_functions.h"
#if CL_D_TYPE == CL_BITMAP
#include "../kernels/cl_bitmaps.h"
#elif CL_D_TYPE == CL_INTERVAL
#include "../kernels/cl_intervals.h"
#endif
#include "../kernels/cl_constraints.h"
#include "../kernels/cl_variables.h"
#include "../kernels/cl_ttl.h"
#ifndef __OPENCL_VERSION__
/*
* Creates a new constraint of the min type and return the constraint ID. For optimization
* Minimize the value of x variable
* var_to_opt_id - ID of variable to optimize
*/
unsigned int c_minimize(unsigned int var_to_opt_id) {
if (WORK != OPT) {
return 0;
}
if (USE_CS[MINIMIZE] == 1 || USE_CS[MAXIMIZE] == 1) {
fprintf(stderr, "\nYou are trying to set more that one optimization constraint. Please use only one MINIMIZE or MAXIMIZE constraint.\n");
exit(-1);
}
// set to include in kernel compilation
USE_CS[MINIMIZE] = 1;
USE_NON_CS_REIFI[MINIMIZE] = 1;
OPT_MODE = DECREASE;
REV = 1;
// current value to minimize
VAL_TO_OPT = VS[var_to_opt_id].max;
VAR_ID_TO_OPT = var_to_opt_id;
// creates a new generic constraint
unsigned int c_id = c_new(&var_to_opt_id, 1, NULL, 0, -1);
// pointers to this type of constraint functions
CS[c_id].kind = MINIMIZE;
CS[c_id].check_sol_f = &minimize_check;
CS[c_id].constant_val = 0;
return c_id;
}
/*
* Creates a new reified constraint of the min type and return the constraint ID. For optimization
* Minimize the value of x variable
* var_to_opt_id - ID of variable to optimize
* reif_v_id - ID of the reification variable
*/
unsigned int c_minimize_reif(unsigned int var_to_opt_id, int reif_v_id) {
if (VS[reif_v_id].max > 1) {
v_del_gt(&VS[reif_v_id], 1);
if (VS[reif_v_id].n_vals == 0) {
fprintf(stderr, "\nError: Constraint MINIMIZE_REIF makes model inconsistent at creation:\n");
exit(-1);
}
}
if (WORK != OPT) {
return 0;
}
if (USE_CS[MINIMIZE] == 1 || USE_CS[MAXIMIZE] == 1) {
fprintf(stderr, "\nYou are trying to set more that one optimization constraint. Please use only one MINIMIZE or MAXIMIZE constraint.\n");
exit(-1);
}
// set to include in kernel compilation
USE_CS[MINIMIZE] = 1;
USE_CS_REIFI[MINIMIZE] = 1;
OPT_MODE = DECREASE;
REV = 1;
// current value to minimize
VAL_TO_OPT = VS[var_to_opt_id].max;
VAR_ID_TO_OPT = var_to_opt_id;
// creates a new generic constraint
unsigned int c_id = c_new(&var_to_opt_id, 1, NULL, 0, reif_v_id);
// pointers to this type of constraint functions
CS[c_id].kind = MINIMIZE;
CS[c_id].check_sol_f = &minimize_check;
CS[c_id].constant_val = 0;
return c_id;
}
/*
* Return true if the min constraint is respected or false if not
* c - constraint to check if is respected
* explored - if the CSP was already explored, which mean that all the variables must already be singletons
* */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
bool minimize_check(constr* c, bool explored) {
// check if the variable to optimize has domain 0, more than one value or if a is not lower than VAL_TO_OPT. If so, return false. Else return true.
if (
#if CHECK_SOL_N_VALS
(VS[VAR_ID_TO_OPT].to_label && VS[VAR_ID_TO_OPT].n_vals != 1) ||
#endif
VS[VAR_ID_TO_OPT].min > VAL_TO_OPT + 1) {
if (explored) {
fprintf(stderr, "\nError: Constraint MINIMIZE (%d) not respected:\n", c->c_id);
fprintf(stderr, "Variable ID=%u -> minimum=%u, maximum=%u, number of values=%u, cost=%u\n\n", VS[VAR_ID_TO_OPT].v_id, b_get_min_val(&VS[VAR_ID_TO_OPT].domain_b),
b_get_max_val(&VS[VAR_ID_TO_OPT].domain_b), b_cnt_vals(&VS[VAR_ID_TO_OPT].domain_b), VAL_TO_OPT + 1);
}
return false;
}
return true;
}
#pragma GCC diagnostic pop
#endif
#if CS_MINIMIZE == 1
/*
* Update the values of the variable to minimize
* prop_ok will be set to 1 if success or to 0 if any domain became empty
* vs_per_c_idx - vector with all constrained variables ID per constraint, per constraint ID order
* vs_prop_ - all CSP variables with current step values
* prop_v_id - variable ID to propagate
* current_cs - constraint that should be propagated for the variable with prop_v_id ID
* vs_id_to_prop_ - circular vector with the ids of the variables to propagate
* global value to optimize
*/
CUDA_FUNC void minimize_prop(CL_MEMORY VARS_PROP* vs_prop_, CL_MEMORY unsigned short* vs_id_to_prop_, __global unsigned int* val_to_opt, bool* prop_ok TTL_CTR) {
unsigned int val_to_opt_aux = atomic_and(val_to_opt, UINT_MAX);
bool changed = 0;
cl_v_del_gt_m(&changed, &vs_prop_[CL_VAR_ID_TO_OPT], convert_int(val_to_opt_aux) TTL_CTR_V);
if (changed) {
// if the removal of the value resulted in an empty domain return 0
if (V_IS_EMPTY(vs_prop_[CL_VAR_ID_TO_OPT])) {
*prop_ok = 0;
return;
}
// Add variable to the vector that contains the variables that must be propagated
v_add_to_prop(vs_id_to_prop_, vs_prop_, CL_VAR_ID_TO_OPT);
}
#if CL_FILTERING
else {
*val_to_opt = V_MAX(vs_prop_[CL_VAR_ID_TO_OPT]);
}
#endif
}
#if CS_R_MINIMIZE == 1
/*
* Validate min constraint to be normally propagated, when reified
* vs_per_c_idx - vector with all constrained variables ID per constraint, per constraint ID order
* vs_prop_ - all CSP variables with current step values
* current_cs - constraint that should be propagated for the variable with prop_v_id ID
* vs_id_to_prop_ - circular vector with the ids of the variables to propagate
*/
CUDA_FUNC void minimize_reif(CL_MEMORY VARS_PROP* vs_prop_, CL_CS_MEM cl_constr* current_cs, CL_MEMORY unsigned short* vs_id_to_prop_, __global unsigned int* val_to_opt TTL_CTR) {
VARS_PROP v_to_opt;
bool changed = 0;
// constraint already fixed
if (V_N_VALS(vs_prop_[CL_VAR_ID_TO_OPT]) == 1 && V_MIN(vs_prop_[CL_VAR_ID_TO_OPT]) < *val_to_opt) {
cl_v_bool_del_val_m(&vs_prop_[current_cs->reif_var_id], 0 TTL_CTR_V);
v_add_to_prop(vs_id_to_prop_, vs_prop_, convert_int(current_cs->reif_var_id));
v_add_to_prop(vs_id_to_prop_, vs_prop_, CL_VAR_ID_TO_OPT);
return;
}
cl_v_copy_pm(&v_to_opt, &vs_prop_[CL_VAR_ID_TO_OPT] TTL_CTR_V);
cl_v_del_gt_n(&changed, &v_to_opt, convert_int(*val_to_opt) TTL_CTR_V);
// if the removal of the value resulted in an empty domain return 0
if (V_IS_EMPTY(v_to_opt)) {
cl_v_bool_del_val_m(&vs_prop_[current_cs->reif_var_id], 1 TTL_CTR_V);
v_add_to_prop(vs_id_to_prop_, vs_prop_, convert_int(current_cs->reif_var_id));
v_add_to_prop(vs_id_to_prop_, vs_prop_, CL_VAR_ID_TO_OPT);
}
}
/*
* Update the values of the variable to maximize
* vs_per_c_idx - vector with all constrained variables ID per constraint, per constraint ID order
* vs_prop_ - all CSP variables with current step values
* prop_v_id - variable ID to propagate
* current_cs - constraint that should be propagated for the variable with prop_v_id ID
* vs_id_to_prop_ - circular vector with the ids of the variables to propagate
* global value to optimize
*/
CUDA_FUNC void minimize_prop_opposite(CL_MEMORY VARS_PROP* vs_prop_, CL_MEMORY unsigned short* vs_id_to_prop_, __global unsigned int* val_to_opt, bool* prop_ok TTL_CTR) {
unsigned int val_to_opt_aux = atomic_and(val_to_opt, UINT_MAX);
bool changed = 0;
cl_v_del_lt_m(&changed, &vs_prop_[CL_VAR_ID_TO_OPT], convert_int(val_to_opt_aux) TTL_CTR_V);
if (changed) {
// if the removal of the value resulted in an empty domain return 0
if (V_IS_EMPTY(vs_prop_[CL_VAR_ID_TO_OPT])) {
*prop_ok = 0;
return;
}
// Add variable to the vector that contains the variables that must be propagated
v_add_to_prop(vs_id_to_prop_, vs_prop_, CL_VAR_ID_TO_OPT);
}
}
#endif
CUDA_FUNC void minimize_propagate(CL_MEMORY VARS_PROP* vs_prop_, CL_CS_MEM cl_constr* current_cs, CL_MEMORY unsigned short* vs_id_to_prop_, __global unsigned int* val_to_opt_g,
bool* prop_ok PROPAGATED_FUNC TTL_CTR) {
#if CS_R_MINIMIZE == 0
minimize_prop(vs_prop_, vs_id_to_prop_, val_to_opt_g, prop_ok TTL_CTR_V);
#if CL_STATS == 1
*propagated = true;
#endif
#elif CS_R_MINIMIZE == 1
if (current_cs->reified == 1) {
if (V_N_VALS(vs_prop_[current_cs->reif_var_id]) > 1) {
minimize_reif(vs_prop_, current_cs, vs_id_to_prop_, val_to_opt_g TTL_CTR_V);
}
if (V_N_VALS(vs_prop_[current_cs->reif_var_id]) == 1) {
if (V_MIN(vs_prop_[current_cs->reif_var_id]) == 1) {
minimize_prop(vs_prop_, vs_id_to_prop_, val_to_opt_g, prop_ok TTL_CTR_V);
} else {
minimize_prop_opposite(vs_prop_, vs_id_to_prop_, val_to_opt_g, prop_ok TTL_CTR_V);
}
#if CL_STATS == 1
*propagated = true;
#endif
}
} else {
minimize_prop(vs_prop_, vs_id_to_prop_, val_to_opt_g, prop_ok TTL_CTR_V);
#if CL_STATS == 1
*propagated = true;
#endif
}
#endif
}
#endif