3 from ..domains
import *
4 from ..linexprs
import symbols
5 from ..polyhedra
import *
8 class TestDomain(unittest
.TestCase
):
12 self
.square1
= Polyhedron(inequalities
=[x
, 2 - x
, y
, 2 - y
])
13 self
.square2
= Polyhedron(inequalities
=[x
- 1, 3 - x
, y
- 1, 3 - y
]) #correct representation
14 self
.square3
= Polyhedron(inequalities
=[x
, 3 - x
, y
, 3 - y
])
15 self
.square4
= Polyhedron(inequalities
=[x
- 1, 2 - x
, y
- 1, 2 - y
])
16 self
.square5
= Polyhedron(inequalities
=[x
- 3, 6 - x
, y
- 3, 6 -y
])
17 self
.square6
= Polyhedron(equalities
=[3 - y
], inequalities
=[x
- 1, 3 - x
, y
- 1])
18 self
.unbound_poly
= Polyhedron(inequalities
=[x
, 3 - x
, y
])
19 self
.universe
= Polyhedron([])
21 self
.disjoint
= And(Ge(x
, 0), Ge(-x
+ 2, 0), Ge(y
, 0), Ge(-y
+ 2, 0))
22 self
.complement
= Or(Ge(-x
- 1, 0), Ge(x
- 3, 0), And(Ge(x
, 0), Ge(-x
+ 2, 0), Ge(-y
- 1, 0)), And(Ge(x
, 0), Ge(-x
+ 2, 0), Ge(y
- 3, 0)))
23 self
.hull
= And(Ge(x
, 0), Ge(-x
+ 2, 0), Ge(y
, 0), Ge(-y
+ 2, 0))
24 self
.dropped
= And(Ge(y
, 0), Ge(-y
+ 2, 0))
25 self
.sample
= And(Eq(y
- 3, 0), Eq(x
- 1, 0))
26 self
.intersection
= And(Ge(x
- 1, 0), Ge(-x
+ 2, 0), Ge(y
- 1, 0), Ge(-y
+ 2, 0))
27 self
.union
= Or(And(Ge(x
, 0), Ge(-x
+ 2, 0), Ge(y
, 0), Ge(-y
+ 2, 0)), And(Ge(x
- 1, 0), Ge(-x
+ 3, 0), Ge(y
- 1, 0), Ge(-y
+ 3, 0)))
28 self
.sum1
= Or(And(Ge(x
, 0), Ge(-x
+ 2, 0), Ge(y
, 0), Ge(-y
+ 2, 0)), And(Ge(x
- 1, 0), Ge(-x
+ 3, 0), Ge(y
- 1, 0), Ge(-y
+ 3, 0)))
29 self
.sum2
=And(Ge(x
, 0), Ge(y
, 0), Ge(-y
+ 3, 0), Ge(-x
+ 3, 0), Ge(x
- y
+ 2, 0), Ge(-x
+ y
+ 2, 0))
30 self
.difference1
= Or(And(Eq(x
- 3, 0), Ge(y
- 1, 0), Ge(-y
+ 3, 0)), And(Eq(y
- 3, 0), Ge(x
- 1, 0), Ge(-x
+ 2, 0)))
31 self
.difference2
= And(Ge(x
+ y
- 4, 0), Ge(-x
+ 3, 0), Ge(-y
+ 3, 0))
32 self
.lexmin
= And(Eq(y
, 0), Eq(x
, 0))
33 self
.lexmax
= And(Eq(y
- 2, 0), Eq(x
- 2, 0))
36 with self
.assertRaises(TypeError):
39 def test_disjoint(self
):
40 self
.assertEqual(self
.square1
.disjoint(), self
.disjoint
)
42 def test_isempty(self
):
43 self
.assertFalse(self
.square1
.isempty())
44 self
.assertTrue(self
.empty
.isempty())
46 def test_isuniverse(self
):
47 self
.assertFalse(self
.square1
.isuniverse())
48 self
.assertTrue(self
.universe
.isuniverse())
50 def test_isbounded(self
):
51 self
.assertTrue(self
.square1
.isbounded())
52 self
.assertFalse(self
.unbound_poly
.isbounded())
55 self
.assertTrue(self
.square1
== self
.square1
)
56 self
.assertFalse(self
.square1
== self
.square2
)
58 def test_isdisjoint(self
):
59 self
.assertFalse(self
.square1
.isdisjoint(self
.square2
))
60 self
.assertTrue(self
.square1
.isdisjoint(self
.square5
))
62 def test_issubset(self
):
63 self
.assertTrue(self
.square4
.issubset(self
.unbound_poly
))
64 self
.assertFalse(self
.square1
.issubset(self
.square2
))
67 self
.assertTrue(self
.square4
<= self
.square3
)
68 self
.assertFalse(self
.square3
<= self
.square4
)
71 self
.assertTrue(self
.square4
< self
.square3
)
72 self
.assertFalse(self
.square3
< self
.square4
)
74 def test_complement(self
):
75 self
.assertEqual(~self
.square1
, self
.complement
)
77 def test_polyhedral_hull(self
):
78 self
.assertEqual(self
.square1
.polyhedral_hull(), self
.hull
)
80 def test_project_out(self
):
81 self
.assertEqual(self
.square1
.project_out('x'), self
.dropped
)
82 self
.assertEqual(self
.square1
.project_out('x y'), self
.universe
)
83 self
.assertEqual(self
.universe
.project_out(' '), self
.universe
)
84 self
.assertEqual(self
.empty
.project_out(' '), Empty
)
86 def test_simplify(self
):
87 self
.assertEqual(self
.universe
.simplify(), self
.universe
)
88 self
.assertEqual(self
.empty
.simplify(), Empty
)
90 def test_sample(self
):
91 self
.assertEqual(self
.empty
.sample(), Empty
)
92 self
.assertEqual(self
.universe
.sample(), self
.universe
)
93 self
.assertEqual(self
.square6
.sample(), self
.sample
)
95 def test_intersection(self
):
96 self
.assertEqual(self
.square1
.intersection(self
.square2
), self
.intersection
)
99 self
.assertEqual(self
.square2
& self
.square1
, self
.intersection
)
101 def test_union(self
):
102 self
.assertEqual(self
.square1
.union(self
.square2
), self
.union
)
105 self
.assertEqual(self
.square1 | self
.square2
, self
.union
)
108 self
.assertEqual(self
.square2
+ self
.square1
, self
.sum1
)
109 self
.assertEqual(Polyhedron(self
.square1
+ self
.square2
), self
.sum2
)
111 def test_difference(self
):
112 self
.assertEqual(self
.square2
- self
.square1
, self
.difference1
)
113 self
.assertEqual(Polyhedron(self
.square2
- self
.square1
), self
.difference2
)
114 self
.assertEqual(self
.square2
- self
.square2
, Empty
)
115 self
.assertEqual(self
.universe
- self
.universe
, Empty
)
117 def test_lexmin(self
):
118 self
.assertEqual(self
.square1
.lexmin(), self
.lexmin
)
120 def test_lexmax(self
):
121 self
.assertEqual(self
.square1
.lexmax(), self
.lexmax
)