2 * Copyright 2010 INRIA Saclay
3 * Copyright 2013 Ecole Normale Superieure
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
8 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
10 * and Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
14 #include <isl_space_private.h>
15 #include <isl_point_private.h>
17 #include <isl_pw_macro.h>
19 /* Evaluate "pw" in the void point "pnt".
20 * In particular, return the value NaN.
22 static __isl_give isl_val
*FN(PW
,eval_void
)(__isl_take PW
*pw
,
23 __isl_take isl_point
*pnt
)
27 ctx
= isl_point_get_ctx(pnt
);
30 return isl_val_nan(ctx
);
33 /* Evaluate the piecewise function "pw" in "pnt".
34 * If the point is void, then return NaN.
35 * If the point lies outside the domain of "pw", then return 0 or NaN
36 * depending on whether 0 is the default value for this type of function.
38 __isl_give isl_val
*FN(PW
,eval
)(__isl_take PW
*pw
, __isl_take isl_point
*pnt
)
45 isl_space
*pnt_space
, *pw_space
;
48 pnt_space
= isl_point_peek_space(pnt
);
49 pw_space
= FN(PW
,peek_space
)(pw
);
50 ok
= isl_space_is_domain_internal(pnt_space
, pw_space
);
53 ctx
= isl_point_get_ctx(pnt
);
55 isl_die(ctx
, isl_error_invalid
,
56 "incompatible spaces", goto error
);
57 is_void
= isl_point_is_void(pnt
);
61 return FN(PW
,eval_void
)(pw
, pnt
);
63 found
= isl_bool_false
;
64 for (i
= 0; i
< pw
->n
; ++i
) {
65 found
= isl_set_contains_point(pw
->p
[i
].set
, pnt
);
72 v
= FN(EL
,eval
)(FN(EL
,copy
)(pw
->p
[i
].FIELD
),
74 } else if (DEFAULT_IS_ZERO
) {
75 v
= isl_val_zero(ctx
);