Skip to content
Snippets Groups Projects
Commit 71c27ce1 authored by Hao Gao's avatar Hao Gao
Browse files

Fix a bug in demo program

parent cdbd5c66
No related branches found
No related tags found
1 merge request!6Fix a bug in demo program
Pipeline #
......@@ -10,7 +10,7 @@ bset = (isl.BasicSet.universe(space)
.add_constraint(isl.Constraint.ineq_from_names(space, {1: 5, "y": -1})))
print("set 1 %s:" % bset)
bset2 = isl.BasicSet("{[x, y] : x >= 0 and x < 5 and y >= 0 and y < x+4 }")
bset2 = isl.BasicSet("{[x, y] : x >= 0 and x < 5 and y >= 0 and y < x+4 }", context=ctx)
print("set 2: %s" % bset2)
bsets_in_union = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment