4d26a735
Pedro Roque
Increased recogni...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
* bool_lin_eq.h
*
* Created on: 16/02/2020
* Author: Pedro
*/
#ifndef SRC_CONSTRAINTS_BOOL_LIN_EQ_H_
#define SRC_CONSTRAINTS_BOOL_LIN_EQ_H_
#include <stdbool.h>
#include <sys/types.h>
#include "../config.h"
#include "../constraints.h"
#include "../kernels/cl_aux_functions.h"
#include "../kernels/cl_constraints.h"
#include "../kernels/cl_ttl.h"
unsigned int c_bool_lin_eq(int *K, unsigned int *Y_ids, unsigned int n, unsigned int z_id);
unsigned int c_bool_lin_eq_reif(int *K, unsigned int *Y_ids, unsigned int n, unsigned int z_id, int reif_v_id);
bool bool_lin_eq_check(constr *c, bool explored);
#if CS_BOOL_LIN_EQ == 1
void bool_lin_eq_prop( CL_INTS_MEM int *vs_per_c_idx, CL_INTS_MEM int *c_consts, CL_MEMORY VARS_PROP *vs_prop_, CL_CS_MEM cl_constr *current_cs,
CL_MEMORY unsigned short *vs_id_to_prop_, bool *prop_ok, __global int *terms_mem CS_IGNORE_FUNC TTL_CTR);
#if CS_R_BOOL_LIN_EQ == 1
void bool_lin_eq_reif( CL_INTS_MEM int *vs_per_c_idx, CL_INTS_MEM int *c_consts, CL_MEMORY VARS_PROP *vs_prop_, CL_CS_MEM cl_constr *current_cs,
CL_MEMORY unsigned short *vs_id_to_prop_, __global int *terms_mem CS_IGNORE_FUNC TTL_CTR);
void bool_lin_eq_prop_opposite( CL_INTS_MEM int *vs_per_c_idx, CL_INTS_MEM int *c_consts, CL_MEMORY VARS_PROP *vs_prop_,
CL_CS_MEM cl_constr *current_cs, CL_MEMORY unsigned short *vs_id_to_prop_, bool *prop_ok, __global int *terms_mem CS_IGNORE_FUNC TTL_CTR);
#endif
void bool_lin_eq_propagate( CL_INTS_MEM int *vs_per_c_idx, CL_INTS_MEM int *c_consts, CL_MEMORY VARS_PROP *vs_prop_,
CL_CS_MEM cl_constr *current_cs, CL_MEMORY unsigned short *vs_id_to_prop_, bool *prop_ok,
__global int *terms_mem PROPAGATED_FUNC CS_IGNORE_FUNC TTL_CTR);
#endif
#endif /* SRC_CONSTRAINTS_BOOL_LIN_EQ_H_ */
|