Blame view

src/variables.c 28.3 KB
94b2b13d   Pedro Roque   PHACT source
1
2
3
4
/*
 * vars.c
 *
 *  Created on: 23/08/2014
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
 */

#include "variables.h"

#include <stdio.h>
#include <stdlib.h>

#include "CL/cl_platform.h"
#include "bitmaps.h"
#include "intervals.h"
#include "config.h"
#include "kernels/cl_constraints.h"

/*
 * Create a new variable without constraints and with the received value on its domain and return its ID
 * val - value to set on the domain
 */
unsigned int v_new_val(unsigned int val) {
	return v_new_vals(&val, 1, false);
}

/*
 * Create a new variable without constraints and with the received values on its domain and return its ID
 * vals - vector with all the domain values
 * n_vals - Number of values in the vals vector
 * to_label - true if this variable should be labeled
 */
4d26a735   Pedro Roque   Increased recogni...
33
unsigned int v_new_vals(unsigned int* vals, unsigned int n_vals, bool to_label) {
94b2b13d   Pedro Roque   PHACT source
34
35
36

	// avoid creating more than one variable with the same and only value on the domain
	if (n_vals == 1 && CONST_VS_ID[*vals] != -1) {
4d26a735   Pedro Roque   Increased recogni...
37
		return (unsigned int)CONST_VS_ID[*vals];
94b2b13d   Pedro Roque   PHACT source
38
39
40

	} else {
		if (n_vals == 1) {
4d26a735   Pedro Roque   Increased recogni...
41
			CONST_VS_ID[vals[0]] = (int)V_ID_CNTR;
94b2b13d   Pedro Roque   PHACT source
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
		}
		unsigned int i, j;

		// if more variables are needed, allocate a new vector and updates the constraints pointers
		if (V_ID_CNTR == N_VS) {
			VS_AUX = (var*) malloc(N_VS * 2 * (sizeof(var)));

			vs_copy(VS_AUX, VS, N_VS);

			for (i = 0; i < C_ID_CNTR; i++) {
				for (j = 0; j < CS[i].n_c_vs; j++) {
					CS[i].c_vs[j] = &VS_AUX[CS[i].c_vs[j]->v_id];
				}
			}

			free(VS);
			VS = VS_AUX;

			N_VS *= 2;

			if (WORK == OPT) {
				free(VS_LOCK);
				free(VS_LOCK_BEST);
				VS_LOCK = (var*) malloc(N_VS * (sizeof(var)));
				VS_LOCK_BEST = (var*) malloc(N_VS * (sizeof(var)));
			}
		}

		b_new_vals(&VS[V_ID_CNTR].domain_b, vals, n_vals);
4d26a735   Pedro Roque   Increased recogni...
71
72
73
74
75
		VS[V_ID_CNTR].min = (unsigned short)b_get_min_val(&VS[V_ID_CNTR].domain_b);
		VS[V_ID_CNTR].max = (unsigned short)b_get_max_val(&VS[V_ID_CNTR].domain_b);
		VS[V_ID_CNTR].n_vals = (unsigned short)n_vals;
		VS[V_ID_CNTR].v_id = (unsigned short)V_ID_CNTR;
		VS[V_ID_CNTR].v_id_print = (unsigned short)V_ID_CNTR;
94b2b13d   Pedro Roque   PHACT source
76
77
78
79
		VS[V_ID_CNTR].cs = NULL;
		VS[V_ID_CNTR].n_cs = 0;
		VS[V_ID_CNTR].to_prop = false;

4d26a735   Pedro Roque   Increased recogni...
80
81
82
83
84
		if (VS[V_ID_CNTR].min == VS[V_ID_CNTR].max) {
			VS[V_ID_CNTR].to_label = false;
		} else {
			VS[V_ID_CNTR].to_label = to_label;
		}
94b2b13d   Pedro Roque   PHACT source
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

#if USE_BOOLEAN_VS
		if (VS[V_ID_CNTR].max <= 1) {
			VS[V_ID_CNTR].boolean = true;
			BOOLEAN_VS = true;
		} else {
			VS[V_ID_CNTR].boolean = false;
		}
#else
		VS[V_ID_CNTR].boolean = false;
		BOOLEAN_VS = false;
#endif

		VS[V_ID_CNTR].reif = false;

		if (VS[V_ID_CNTR].n_vals != VS[V_ID_CNTR].max - VS[V_ID_CNTR].min + 1) {
			CAN_USE_INTERVALS = false;
		}

		return V_ID_CNTR++;
	}
}

/*
 * Create a new variable without constraints and with all the values between min and max (inclusive) on its domain and return its ID
 * min - minimum value of the domain
 * max - maximum value of the domain
 * to_label - true if this variable should be labeled
 */
unsigned int v_new_range(unsigned int min, unsigned int max, bool to_label) {

	// avoid creating more than one variable with the same and only value on the domain
	if (min == max && CONST_VS_ID[min] != -1) {
		return (unsigned int)CONST_VS_ID[min];

	} else {
		if (min == max) {
			CONST_VS_ID[min] = (int)V_ID_CNTR;
4d26a735   Pedro Roque   Increased recogni...
123
		}
94b2b13d   Pedro Roque   PHACT source
124
125
126

		unsigned int i, j;

4d26a735   Pedro Roque   Increased recogni...
127
		// if more constraints are needed, allocate a new vector and updates the variables pointers
94b2b13d   Pedro Roque   PHACT source
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
		if (V_ID_CNTR == N_VS) {
			VS_AUX = (var*) malloc(N_VS * 2 * (sizeof(var)));

			vs_copy(VS_AUX, VS, N_VS);

			for (i = 0; i < C_ID_CNTR; i++) {
				for (j = 0; j < CS[i].n_c_vs; j++) {
					CS[i].c_vs[j] = &VS_AUX[CS[i].c_vs[j]->v_id];
				}
			}

			free(VS);
			VS = VS_AUX;

			N_VS *= 2;

			if (WORK == OPT) {
				free(VS_LOCK);
				free(VS_LOCK_BEST);
				VS_LOCK = (var*) malloc(N_VS * (sizeof(var)));
				VS_LOCK_BEST = (var*) malloc(N_VS * (sizeof(var)));
			}
		}

		b_new_range(&VS[V_ID_CNTR].domain_b, min, max);
		VS[V_ID_CNTR].min = (unsigned short)min;
		VS[V_ID_CNTR].max = (unsigned short)max;
		VS[V_ID_CNTR].n_vals = (unsigned short)(max - min + 1);
		VS[V_ID_CNTR].v_id = (unsigned short)V_ID_CNTR;
		VS[V_ID_CNTR].v_id_print = (unsigned short)V_ID_CNTR;
4d26a735   Pedro Roque   Increased recogni...
158
159
160
161
162
		VS[V_ID_CNTR].cs = NULL;
		VS[V_ID_CNTR].n_cs = 0;
		VS[V_ID_CNTR].to_prop = false;

		if (VS[V_ID_CNTR].min == VS[V_ID_CNTR].max) {
94b2b13d   Pedro Roque   PHACT source
163
164
165
166
			VS[V_ID_CNTR].to_label = false;
		} else {
			VS[V_ID_CNTR].to_label = to_label;
		}
4d26a735   Pedro Roque   Increased recogni...
167
168
169
170
171

#if USE_BOOLEAN_VS
		if (VS[V_ID_CNTR].max <= 1) {
			VS[V_ID_CNTR].boolean = true;
			BOOLEAN_VS = true;
94b2b13d   Pedro Roque   PHACT source
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
		} else {
			VS[V_ID_CNTR].boolean = false;
		}
#else
		VS[V_ID_CNTR].boolean = false;
		BOOLEAN_VS = false;
#endif

		VS[V_ID_CNTR].reif = false;

		return V_ID_CNTR++;
	}
}

/*
 * Return true if variable v contains val and false if not.
 * v - variable to check if contains val
 * val - value to check if contained (from 0 to D_MAX)
 */
bool v_contains_val(var* v, unsigned int val) {
	return b_contains_val(&v->domain_b, val);
}

/*
 * Copy values from variable v_src to variable v_dest.
 * v_dest - variable to copy values to
 * v_src - variable to copy values from
 * n_vs - number of variables to copy
 */
4d26a735   Pedro Roque   Increased recogni...
201
void vs_copy(var* v_dest, var* v_src, unsigned int n_vs) {
94b2b13d   Pedro Roque   PHACT source
202
203
204
205
206
207
208
209
210
	unsigned int i;

	for (i = 0; i < n_vs; i++) {
		v_dest[i].boolean = v_src[i].boolean;
		v_dest[i].expanded = v_src[i].expanded;
		v_dest[i].max = v_src[i].max;
		v_dest[i].min = v_src[i].min;
		v_dest[i].n_cs = v_src[i].n_cs;
		v_dest[i].n_vals = v_src[i].n_vals;
4d26a735   Pedro Roque   Increased recogni...
211
		v_dest[i].reif = v_src[i].reif;
94b2b13d   Pedro Roque   PHACT source
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
		v_dest[i].to_label = v_src[i].to_label;
		v_dest[i].to_prop = v_src[i].to_prop;
		v_dest[i].v_id = v_src[i].v_id;
		v_dest[i].v_id_print = v_src[i].v_id_print;

		b_copy(&v_dest[i].domain_b, &v_src[i].domain_b);
		i_copy(&v_dest[i].domain_i, &v_src[i].domain_i);

		v_dest[i].cs = v_src[i].cs;
	}
}

/*
 * set the variable as empty (n_vals == 0)
 * v - variable to clear
4d26a735   Pedro Roque   Increased recogni...
227
228
229
230
231
 */
void v_clear(var* v) {
	v->n_vals = 0;
}

94b2b13d   Pedro Roque   PHACT source
232
233
234
235
236
237
238
239
240
241
242
/*
 * Clear all variables memory
 */
void vs_clear() {

	unsigned int i;

	for (i = 0; i < N_VS; i++) {
		free(VS[i].cs);
	}
}
4d26a735   Pedro Roque   Increased recogni...
243

94b2b13d   Pedro Roque   PHACT source
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
 * Do operation v1 = v1 & v2
 * Return true if variable changed and false if not
 * v1 - variable to save operation
 * v2 - variable to do AND with
 */
bool v_intersect_v(var *v1, var *v2) {
	if (b_intersect_b(&v1->domain_b, &v2->domain_b)) {
		v1->n_vals = (unsigned short)b_cnt_vals(&v1->domain_b);
		v1->min = (unsigned short)b_get_min_val(&v1->domain_b);
		v1->max = (unsigned short)b_get_max_val(&v1->domain_b);

		return true;
	}
	return false;
}

/*
 * Do operation v1 = v1 | v2
 * Return true if variable changed and false if not
 * v1 - variable to save operation
 * v2 - variable to do AND with
 */
4d26a735   Pedro Roque   Increased recogni...
267
268
269
bool v_union_v(var *v1, var *v2) {
	if (b_union_b(&v1->domain_b, &v2->domain_b)) {
		v1->n_vals = (unsigned short)b_cnt_vals(&v1->domain_b);
94b2b13d   Pedro Roque   PHACT source
270
271
272
273
274
275
276
277
278
279
280
281
282
283
		v1->min = (unsigned short)b_get_min_val(&v1->domain_b);
		v1->max = (unsigned short)b_get_max_val(&v1->domain_b);

		return true;
	}
	return false;
}

/*
 * remove value from variable domain
 * Return true if domain changed and false if not
 * v - variable to remove value from
 * val - value to remove from variable
 */
4d26a735   Pedro Roque   Increased recogni...
284
285
286
bool v_del_val(var* v, int val) {
	if (val < v->min || val > v->max) {
		return false;
94b2b13d   Pedro Roque   PHACT source
287
288
289
290
291
292
293
294
295
296
297
298
	}

	if (b_del_val(&v->domain_b, (unsigned int)val)) {
		v->n_vals--;
		v->min = (unsigned short)b_get_min_val(&v->domain_b);
		v->max = (unsigned short)b_get_max_val(&v->domain_b);

		return true;
	}
	return false;
}

4d26a735   Pedro Roque   Increased recogni...
299
/*
94b2b13d   Pedro Roque   PHACT source
300
301
302
303
 * Remove the minimum value of the variable singl_v domain from the domain of the v variable
 * Return true if domain changed and false if not
 * v_to_chg - variable to remove value from
 * singl_v - variable with the minimum value to remove from the domain of variable v
4d26a735   Pedro Roque   Increased recogni...
304
 * */
94b2b13d   Pedro Roque   PHACT source
305
bool v_del_singl_val(var *v_to_chg, var *singl_v) {
4d26a735   Pedro Roque   Increased recogni...
306
307

	if (singl_v->min < v_to_chg->min || singl_v->min > singl_v->max) {
94b2b13d   Pedro Roque   PHACT source
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
		return false;
	}
	if (b_del_singl_val(&v_to_chg->domain_b, &singl_v->domain_b)) {
		v_to_chg->n_vals--;
		v_to_chg->min = (unsigned short)b_get_min_val(&v_to_chg->domain_b);
		v_to_chg->max = (unsigned short)b_get_max_val(&v_to_chg->domain_b);

		return true;
	}
	return false;
}

/*
 * Remove values lower than val from v domain
 * Return true if domain changed and false if not
 * v - variable with domain to remove values from
 * val - minimum value to keep at domain
 */
bool v_del_lt(var *v, int val) {
4d26a735   Pedro Roque   Increased recogni...
327
328
	if (val > v->max) {
		v_clear(v);
94b2b13d   Pedro Roque   PHACT source
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
		return true;
	}
	if (val > v->min) {
		if (b_del_lt(&v->domain_b, (unsigned int)val)) {
			v->n_vals = (unsigned short)b_cnt_vals(&v->domain_b);
			v->min = (unsigned short)b_get_min_val(&v->domain_b);
			v->max = (unsigned short)b_get_max_val(&v->domain_b);

			return true;

		}
	}
	return false;
}

/*
 * Remove values lower or equal to val from v domain
 * Return true if domain changed and false if not
4d26a735   Pedro Roque   Increased recogni...
347
348
349
350
 * v - variable with domain to remove values from
 * val - bottom value to remove from domain
 */
bool v_del_le(var *v, int val) {
94b2b13d   Pedro Roque   PHACT source
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
	return v_del_lt(v, ++val);
}

/*
 * Remove values greater than val from v domain
 * Return true if domain changed and false if not
 * v - variable with domain to remove values from
 * val - maximum value to keep at domain
 */
bool v_del_gt(var *v, int val) {
	if (val < v->min) {
		v_clear(v);
		return true;
	}
	if (val < v->max) {
		if (b_del_gt(&v->domain_b, (unsigned int)val)) {
			v->n_vals = (unsigned short)b_cnt_vals(&v->domain_b);
			v->min = (unsigned short)b_get_min_val(&v->domain_b);
			v->max = (unsigned short)b_get_max_val(&v->domain_b);

			return true;
		}
	}
	return false;
}

/*
 * Remove values greater or equal to val from v domain
 * Return true if domain changed and false if not
 * v - variable with domain to remove values from
4d26a735   Pedro Roque   Increased recogni...
381
382
383
384
 * val - top value to remove from the domain
 */
bool v_del_ge(var *v, int val) {
	return v_del_gt(v, --val);
94b2b13d   Pedro Roque   PHACT source
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
}

/*
 * Clear all values from the domain of the variable v, except val if present
 * Return true if domain changed and false if not
 * v - variable to clear all values except val
 * val - value to keep on variable domain if present
 */
bool v_del_all_except_val(var *v, int val) {
	if (val < v->min || val > v->max) {
		v_clear(v);
		return true;
	}
	if (b_del_all_except_val(&v->domain_b, (unsigned int)val)) {
		if (!b_is_empty(&v->domain_b)) {
			v->n_vals = 1;
			v->min = (unsigned short)val;
			v->max = (unsigned short)val;
		} else {
			v->n_vals = 0;
		}
		return true;
	}
	return false;
}

/*
 * Copy bitmaps with H_BITS size from host_vs to dev_bs with size H_BITS
4d26a735   Pedro Roque   Increased recogni...
413
 * host_vs - variables where to copy bitmaps from
94b2b13d   Pedro Roque   PHACT source
414
415
 * dev_bs - bitmaps to copy to
 * n_bs - number of bitmaps to copy
4d26a735   Pedro Roque   Increased recogni...
416
417
 */
void vs_copy_host_to_dev(void** dev_bs, var* host_vs, unsigned int n_bs) {
94b2b13d   Pedro Roque   PHACT source
418
419
420
421
422
423
424
425
426
427
428
429
430
431
	unsigned int i;

	if (CL_N_WORDS_ == 1) {
		if (CL_WORD_ == 32) {
			unsigned int* dev_domains = (unsigned int*)dev_bs;
#if H_N_WORDS == 1	// host bitmaps are one unsigned int or cl_ulong and device bitmaps are one unsigned int
			for (i = 0; i < n_bs; i++) {
				dev_domains[i] = (unsigned int)host_vs[i].domain_b;
			}
#else	// host bitmaps are an array of unsigned int or cl_ulong and device bitmaps are one unsigned int
			for (i = 0; i < n_bs; i++) {
				dev_domains[i] = (unsigned int)host_vs[i].domain_b[0];
			}
#endif
4d26a735   Pedro Roque   Increased recogni...
432
		} else {
94b2b13d   Pedro Roque   PHACT source
433
434
435
436
			cl_ulong* dev_domains = (cl_ulong*)dev_bs;
#if H_N_WORDS == 1	// host bitmaps are one cl_ulong and device bitmaps are one cl_ulong
			for (i = 0; i < n_bs; i++) {
				dev_domains[i] = host_vs[i].domain_b;
4d26a735   Pedro Roque   Increased recogni...
437
			}
94b2b13d   Pedro Roque   PHACT source
438
439
440
441
442
443
#else
			if (H_WORD == 32) {	// host bitmaps are an array of unsigned int and device bitmaps are one cl_ulong
				for (i = 0; i < n_bs; i++) {
					dev_domains[i] = ((cl_ulong)host_vs[i].domain_b[1] << 32) | ((cl_ulong)host_vs[i].domain_b[0]);
				}
			} else {	// host bitmaps are an array of cl_ulong and device bitmaps are one cl_ulong
4d26a735   Pedro Roque   Increased recogni...
444
				for (i = 0; i < n_bs; i++) {
94b2b13d   Pedro Roque   PHACT source
445
446
447
					dev_domains[i] = host_vs[i].domain_b[0];
				}
			}
4d26a735   Pedro Roque   Increased recogni...
448
#endif
94b2b13d   Pedro Roque   PHACT source
449
450
451
452
453
454
455
		}
	} else {
		if (CL_WORD_ == 32) {
#if H_N_WORDS == 1 && H_WORD == 64	// host bitmaps are one cl_ulong and device bitmaps are two unsigned int
			unsigned int* dev_domains = (unsigned int*)dev_bs;
			for (i = 0; i < n_bs; i++) {
				dev_domains[i * 2 + 1] = (unsigned int)(host_vs[i].domain_b >> 32);
4d26a735   Pedro Roque   Increased recogni...
456
				dev_domains[i * 2] = (unsigned int)(host_vs[i].domain_b);
94b2b13d   Pedro Roque   PHACT source
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
			}
#elif H_N_WORDS > 1 && H_WORD == 32	// host and device bitmaps are an array of unsigned int
			unsigned int* dev_domains = (unsigned int*)dev_bs;
			unsigned int j;
			for (i = 0; i < n_bs; i++) {
				for (j = 0; j < CL_N_WORDS_; j++) {
					dev_domains[i * CL_N_WORDS_ + j] = host_vs[i].domain_b[j];
				}
			}
#elif H_N_WORDS > 1 && H_WORD == 64	// host bitmaps are an array of cl_ulong and device bitmaps are an array of unsigned int
			unsigned int* dev_domains = (unsigned int*)dev_bs;
			unsigned int j;
			for (i = 0; i < n_bs; i++) {
				for (j = 0; j < CL_N_WORDS_ / 2; j++) {
					dev_domains[i * CL_N_WORDS_ + j * 2 + 1] = (unsigned int)(host_vs[i].domain_b[j] >> 32);
					dev_domains[i * CL_N_WORDS_ + j * 2] =  (unsigned int)(host_vs[i].domain_b[j]);
				}
			}
			// if device bitmaps are an odd array of unsigned int add the last one
			if (CL_N_WORDS_ % 2 != 0) {
				for (i = 0; i < n_bs; i++) {
					dev_domains[i * CL_N_WORDS_ + j] = (unsigned int)(host_vs[i].domain_b[j]);
				}
			}
#endif
4d26a735   Pedro Roque   Increased recogni...
482
		} else {
94b2b13d   Pedro Roque   PHACT source
483
484
485
#if H_N_WORDS > 1
			unsigned int j;
			cl_ulong* dev_domains = (cl_ulong*)dev_bs;
4d26a735   Pedro Roque   Increased recogni...
486
487
#if H_WORD == 32	// host bitmaps are an array of unsigned int and device bitmaps are an array of cl_ulong
			for (i = 0; i < n_bs; i++) {
94b2b13d   Pedro Roque   PHACT source
488
489
490
491
492
				for (j = 0; j < CL_N_WORDS_; j++) {
					dev_domains[i * CL_N_WORDS_ + j] = ((cl_ulong)host_vs[i].domain_b[j * 2 + 1] << 32) | ((cl_ulong)host_vs[i].domain_b[j * 2]);
				}
			}
#else	// host and device bitmaps are an array of cl_ulong
4d26a735   Pedro Roque   Increased recogni...
493
			for (i = 0; i < n_bs; i++) {
94b2b13d   Pedro Roque   PHACT source
494
495
496
497
498
499
				for (j = 0; j < CL_N_WORDS_; j++) {
					dev_domains[i * CL_N_WORDS_ + j] = host_vs[i].domain_b[j];
				}
			}
#endif
#endif
4d26a735   Pedro Roque   Increased recogni...
500
		}
94b2b13d   Pedro Roque   PHACT source
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
	}
}

/*
 * Copy bitmaps with CL_BITS size from dev_bs to the variables in host_vs that contains domains with size CL_BITS
 * host_vs - variables that contains the bitmaps to copy to
 * dev_bs - bitmaps to copy from
 * n_bs - number of bitmaps to copy
 */
void vs_copy_dev_to_host(var* host_vs, void** dev_bs, unsigned int n_bs) {
	unsigned int i;

	if (CL_N_WORDS_ == 1) {
		if (CL_WORD_ == 32) {
			unsigned int* dev_domains = (unsigned int*)dev_bs;
#if H_N_WORDS == 1	// host bitmaps are one unsigned int or cl_ulong and device bitmaps are one unsigned int
			for (i = 0; i < n_bs; i++) {
				host_vs[i].domain_b = (H_WORD_TYPE)dev_domains[i];
			}
#else	// host bitmaps are an array of unsigned int or cl_ulong and device bitmaps are one unsigned int
			for (i = 0; i < n_bs; i++) {
				host_vs[i].domain_b[0] = (H_WORD_TYPE)dev_domains[i];
			}
#endif
4d26a735   Pedro Roque   Increased recogni...
525
		} else {
94b2b13d   Pedro Roque   PHACT source
526
527
528
529
			cl_ulong* dev_domains = (cl_ulong*)dev_bs;
#if H_N_WORDS == 1	// host bitmaps are one cl_ulong and device bitmaps are one cl_ulong
			for (i = 0; i < n_bs; i++) {
				host_vs[i].domain_b = dev_domains[i];
4d26a735   Pedro Roque   Increased recogni...
530
			}
94b2b13d   Pedro Roque   PHACT source
531
532
533
534
535
536
#else
			if (H_WORD == 32) {	// host bitmaps are an array of unsigned int and device bitmaps are one cl_ulong
				for (i = 0; i < n_bs; i++) {
					host_vs[i].domain_b[1] = (H_WORD_TYPE)(dev_domains[i] >> 32);
					host_vs[i].domain_b[0] = (H_WORD_TYPE)(dev_domains[i]);
				}
4d26a735   Pedro Roque   Increased recogni...
537
			} else {	// host bitmaps are an array of cl_ulong and device bitmaps are one cl_ulong
94b2b13d   Pedro Roque   PHACT source
538
539
540
				for (i = 0; i < n_bs; i++) {
					host_vs[i].domain_b[0] = dev_domains[i];
				}
4d26a735   Pedro Roque   Increased recogni...
541
			}
94b2b13d   Pedro Roque   PHACT source
542
543
544
545
546
547
548
#endif
		}
	} else {
		if (CL_WORD_ == 32) {
#if H_N_WORDS == 1 && H_WORD == 64	// host bitmaps are one cl_ulong and device bitmaps are two unsigned int
			unsigned int* dev_domains = (unsigned int*)dev_bs;
			for (i = 0; i < n_bs; i++) {
4d26a735   Pedro Roque   Increased recogni...
549
550
				host_vs[i].domain_b = ((cl_ulong)dev_domains[i * 2 + 1] << 32) | ((cl_ulong)dev_domains[i * 2]);
			}
94b2b13d   Pedro Roque   PHACT source
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
#elif H_N_WORDS > 1 && H_WORD == 32	// host and device bitmaps are an array of unsigned int
			unsigned int* dev_domains = (unsigned int*)dev_bs;
			unsigned int j;
			for (i = 0; i < n_bs; i++) {
				for (j = 0; j < CL_N_WORDS_; j++) {
					host_vs[i].domain_b[j] = dev_domains[i * CL_N_WORDS_ + j];
				}
			}
#elif H_N_WORDS > 1 && H_WORD == 64	// host bitmaps are an array of cl_ulong and device bitmaps are an array of unsigned int
			unsigned int* dev_domains = (unsigned int*)dev_bs;
			unsigned int j;
			for (i = 0; i < n_bs; i++) {
				for (j = 0; j < CL_N_WORDS_ / 2; j++) {
					host_vs[i].domain_b[j] = ((cl_ulong)dev_domains[i * CL_N_WORDS_ + j * 2 + 1] << 32) | ((cl_ulong)dev_domains[i * CL_N_WORDS_ + j * 2]);
				}
			}
			// if device bitmaps are an odd array of unsigned int add the last one
			if (CL_N_WORDS_ % 2 != 0) {
				for (i = 0; i < n_bs; i++) {
					host_vs[i].domain_b[j] |= ((cl_ulong)dev_domains[i * CL_N_WORDS_ + j] << 32);
				}
			}
#endif
		} else {
4d26a735   Pedro Roque   Increased recogni...
575
#if H_N_WORDS > 1
94b2b13d   Pedro Roque   PHACT source
576
577
578
			unsigned int j;
			cl_ulong* dev_domains = (cl_ulong*)dev_bs;
#if H_WORD == 32	// host bitmaps are an array of unsigned int and device bitmaps are an array of cl_ulong
4d26a735   Pedro Roque   Increased recogni...
579
			for (i = 0; i < n_bs; i++) {
94b2b13d   Pedro Roque   PHACT source
580
581
582
583
584
				for (j = 0; j < CL_N_WORDS_; j++) {
					host_vs[i].domain_b[j * 2 + 1] = (H_WORD_TYPE)(dev_domains[i * CL_N_WORDS_ + j] >> 32);
					host_vs[i].domain_b[j * 2] = (H_WORD_TYPE)(dev_domains[i * CL_N_WORDS_ + j]);
				}
			}
4d26a735   Pedro Roque   Increased recogni...
585
#else	// host and device bitmaps are an array of cl_ulong
94b2b13d   Pedro Roque   PHACT source
586
587
588
589
590
591
			for (i = 0; i < n_bs; i++) {
				for (j = 0; j < CL_N_WORDS_; j++) {
					host_vs[i].domain_b[j] = dev_domains[i * CL_N_WORDS_ + j];
				}
			}
#endif
4d26a735   Pedro Roque   Increased recogni...
592
#endif
94b2b13d   Pedro Roque   PHACT source
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
		}
	}

	for (i = 0; i < n_bs; i++) {
		host_vs[i].max = (unsigned short)b_get_max_val(&host_vs[i].domain_b);
		host_vs[i].min = (unsigned short)b_get_min_val(&host_vs[i].domain_b);
		host_vs[i].n_vals = (unsigned short)b_cnt_vals(&host_vs[i].domain_b);
	}
}

/*
 * Reset and return the count of the number of variables from vs vector that might be labeled
 * vs - vector of variables to count variables that might be labeled
 * n_vs - number of variables in vs vector
 */
int vs_cnt_vs_to_label(var* vs, unsigned int n_vs) {
	unsigned int i;
	int count = 0;

4d26a735   Pedro Roque   Increased recogni...
612
613
614
	for (i = 0; i < n_vs; i++) {
		if (vs[i].to_label && vs[i].n_vals == 1) {
			vs[i].to_label = false;
94b2b13d   Pedro Roque   PHACT source
615
616
617
618
619
620
621
622
		}
		if (vs[i].to_label) {
			count++;
		}
	}
	return count;
}

4d26a735   Pedro Roque   Increased recogni...
623
/*
94b2b13d   Pedro Roque   PHACT source
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
 * Add one more constraint to the received variable
 * v - variable constrained by the received constraint
 * c - constraint that constrain the received variable
 */
void v_add_constr(var* v, constr* c) {
	unsigned int i;

	for (i = 0; i < v->n_cs; i++) {
		if (v->cs[i]->c_id == c->c_id) {
			return;
		}
	}

	int n_cs = v->n_cs + 1;

	constr** cs = (constr**) malloc((unsigned long)n_cs * sizeof(constr*));

	for (i = 0; i < v->n_cs; i++) {
		cs[i] = v->cs[i];
4d26a735   Pedro Roque   Increased recogni...
643
	}
94b2b13d   Pedro Roque   PHACT source
644
645
646
647
648
649
650
651
652
653
	cs[i] = c;

	v->n_cs = (unsigned short)n_cs;
	free(v->cs);
	v->cs = cs;
}

/*
 * remove constraint from the list of constraints that constrain the variable
 */
4d26a735   Pedro Roque   Increased recogni...
654
void v_rem_constr(var* v, constr* cs) {
94b2b13d   Pedro Roque   PHACT source
655
656
657
658
659
660
	constr** old_cs_list = v->cs;
	int i, j;

	v->cs = malloc((unsigned long)(v->n_cs - 1) * sizeof(constr*));

	j = 0;
4d26a735   Pedro Roque   Increased recogni...
661
	for (i = 0; i < v->n_cs; i++) {
94b2b13d   Pedro Roque   PHACT source
662
663
664
665
666
667
		if (old_cs_list[i]->c_id != cs->c_id) {

			v->cs[j++] = old_cs_list[i];
		}
	}

4d26a735   Pedro Roque   Increased recogni...
668
669
	free(old_cs_list);
	v->n_cs = (unsigned short)j;
94b2b13d   Pedro Roque   PHACT source
670
}
4d26a735   Pedro Roque   Increased recogni...
671
672
673

/*
 * Return the count of all constraints that constrain a variables vector
94b2b13d   Pedro Roque   PHACT source
674
675
 * vs - vector of variables to count constraints
 * n_vs - number of variables in vs vector
4d26a735   Pedro Roque   Increased recogni...
676
677
678
679
680
681
682
683
684
 * */
unsigned int vs_cnt_cs(var* vs, unsigned int n_vs) {
	unsigned int i;
	unsigned int cnt = 0;

	for (i = 0; i < n_vs; i++) {
		cnt += vs[i].n_cs;
	}
	return cnt;
94b2b13d   Pedro Roque   PHACT source
685
686
687
688
689
690
691
692
693
694
}

/*
 * Sort all the CSP variables, placing first the ones to be labeled
 */
void vs_sort_label_first() {
	VS_AUX = (var*) malloc(N_VS * (sizeof(var)));
	int vs_ctr = 0;
	bool opt_v_id_changed = false;
	unsigned int i, j;
4d26a735   Pedro Roque   Increased recogni...
695

94b2b13d   Pedro Roque   PHACT source
696
697
698
699
700
701
702
	// sort by labeling
	for (i = 0; i < N_VS; i++) {
		if (VS[i].to_label) {

			if (VS[i].n_vals == 1) {
				VS[i].to_label = false;

4d26a735   Pedro Roque   Increased recogni...
703
			} else {
94b2b13d   Pedro Roque   PHACT source
704
705
706
707
708
709
710
711
712
713
714
715
716
717
				vs_copy(&VS_AUX[vs_ctr], &VS[i], 1);
				vs_ctr++;
			}
		}
	}
	for (i = 0; i < N_VS; i++) {
		if (!VS[i].to_label) {
			vs_copy(&VS_AUX[vs_ctr], &VS[i], 1);
			vs_ctr++;
		}
	}

	// update v_id
	for (i = 0; i < N_VS; i++) {
4d26a735   Pedro Roque   Increased recogni...
718
719

		if (WORK == OPT && !opt_v_id_changed && VS_AUX[i].v_id_print == VAR_ID_TO_OPT) {
94b2b13d   Pedro Roque   PHACT source
720
721
722
723
724
725
726
727
728
729
730
731
732
			opt_v_id_changed = true;
			VAR_ID_TO_OPT = i;
		}

		VS_AUX[i].v_id = (unsigned short)i;
		VS[VS_AUX[i].v_id_print].v_id = (unsigned short)i;
	}

	for (i = 0; i < N_CS; i++) {
		for (j = 0; j < CS[i].n_c_vs; j++) {
			CS[i].c_vs[j] = &VS_AUX[CS[i].c_vs[j]->v_id];
		}
		if (CS[i].reified) {
4d26a735   Pedro Roque   Increased recogni...
733
734
			CS[i].reif_v_id = VS[CS[i].reif_v_id].v_id;
		}
94b2b13d   Pedro Roque   PHACT source
735
736
737
738
739
740
741
	}

	free(VS);
	VS = VS_AUX;
}

/*
4d26a735   Pedro Roque   Increased recogni...
742
743
 * Sort all the CSP variables, placing first the ones to be labeled and from those, the ones that have more values on their domains
 */
94b2b13d   Pedro Roque   PHACT source
744
745
746
747
748
749
750
751
752
753
754
755
void vs_sort_label_more_vals_first() {
	VS_AUX = (var*) malloc(N_VS * (sizeof(var)));
	VS_AUX2 = (var*) malloc(N_VS * (sizeof(var)));
	unsigned int n_vs_to_label = (unsigned int)vs_cnt_vs_to_label(VS, N_VS);
	int max_vals;
	unsigned int max_vals_v_id = 0;
	bool opt_v_id_changed = false;
	int vs_ctr = 0;
	unsigned int i, j;

	// sort by labeling
	for (i = 0; i < N_VS; i++) {
4d26a735   Pedro Roque   Increased recogni...
756
		if (VS[i].to_label) {
94b2b13d   Pedro Roque   PHACT source
757
758
759
760
			vs_copy(&VS_AUX[vs_ctr], &VS[i], 1);

			vs_ctr++;
		}
4d26a735   Pedro Roque   Increased recogni...
761
	}
94b2b13d   Pedro Roque   PHACT source
762
763
	for (i = 0; i < N_VS; i++) {
		if (!VS[i].to_label) {
4d26a735   Pedro Roque   Increased recogni...
764
			vs_copy(&VS_AUX[vs_ctr], &VS[i], 1);
94b2b13d   Pedro Roque   PHACT source
765
766
767
768

			vs_ctr++;
		}
	}
4d26a735   Pedro Roque   Increased recogni...
769
770
771
772
773
774
775
776
777
778
779

	// sort by less numbers on the domain
	vs_ctr = 0;
	for (i = 0; i < n_vs_to_label; i++) {
		max_vals = -1;
		for (j = 0; j < n_vs_to_label; j++) {
			if (VS_AUX[j].n_vals > max_vals) {
				max_vals = VS_AUX[j].n_vals;
				max_vals_v_id = j;
			}
		}
94b2b13d   Pedro Roque   PHACT source
780
781
782
783
784
785
786
787

		vs_copy(&VS_AUX2[vs_ctr], &VS_AUX[max_vals_v_id], 1);
		VS_AUX[max_vals_v_id].n_vals = 0;

		vs_ctr++;
	}
	for (i = n_vs_to_label; i < N_VS; i++) {
		vs_copy(&VS_AUX2[i], &VS_AUX[i], 1);
4d26a735   Pedro Roque   Increased recogni...
788
789
	}

94b2b13d   Pedro Roque   PHACT source
790
791
792
793
794
795
796
797
798
799
	// update v_id
	for (i = 0; i < N_VS; i++) {

		if (WORK == OPT && !opt_v_id_changed && VS_AUX[i].v_id_print == VAR_ID_TO_OPT) {
			opt_v_id_changed = true;
			VAR_ID_TO_OPT = i;
		}

		VS_AUX2[i].v_id = (unsigned short)i;
		VS[VS_AUX2[i].v_id_print].v_id = (unsigned short)i;
4d26a735   Pedro Roque   Increased recogni...
800
	}
94b2b13d   Pedro Roque   PHACT source
801
802
803
804
805
806
807

	for (i = 0; i < N_CS; i++) {
		for (j = 0; j < CS[i].n_c_vs; j++) {
			CS[i].c_vs[j] = &VS_AUX2[CS[i].c_vs[j]->v_id];
		}
		if (CS[i].reified) {
			CS[i].reif_v_id = VS[CS[i].reif_v_id].v_id;
4d26a735   Pedro Roque   Increased recogni...
808
		}
94b2b13d   Pedro Roque   PHACT source
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
	}

	free(VS);
	VS = VS_AUX2;

	free(VS_AUX);
}


/*
 * Sort all the CSP variables, placing first the ones to be labeled and from those, the ones that have less values on their domains
 */
void vs_sort_label_less_vals_first() {
	VS_AUX = (var*) malloc(N_VS * (sizeof(var)));
	VS_AUX2 = (var*) malloc(N_VS * (sizeof(var)));
	unsigned int n_vs_to_label = (unsigned int)vs_cnt_vs_to_label(VS, N_VS);
	int min_vals;
	unsigned int min_vals_v_id = 0;
	bool opt_v_id_changed = false;
	int vs_ctr = 0;
	unsigned int i, j;

	// sort by labeling
	for (i = 0; i < N_VS; i++) {
		if (VS[i].to_label) {
			vs_copy(&VS_AUX[vs_ctr], &VS[i], 1);

			vs_ctr++;
		}
	}
	for (i = 0; i < N_VS; i++) {
		if (!VS[i].to_label) {
			vs_copy(&VS_AUX[vs_ctr], &VS[i], 1);
4d26a735   Pedro Roque   Increased recogni...
842

94b2b13d   Pedro Roque   PHACT source
843
844
845
846
			vs_ctr++;
		}
	}

4d26a735   Pedro Roque   Increased recogni...
847
	// sort by less numbers on the domain
94b2b13d   Pedro Roque   PHACT source
848
849
	vs_ctr = 0;
	for (i = 0; i < n_vs_to_label; i++) {
4d26a735   Pedro Roque   Increased recogni...
850
		min_vals = (int)D_MAX + 2;
94b2b13d   Pedro Roque   PHACT source
851
852
853
854
		for (j = 0; j < n_vs_to_label; j++) {
			if (VS_AUX[j].n_vals < min_vals) {
				min_vals = VS_AUX[j].n_vals;
				min_vals_v_id = j;
4d26a735   Pedro Roque   Increased recogni...
855
856
857
858
859
860
861
862
			}
		}

		vs_copy(&VS_AUX2[vs_ctr], &VS_AUX[min_vals_v_id], 1);
		VS_AUX[min_vals_v_id].n_vals = (unsigned short)(D_MAX + 2);

		vs_ctr++;
	}
94b2b13d   Pedro Roque   PHACT source
863
864
	for (i = n_vs_to_label; i < N_VS; i++) {
		vs_copy(&VS_AUX2[i], &VS_AUX[i], 1);
4d26a735   Pedro Roque   Increased recogni...
865
	}
94b2b13d   Pedro Roque   PHACT source
866
867

	// update v_id
94b2b13d   Pedro Roque   PHACT source
868
869
870
871
872
873
	for (i = 0; i < N_VS; i++) {

		if (WORK == OPT && !opt_v_id_changed && VS_AUX[i].v_id_print == VAR_ID_TO_OPT) {
			opt_v_id_changed = true;
			VAR_ID_TO_OPT = i;
		}
4d26a735   Pedro Roque   Increased recogni...
874
875

		VS_AUX2[i].v_id = (unsigned short)i;
94b2b13d   Pedro Roque   PHACT source
876
877
878
879
880
881
882
883
884
885
		VS[VS_AUX2[i].v_id_print].v_id = (unsigned short)i;
	}

	for (i = 0; i < N_CS; i++) {
		for (j = 0; j < CS[i].n_c_vs; j++) {
			CS[i].c_vs[j] = &VS_AUX2[CS[i].c_vs[j]->v_id];
		}
		if (CS[i].reified) {
			CS[i].reif_v_id = VS[CS[i].reif_v_id].v_id;
		}
4d26a735   Pedro Roque   Increased recogni...
886
	}
94b2b13d   Pedro Roque   PHACT source
887
888
889
890
891
892
893

	free(VS);
	VS = VS_AUX2;

	free(VS_AUX);
}

4d26a735   Pedro Roque   Increased recogni...
894
/*
94b2b13d   Pedro Roque   PHACT source
895
896
897
898
899
900
901
902
 * Sort constraints of all variables by the most common type of constraint
 * vs - vector of variables
 * n_vs - number of variables in vs vector
 */
void vs_sort_constr(var* vs, unsigned int n_vs) {
	unsigned int cs_kind_cnt[N_C_TYPES];	// Constraints kind counter
	unsigned int cs_kind_sorted[N_C_TYPES];	// Constraints kind counter
	unsigned int n_c_kind = 0;	// number of constraints of a kind
4d26a735   Pedro Roque   Increased recogni...
903
	unsigned int idx = 0;
94b2b13d   Pedro Roque   PHACT source
904
905
906
907
908
909
910
911
	unsigned int i, j;

	for (i = 0; i < N_C_TYPES; i++) {
		cs_kind_cnt[i] = 0;
	}

	for (i = 0; i < n_vs; i++) {
		for (j = 0; j < vs[i].n_cs; j++) {
4d26a735   Pedro Roque   Increased recogni...
912
			cs_kind_cnt[vs[i].cs[j]->kind]++;
94b2b13d   Pedro Roque   PHACT source
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
		}
	}

	for (i = 0; i < N_C_TYPES; i++) {
		for (j = 0; j < N_C_TYPES; j++) {
			if (cs_kind_cnt[j] > n_c_kind) {
				idx = j;
				n_c_kind = cs_kind_cnt[j];
			}
		}
		cs_kind_sorted[i] = idx;
		cs_kind_cnt[idx] = 0;
		idx = 0;
		n_c_kind = 0;
	}
4d26a735   Pedro Roque   Increased recogni...
928

94b2b13d   Pedro Roque   PHACT source
929
930
931
932
	unsigned int cs_new_idx = 0;
	unsigned int cs_kind_sorted_idx = 0;
	for (i = 0; i < n_vs; i++) {
		constr** cs_new = (constr**) malloc(vs[i].n_cs * sizeof(constr**));
4d26a735   Pedro Roque   Increased recogni...
933
		cs_new_idx = 0;
94b2b13d   Pedro Roque   PHACT source
934
935
		cs_kind_sorted_idx = 0;

4d26a735   Pedro Roque   Increased recogni...
936
		while (cs_new_idx < vs[i].n_cs) {
94b2b13d   Pedro Roque   PHACT source
937
938
939
940
			for (j = 0; j < vs[i].n_cs; j++) {
				if (vs[i].cs[j]->kind == cs_kind_sorted[cs_kind_sorted_idx]) {
					cs_new[cs_new_idx++] = vs[i].cs[j];
				}
4d26a735   Pedro Roque   Increased recogni...
941
942
943
944
945
946
947
948
			}
			cs_kind_sorted_idx++;
		}

		free(vs[i].cs);
		vs[i].cs = cs_new;
	}
}
94b2b13d   Pedro Roque   PHACT source
949
950

/*
4d26a735   Pedro Roque   Increased recogni...
951
 * Return the single value of the variable with the ID v_id
94b2b13d   Pedro Roque   PHACT source
952
953
954
955
956
957
958
 * v_id - ID of the variable to return single value from
 */
int v_get_value(unsigned int v_id) {
	return VS[v_id].min;
}

/*
4d26a735   Pedro Roque   Increased recogni...
959
 * Return the minimum value of the variable with the ID v_id
94b2b13d   Pedro Roque   PHACT source
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
 * v_id - ID of the variable to return minimum value from
 */
int v_get_min(unsigned int v_id) {
	return VS[v_id].min;
}

/*
 * Return the maximum value of the variable with the ID v_id
 * v_id - ID of the variable to return maximum value from
 */
int v_get_max(unsigned int v_id) {
	return VS[v_id].max;
}

/*
 * print the single value of the variable whose ID is vs_id
 * v_id - ID of the variable to print single value
 * offset - value to add to the printed value, considering that the first domain value is always zero
 */
void v_print_single_val(unsigned int v_id, unsigned int offset) {
	printf("%u", VS[v_id].min + offset);
}

/*
 * print the single value of the variables whose ID is in vs_id
 * vs_id - array with the ID of the variables to print single value
 * n_vs_id - number of IDs on vs_id array
 * offset - value to add to the printed values, considering that the first domain value is always zero
 */
void vs_print_single_val(unsigned int* vs_id, unsigned int n_vs_id, unsigned int offset) {
	unsigned int i, j;

4d26a735   Pedro Roque   Increased recogni...
992
	for (i = 0; i < n_vs_id - 1; i++) {
94b2b13d   Pedro Roque   PHACT source
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
		for (j = 0; j < N_VS; j++) {
			if (VS[j].v_id_print == vs_id[i]) {
				printf("%u, ", VS[j].min + offset);
				break;
			}
		}
	}
	for (j = 0; j < N_VS; j++) {
		if (VS[j].v_id_print == vs_id[i]) {
			printf("%u", VS[j].min + offset);
			break;
		}
	}
}

/*
 * print the minimum value of the variables whose ID is in vs_id
 * vs_id - array with the ID of the variables to print minimum
 * n_vs_id - number of IDs on vs_id array
 * offset - value to add to the printed values, considering that the first domain value is always zero
 */
void vs_print_min(unsigned int* vs_id, unsigned int n_vs_id, unsigned int offset) {
	vs_print_single_val(vs_id, n_vs_id, offset);
}

/*
 * print the maximum value of the variables whose ID is in vs_id
 * vs_id - array with the ID of the variables to print maximumvs_print_result
 * n_vs_id - number of IDs on vs_id array
 * offset - value to add to the printed values, considering that the first domain value is always zero
 */
void vs_print_max(unsigned int* vs_id, unsigned int n_vs_id, unsigned int offset) {
	unsigned int i;

	for (i = 0; i < n_vs_id - 1; i++) {
		printf("%u, ", VS[vs_id[i]].max + offset);
	}
	printf("%u\n", VS[vs_id[i]].max + offset);
}

/*
 * print all the variables in the domain of the variables whose ID is in vs_id
 * vs_id - array with the ID of the variables to print values
 * n_vs_id - number of IDs on vs_id array
 * offset - value to add to the printed values, considering that the first domain value is always zero
 */
void vs_print_vals(unsigned int* vs_id, unsigned int n_vs_id, unsigned int offset) {
	unsigned int i, j;

	for (i = 0; i < n_vs_id; i++) {
		for (j = 1; j < VS[vs_id[i]].n_vals; j++) {
			printf("%u,", b_get_nth_val(&VS[vs_id[i]].domain_b, j) + offset);
		}
		printf("%u\n", b_get_nth_val(&VS[vs_id[i]].domain_b, j) + offset);
	}
}
4d26a735   Pedro Roque   Increased recogni...
1049

94b2b13d   Pedro Roque   PHACT source
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
/*
 * print the value of the variable containing the cost of the optimization problem
 * offset - value to add to the printed values, considering that the first domain value is always zero
 */
void v_print_cost(unsigned int offset) {
	printf("Cost = %u\n", VS[VAR_ID_TO_OPT].min + offset);
}

/*
 * print the domain (bitmap/s) of the variables whose ID is in vs_id
 * vs_id - array with the ID of the variables to print domain
 * n_vs_id - number of IDs on vs_id array
 */
void vs_print_domain(unsigned int* vs_id, unsigned int n_vs_id) {
	unsigned int i;

	for (i = 0; i < n_vs_id; i++) {
		b_print_domain(&VS[vs_id[i]].domain_b);
		printf("\n");
	}
}
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

4d26a735   Pedro Roque   Increased recogni...

94b2b13d   Pedro Roque   PHACT source