0c8ce2b0
Pedro Roque
missing files
|
1
2
3
4
|
/*
* cl_aux_functions.c
*
* Created on: 09/09/2019
|
4d26a735
Pedro Roque
Increased recogni...
|
5
|
* Author: Pedro
|
0c8ce2b0
Pedro Roque
missing files
|
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
|
*/
#ifndef __OPENCL_VERSION__
#include <stdbool.h>
#include <limits.h>
#include <sys/types.h>
#include "cl_aux_functions.h"
#include "../utils/cl_syntax.h"
#endif
#if CUDA_VERSION
#include "../utils/cu_syntax.h"
#endif
#include "../config.h"
#include "../domains.h"
#include "cl_constraints.h"
#include "cl_variables.h"
#include "cl_ttl.h"
#if CL_D_TYPE == CL_BITMAP
#include "cl_bitmaps.h"
#elif CL_D_TYPE == CL_INTERVAL
#include "cl_intervals.h"
#endif
/*
* Adds a variable to the vector of variables to propagate
* vs_id_to_prop_ - circular vector with the ids of the variables to propagate
* vs_prop_ - vector with all CSP variables
* v_id_to_prop - id of the variable to propagate
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
38
|
CUDA_FUNC void v_add_to_prop(CL_MEMORY unsigned short *vs_id_to_prop_, CL_MEMORY VARS_PROP *vs_prop_, int v_id_to_prop) {
|
0c8ce2b0
Pedro Roque
missing files
|
39
40
41
42
43
|
// if that variable is not already set for propagation
if (vs_prop_[v_id_to_prop].to_prop == 0) {
// add that variable id to the vector of variables to propagate
|
4d26a735
Pedro Roque
Increased recogni...
|
44
|
vs_id_to_prop_[vs_id_to_prop_[1]] = convert_ushort (v_id_to_prop);
|
0c8ce2b0
Pedro Roque
missing files
|
45
46
|
if (vs_id_to_prop_[1] < CL_N_VS + 2) {
|
4d26a735
Pedro Roque
Increased recogni...
|
47
|
vs_id_to_prop_[1] = convert_ushort (vs_id_to_prop_[1] + 1);
|
0c8ce2b0
Pedro Roque
missing files
|
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
|
} else {
vs_id_to_prop_[1] = 2;
}
// mark that variable as added to vs_id_to_prop_ vector
vs_prop_[v_id_to_prop].to_prop = 1;
}
#if CL_CHECK_ERRORS
int i;
if (vs_id_to_prop_[0] <= vs_id_to_prop_[1]) {
for (i = vs_id_to_prop_[0]; i < vs_id_to_prop_[1]; i++) {
if (vs_id_to_prop_[i] == v_id_to_prop) {
break;
}
}
if (vs_id_to_prop_[i] != v_id_to_prop) {
printf((__constant char *)"\n###error 31\n");
}
} else {
for (i = vs_id_to_prop_[0]; i < CL_N_VS + 2; i++) {
if (vs_id_to_prop_[i] == v_id_to_prop) {
break;
}
}
if (vs_id_to_prop_[i] != v_id_to_prop) {
for (i = 2; i < vs_id_to_prop_[1]; i++) {
if (vs_id_to_prop_[i] == v_id_to_prop) {
break;
}
}
}
if (vs_id_to_prop_[i] != v_id_to_prop) {
printf((__constant char *)"\n###error 32\n");
}
}
#endif
}
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
90
|
* Place the ID of the next variable to propagate in prop_v_id
|
0c8ce2b0
Pedro Roque
missing files
|
91
92
|
* vs_id_to_prop_ - circular vector with the ids of the variables to propagate
* vs_prop_ - vector with all CSP variables
|
4d26a735
Pedro Roque
Increased recogni...
|
93
|
* prop_v_id - ID of the next variable to propagate
|
0c8ce2b0
Pedro Roque
missing files
|
94
|
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
95
|
CUDA_FUNC void v_get_id_to_prop(CL_MEMORY unsigned short *vs_id_to_prop_, CL_MEMORY VARS_PROP *vs_prop_, unsigned int *prop_v_id TTL_CTR) {
|
0c8ce2b0
Pedro Roque
missing files
|
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
int v_idx;
// If variables to propagate vector is empty
if (vs_id_to_prop_[0] == vs_id_to_prop_[1]) {
// Restart the first and next index on variables to propagate vector
vs_id_to_prop_[0] = 2;
vs_id_to_prop_[1] = 2;
*prop_v_id = CL_N_VS;
#if CL_CHECK_ERRORS
int i;
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 153)
|
4d26a735
Pedro Roque
Increased recogni...
|
111
112
113
|
if (vs_prop_[i].to_prop == 1) {
printf((__constant char *)"\n###error 33\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
114
115
116
117
|
}
#endif
} else {
|
4d26a735
Pedro Roque
Increased recogni...
|
118
|
v_idx = convert_int (vs_id_to_prop_[vs_id_to_prop_[0]]);
|
0c8ce2b0
Pedro Roque
missing files
|
119
120
121
122
123
|
// mark that variable as not added to vs_id_to_prop_ vector
vs_prop_[vs_id_to_prop_[vs_id_to_prop_[0]]].to_prop = 0;
if (vs_id_to_prop_[0] < CL_N_VS + 2) {
|
4d26a735
Pedro Roque
Increased recogni...
|
124
|
vs_id_to_prop_[0] = convert_ushort (vs_id_to_prop_[0] + 1);
|
0c8ce2b0
Pedro Roque
missing files
|
125
126
127
128
|
} else {
vs_id_to_prop_[0] = 2;
}
|
4d26a735
Pedro Roque
Increased recogni...
|
129
|
*prop_v_id = convert_ushort (v_idx);
|
0c8ce2b0
Pedro Roque
missing files
|
130
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
131
|
CHECK_TTL(ttl_ctr, 232)
|
0c8ce2b0
Pedro Roque
missing files
|
132
133
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
134
|
#if CL_LABEL_M == CL_ANTI_FIRST_FAIL || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
|
0c8ce2b0
Pedro Roque
missing files
|
135
|
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
136
|
* Place the ID of the next variable to label in prop_v_id. Selecting it by the one not labeled yet and with more values on its domain, or CL_N_VS if none
|
0c8ce2b0
Pedro Roque
missing files
|
137
138
|
* vs_prop_ - vector with all CSP variables
* vs - vector with all CSP variables common to all work-items
|
4d26a735
Pedro Roque
Increased recogni...
|
139
|
* prop_v_id - ID of the next variable to label
|
0c8ce2b0
Pedro Roque
missing files
|
140
|
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
141
142
143
144
145
146
147
148
149
150
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_get_id_to_label_anti_first_fail(CL_MEMORY VARS_PROP *vs_prop_, CL_VS_MEM VARS *vs, unsigned int *prop_v_id TTL_CTR)
#else
CUDA_FUNC void v_get_id_to_label(CL_MEMORY VARS_PROP* vs_prop_, CL_VS_MEM VARS* vs, unsigned int* prop_v_id TTL_CTR)
#endif
{
int vals_cnt = 0;
int n_vals;
int v_idx = CL_N_VS;
int i;
|
0c8ce2b0
Pedro Roque
missing files
|
151
|
|
4d26a735
Pedro Roque
Increased recogni...
|
152
153
|
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 3)
|
0c8ce2b0
Pedro Roque
missing files
|
154
155
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
156
157
158
159
160
|
bool empty;
cl_d_is_empty_m(&empty, &vs_prop_->prop_d TTL_CTR_V);
if (empty || vs_prop_[i].n_vals == 0 || vs_prop_[i].n_vals > vs_prop_[i].max + 1 || vs_prop_[i].min > vs_prop_[i].max || vs_prop_[i].max > CL_D_MAX) {
printf((__constant char *)"\n###error 77\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
161
162
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
163
|
n_vals = V_N_VALS(vs_prop_[i]);
|
0c8ce2b0
Pedro Roque
missing files
|
164
|
|
4d26a735
Pedro Roque
Increased recogni...
|
165
166
167
168
169
170
171
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
if (vs[i].to_label && vs[i].label_h == CL_ANTI_FIRST_FAIL && n_vals > 1 && n_vals > vals_cnt)
#else
if (vs[i].to_label && n_vals > 1 && n_vals > vals_cnt)
#endif
{
vals_cnt = n_vals;
|
0c8ce2b0
Pedro Roque
missing files
|
172
|
|
4d26a735
Pedro Roque
Increased recogni...
|
173
174
175
176
177
|
v_idx = i;
// The minimum values of a variable to label will be two, so stop searching
if (n_vals == CL_D_MAX + 1) {
i = CL_N_VS;
|
0c8ce2b0
Pedro Roque
missing files
|
178
179
|
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
180
|
}
|
0c8ce2b0
Pedro Roque
missing files
|
181
|
|
4d26a735
Pedro Roque
Increased recogni...
|
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
|
*prop_v_id = convert_ushort (v_idx);
}
#endif
#if CL_LABEL_M == CL_FIRST_FAIL || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
/*
* Place the ID of the next variable to label in prop_v_id. Selecting it by selecting the one not labeled yet and with less values on its domain,
* or CL_N_VS if none
* vs_prop_ - vector with all CSP variables
* vs - vector with all CSP variables common to all work-items
* prop_v_id - ID of the next variable to label
*/
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_get_id_to_label_first_fail(CL_MEMORY VARS_PROP *vs_prop_, CL_VS_MEM VARS *vs, unsigned int *prop_v_id TTL_CTR)
#else
CUDA_FUNC void v_get_id_to_label(CL_MEMORY VARS_PROP* vs_prop_, CL_VS_MEM VARS* vs, unsigned int* prop_v_id TTL_CTR)
#endif
{
int vals_cnt = 0xFFFF;
int n_vals;
int v_idx = CL_N_VS;
int i;
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 3)
|
0c8ce2b0
Pedro Roque
missing files
|
207
208
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
209
210
211
212
213
|
bool empty;
cl_d_is_empty_m(&empty, &vs_prop_->prop_d TTL_CTR_V);
if (empty || vs_prop_[i].n_vals == 0 || vs_prop_[i].n_vals > vs_prop_[i].max + 1 || vs_prop_[i].min > vs_prop_[i].max || vs_prop_[i].max > CL_D_MAX) {
printf((__constant char *)"\n###error 34\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
214
215
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
216
217
218
219
220
221
222
223
|
n_vals = V_N_VALS(vs_prop_[i]);
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
if (vs[i].to_label && vs[i].label_h == CL_FIRST_FAIL && n_vals > 1 && n_vals < vals_cnt)
#else
if (vs[i].to_label && n_vals > 1 && n_vals < vals_cnt)
#endif
{
vals_cnt = n_vals;
|
0c8ce2b0
Pedro Roque
missing files
|
224
|
|
4d26a735
Pedro Roque
Increased recogni...
|
225
|
v_idx = i;
|
0c8ce2b0
Pedro Roque
missing files
|
226
|
|
4d26a735
Pedro Roque
Increased recogni...
|
227
228
229
|
// The minimum values of a variable to label will be two, so stop searching
if (n_vals == 2) {
i = CL_N_VS;
|
0c8ce2b0
Pedro Roque
missing files
|
230
231
|
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
232
233
234
235
|
}
*prop_v_id = convert_ushort (v_idx);
}
|
0c8ce2b0
Pedro Roque
missing files
|
236
237
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
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
|
#if CL_LABEL_M == CL_INPUT_ORDER || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
/*
* Place the ID of the next variable to label in prop_v_id. Selecting it by selecting the first one not labeled yet, or CL_N_VS if none
* vs_prop_ - vector with all CSP variables
* vs - vector with all CSP variables common to all work-+items
* prop_v_id - ID of the next variable to label
*/
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_get_id_to_label_input_order(CL_MEMORY VARS_PROP *vs_prop_, CL_VS_MEM VARS *vs, unsigned int *prop_v_id TTL_CTR)
#else
CUDA_FUNC void v_get_id_to_label(CL_MEMORY VARS_PROP* vs_prop_, CL_VS_MEM VARS* vs, unsigned int* prop_v_id TTL_CTR)
#endif
{
int v_idx = CL_N_VS;
int i;
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 29)
#if CL_CHECK_ERRORS
bool empty;
cl_d_is_empty_m(&empty, &vs_prop_->prop_d TTL_CTR_V);
if (empty || vs_prop_[i].n_vals == 0 || vs_prop_[i].n_vals > vs_prop_[i].max + 1 || vs_prop_[i].min > vs_prop_[i].max || vs_prop_[i].max > CL_D_MAX) {
printf((__constant char *)"\n###error 36\n");
}
#endif
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
if (vs[i].to_label && vs[i].label_h == CL_INPUT_ORDER && V_N_VALS(vs_prop_[i]) > 1)
#else
if (vs[i].to_label && V_N_VALS(vs_prop_[i]) > 1)
#endif
{
v_idx = i;
i = CL_N_VS;
}
|
0c8ce2b0
Pedro Roque
missing files
|
274
275
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
276
277
278
279
280
|
*prop_v_id = convert_ushort (v_idx);
}
#endif
#if CL_LABEL_M == CL_LARGEST || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
|
0c8ce2b0
Pedro Roque
missing files
|
281
|
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
282
283
|
* Place the ID of the next variable to label in prop_v_id. Selecting it by selecting the one not labeled yet and with the biggest value on its domain,
* or CL_N_VS if none
|
0c8ce2b0
Pedro Roque
missing files
|
284
285
|
* vs_prop_ - vector with all CSP variables
* vs - vector with all CSP variables common to all work-items
|
4d26a735
Pedro Roque
Increased recogni...
|
286
|
* prop_v_id - ID of the next variable to label
|
0c8ce2b0
Pedro Roque
missing files
|
287
|
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
288
289
290
291
292
293
294
295
296
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_get_id_to_label_largest(CL_MEMORY VARS_PROP *vs_prop_, CL_VS_MEM VARS *vs, unsigned int *prop_v_id TTL_CTR)
#else
CUDA_FUNC void v_get_id_to_label(CL_MEMORY VARS_PROP* vs_prop_, CL_VS_MEM VARS* vs, unsigned int* prop_v_id TTL_CTR)
#endif
{
int v_idx = CL_N_VS;
int max = 0;
int i;
|
0c8ce2b0
Pedro Roque
missing files
|
297
|
|
4d26a735
Pedro Roque
Increased recogni...
|
298
299
|
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 3)
|
0c8ce2b0
Pedro Roque
missing files
|
300
301
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
302
303
304
305
306
|
bool empty;
cl_d_is_empty_m(&empty, &vs_prop_->prop_d TTL_CTR_V);
if (empty || vs_prop_[i].n_vals == 0 || vs_prop_[i].n_vals > vs_prop_[i].max + 1 || vs_prop_[i].min > vs_prop_[i].max || vs_prop_[i].max > CL_D_MAX) {
printf((__constant char *)"\n###error 77\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
307
308
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
309
310
311
312
313
314
315
316
317
318
319
320
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
if (vs[i].to_label && vs[i].label_h == CL_LARGEST && V_N_VALS(vs_prop_[i]) > 1 && V_MAX(vs_prop_[i]) > max)
#else
if (vs[i].to_label && V_N_VALS(vs_prop_[i]) > 1 && V_MAX(vs_prop_[i]) > max)
#endif
{
v_idx = i;
max = V_MAX(vs_prop_[i]);
// If the minimum value is CL_D_MAX + 1, stop searching
if (max == CL_D_MAX) {
|
0c8ce2b0
Pedro Roque
missing files
|
321
322
323
|
i = CL_N_VS;
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
324
|
}
|
0c8ce2b0
Pedro Roque
missing files
|
325
|
|
4d26a735
Pedro Roque
Increased recogni...
|
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
|
*prop_v_id = convert_ushort (v_idx);
}
#endif
#if CL_LABEL_M == CL_MAX_REGRET || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
/*
* Place the ID of the next variable to label in prop_v_id. Selecting it by selecting the one on vs_id_to_prop_ vector that has the largest
* difference between the two smallest values, or CL_N_VS if none
* vs_prop_ - vector with all CSP variables
* vs - vector with all CSP variables common to all work-items
* prop_v_id - ID of the next variable to label
*/
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_get_id_to_label_max_regret(CL_MEMORY VARS_PROP *vs_prop_, CL_VS_MEM VARS *vs, unsigned int *prop_v_id TTL_CTR)
#else
CUDA_FUNC void v_get_id_to_label(CL_MEMORY VARS_PROP* vs_prop_, CL_VS_MEM VARS* vs, unsigned int* prop_v_id TTL_CTR)
#endif
{
int diff_aux;
int diff = 0;
int v_idx = CL_N_VS;
int values[2];
int i;
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 31)
|
0c8ce2b0
Pedro Roque
missing files
|
352
353
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
354
355
356
357
358
|
bool empty;
cl_d_is_empty_m(&empty, &vs_prop_->prop_d TTL_CTR_V);
if (empty || vs_prop_[i].n_vals == 0 || vs_prop_[i].n_vals > vs_prop_[i].max + 1 || vs_prop_[i].min > vs_prop_[i].max || vs_prop_[i].max > CL_D_MAX) {
printf((__constant char *)"\n###error 40\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
359
360
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
361
362
363
364
365
366
367
368
369
370
371
372
373
374
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
if (vs[i].to_label && vs[i].label_h == CL_MAX_REGRET && V_N_VALS(vs_prop_[i]) > 1)
#else
if (vs[i].to_label && V_N_VALS(vs_prop_[i]) > 1)
#endif
{
cl_d_get_nth_vals_m5(&vs_prop_[i].prop_d, 1, 2, values TTL_CTR_V);
diff_aux = values[1] - values[0];
if (diff_aux > diff) {
diff = diff_aux;
v_idx = i;
|
0c8ce2b0
Pedro Roque
missing files
|
375
376
|
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
377
|
}
|
0c8ce2b0
Pedro Roque
missing files
|
378
|
|
4d26a735
Pedro Roque
Increased recogni...
|
379
|
*prop_v_id = convert_ushort (v_idx);
|
0c8ce2b0
Pedro Roque
missing files
|
380
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
381
|
#endif
|
0c8ce2b0
Pedro Roque
missing files
|
382
|
|
4d26a735
Pedro Roque
Increased recogni...
|
383
|
#if CL_LABEL_M == CL_MOST_CONSTRAINED || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
|
0c8ce2b0
Pedro Roque
missing files
|
384
|
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
385
386
387
388
|
* Place the ID of the next variable to label in prop_v_id. Selecting it by selecting the one not labeled yet and with less values on its domain,
* breaking ties by the higher number of constraints,
* or CL_N_VS if none
* vs_prop_ - vector with all CSP variables
|
0c8ce2b0
Pedro Roque
missing files
|
389
|
* vs - vector with all CSP variables common to all work-items
|
4d26a735
Pedro Roque
Increased recogni...
|
390
|
* prop_v_id - ID of the next variable to label
|
0c8ce2b0
Pedro Roque
missing files
|
391
|
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
392
393
394
395
396
397
398
399
400
401
402
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_get_id_to_label_most_constrained(CL_MEMORY VARS_PROP *vs_prop_, CL_VS_MEM VARS *vs, unsigned int *prop_v_id TTL_CTR)
#else
CUDA_FUNC void v_get_id_to_label(CL_MEMORY VARS_PROP* vs_prop_, CL_VS_MEM VARS* vs, unsigned int* prop_v_id TTL_CTR)
#endif
{
int vals_cnt = 0xFFFF;
int n_vals;
int n_cs = 0;
int v_idx = CL_N_VS;
int i;
|
0c8ce2b0
Pedro Roque
missing files
|
403
|
|
4d26a735
Pedro Roque
Increased recogni...
|
404
405
|
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 3)
|
0c8ce2b0
Pedro Roque
missing files
|
406
407
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
408
409
410
411
412
|
bool empty;
cl_d_is_empty_m(&empty, &vs_prop_->prop_d TTL_CTR_V);
if (empty || vs_prop_[i].n_vals == 0 || vs_prop_[i].n_vals > vs_prop_[i].max + 1 || vs_prop_[i].min > vs_prop_[i].max || vs_prop_[i].max > CL_D_MAX) {
printf((__constant char *)"\n###error 80\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
413
414
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
415
|
n_vals = V_N_VALS(vs_prop_[i]);
|
0c8ce2b0
Pedro Roque
missing files
|
416
|
|
4d26a735
Pedro Roque
Increased recogni...
|
417
418
419
420
421
422
423
424
425
426
427
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
if (vs[i].to_label && vs[i].label_h == CL_MOST_CONSTRAINED && n_vals > 1 && ((n_vals < vals_cnt) || (n_vals == vals_cnt && n_cs < vs[i].n_cs)))
#else
if (vs[i].to_label && n_vals > 1 && ((n_vals < vals_cnt) || (n_vals == vals_cnt && n_cs < vs[i].n_cs)))
#endif
{
vals_cnt = n_vals;
n_cs = vs[i].n_cs;
v_idx = i;
|
0c8ce2b0
Pedro Roque
missing files
|
428
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
429
|
}
|
0c8ce2b0
Pedro Roque
missing files
|
430
|
|
4d26a735
Pedro Roque
Increased recogni...
|
431
432
433
|
*prop_v_id = convert_ushort (v_idx);
}
#endif
|
0c8ce2b0
Pedro Roque
missing files
|
434
|
|
4d26a735
Pedro Roque
Increased recogni...
|
435
436
437
438
439
440
441
442
443
444
445
|
#if CL_LABEL_M == CL_OCCURRENCE || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
/*
* Place the ID of the next variable to label in prop_v_id. Selecting it by selecting the one not labeled yet that is more constrained, or CL_N_VS if none
* vs_prop_ - vector with all CSP variables local to this work-item
* vs - vector with all CSP variables common to all work-items
* prop_v_id - ID of the next variable to label
*/
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_get_id_to_label_occurrence(CL_MEMORY VARS_PROP *vs_prop_, CL_VS_MEM VARS *vs, unsigned int *prop_v_id TTL_CTR)
#else
CUDA_FUNC void v_get_id_to_label(CL_MEMORY VARS_PROP* vs_prop_, CL_VS_MEM VARS* vs, unsigned int* prop_v_id TTL_CTR)
|
0c8ce2b0
Pedro Roque
missing files
|
446
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
447
448
449
450
|
{
int max_cs_cnt = 0;
int v_idx = CL_N_VS;
int i;
|
0c8ce2b0
Pedro Roque
missing files
|
451
|
|
4d26a735
Pedro Roque
Increased recogni...
|
452
453
|
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 30)
|
0c8ce2b0
Pedro Roque
missing files
|
454
|
|
4d26a735
Pedro Roque
Increased recogni...
|
455
456
457
458
459
|
#if CL_CHECK_ERRORS
bool empty;
cl_d_is_empty_m(&empty, &vs_prop_->prop_d TTL_CTR_V);
if (empty || vs_prop_[i].n_vals == 0 || vs_prop_[i].n_vals > vs_prop_[i].max + 1 || vs_prop_[i].min > vs_prop_[i].max || vs_prop_[i].max > CL_D_MAX) {
printf((__constant char *)"\n###error 38\n");
|
0c8ce2b0
Pedro Roque
missing files
|
460
461
462
|
}
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
463
464
465
466
467
468
469
470
471
472
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
if (vs[i].to_label && vs[i].label_h == CL_OCCURRENCE && vs[i].n_cs > max_cs_cnt && V_N_VALS(vs_prop_[i]) > 1)
#else
if (vs[i].to_label && vs[i].n_cs > max_cs_cnt && V_N_VALS(vs_prop_[i]) > 1)
#endif
{
max_cs_cnt = vs[i].n_cs;
v_idx = i;
}
|
0c8ce2b0
Pedro Roque
missing files
|
473
474
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
475
476
477
478
479
|
*prop_v_id = convert_ushort (v_idx);
}
#endif
#if CL_LABEL_M == CL_SMALLEST || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
|
0c8ce2b0
Pedro Roque
missing files
|
480
|
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
481
482
|
* Place the ID of the next variable to label in prop_v_id. Selecting it by selecting the one not labeled yet and with the smallest value on its domain,
* or CL_N_VS if none
|
0c8ce2b0
Pedro Roque
missing files
|
483
484
|
* vs_prop_ - vector with all CSP variables
* vs - vector with all CSP variables common to all work-items
|
4d26a735
Pedro Roque
Increased recogni...
|
485
|
* prop_v_id - ID of the next variable to label
|
0c8ce2b0
Pedro Roque
missing files
|
486
|
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
487
488
489
490
491
492
493
494
495
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_get_id_to_label_smallest(CL_MEMORY VARS_PROP *vs_prop_, CL_VS_MEM VARS *vs, unsigned int *prop_v_id TTL_CTR)
#else
CUDA_FUNC void v_get_id_to_label(CL_MEMORY VARS_PROP* vs_prop_, CL_VS_MEM VARS* vs, unsigned int* prop_v_id TTL_CTR)
#endif
{
int v_idx = CL_N_VS;
int min = CL_D_MAX;
int i;
|
0c8ce2b0
Pedro Roque
missing files
|
496
|
|
4d26a735
Pedro Roque
Increased recogni...
|
497
498
|
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 3)
|
0c8ce2b0
Pedro Roque
missing files
|
499
500
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
bool empty;
cl_d_is_empty_m(&empty, &vs_prop_->prop_d TTL_CTR_V);
if (empty || vs_prop_[i].n_vals == 0 || vs_prop_[i].n_vals > vs_prop_[i].max + 1 || vs_prop_[i].min > vs_prop_[i].max || vs_prop_[i].max > CL_D_MAX) {
printf((__constant char *)"\n###error 42\n");
}
#endif
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
if (vs[i].to_label && vs[i].label_h == CL_SMALLEST && V_N_VALS(vs_prop_[i]) > 1 && V_MIN(vs_prop_[i]) < min)
#else
if (vs[i].to_label && V_N_VALS(vs_prop_[i]) > 1 && V_MIN(vs_prop_[i]) < min)
#endif
{
v_idx = i;
min = V_MIN(vs_prop_[i]);
// If the minimum value is CL_D_MIN, stop searching
if (min == CL_D_MIN) {
i = CL_N_VS;
|
0c8ce2b0
Pedro Roque
missing files
|
521
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
522
523
524
525
526
|
}
}
*prop_v_id = convert_ushort (v_idx);
}
|
0c8ce2b0
Pedro Roque
missing files
|
527
528
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
529
530
531
532
533
534
535
536
537
538
539
540
541
542
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
/*
* Use the defined heuristic to select the next variable to label when using FlatZinc seq_search
* vs_prop_ - vector with all CSP variables
* vs - vector with all CSP variables common to all work-items
* prop_v_id - ID of the next variable to label
* last_label_h_idx - index of label_hs where is the the ENUM of the heuristic for labeling that was used the last time
* label_hs - array with all the labeling heuristics that must be used by input order
*/
CUDA_FUNC void v_get_id_to_label(CL_MEMORY VARS_PROP *vs_prop_, CL_VS_MEM VARS *vs, unsigned int *prop_v_id TTL_CTR, int *last_label_h_idx,
__global int *label_hs TTL_CTR) {
*prop_v_id = CL_N_VS;
int i, j;
|
0c8ce2b0
Pedro Roque
missing files
|
543
|
|
4d26a735
Pedro Roque
Increased recogni...
|
544
545
|
for (i = (*last_label_h_idx); i < CL_FZN_SEQ_N_LABELS; i++) {
CHECK_TTL(ttl_ctr, 293)
|
0c8ce2b0
Pedro Roque
missing files
|
546
|
|
4d26a735
Pedro Roque
Increased recogni...
|
547
548
|
for (j = 0; j < CL_N_VS; j++) {
CHECK_TTL(ttl_ctr, 294)
|
0c8ce2b0
Pedro Roque
missing files
|
549
|
|
4d26a735
Pedro Roque
Increased recogni...
|
550
551
|
if (vs[j].to_label && V_N_VALS(vs_prop_[j]) > 1 && vs[j].label_h == label_hs[*last_label_h_idx]) {
break;
|
0c8ce2b0
Pedro Roque
missing files
|
552
553
554
|
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
|
if (j < CL_N_VS) {
switch (vs[j].label_h) {
case CL_ANTI_FIRST_FAIL:
v_get_id_to_label_anti_first_fail(vs_prop_, vs, prop_v_id TTL_CTR_E);
break;
case CL_FIRST_FAIL:
v_get_id_to_label_first_fail(vs_prop_, vs, prop_v_id TTL_CTR_E);
break;
case CL_INPUT_ORDER:
v_get_id_to_label_input_order(vs_prop_, vs, prop_v_id TTL_CTR_E);
break;
case CL_LARGEST:
v_get_id_to_label_largest(vs_prop_, vs, prop_v_id TTL_CTR_E);
break;
case CL_MAX_REGRET:
v_get_id_to_label_max_regret(vs_prop_, vs, prop_v_id TTL_CTR_E);
break;
case CL_MOST_CONSTRAINED:
v_get_id_to_label_most_constrained(vs_prop_, vs, prop_v_id TTL_CTR_E);
break;
case CL_OCCURRENCE:
v_get_id_to_label_occurrence(vs_prop_, vs, prop_v_id TTL_CTR_E);
break;
case CL_SMALLEST:
v_get_id_to_label_smallest(vs_prop_, vs, prop_v_id TTL_CTR_E);
break;
default:
#if CL_CHECK_ERRORS
printf((__constant char *)"\n###error 82\n");
#endif
break;
}
break;
} else {
(*last_label_h_idx)++;
}
}
}
#endif
#if CL_ASSIGN_M == CL_INDOMAIN_INTERVAL || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
/*
* Select the first contiguous interval or, if none, select half of the domain
* v - variable to be assigned
* hist - place on backtracking history where the remaining values of the variable should be stored
* hist_labeleds_n_vals - place where the number of values remaining on the assigned variable should be stored
*/
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_assign_interval(CL_MEMORY VARS_PROP *v, __global DOMAIN_ *hist, __global int *hist_labeleds_n_vals)
#else
CUDA_FUNC void v_assign(CL_MEMORY VARS_PROP* v, __global DOMAIN_* hist, __global int* hist_labeleds_n_vals)
#endif
{
|
0c8ce2b0
Pedro Roque
missing files
|
609
610
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
611
612
613
614
615
|
bool empty;
cl_d_is_empty_m(&empty, &v->prop_d TTL_CTR_V);
if (empty || v->n_vals == 0 || v->n_vals > v->max + 1 || v->min > v->max || v->max > CL_D_MAX) {
printf((__constant char *)"\n###error 74\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
616
617
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
|
int n_vals = V_N_VALS(*v);
// If the labeled variable had more than one value on its domain remove the labeled value from its backtracking domain
if (n_vals > 1) {
int max = V_MAX(*v);
int min = V_MIN(*v);
// one interval from min to max
if (n_vals == max - min + 1) {
int split_val = (V_MAX(*v) - min) / 2 + min;
cl_v_del_gt_no_tests_m(v, split_val);
cl_d_del_le_no_tests_g(hist, split_val);
*hist_labeleds_n_vals = n_vals - V_N_VALS(*v);
} else {
int i;
int contiguous = 0;
int values[CL_D_MAX + 1];
|
0c8ce2b0
Pedro Roque
missing files
|
638
|
|
4d26a735
Pedro Roque
Increased recogni...
|
639
|
cl_d_get_nth_vals_m4(hist, 1, n_vals, values TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
640
|
|
4d26a735
Pedro Roque
Increased recogni...
|
641
642
643
|
for (i = 1; i < n_vals; i++) {
if (values[i] == values[i - 1]) {
contiguous++;
|
0c8ce2b0
Pedro Roque
missing files
|
644
|
|
4d26a735
Pedro Roque
Increased recogni...
|
645
646
647
|
} else {
if (contiguous > 0) {
break;
|
0c8ce2b0
Pedro Roque
missing files
|
648
649
650
|
}
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
|
// no interval
if (contiguous == 0) {
int split_val = (V_MAX(*v) - min) / 2 + min;
cl_v_del_gt_no_tests_m(v, split_val);
cl_d_del_le_no_tests_g(hist, split_val);
*hist_labeleds_n_vals = n_vals - V_N_VALS(*v);
// use first interval
} else {
bool changed;
int j;
cl_v_del_lt_m(&changed, v, values[i - 1 - contiguous]);
cl_v_del_gt_m(&changed, v, values[i - 1]);
for (j = i - 1 - contiguous; j < i; j++) {
cl_d_del_val_no_tests_g(hist, values[j]);
}
*hist_labeleds_n_vals = n_vals - V_N_VALS(*v);
}
|
0c8ce2b0
Pedro Roque
missing files
|
675
|
}
|
0c8ce2b0
Pedro Roque
missing files
|
676
|
|
4d26a735
Pedro Roque
Increased recogni...
|
677
678
679
680
|
} else {
cl_d_clear_g(hist);
(*hist_labeleds_n_vals) = 0;
}
|
0c8ce2b0
Pedro Roque
missing files
|
681
682
683
|
}
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
684
|
#if CL_ASSIGN_M == CL_INDOMAIN_MAX || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
|
0c8ce2b0
Pedro Roque
missing files
|
685
|
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
686
687
688
689
|
* Assign the maximum value
* v - variable to be assigned
* hist - place on backtracking history where the remaining values of the variable should be stored
* hist_labeleds_n_vals - place where tje number of values remaining on the assigned variable should be stored
|
0c8ce2b0
Pedro Roque
missing files
|
690
|
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
691
692
693
694
695
696
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_assign_max(CL_MEMORY VARS_PROP *v, __global DOMAIN_ *hist, __global int *hist_labeleds_n_vals)
#else
CUDA_FUNC void v_assign(CL_MEMORY VARS_PROP* v, __global DOMAIN_* hist, __global int* hist_labeleds_n_vals)
#endif
{
|
0c8ce2b0
Pedro Roque
missing files
|
697
698
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
699
700
701
702
703
|
bool empty;
cl_d_is_empty_m(&empty, &v->prop_d TTL_CTR_V);
if (empty || v->n_vals == 0 || v->n_vals > v->max + 1 || v->min > v->max || v->max > CL_D_MAX) {
printf((__constant char *)"\n###error 45\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
704
705
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
706
|
(*hist_labeleds_n_vals) = V_N_VALS(*v) - 1;
|
0c8ce2b0
Pedro Roque
missing files
|
707
|
|
4d26a735
Pedro Roque
Increased recogni...
|
708
709
710
711
712
713
|
// If the labeled variable had more than one value on its domain remove the labeled value from its backtracking domain
if ((*hist_labeleds_n_vals) > 0) {
int max = V_MAX(*v);
bool changed;
cl_v_del_all_except_val_m(&changed, v, max TTL_CTR_V);
cl_d_del_val_no_tests_g(hist, max);
|
0c8ce2b0
Pedro Roque
missing files
|
714
|
|
4d26a735
Pedro Roque
Increased recogni...
|
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
|
} else {
cl_d_clear_g(hist);
}
}
#endif
#if CL_ASSIGN_M == CL_INDOMAIN_MEDIAN || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
/*
* Assign the median value of the domain values
* v - variable to be assigned
* hist - place on backtracking history where the remaining values of the variable should be stored
* hist_labeleds_n_vals - place where tje number of values remaining on the assigned variable should be stored
*/
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_assign_median(CL_MEMORY VARS_PROP *v, __global DOMAIN_ *hist, __global int *hist_labeleds_n_vals)
#else
CUDA_FUNC void v_assign(CL_MEMORY VARS_PROP* v, __global DOMAIN_* hist, __global int* hist_labeleds_n_vals)
#endif
{
#if CL_CHECK_ERRORS
bool empty;
cl_d_is_empty_m(&empty, &v->prop_d TTL_CTR_V);
if (empty || v->n_vals == 0 || v->n_vals > v->max + 1 || v->min > v->max || v->max > CL_D_MAX) {
printf((__constant char *)"\n###error 71\n");
|
0c8ce2b0
Pedro Roque
missing files
|
740
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
741
|
#endif
|
0c8ce2b0
Pedro Roque
missing files
|
742
|
|
4d26a735
Pedro Roque
Increased recogni...
|
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
|
int n_vals = V_N_VALS(*v);
(*hist_labeleds_n_vals) = n_vals - 1;
// If the labeled variable had more than one value on its domain remove the labeled value from its backtracking domain
if (n_vals > 1) {
int median = n_vals / 2;
int values[CL_D_MAX + 1];
cl_d_get_nth_vals_m4(hist, 1, n_vals, values TTL_CTR_V);
bool changed;
cl_v_del_all_except_val_m(&changed, v, values[median] TTL_CTR_V);
cl_d_del_val_no_tests_g(hist, values[median]);
} else {
cl_d_clear_g(hist);
}
}
#endif
#if CL_ASSIGN_M == CL_INDOMAIN_MIDDLE || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
/*
* Assign the value closest to the mean of the bounds
* v - variable to be assigned
* hist - place on backtracking history where the remaining values of the variable should be stored
* hist_labeleds_n_vals - place where tje number of values remaining on the assigned variable should be stored
*/
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_assign_middle(CL_MEMORY VARS_PROP *v, __global DOMAIN_ *hist, __global int *hist_labeleds_n_vals)
#else
CUDA_FUNC void v_assign(CL_MEMORY VARS_PROP* v, __global DOMAIN_* hist, __global int* hist_labeleds_n_vals)
#endif
{
|
0c8ce2b0
Pedro Roque
missing files
|
776
777
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
778
779
780
781
782
|
bool empty;
cl_d_is_empty_m(&empty, &v->prop_d TTL_CTR_V);
if (empty || v->n_vals == 0 || v->n_vals > v->max + 1 || v->min > v->max || v->max > CL_D_MAX) {
printf((__constant char *)"\n###error 72\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
783
784
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
785
786
|
int n_vals = V_N_VALS(*v);
(*hist_labeleds_n_vals) = n_vals - 1;
|
0c8ce2b0
Pedro Roque
missing files
|
787
|
|
4d26a735
Pedro Roque
Increased recogni...
|
788
789
790
791
792
793
|
// If the labeled variable had more than one value on its domain remove the labeled value from its backtracking domain
if (n_vals > 1) {
int mean = (V_MAX(*v) + V_MIN(*v)) / 2;
int values[CL_D_MAX + 1];
int lower_value, higher_value;
int i;
|
0c8ce2b0
Pedro Roque
missing files
|
794
|
|
4d26a735
Pedro Roque
Increased recogni...
|
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
|
cl_d_get_nth_vals_m4(hist, 1, n_vals, values TTL_CTR_V);
i = 0;
while (values[i] < mean) {
i++;
}
if (values[i] != mean) {
lower_value = values[i];
higher_value = values[i];
if (i > 0) {
lower_value = values[i - 1];
}
if (i < n_vals - 1) {
higher_value = values[i + 1];
}
if (mean - lower_value < higher_value - mean) {
mean = lower_value;
} else {
mean = higher_value;
|
0c8ce2b0
Pedro Roque
missing files
|
816
817
|
}
}
|
0c8ce2b0
Pedro Roque
missing files
|
818
|
|
4d26a735
Pedro Roque
Increased recogni...
|
819
820
821
822
823
824
825
|
bool changed;
cl_v_del_all_except_val_m(&changed, v, mean TTL_CTR_V);
cl_d_del_val_no_tests_g(hist, mean);
} else {
cl_d_clear_g(hist);
}
|
0c8ce2b0
Pedro Roque
missing files
|
826
827
828
|
}
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
829
|
#if CL_ASSIGN_M == CL_INDOMAIN_MIN || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
|
0c8ce2b0
Pedro Roque
missing files
|
830
831
832
833
834
835
|
/*
* Assign the minimum value
* v - variable to be assigned
* hist - place on backtracking history where the remaining values of the variable should be stored
* hist_labeleds_n_vals - place where the number of values remaining on the assigned variable should be stored
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
836
837
838
839
840
841
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_assign_min(CL_MEMORY VARS_PROP *v, __global DOMAIN_ *hist, __global int *hist_labeleds_n_vals)
#else
CUDA_FUNC void v_assign(CL_MEMORY VARS_PROP* v, __global DOMAIN_* hist, __global int* hist_labeleds_n_vals)
#endif
{
|
0c8ce2b0
Pedro Roque
missing files
|
842
843
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
844
845
846
847
848
|
bool empty;
cl_d_is_empty_m(&empty, &v->prop_d TTL_CTR_V);
if (empty || v->n_vals == 0 || v->n_vals > v->max + 1 || v->min > v->max || v->max > CL_D_MAX) {
printf((__constant char *)"\n###error 44\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
849
850
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
851
|
(*hist_labeleds_n_vals) = V_N_VALS(*v) - 1;
|
0c8ce2b0
Pedro Roque
missing files
|
852
|
|
4d26a735
Pedro Roque
Increased recogni...
|
853
854
|
// If the labeled variable has more than one value on its domain remove the labeled value from its backtracking domain
if ((*hist_labeleds_n_vals) > 0) {
|
0c8ce2b0
Pedro Roque
missing files
|
855
|
|
4d26a735
Pedro Roque
Increased recogni...
|
856
857
858
859
|
int min = V_MIN(*v);
bool changed;
cl_v_del_all_except_val_m(&changed, v, min TTL_CTR_V);
cl_d_del_val_no_tests_g(hist, min);
|
0c8ce2b0
Pedro Roque
missing files
|
860
|
|
4d26a735
Pedro Roque
Increased recogni...
|
861
862
863
|
} else {
cl_d_clear_g(hist TTL_CTR_V);
}
|
0c8ce2b0
Pedro Roque
missing files
|
864
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
865
|
#endif
|
0c8ce2b0
Pedro Roque
missing files
|
866
|
|
4d26a735
Pedro Roque
Increased recogni...
|
867
|
#if CL_ASSIGN_M == CL_INDOMAIN_REVERSE_SPLIT || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
|
0c8ce2b0
Pedro Roque
missing files
|
868
|
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
869
|
* Split the domain in half between the minimum and the maximum, and keeps the second half
|
0c8ce2b0
Pedro Roque
missing files
|
870
871
|
* v - variable to be assigned
* hist - place on backtracking history where the remaining values of the variable should be stored
|
4d26a735
Pedro Roque
Increased recogni...
|
872
|
* hist_labeleds_n_vals - place where the number of values remaining on the assigned variable should be stored
|
0c8ce2b0
Pedro Roque
missing files
|
873
|
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
874
875
876
877
878
879
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_assign_reverse_split(CL_MEMORY VARS_PROP *v, __global DOMAIN_ *hist, __global int *hist_labeleds_n_vals)
#else
CUDA_FUNC void v_assign(CL_MEMORY VARS_PROP* v, __global DOMAIN_* hist, __global int* hist_labeleds_n_vals)
#endif
{
|
0c8ce2b0
Pedro Roque
missing files
|
880
881
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
882
883
884
885
886
|
bool empty;
cl_d_is_empty_m(&empty, &v->prop_d TTL_CTR_V);
if (empty || v->n_vals == 0 || v->n_vals > v->max + 1 || v->min > v->max || v->max > CL_D_MAX) {
printf((__constant char *)"\n###error 73\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
887
888
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
889
|
int n_vals = V_N_VALS(*v);
|
0c8ce2b0
Pedro Roque
missing files
|
890
|
|
4d26a735
Pedro Roque
Increased recogni...
|
891
892
|
if (n_vals > 1) {
int min = V_MIN(*v);
|
0c8ce2b0
Pedro Roque
missing files
|
893
|
|
4d26a735
Pedro Roque
Increased recogni...
|
894
895
896
897
898
899
900
901
902
|
int split_val = (V_MAX(*v) - min) / 2 + min;
cl_v_del_lt_no_tests_m(v, split_val + 1);
cl_d_del_gt_no_tests_g(hist, split_val);
*hist_labeleds_n_vals = n_vals - V_N_VALS(*v);
} else {
*hist_labeleds_n_vals = 0;
cl_d_clear_g(hist);
}
|
0c8ce2b0
Pedro Roque
missing files
|
903
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
904
|
#endif
|
0c8ce2b0
Pedro Roque
missing files
|
905
|
|
4d26a735
Pedro Roque
Increased recogni...
|
906
|
#if CL_ASSIGN_M == CL_INDOMAIN_SPLIT || (CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1)
|
0c8ce2b0
Pedro Roque
missing files
|
907
908
909
910
911
912
|
/*
* Split the domain in half between the minimum and the maximum, and keeps the first half
* v - variable to be assigned
* hist - place on backtracking history where the remaining values of the variable should be stored
* hist_labeleds_n_vals - place where tje number of values remaining on the assigned variable should be stored
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
913
914
915
916
917
918
|
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
CUDA_FUNC void v_assign_split(CL_MEMORY VARS_PROP *v, __global DOMAIN_ *hist, __global int *hist_labeleds_n_vals)
#else
CUDA_FUNC void v_assign(CL_MEMORY VARS_PROP* v, __global DOMAIN_* hist, __global int* hist_labeleds_n_vals)
#endif
{
|
0c8ce2b0
Pedro Roque
missing files
|
919
920
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
921
922
923
924
925
|
bool empty;
cl_d_is_empty_m(&empty, &v->prop_d TTL_CTR_V);
if (empty || v->n_vals == 0 || v->n_vals > v->max + 1 || v->min > v->max || v->max > CL_D_MAX) {
printf((__constant char *)"\n###error 46\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
926
927
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
928
|
int n_vals = V_N_VALS(*v);
|
0c8ce2b0
Pedro Roque
missing files
|
929
|
|
4d26a735
Pedro Roque
Increased recogni...
|
930
931
|
if (n_vals > 1) {
int min = V_MIN(*v);
|
0c8ce2b0
Pedro Roque
missing files
|
932
|
|
4d26a735
Pedro Roque
Increased recogni...
|
933
934
935
|
int split_val = (V_MAX(*v) - min) / 2 + min;
cl_v_del_gt_no_tests_m(v, split_val);
cl_d_del_le_no_tests_g(hist, split_val);
|
0c8ce2b0
Pedro Roque
missing files
|
936
|
|
4d26a735
Pedro Roque
Increased recogni...
|
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
|
*hist_labeleds_n_vals = n_vals - V_N_VALS(*v);
} else {
*hist_labeleds_n_vals = 0;
cl_d_clear_g(hist);
}
}
#endif
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
/*
* Use the defined heuristic to assign the variable when using FlatZinc seq_search
* v - variable to be assigned
* hist - place on backtracking history where the remaining values of the variable should be stored
* hist_labeleds_n_vals - place where tje number of values remaining on the assigned variable should be stored
* v_g - constant structure of the variable to be assigned
*/
CUDA_FUNC void v_assign(CL_MEMORY VARS_PROP *v, __global DOMAIN_ *hist, __global int *hist_labeleds_n_vals, CL_VS_MEM VARS *v_g) {
switch (v_g->assign_h) {
case CL_INDOMAIN_INTERVAL:
v_assign_interval(v, hist, hist_labeleds_n_vals);
break;
case CL_INDOMAIN_MAX:
v_assign_max(v, hist, hist_labeleds_n_vals);
break;
case CL_INDOMAIN_MEDIAN:
v_assign_median(v, hist, hist_labeleds_n_vals);
break;
case CL_INDOMAIN_MIDDLE:
v_assign_middle(v, hist, hist_labeleds_n_vals);
break;
case CL_INDOMAIN_MIN:
v_assign_min(v, hist, hist_labeleds_n_vals);
break;
case CL_INDOMAIN_REVERSE_SPLIT:
v_assign_reverse_split(v, hist, hist_labeleds_n_vals);
break;
case CL_INDOMAIN_SPLIT:
v_assign_split(v, hist, hist_labeleds_n_vals);
break;
default:
#if CL_CHECK_ERRORS
printf((__constant char *)"\n###error 84\n");
#endif
break;
}
|
0c8ce2b0
Pedro Roque
missing files
|
983
984
985
986
987
988
989
990
991
992
993
|
}
#endif
#if CL_WORK == CL_OPT
/*
* Update the domain of the variable to optimize according to the global value to optimize on the received backtracking store. Global memory
* Return 1 if domain changed and 0 if not
* hist - backtracking data
* val_to_opt - global value to optimize
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
994
995
996
997
998
999
|
CUDA_FUNC void upd_opt_var_hist_g(__global DOMAIN_ *hist, __global unsigned int *val_to_opt TTL_CTR) {
if (*val_to_opt > CL_D_MAX) {
cl_d_clear_g(hist TTL_CTR_V);
return;
}
|
0c8ce2b0
Pedro Roque
missing files
|
1000
1001
|
#if CL_CHECK_ERRORS
|
4d26a735
Pedro Roque
Increased recogni...
|
1002
1003
1004
1005
1006
|
bool empty;
cl_d_is_empty_g(&empty, hist TTL_CTR_V);
if (empty || *val_to_opt > CL_D_MAX) {
printf((__constant char *)"\n###error 47\n");
}
|
0c8ce2b0
Pedro Roque
missing files
|
1007
1008
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1009
1010
|
bool changed;
int val_to_opt_aux = convert_int (*val_to_opt);
|
0c8ce2b0
Pedro Roque
missing files
|
1011
1012
|
#if CL_OPT_M == CL_DECREASE
|
4d26a735
Pedro Roque
Increased recogni...
|
1013
|
cl_d_del_gt_g(&changed, hist, val_to_opt_aux TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
|
#else
cl_d_del_lt_g(&changed, hist, val_to_opt_aux TTL_CTR_V);
#endif
}
#endif
#if CL_N_SHARED_SS > 0
/*
* Pick a new store from the shared stores and prepares all the structures to begin its exploration.
* prop_v_id will get CL_N_VS if no store is available.
* shared_ss - All the shared stores
* shared_ss_flags - flags for each shared store state
|
0c8ce2b0
Pedro Roque
missing files
|
1026
1027
1028
1029
1030
1031
|
* vs_id_to_prop_ - List with the ID of the variables to propagate
* vs_prop_ - variables on the current state
* hist - backtracking history
* hist_tree_level - level of the backtracking
* hist_labeleds_id - list of the ID of the variables that were labeled for each backtracking history level
* hist_labeleds_n_vals - number of values that remain on the variables that were labeled for each backtracking history level
|
4d26a735
Pedro Roque
Increased recogni...
|
1032
|
* prop_v_id - ID of the first variable that must be propagated
|
0c8ce2b0
Pedro Roque
missing files
|
1033
|
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
1034
|
CUDA_FUNC void get_shared_store( __global DOMAIN_* shared_ss, __global int* shared_ss_flags, CL_MEMORY unsigned short* vs_id_to_prop_,
|
0c8ce2b0
Pedro Roque
missing files
|
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
|
CL_MEMORY VARS_PROP* vs_prop_, __global DOMAIN_* hist, int* hist_tree_level, __global int* hist_labeleds_id,
__global int* hist_labeleds_n_vals, unsigned int* prop_v_id TTL_CTR) {
int ss_to_get;
// flags for signaling the state of each work-sharing store
// 0 - next shared SS to be picked
// 1 - next shared SS to be filled
// 2...number of SS already filled
// 3..3+CL_N_SHARED_SS - V_ID that was labeled to generate this SS
if ((ss_to_get = atomic_inc(&shared_ss_flags[0])) < atomic_add(&shared_ss_flags[2], 0)) {
__global DOMAIN_* new_ss;
*prop_v_id = convert_uint(shared_ss_flags[3 + ss_to_get]);
int i;
// copy the new store
new_ss = &shared_ss[ss_to_get * CL_N_VS];
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 35)
|
4d26a735
Pedro Roque
Increased recogni...
|
1056
|
cl_d_copy_mg(&vs_prop_[i].prop_d, &new_ss[i] TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
|
cl_d_copy_g(&hist[i], &new_ss[i] TTL_CTR_V);
vs_prop_[i].to_prop = 0;
cl_v_calc_min_val_m(&vs_prop_[i] TTL_CTR_V);
cl_v_calc_max_val_m(&vs_prop_[i] TTL_CTR_V);
cl_v_cnt_vals_m(&vs_prop_[i] TTL_CTR_V);
}
cl_d_clear_g(&hist[*prop_v_id] TTL_CTR_V);
// reset the indexes of the array that contains the IDs of the variables to propagate
vs_id_to_prop_[0] = 2;
vs_id_to_prop_[1] = 2;
(*hist_tree_level) = 1;
hist_labeleds_id[0] = convert_int(*prop_v_id);
(*hist_labeleds_n_vals) = 0;
}
}
/*
* Set a new store on the shared stores
* shared_ss - All the shared stores
* shared_ss_flags - flags for each shared store state
* vs_prop_ - variables on the current state
* v_id - ID of the variable whose domain is to be pruned to create a new shared store
* hist - backtracking history
* hist_labeleds_n_vals - number of values that remain on the variables that were labeled for each backtracking history level
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
1086
|
CUDA_FUNC void set_shared_store( __global DOMAIN_* shared_ss, __global int* shared_ss_flags, CL_MEMORY VARS_PROP* vs_prop_, int v_id,
|
0c8ce2b0
Pedro Roque
missing files
|
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
|
__global DOMAIN_* hist, __global int* hist_labeleds_n_vals TTL_CTR) {
int ss_to_fill;
// flags for signaling the state of each work-sharing store
// 0 - next shared SS to be picked
// 1 - next shared SS to be filled
// 2...number of SS already filled
// 3..3+CL_N_SHARED_SS - V_ID that was labeled to generate this SS
if ((ss_to_fill = atomic_inc(&shared_ss_flags[1])) < CL_N_SHARED_SS) {
__global DOMAIN_* new_ss;
int min;
int i;
// copy the new store
new_ss = &shared_ss[ss_to_fill * CL_N_VS];
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 33)
|
4d26a735
Pedro Roque
Increased recogni...
|
1107
|
cl_d_copy_gm(&new_ss[i], &vs_prop_[i].prop_d TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
|
}
cl_d_calc_min_val_g(&min, hist TTL_CTR_V);
// remove value from backtracking history
cl_d_del_val_no_tests_g(hist, min);
(*hist_labeleds_n_vals)--;
cl_d_new_vals_gp(&new_ss[v_id], &min, 1 TTL_CTR_V);
// save the ID of the variable that was labeled to generate the new SS
shared_ss_flags[3 + ss_to_fill] = v_id;
atomic_inc(&shared_ss_flags[2]);
}
}
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1126
1127
1128
1129
|
/*
* Mark all constraints as not to be ignored
* cs_ignore - array with one flag per constraint
*/
|
0c8ce2b0
Pedro Roque
missing files
|
1130
|
#if CL_CS_IGNORE
|
4d26a735
Pedro Roque
Increased recogni...
|
1131
1132
|
CUDA_FUNC void clear_cs_ignore(__global char *cs_ignore) {
int i;
|
0c8ce2b0
Pedro Roque
missing files
|
1133
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1134
1135
1136
|
for (i = 0; i < CL_N_CS; i++) {
cs_ignore[i] = 0;
}
|
0c8ce2b0
Pedro Roque
missing files
|
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
|
}
#endif
#if CL_PRINT_CSP
/*
* Print the name of the constraint
* cs -constraint to print the name
*/
CUDA_FUNC void cs_print_type_device(CL_CS_MEM cl_constr* cs) {
switch (cs->kind) {
|
4d26a735
Pedro Roque
Increased recogni...
|
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
|
case ALL_DIFFERENT:
printf((__constant char *)"ALL_DIFFERENT");
break;
case ARRAY_BOOL_AND:
printf((__constant char *)"ARRAY_BOOL_AND");
break;
case ARRAY_BOOL_ELEMENT:
printf((__constant char *)"ARRAY_BOOL_ELEMENT");
break;
case ARRAY_BOOL_OR:
printf((__constant char *)"ARRAY_BOOL_OR");
break;
case ARRAY_BOOL_XOR:
printf((__constant char *)"ARRAY_BOOL_XOR");
break;
case ARRAY_INT_ELEMENT:
printf((__constant char *)"ARRAY_INT_ELEMENT");
break;
case ARRAY_VAR_INT_ELEMENT:
printf((__constant char *)"ARRAY_VAR_INT_ELEMENT");
break;
case AT_LEAST:
printf((__constant char *)"AT_LEAST");
break;
case AT_MOST:
printf((__constant char *)"AT_MOST");
break;
case AT_MOST_ONE:
printf((__constant char *)"AT_MOST_ONE");
break;
case BOOL_AND:
printf((__constant char *)"BOOL_AND");
break;
case BOOL_CLAUSE:
printf((__constant char *)"BOOL_CLAUSE");
break;
case BOOL_EQ:
printf((__constant char *)"BOOL_EQ");
break;
case BOOL_LE:
printf((__constant char *)"BOOL_LE");
break;
case BOOL_LIN_EQ:
printf((__constant char *)"BOOL_LIN_EQ");
break;
case BOOL_LIN_LE:
printf((__constant char *)"BOOL_LIN_LE");
break;
case BOOL_LT:
printf((__constant char *)"BOOL_LT");
break;
case BOOL_NOT:
printf((__constant char *)"BOOL_NOT");
break;
case BOOL_OR:
printf((__constant char *)"BOOL_OR");
break;
case BOOL_XOR:
printf((__constant char *)"BOOL_XOR");
break;
case BOOL2INT:
printf((__constant char *)"BOOL2INT");
break;
case ELEMENT:
printf((__constant char *)"ELEMENT");
break;
case EXACTLY:
printf((__constant char *)"EXACTLY");
break;
case EXACTLY_VAR:
printf((__constant char *)"EXACTLY_VAR");
break;
case INT_DIV:
printf((__constant char *)"INT_DIV");
break;
case INT_EQ:
printf((__constant char *)"INT_EQ");
break;
case INT_EQ_C:
printf((__constant char *)"INT_EQ_C");
break;
case INT_LE:
printf((__constant char *)"INT_LE");
break;
case INT_LIN_EQ:
printf((__constant char *)"INT_LIN_EQ");
break;
case INT_LIN_LE:
printf((__constant char *)"INT_LIN_LE");
break;
case INT_LIN_NE:
printf((__constant char *)"INT_LIN_NE");
break;
case INT_LIN_VAR:
printf((__constant char *)"INT_LIN_VAR");
break;
case INT_LT:
printf((__constant char *)"INT_LT");
break;
case INT_MAX_:
printf((__constant char *)"INT_MAX_");
break;
case INT_MIN_:
printf((__constant char *)"INT_MIN_");
break;
case INT_MOD:
printf((__constant char *)"INT_MOD");
break;
case INT_NE:
printf((__constant char *)"INT_NE");
break;
case INT_PLUS:
printf((__constant char *)"INT_PLUS");
break;
case INT_TIMES:
printf((__constant char *)"INT_TIMES");
break;
case MAXIMIZE:
printf((__constant char *)"MAXIMIZE");
break;
case MINIMIZE:
printf((__constant char *)"MINIMIZE");
break;
case MINUS_EQ:
printf((__constant char *)"MINUS_EQ");
break;
case MINUS_NE:
printf((__constant char *)"MINUS_NE");
break;
case SUM:
printf((__constant char *)"SUM");
break;
case SUM_PROD:
printf((__constant char *)"SUM_PROD");
break;
case SUM_VAR:
printf((__constant char *)"SUM_VAR");
break;
case VAR_EQ_MINUS:
printf((__constant char *)"VAR_EQ_MINUS");
break;
case VAR_EQ_MINUS_ABS:
printf((__constant char *)"VAR_EQ_MINUS_ABS");
break;
default:
printf((__constant char *)"NOT_RECOGNIZED");
break;
|
0c8ce2b0
Pedro Roque
missing files
|
1295
1296
1297
1298
1299
1300
1301
1302
|
}
if (cs->reified) {
printf((__constant char *)"_REIF");
}
}
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
|
* Print the name of the heuristic used for selecting the next variable to label
* l - ENUM of the labeling heuristic
*/
CUDA_FUNC void print_label_heur_device(char l) {
switch (l) {
case CL_ANTI_FIRST_FAIL:
printf((__constant char *)"Anti_first_fail");
break;
case CL_FIRST_FAIL:
printf((__constant char *)"First_fail");
break;
case CL_INPUT_ORDER:
printf((__constant char *)"Input_order");
break;
case CL_LARGEST:
printf((__constant char *)"Largest");
break;
case CL_MAX_REGRET:
printf((__constant char *)"Max_regret");
break;
case CL_MOST_CONSTRAINED:
printf((__constant char *)"Most_constrained");
break;
case CL_OCCURRENCE:
printf((__constant char *)"Occurrence");
break;
case CL_SMALLEST:
printf((__constant char *)"Smallest");
break;
default:
printf((__constant char *)"UNKNOWN");
break;
}
}
/*
* Print the name of the heuristic used for selecting the next value to assign
* a - ENUM of the labeling heuristic
*/
CUDA_FUNC void print_assign_heur_device(char a) {
switch (a) {
case CL_INDOMAIN_INTERVAL:
printf((__constant char *)"Indomain_interval");
break;
case CL_INDOMAIN_MAX:
printf((__constant char *)"Indomain_max");
break;
case CL_INDOMAIN_MEDIAN:
printf((__constant char *)"Indomain_median");
break;
case CL_INDOMAIN_MIDDLE:
printf((__constant char *)"Indomain_middle");
break;
case CL_INDOMAIN_MIN:
printf((__constant char *)"Indomain_min");
break;
case CL_INDOMAIN_REVERSE_SPLIT:
printf((__constant char *)"Indomain_reverse_split");
break;
case CL_INDOMAIN_SPLIT:
printf((__constant char *)"Indomain_split");
break;
default:
printf((__constant char *)"UNKNOWN");
break;
}
}
/*
|
0c8ce2b0
Pedro Roque
missing files
|
1372
1373
1374
1375
1376
1377
1378
|
* Print all the CSP variables and constraints, including the variables values and ID and
* the constraints ID and the ID of the variables that they constrain
* vs - CSP variables
* cs - CSP constraints
* cs_per_v_idx - vector with all the constraints ID that constrain each variable, per variable ID order
* vs_per_c_idx - vector with all constrained variables ID per constraint, per constraint ID order
* c_consts - vector with all the constant values of a CSP
|
4d26a735
Pedro Roque
Increased recogni...
|
1379
|
* b_ds - original domain of the variables when using bitmaps
|
0c8ce2b0
Pedro Roque
missing files
|
1380
1381
|
*/
CUDA_FUNC void print_CSP_device(CL_VS_MEM VARS* vs, CL_CS_MEM cl_constr* cs, CL_INTS_MEM int* cs_per_v_idx, CL_INTS_MEM int* vs_per_c_idx
|
4d26a735
Pedro Roque
Increased recogni...
|
1382
|
#if CS_AT_LEAST == 1 || CS_AT_MOST == 1 || CS_AT_MOST_ONE == 1 || CS_EXACTLY == 1 || CS_INT_LIN_EQ == 1 || CS_INT_LIN_LE == 1 || CS_INT_LIN_NE == 1 || CS_INT_LIN_VAR == 1 || CS_ARRAY_INT_ELEMENT == 1 || CS_BOOL_LIN_EQ == 1 || CS_BOOL_LIN_LE == 1
|
0c8ce2b0
Pedro Roque
missing files
|
1383
1384
1385
1386
1387
|
, CL_INTS_MEM int* c_consts
#endif
#if CL_D_TYPE == CL_BITMAP
, CL_B_DS_MEM cl_bitmap* b_ds
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1388
|
) {
|
0c8ce2b0
Pedro Roque
missing files
|
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
|
unsigned int prev_val;
unsigned int new_val;
unsigned int cntr;
int d_vals[CL_D_MAX + 1];
int n_vals, max;
CL_INTS_MEM int* vs_per_c_idx_;
CL_INTS_MEM int* cs_per_v_idx_;
DOMAIN_ d;
unsigned int i;
int j;
|
4d26a735
Pedro Roque
Increased recogni...
|
1401
|
#if CS_AT_LEAST == 1 || CS_AT_MOST == 1 || CS_AT_MOST_ONE == 1 || CS_EXACTLY == 1 || CS_INT_LIN_EQ == 1 || CS_INT_LIN_LE == 1 || CS_INT_LIN_NE == 1 || CS_INT_LIN_VAR == 1 || CS_ARRAY_INT_ELEMENT == 1 || CS_BOOL_LIN_EQ == 1 || CS_BOOL_LIN_LE == 1
|
0c8ce2b0
Pedro Roque
missing files
|
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
|
CL_INTS_MEM int* c_consts_;
#endif
printf((__constant char *)"\n\n--------------------------------\n");
printf((__constant char *)"CSP as received by the device:\n");
printf((__constant char *)"\nVariables:\n");
for (i = 0; i < CL_N_VS; i++) {
printf((__constant char *)" ID=%u: Values={", i);
#if CL_D_TYPE == CL_BITMAP
#if CL_N_WORDS == 1
d = b_ds[i];
#else
for (j = 0; j < CL_N_WORDS; j++) {
CHECK_TTL(ttl_ctr, 117)
|
4d26a735
Pedro Roque
Increased recogni...
|
1418
|
d[j] = b_ds[i][j];
|
0c8ce2b0
Pedro Roque
missing files
|
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
|
}
#endif
cl_d_cnt_vals_n(&d, &n_vals);
cl_d_calc_max_val_n(&max, &d);
cl_d_get_nth_vals_n(&d, 1, n_vals, d_vals TTL_CTR_V);
j = 0;
prev_val = convert_uint(d_vals[j++]);
new_val = prev_val;
printf((__constant char *)"%u", prev_val);
while (new_val < (uint)max) {
cntr = 0;
while ((new_val = convert_uint(d_vals[j++])) == prev_val + 1 && new_val < (uint)max) {
prev_val = new_val;
cntr++;
}
if (cntr == 0) {
printf((__constant char *)",%u", new_val);
} else {
if (new_val == (uint)max && new_val == prev_val + 1) {
printf((__constant char *)"-%u", new_val);
} else if (cntr == 1) {
printf((__constant char *)",%u,%u", prev_val, new_val);
} else {
printf((__constant char *)"-%u,%u", prev_val, new_val);
}
}
prev_val = new_val;
}
#else
printf((__constant char *)"%u,%u", vs[i].domain.s0, vs[i].domain.s1);
#endif
if (vs[i].to_label) {
printf((__constant char *)"} Label=true");
} else {
printf((__constant char *)"} Label=false");
}
|
4d26a735
Pedro Roque
Increased recogni...
|
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
|
if (vs[i].boolean) {
printf((__constant char *)" boolean=true");
} else {
printf((__constant char *)" boolean=false");
}
#if CL_FZN_SEQ && CL_FZN_SEQ_N_LABELS > 1
if (vs[i].to_label) {
printf(" label_h=");
print_label_heur_device(vs[i].label_h);
printf(" assign_hs=");
print_assign_heur_device(vs[i].assign_h);
}
#endif
|
0c8ce2b0
Pedro Roque
missing files
|
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
|
if (vs[i].expanded) {
printf((__constant char *)" expanded");
}
if (vs[i].n_cs > 0) {
printf((__constant char *)" Constraints={");
cs_per_v_idx_ = &cs_per_v_idx[vs[i].c_idx];
for (j = 0; j < vs[i].n_cs - 1; j++) {
printf((__constant char *)"%u,", cs_per_v_idx_[j]);
}
if (vs[i].n_cs > 0) {
printf((__constant char *)"%u}\n", cs_per_v_idx_[j]);
} else {
printf((__constant char *)"\n");
}
} else {
printf((__constant char *)"\n");
}
}
printf((__constant char *)"Constraints:\n");
for (i = 0; i < CL_N_CS; i++) {
vs_per_c_idx_ = &vs_per_c_idx[cs[i].v_idx];
|
4d26a735
Pedro Roque
Increased recogni...
|
1505
|
#if CS_AT_LEAST == 1 || CS_AT_MOST == 1 || CS_AT_MOST_ONE == 1 || CS_EXACTLY == 1 || CS_INT_LIN_EQ == 1 || CS_INT_LIN_LE == 1 || CS_INT_LIN_NE == 1 || CS_INT_LIN_VAR == 1 || CS_ARRAY_INT_ELEMENT == 1 || CS_BOOL_LIN_EQ == 1 || CS_BOOL_LIN_LE == 1
|
0c8ce2b0
Pedro Roque
missing files
|
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
|
c_consts_ = &c_consts[cs[i].const_idx];
#endif
printf((__constant char *)" ID=%u: Type=", i);
cs_print_type_device(&cs[i]);
printf((__constant char *)" Variables={");
for (j = 0; j < cs[i].n_c_vs - 1; j++) {
printf((__constant char *)"%u,", vs_per_c_idx_[j]);
}
printf((__constant char *)"%u}", vs_per_c_idx_[j]);
if (cs[i].n_c_consts > 0) {
|
4d26a735
Pedro Roque
Increased recogni...
|
1519
|
#if CS_AT_LEAST == 1 || CS_AT_MOST == 1 || CS_AT_MOST_ONE == 1 || CS_EXACTLY == 1 || CS_INT_LIN_EQ == 1 || CS_INT_LIN_LE == 1 || CS_INT_LIN_NE == 1 || CS_INT_LIN_VAR == 1 || CS_ARRAY_INT_ELEMENT == 1 || CS_BOOL_LIN_EQ == 1 || CS_BOOL_LIN_LE == 1
|
0c8ce2b0
Pedro Roque
missing files
|
1520
1521
1522
1523
1524
|
printf((__constant char *)" Constants={");
for (j = 0; j < cs[i].n_c_consts - 1; j++) {
printf((__constant char *)"%d,", c_consts_[j]);
}
|
4d26a735
Pedro Roque
Increased recogni...
|
1525
|
if (cs[i].kind == INT_LIN_EQ || cs[i].kind == INT_LIN_NE || cs[i].kind == INT_LIN_LE || cs[i].kind == BOOL_LIN_LE) {
|
0c8ce2b0
Pedro Roque
missing files
|
1526
1527
1528
1529
1530
1531
1532
|
printf((__constant char *)"%d, %d}", c_consts_[j], cs[i].constant_val);
} else {
printf((__constant char *)"%d}", c_consts_[j]);
}
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1533
1534
1535
|
} else if (cs[i].kind == ELEMENT || cs[i].kind == EXACTLY_VAR || cs[i].kind == INT_LIN_EQ || cs[i].kind == INT_LIN_NE || cs[i].kind == MINUS_EQ
|| cs[i].kind == MINUS_NE || cs[i].kind == SUM_PROD || cs[i].kind == SUM || cs[i].kind == INT_LIN_LE || cs[i].kind == ARRAY_INT_ELEMENT
|| cs[i].kind == INT_EQ_C) {
|
0c8ce2b0
Pedro Roque
missing files
|
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
|
printf((__constant char *)" Constants={%d}", cs[i].constant_val);
}
if (cs[i].boolean) {
printf(" boolean");
}
if (cs[i].reified) {
printf((__constant char *)" reif_var_ID=%u\n", cs[i].reif_var_id);
} else {
printf((__constant char *)"\n");
}
}
printf((__constant char *)"\n");
printf((__constant char *)"--------------------------------\n\n");
}
#endif
|
0c8ce2b0
Pedro Roque
missing files
|
1554
|
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
1555
1556
|
* place the next unexplored sub-search space available on hist or place CL_N_VS on prop_v_id if none
* atoms - counters and stores enumeration
|
0c8ce2b0
Pedro Roque
missing files
|
1557
1558
|
* vs - all CSP variables with the original domains
* hist - current work-item history vector
|
4d26a735
Pedro Roque
Increased recogni...
|
1559
1560
1561
1562
1563
1564
1565
|
* vs_prop_ - vector with all CSP variables
* v_id_to_prop - id of the variable to propagate
* hist_tree_level - level of the backtracking
* hist_labeleds_id - list of the ID of the variables that were labeled for each backtracking history level
* b_ds - original domains of the CSP variables if using bitmaps
* val_to_opt_g - value to optimize
* ss_aux_mem - auxiliary buffer
|
0c8ce2b0
Pedro Roque
missing files
|
1566
|
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
1567
1568
1569
|
CUDA_FUNC void get_new_str( __global unsigned int *atoms, CL_VS_MEM VARS *vs, __global DOMAIN_ *hist, CL_MEMORY VARS_PROP *vs_prop_,
CL_MEMORY unsigned short *vs_id_to_prop_, int *hist_tree_level, __global int *hist_labeleds_id, __global int *hist_labeleds_n_vals,
unsigned int *prop_v_id
|
0c8ce2b0
Pedro Roque
missing files
|
1570
|
#if CL_D_TYPE == CL_BITMAP
|
4d26a735
Pedro Roque
Increased recogni...
|
1571
|
, CL_B_DS_MEM cl_bitmap *b_ds
|
0c8ce2b0
Pedro Roque
missing files
|
1572
1573
|
#endif
#if (CS_MAXIMIZE == 1 || CS_MINIMIZE == 1) && CL_WORK == CL_OPT
|
4d26a735
Pedro Roque
Increased recogni...
|
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
|
, __global unsigned int *val_to_opt_g
#endif
, __global int *ss_aux_mem TTL_CTR) {
// atoms
__global unsigned int *str_to_expl = atoms; // first available store index
unsigned int str_last = atoms[1]; // last available store index
unsigned int n_ss = atoms[2]; // total number of generated sub-search spaces (n_ss)
unsigned int depth = atoms[3]; // level of tree expansion needed to create the required number of sub-search spaces
__global unsigned int *exp_values = atoms + 5; // each variable number of values expanded
// to find which values of each variable to domain to place in each store
unsigned int prev_repeat = 0; // number of times that each value of the previous domain was repeated to generate all stores
unsigned int curr_repeat = 0; // number of times that each value of the current domain must be repeated to generate all stores
unsigned int join_n_vals; // number of values of the current domain that must be repeated in each store
unsigned int join_more_times; // number of values that must be distributed among some of the stores as the reminder was not 0
|
0c8ce2b0
Pedro Roque
missing files
|
1590
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1591
1592
1593
1594
1595
1596
|
unsigned int rel_store_to_synt; // Number of the next store to generate, when multiplying stores in the device
unsigned int store_to_synt = atomic_inc(str_to_expl); // Number of the next store to generate
int first_nth; // index of the first value to get from domain (begin at 1)
int last_nth; // index of the last value to get from domain (begin at 1)
bool first_expand = true;
unsigned int i;
|
0c8ce2b0
Pedro Roque
missing files
|
1597
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1598
|
*prop_v_id = CL_N_VS;
|
0c8ce2b0
Pedro Roque
missing files
|
1599
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1600
|
if (store_to_synt < str_last) {
|
0c8ce2b0
Pedro Roque
missing files
|
1601
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1602
1603
1604
1605
|
for (i = 0; i < depth; i++) {
CHECK_TTL(ttl_ctr, 4)
if (exp_values[i] == 0) {
|
0c8ce2b0
Pedro Roque
missing files
|
1606
|
#if CL_D_TYPE == CL_BITMAP
|
4d26a735
Pedro Roque
Increased recogni...
|
1607
|
cl_d_copy_mbd(&vs_prop_[i].prop_d, &b_ds[i] TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1608
|
#else
|
4d26a735
Pedro Roque
Increased recogni...
|
1609
|
cl_d_copy_mvs(&vs_prop_[i].prop_d, &vs[i].domain TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1610
1611
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1612
|
} else {
|
0c8ce2b0
Pedro Roque
missing files
|
1613
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1614
1615
1616
1617
1618
1619
1620
1621
|
if (first_expand) {
prev_repeat = n_ss;
rel_store_to_synt = store_to_synt;
first_expand = false;
} else {
rel_store_to_synt = store_to_synt % prev_repeat;
}
curr_repeat = prev_repeat / exp_values[i];
|
0c8ce2b0
Pedro Roque
missing files
|
1622
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1623
1624
1625
1626
1627
|
join_n_vals = convert_uint (vs[i].n_vals) / exp_values[i];
if (join_n_vals == 0) {
join_n_vals = 1;
}
join_more_times = (convert_uint (vs[i].n_vals) % exp_values[i]) * curr_repeat;
|
0c8ce2b0
Pedro Roque
missing files
|
1628
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1629
|
first_nth = convert_int (1 + (rel_store_to_synt / curr_repeat) * join_n_vals);
|
0c8ce2b0
Pedro Roque
missing files
|
1630
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1631
1632
1633
1634
1635
1636
1637
|
if (join_more_times > 0) {
if (rel_store_to_synt > join_more_times) {
first_nth += convert_int (join_more_times / curr_repeat);
} else {
first_nth += convert_int (rel_store_to_synt / curr_repeat);
}
}
|
0c8ce2b0
Pedro Roque
missing files
|
1638
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1639
1640
1641
1642
|
last_nth = first_nth + convert_int (join_n_vals);
if (rel_store_to_synt < join_more_times) {
last_nth++;
}
|
0c8ce2b0
Pedro Roque
missing files
|
1643
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1644
|
prev_repeat = curr_repeat;
|
0c8ce2b0
Pedro Roque
missing files
|
1645
1646
|
#if CL_D_TYPE == CL_BITMAP
|
4d26a735
Pedro Roque
Increased recogni...
|
1647
|
cl_d_get_nth_vals_bd(&b_ds[i], first_nth, last_nth - 1, ss_aux_mem TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1648
|
#else
|
4d26a735
Pedro Roque
Increased recogni...
|
1649
|
cl_d_get_nth_vals_vsg(&vs[i].domain, first_nth, last_nth - 1, ss_aux_mem TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1650
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1651
|
cl_d_new_vals_mg(&vs_prop_[i].prop_d, ss_aux_mem, last_nth - first_nth TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1652
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
1653
|
}
|
0c8ce2b0
Pedro Roque
missing files
|
1654
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1655
1656
|
for (i = depth; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 6)
|
0c8ce2b0
Pedro Roque
missing files
|
1657
1658
|
#if CL_D_TYPE == CL_BITMAP
|
4d26a735
Pedro Roque
Increased recogni...
|
1659
|
cl_d_copy_mbd(&vs_prop_[i].prop_d, &b_ds[i] TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1660
1661
1662
|
#else
cl_d_copy_mvs(&vs_prop_[i].prop_d, &vs[i].domain TTL_CTR_V);
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1663
|
}
|
0c8ce2b0
Pedro Roque
missing files
|
1664
1665
|
#if CL_WORK == CL_OPT
|
4d26a735
Pedro Roque
Increased recogni...
|
1666
1667
|
unsigned int val_to_opt_aux = atomic_add(val_to_opt_g, 0);
bool changed = 0;
|
0c8ce2b0
Pedro Roque
missing files
|
1668
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1669
1670
1671
|
vs_prop_[CL_VAR_ID_TO_OPT].to_prop = 0;
#if CL_USE_BOOLEAN_VS
vs_prop_[CL_VAR_ID_TO_OPT].boolean = vs[CL_VAR_ID_TO_OPT].boolean;
|
0c8ce2b0
Pedro Roque
missing files
|
1672
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1673
1674
1675
|
cl_v_calc_min_val_m(&vs_prop_[CL_VAR_ID_TO_OPT] TTL_CTR_V);
cl_v_calc_max_val_m(&vs_prop_[CL_VAR_ID_TO_OPT] TTL_CTR_V);
cl_v_cnt_vals_m(&vs_prop_[CL_VAR_ID_TO_OPT] TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1676
1677
|
#if CS_MINIMIZE == 1
|
4d26a735
Pedro Roque
Increased recogni...
|
1678
|
cl_v_del_gt_m(&changed, &vs_prop_[CL_VAR_ID_TO_OPT], convert_int (val_to_opt_aux) TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1679
1680
1681
1682
1683
|
#else
cl_v_del_lt_m(&changed, &vs_prop_[CL_VAR_ID_TO_OPT], convert_int(val_to_opt_aux) TTL_CTR_V);
#endif
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1684
1685
|
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 7)
|
0c8ce2b0
Pedro Roque
missing files
|
1686
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1687
|
cl_d_copy_gm(&hist[i], &vs_prop_[i].prop_d TTL_CTR_V);
|
0c8ce2b0
Pedro Roque
missing files
|
1688
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1689
1690
1691
|
vs_prop_[i].to_prop = 0;
#if CL_USE_BOOLEAN_VS
vs_prop_[i].boolean = vs[i].boolean;
|
0c8ce2b0
Pedro Roque
missing files
|
1692
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1693
1694
1695
1696
|
cl_v_calc_min_val_m(&vs_prop_[i] TTL_CTR_V);
cl_v_calc_max_val_m(&vs_prop_[i] TTL_CTR_V);
cl_v_cnt_vals_m(&vs_prop_[i] TTL_CTR_V);
}
|
0c8ce2b0
Pedro Roque
missing files
|
1697
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1698
1699
1700
1701
|
*prop_v_id = 0;
// needed to test expanded values
for (i = 0; i < depth; i++) {
CHECK_TTL(ttl_ctr, 8)
|
0c8ce2b0
Pedro Roque
missing files
|
1702
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1703
1704
1705
|
if (vs[i].to_label || vs[i].expanded) {
*prop_v_id = i;
i = depth;
|
0c8ce2b0
Pedro Roque
missing files
|
1706
|
}
|
4d26a735
Pedro Roque
Increased recogni...
|
1707
|
}
|
0c8ce2b0
Pedro Roque
missing files
|
1708
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1709
1710
1711
|
hist_labeleds_id[0] = convert_int (*prop_v_id);
hist_labeleds_n_vals[0] = 0;
(*hist_tree_level) = 1; // reset hist current level
|
0c8ce2b0
Pedro Roque
missing files
|
1712
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1713
1714
1715
|
// reset the indexes of the array that contains the IDs of the variables to propagate
vs_id_to_prop_[0] = 2;
vs_id_to_prop_[1] = 2;
|
0c8ce2b0
Pedro Roque
missing files
|
1716
|
|
4d26a735
Pedro Roque
Increased recogni...
|
1717
|
// if optimizing set variable to optimize for being propagated to update its domain
|
0c8ce2b0
Pedro Roque
missing files
|
1718
|
#if CL_WORK == CL_OPT
|
4d26a735
Pedro Roque
Increased recogni...
|
1719
1720
|
v_add_to_prop(vs_id_to_prop_, vs_prop_, convert_int (*prop_v_id));
*prop_v_id = CL_VAR_ID_TO_OPT;
|
0c8ce2b0
Pedro Roque
missing files
|
1721
1722
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1723
1724
1725
|
// Mark variables already expanded to be propagated to check if this sub-search space is already inconsistent
for (i = 0; i < CL_N_VS; i++) {
CHECK_TTL(ttl_ctr, 9)
|
0c8ce2b0
Pedro Roque
missing files
|
1726
1727
|
#if CL_FILTERING == 0
|
4d26a735
Pedro Roque
Increased recogni...
|
1728
|
if (i != *prop_v_id && (vs[i].expanded || (i < depth && exp_values[i] > 0))) {
|
0c8ce2b0
Pedro Roque
missing files
|
1729
|
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
1730
|
v_add_to_prop(vs_id_to_prop_, vs_prop_, convert_int (i));
|
0c8ce2b0
Pedro Roque
missing files
|
1731
1732
|
#if CL_FILTERING == 0
|
4d26a735
Pedro Roque
Increased recogni...
|
1733
|
}
|
0c8ce2b0
Pedro Roque
missing files
|
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
|
#endif
}
#if CL_CHECK_ERRORS
int l;
for (l = 0; l < CL_N_VS; l++) {
bool empty;
#if CL_N_WORDS == 1
empty = (vs_prop_[l].prop_d == 0);
#else
int m;
empty = 1;
for (m = 0; m < CL_N_WORDS; m++) {
CHECK_TTL(ttl_ctr, 115)
|
4d26a735
Pedro Roque
Increased recogni...
|
1749
1750
1751
1752
|
if (vs_prop_[l].prop_d[m] != 0) {
empty = 0;
m = CL_N_WORDS;
}
|
0c8ce2b0
Pedro Roque
missing files
|
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
|
}
#endif
if (empty || vs_prop_[l].n_vals > vs_prop_[l].max + 1 || vs_prop_[l].min > vs_prop_[l].max || vs_prop_[l].max > CL_D_MAX) {
printf((__constant char *)"\n###error 74\n");
printf((__constant char *)"v_id=%d, empty=%d, vs_prop_[l].n_vals=%u, vs_prop_[l].min=%u, vs_prop_[l].max=%u\n",
l, empty, vs_prop_[l].n_vals, vs_prop_[l].min, vs_prop_[l].max);
}
}
#endif
}
}
|