1 # Copyright 2016-2017 Tobias Grosser
3 # Use of this software is governed by the MIT license
5 # Written by Tobias Grosser, Weststrasse 47, CH-8003, Zurich
10 # Test that isl objects can be constructed.
13 # - construction from a string
14 # - construction from an integer
15 # - static constructor without a parameter
16 # - conversion construction
18 # The tests to construct from integers and strings cover functionality that
19 # is also tested in the parameter type tests, but here the presence of
20 # multiple overloaded constructors and overload resolution is tested.
22 def test_constructors():
24 assert(zero1
.is_zero())
27 assert(zero2
.is_zero())
29 zero3
= isl
.val
.zero()
30 assert(zero3
.is_zero())
32 bs
= isl
.basic_set("{ [1] }")
33 result
= isl
.set("{ [1] }")
35 assert(s
.is_equal(result
))
37 # Test integer function parameters for a particular integer value.
41 val_str
= isl
.val(str(i
))
42 assert(val_int
.eq(val_str
))
44 # Test integer function parameters.
46 # Verify that extreme values and zero work.
48 def test_parameters_int():
50 test_int(-sys
.maxsize
- 1)
53 # Test isl objects parameters.
55 # Verify that isl objects can be passed as lvalue and rvalue parameters.
56 # Also verify that isl object parameters are automatically type converted if
57 # there is an inheritance relation. Finally, test function calls without
58 # any additional parameters, apart from the isl object on which
59 # the method is called.
61 def test_parameters_obj():
62 a
= isl
.set("{ [0] }")
63 b
= isl
.set("{ [1] }")
64 c
= isl
.set("{ [2] }")
65 expected
= isl
.set("{ [i] : 0 <= i <= 2 }")
68 res_lvalue_param
= tmp
.union(c
)
69 assert(res_lvalue_param
.is_equal(expected
))
71 res_rvalue_param
= a
.union(b
).union(c
)
72 assert(res_rvalue_param
.is_equal(expected
))
74 a2
= isl
.basic_set("{ [0] }")
75 assert(a
.is_equal(a2
))
79 res_only_this_param
= two
.inv()
80 assert(res_only_this_param
.eq(half
))
82 # Test different kinds of parameters to be passed to functions.
84 # This includes integer and isl object parameters.
86 def test_parameters():
90 # Test that isl objects are returned correctly.
92 # This only tests that after combining two objects, the result is successfully
95 def test_return_obj():
102 assert(res
.eq(three
))
104 # Test that integer values are returned correctly.
106 def test_return_int():
108 neg_one
= isl
.val("-1")
111 assert(one
.sgn() > 0)
112 assert(neg_one
.sgn() < 0)
113 assert(zero
.sgn() == 0)
115 # Test that isl_bool values are returned correctly.
117 # In particular, check the conversion to bool in case of true and false.
119 def test_return_bool():
120 empty
= isl
.set("{ : false }")
121 univ
= isl
.set("{ : }")
123 b_true
= empty
.is_empty()
124 b_false
= univ
.is_empty()
129 # Test that strings are returned correctly.
130 # Do so by calling overloaded isl.ast_build.from_expr methods.
132 def test_return_string():
133 context
= isl
.set("[n] -> { : }")
134 build
= isl
.ast_build
.from_context(context
)
135 pw_aff
= isl
.pw_aff("[n] -> { [n] }")
136 set = isl
.set("[n] -> { : n >= 0 }")
138 expr
= build
.expr_from(pw_aff
)
139 expected_string
= "n"
140 assert(expected_string
== expr
.to_C_str())
142 expr
= build
.expr_from(set)
143 expected_string
= "n >= 0"
144 assert(expected_string
== expr
.to_C_str())
146 # Test that return values are handled correctly.
148 # Test that isl objects, integers, boolean values, and strings are
149 # returned correctly.
157 # Test that foreach functions are modeled correctly.
159 # Verify that closures are correctly called as callback of a 'foreach'
160 # function and that variables captured by the closure work correctly. Also
161 # check that the foreach function handles exceptions thrown from
162 # the closure and that it propagates the exception.
165 s
= isl
.set("{ [0]; [1]; [2] }")
170 s
.foreach_basic_set(add
)
172 assert(len(list) == 3)
173 assert(list[0].is_subset(s
))
174 assert(list[1].is_subset(s
))
175 assert(list[2].is_subset(s
))
176 assert(not list[0].is_equal(list[1]))
177 assert(not list[0].is_equal(list[2]))
178 assert(not list[1].is_equal(list[2]))
185 s
.foreach_basic_set(fail
)
190 # Test the isl Python interface
193 # - Object construction
194 # - Different parameter types
195 # - Different return types
196 # - Foreach functions