94b2b13d
Pedro Roque
PHACT source
|
1
2
3
4
|
/*
* cl_intervals_src.ch
*
* Created on: 15/02/2017
|
4d26a735
Pedro Roque
Increased recogni...
|
5
|
* Author: pedro
|
94b2b13d
Pedro Roque
PHACT source
|
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
|
*/
#if CL_D_TYPE == CL_INTERVAL
#ifndef __OPENCL_VERSION__
#include <stdbool.h>
#include <stdio.h>
#include <sys/types.h>
#include "../utils/cl_syntax.h"
#endif
#include "../domains.h"
#include "cl_aux_functions.h"
#include "cl_intervals.h"
#include "cl_variables.h"
#include "../config.h"
#include "cl_ttl.h"
#ifndef M1
#define M1 NOTHING
#endif
#ifndef M2
#define M2 NOTHING
#endif
#ifndef M3
#define M3 NOTHING
#endif
#ifndef M4
#define M4 NOTHING
#endif
#ifndef FUNC_NAME
# define CONCAT(name, suffix) name ## suffix
# define FUNC_NAME(name, suffix) CONCAT(name, suffix)
# define FUNC(name) FUNC_NAME(name, SUFFIX)
#endif
#if SUFFIX == _pg || SUFFIX == _gp || SUFFIX == _mg || SUFFIX == _n
/*
* Create a new domain with the received values
* d - new domain to create
* d_vals - vector with all the values allowed for the new variable
* n_vals - number of domain values in values vector
* */
void FUNC(cl_d_new_vals)(M1 interval* d, M2 int* d_vals, int n_vals TTL_CTR) {
int min, max, i;
min = CL_D_MAX;
max = 0;
for (i = 0; i < n_vals; i++) {
if (d_vals[i] > max) {
max = d_vals[i];
}
if (d_vals[i] < min) {
min = d_vals[i];
}
}
(*d).s0 = min;
(*d).s1 = max;
}
#endif
#if SUFFIX == _m || SUFFIX == _n || SUFFIX == _g
/*
* Check if domain is empty
* empty - will be 1 if domain is empty or 0 if not
* d - domain to check if empty
*/
void FUNC(cl_d_is_empty)(bool* empty, M1 interval* d TTL_CTR) {
*empty = 0;
if ((*d).s0 > (*d).s1) {
*empty = 1;
}
}
#endif
#if SUFFIX == _g
/*
* calculate the minimum of the domain. (Assume domain is not empty)
* min - the minimum value will be placed here
* d - domain to calculate minimum value
*/
void FUNC(cl_d_calc_min_val)(int* min, M1 interval* d TTL_CTR) {
*min = (*d).s0;
}
#endif
#if SUFFIX == _m || SUFFIX == _pm || SUFFIX == _mp || SUFFIX == _n
/*
* Calculate the minimum of the variable domain. (Assume variable is not empty)
* v - variable to calculate minimum value
*/
// Host configuration
void FUNC(cl_v_calc_min_val)(M1 cl_var_p_interval* v TTL_CTR) {
}
#endif
#if SUFFIX == _n
/*
* calculate the maximum of the domain. (Assume domain is not empty)
* max - the maximum value will be placed here
* d - domain to calculate maximum value
*/
void FUNC(cl_d_calc_max_val)(int* max, M1 interval* d TTL_CTR) {
*max = (*d).s1;
}
#endif
#if SUFFIX == _m || SUFFIX == _pm || SUFFIX == _mp || SUFFIX == _n
/*
* Calculate the maximum value of the variable domain. (Assume variable is not empty)
* v - variable to calculate and return the maximum value
*/
void FUNC(cl_v_calc_max_val)(M1 cl_var_p_interval* v TTL_CTR) {
}
#endif
#if SUFFIX == _n || SUFFIX == _m
/*
* Count the number of values in the variable domain
* (uses popcount if OpenCL version is 1.2 or newer)
* d - domain to count values
* n_vals - where to place the calculated number of values
*/
void FUNC(cl_d_cnt_vals)(M1 interval* d, int* n_vals TTL_CTR) {
}
#endif
#if SUFFIX == _m || SUFFIX == _pm || SUFFIX == _mp || SUFFIX == _n
/*
* Count the the number of values in the variable domain
|
94b2b13d
Pedro Roque
PHACT source
|
145
146
147
148
149
150
|
* n_vals - where to place the calculated number of values
* v - variable to count values
*/
void FUNC(cl_v_cnt_vals)(M1 cl_var_p_interval* v TTL_CTR) {
}
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
151
|
|
94b2b13d
Pedro Roque
PHACT source
|
152
153
154
155
156
157
158
159
160
161
162
163
|
#if SUFFIX == _m3 || SUFFIX == _n || SUFFIX == _bd || SUFFIX == _vsg
/*
* Place the nth values of the domain in vals array. (Assume domain is not empty)
* d - domain to get nth value from
* first_nth - first nth value to get from the domain (from 1 to max value)
* last_nth - last nth value to get from the domain (from 1 to max value)
* vals - array where to save values
*/
void FUNC(cl_d_get_nth_vals)(M3 interval* d, int first_nth, int last_nth, M4 int* vals TTL_CTR) {
int i;
for (i = 0; i < last_nth - first_nth + 1; i++) {
|
4d26a735
Pedro Roque
Increased recogni...
|
164
|
CHECK_TTL(ttl_ctr, 102)
|
94b2b13d
Pedro Roque
PHACT source
|
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
|
vals[i] = (*d).s0 + first_nth - 1 + i;
}
}
#endif
#if SUFFIX == _pm
/*
* Check if domains are equal
* equal - will be 1 if domains are equal or 0 if not
* d1 - domain 1
* d2 - domain 2
*/
void FUNC(cl_ds_equal)(bool* equal, M1 interval* d1, M2 interval* d2 TTL_CTR) {
if ((*d1).s0 == (*d2).s0 && (*d1).s1 == (*d2).s1) {
*equal = 1;
}
*equal = 0;
}
#endif
#if SUFFIX == _mg || SUFFIX == _g || SUFFIX == _gm || SUFFIX == _mbd || SUFFIX == _mvs
/*
* Copy d_src domain to d_dest domain
* d_dest - where to copy the values
* d_src - domain to copy
*/
void FUNC(cl_d_copy)(M1 interval* d_dest, M2 interval* d_src TTL_CTR) {
(*d_dest).s0 = (*d_src).s0;
(*d_dest).s1 = (*d_src).s1;
}
#endif
#if SUFFIX == _pm || SUFFIX == _m
/*
* Copy v_src variable to v_dest variable (including to_prop and to_label)
* v_dest - where to copy the values
* v_src - variable to copy
*/
void FUNC(cl_v_copy)(M1 cl_var_p_interval* v_dest, M2 cl_var_p_interval* v_src TTL_CTR) {
v_dest->prop_d.s0 = v_src->prop_d.s0;
v_dest->prop_d.s1 = v_src->prop_d.s1;
v_dest->to_prop = v_src->to_prop;
}
#endif
#if SUFFIX == _m
/*
* Check if the variable contains the value
* contains - will be 1 if domain contains the value or 0 if not
* v - variable to check if contains value
* val - value to check if contained
*/
void FUNC(cl_v_contains_val)(bool* contains, M1 cl_var_p_interval* v, int val) {
*contains = 0;
if ((v->prop_d).s0 <= val && (v->prop_d).s1 >= val) {
*contains = 1;
}
}
#endif
#if SUFFIX == _n || SUFFIX == _g
/*
* Set domain to empty
* d - domain to clear
*/
void FUNC(cl_d_clear)(M1 interval* d TTL_CTR) {
(*d).s0 = 1;
(*d).s1 = 0;
}
#endif
#if SUFFIX == _m || SUFFIX == _n
/*
* set the variable as empty
* v - variable to clear
*/
void FUNC(cl_v_clear)(M1 cl_var_p_interval* v TTL_CTR) {
FUNC(cl_d_clear)(&v->prop_d TTL_CTR_V);
}
#endif
#if SUFFIX == _mp || SUFFIX == _pm
/*
* Do operation d1 = d1 & d2
* changed - will be 1 if domain was changed or 0 if not
* d1 - domain to save operation
* d2 - domain to do AND with
*/
void FUNC(cl_d_intersect_d)(bool* changed, M1 interval* d1, M2 interval* d2 TTL_CTR) {
*changed = 0;
if ((*d1).s0 > (*d2).s1 || (*d1).s1 < (*d2).s0) {
(*d1).s0 = 1;
(*d1).s1 = 0;
*changed = 1;
} else {
if ((*d2).s0 > (*d1).s0) {
(*d1).s0 = (*d2).s0;
*changed = 1;
}
if ((*d1).s1 > (*d2).s1) {
(*d1).s1 = (*d2).s1;
*changed = 1;
}
}
}
#endif
#if SUFFIX == _m || SUFFIX == _pm || SUFFIX == _mp
/*
* Do operation v1 = v1 & v2
* changed - will be 1 if domain was changed or 0 if not
* v1 - variable to save operation
* v2 - variable to do AND with
*/
void FUNC(cl_v_intersect_v)(bool* changed, M1 cl_var_p_interval* v1, M2 cl_var_p_interval* v2 TTL_CTR) {
*changed = 0;
if ((v1->prop_d).s0 > (v2->prop_d).s1 || (v1->prop_d).s1 < (v2->prop_d).s0) {
(v1->prop_d).s0 = 1;
(v1->prop_d).s1 = 0;
*changed = 1;
} else {
if ((v2->prop_d).s0 > (v1->prop_d).s0) {
(v1->prop_d).s0 = (v2->prop_d).s0;
*changed = 1;
}
if ((v1->prop_d).s1 > (v2->prop_d).s1) {
(v1->prop_d).s1 = (v2->prop_d).s1;
*changed = 1;
}
}
}
#endif
#if SUFFIX == _pm
/*
* Do operation d1 = d1 | d2
* changed - will be 1 if domain was changed or 0 if not
* d1 - domain to save operation
* d2 - domain to do OR with
*/
void FUNC(cl_d_union_d)(bool* changed, M1 interval* d1, M2 interval* d2 TTL_CTR) {
*changed = 0;
if ((*d1).s0 > (*d2).s0) {
(*d1).s0 = (*d2).s0;
*changed = 1;
}
if ((*d1).s1 < (*d2).s1) {
(*d1).s1 = (*d2).s1;
*changed = 1;
}
}
#endif
#if SUFFIX == _pm
/*
* Do operation v1 = v1 | v2
* changed - will be 1 if domain was changed or 0 if not
* v1 - variable to save operation
* v2 - variable to do or with
*/
void FUNC(cl_v_union_v)(bool* changed, M1 cl_var_p_interval* v1, M2 cl_var_p_interval* v2 TTL_CTR) {
*changed = 0;
if ((v1->prop_d).s0 > (v2->prop_d).s0) {
(v1->prop_d).s0 = (v2->prop_d).s0;
*changed = 1;
}
if ((v1->prop_d).s1 < (v2->prop_d).s1) {
(v1->prop_d).s1 = (v2->prop_d).s1;
*changed = 1;
}
}
#endif
#if SUFFIX == _g
/*
* remove value from domain
* d - domain to remove value from
* val - value to remove from domain
*/
void FUNC(cl_d_del_val_no_tests)(M1 interval* d, int val) {
if ((*d).s0 == val) {
((*d).s0)++;
}
if ((*d).s1 == val) {
((*d).s1)--;
if ((*d).s1 == 65535) {
(*d).s1 = 0;
(*d).s0 = 1;
}
}
}
#endif
#if SUFFIX == _g
/*
* remove value from domain
* changed - will be 1 if domain was changed or 0 if not
* d - domain to remove value from
* val - value to remove from domain
*/
void FUNC(cl_d_del_val)(bool* changed, M1 interval* d, int val TTL_CTR) {
*changed = 0;
if (!(val < (*d).s0 || val > (*d).s1)) {
if ((*d).s0 == val) {
((*d).s0)++;
*changed = 1;
}
if ((*d).s1 == val) {
((*d).s1)--;
*changed = 1;
if ((*d).s1 == 65535) {
(*d).s1 = 0;
(*d).s0 = 1;
}
}
}
}
#endif
#if SUFFIX == _m
/*
* remove value from reification (boolean) variable when it has always 2 values (0 and 1)
* v - reification variable with values 0 and 1 to remove value from
* val - value to remove from variable
*/
void FUNC(cl_v_bool_del_val)(M1 cl_var_p_interval* v, int val TTL_CTR) {
if (val == 0) {
v->prop_d.s1 = 1;
v->prop_d.s0 = 1;
} else {
v->prop_d.s1 = 0;
v->prop_d.s0 = 0;
}
}
#endif
#if SUFFIX == _m || SUFFIX == _n
/*
* remove value from variable
* changed - will be 1 if domain was changed or 0 if not
* v - variable to remove value from
* val - value to remove from variable
*/
void FUNC(cl_v_del_val)(bool* changed, M1 cl_var_p_interval* v, int val TTL_CTR) {
FUNC(cl_d_del_val)(changed, &v->prop_d, val TTL_CTR_V);
}
#endif
#if SUFFIX == _g
/*
* Remove from the domain all the values less than val
* changed - will be 1 if domain was changed or 0 if not
* d - domain to remove values from
* val - minimum value to keep at domain
*/
void FUNC(cl_d_del_lt)(bool* changed, M1 interval* d, int val TTL_CTR) {
*changed = 0;
if (val > (*d).s1) {
(*d).s0 = 1;
(*d).s1 = 0;
*changed = 1;
} else if (val > (*d).s0) {
(*d).s0 = val;
*changed = 1;
}
}
#endif
#if SUFFIX == _m || SUFFIX == _n
/*
* Remove from the variable all the values less than val
* changed - will be 1 if domain was changed or 0 if not
* v - variable to remove values from
* val - minimum value to keep at domain
*/
void FUNC(cl_v_del_lt)(bool* changed, M1 cl_var_p_interval* v, int val TTL_CTR) {
FUNC(cl_d_del_lt)(changed, &v->prop_d, val TTL_CTR_V);
}
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
|
#if SUFFIX == _g
/*
* Remove from the domain all the values less or equal to val. Doesn't test if domain changes neither if it has values for deletion
* changed - will be 1 if domain was changed or 0 if not
* d - domain to remove values from
* val - minimum value to remove from domain
*/
void FUNC(cl_d_del_le_no_tests)(M1 interval* d_to_chg, int val TTL_CTR) {
(*d_to_chg).s0 = val + 1;
}
#endif
#if SUFFIX == _g
/*
* Remove from the domain all the values less or equal to val
* changed - will be 1 if domain was changed or 0 if not
|
94b2b13d
Pedro Roque
PHACT source
|
482
483
484
|
* d - domain to remove values from
* val - minimum value to remove from domain
*/
|
94b2b13d
Pedro Roque
PHACT source
|
485
486
487
|
void FUNC(cl_d_del_le)(bool* changed, M1 interval* d_to_chg, int val TTL_CTR) {
*changed = 0;
|
4d26a735
Pedro Roque
Increased recogni...
|
488
489
|
if (val >= (*d_to_chg).s1) {
(*d_to_chg).s0 = 1;
|
94b2b13d
Pedro Roque
PHACT source
|
490
491
492
493
494
495
496
497
498
499
|
(*d_to_chg).s1 = 0;
*changed = 1;
} else if (val >= (*d_to_chg).s0) {
(*d_to_chg).s0 = val + 1;
*changed = 1;
}
}
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
500
|
#if SUFFIX == _m
|
94b2b13d
Pedro Roque
PHACT source
|
501
502
|
/*
* Remove from the variable all the values less or equal to val
|
4d26a735
Pedro Roque
Increased recogni...
|
503
504
505
|
* changed - will be 1 if domain was changed or 0 if not
* v - variable to remove values from
* val - minimum value to remove from domain
|
94b2b13d
Pedro Roque
PHACT source
|
506
507
|
*/
void FUNC(cl_v_del_le)(bool* changed, M1 cl_var_p_interval* v, int val TTL_CTR) {
|
4d26a735
Pedro Roque
Increased recogni...
|
508
509
|
FUNC(cl_d_del_le)(changed, &v->prop_d, val TTL_CTR_V);
}
|
94b2b13d
Pedro Roque
PHACT source
|
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
|
#endif
#if SUFFIX == _g
/*
* Remove from the domain all the values greater than val
* changed - will be 1 if domain was changed or 0 if not
* d - domain to remove values from
* val - maximum value to keep at domain
*/
void FUNC(cl_d_del_gt)(bool* changed, M1 interval* d_to_chg, int val TTL_CTR) {
*changed = 0;
if (val < (*d_to_chg).s0) {
(*d_to_chg).s0 = 1;
(*d_to_chg).s1 = 0;
*changed = 1;
} else if (val < (*d_to_chg).s1) {
(*d_to_chg).s1 = val;
*changed = 1;
}
}
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
534
|
|
94b2b13d
Pedro Roque
PHACT source
|
535
536
|
#if SUFFIX == _m
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
537
538
539
|
* Remove from the variable all the values greater than val. Doesn't test if domain changes neither if it has values for deletion
* changed - will be 1 if domain was changed or 0 if not
* v - variable to remove values from
|
94b2b13d
Pedro Roque
PHACT source
|
540
541
|
* val - maximum value to keep at domain
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
542
543
|
void FUNC(cl_v_del_gt_no_tests)(M1 cl_var_p_interval* v, int val TTL_CTR) {
(v->prop_d).s1 = val;
|
94b2b13d
Pedro Roque
PHACT source
|
544
545
546
547
548
549
|
}
#endif
#if SUFFIX == _m || SUFFIX == _n
/*
* Remove from the variable all the values greater than val
|
4d26a735
Pedro Roque
Increased recogni...
|
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
|
* changed - will be 1 if domain was changed or 0 if not
* v - variable to remove values from
* val - maximum value to keep at domain
*/
void FUNC(cl_v_del_gt)(bool* changed, M1 cl_var_p_interval* v, int val TTL_CTR) {
FUNC(cl_d_del_gt)(changed, &v->prop_d, val TTL_CTR_V);
}
#endif
#if SUFFIX == _m
/*
* Remove from the variable all the values lesser than val
* changed - will be 1 if domain was changed or 0 if not
* v - variable to remove values from
* val - maximum value to remove from the domain
*/
void FUNC(cl_v_del_ge)(bool* changed, M1 cl_var_p_interval* v, int val TTL_CTR) {
FUNC(cl_v_del_gt)(changed, v, --val TTL_CTR_V);
|
94b2b13d
Pedro Roque
PHACT source
|
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
|
}
#endif
#if SUFFIX == _m || SUFFIX == _n
/*
* Clear all values from variable, except val if present
* changed - will be 1 if domain was changed or 0 if not
* v - variable to clear all values except val
* val - value to keep in variable if present
*/
void FUNC(cl_v_del_all_except_val)(bool* changed, M1 cl_var_p_interval* v, int val TTL_CTR) {
*changed = 0;
// do not contain val
if (val < (v->prop_d).s0 || val > (v->prop_d).s1) {
(v->prop_d).s0 = 1;
(v->prop_d).s1 = 0;
*changed = 1;
// contains only val
} else if ((v->prop_d).s0 == (v->prop_d).s1) {
*changed = 0;
// contains more than val
} else {
(v->prop_d).s0 = val;
(v->prop_d).s1 = val;
*changed = 1;
}
}
#endif
#undef FUNC
#undef FUNC_NAME
#undef CONCAT
#endif
|
4d26a735
Pedro Roque
Increased recogni...
|
|
|
94b2b13d
Pedro Roque
PHACT source
|
|
|
4d26a735
Pedro Roque
Increased recogni...
|
|
|
94b2b13d
Pedro Roque
PHACT source
|
|
|
4d26a735
Pedro Roque
Increased recogni...
|
|
|
94b2b13d
Pedro Roque
PHACT source
|
|
|