@@ -18,9 +18,9 @@ function sparsetest(lib::PolyhedraLibrary)
1818 [0 , - 1 , 1 ])
1919 p = polyhedron (h, lib)
2020 @test ! vrepiscomputed (p)
21- @test ⊆ (p, HalfSpace ([3 , 2 , 0 ], 2 ), lpsolver ... )
21+ @test p ⊆ HalfSpace ([3 , 2 , 0 ], 2 )
2222 @test ! vrepiscomputed (p)
23- @test ! ⊆ (p, HalfSpace ([3 , 2 , 0 ], 1 ), lpsolver ... )
23+ @test ! (p ⊆ HalfSpace ([3 , 2 , 0 ], 1 ))
2424 @test ! vrepiscomputed (p)
2525 inequality_fulltest (p, h)
2626 generator_fulltest (p, v)
@@ -30,9 +30,9 @@ function sparsetest(lib::PolyhedraLibrary)
3030 # If lib supported sparse, hvectortype(q) should be sparse hence hvectortype(p) should also be sparse
3131 @test Polyhedra. hvectortype (typeof (p)) == Polyhedra. hvectortype (typeof (q))
3232 @test ! vrepiscomputed (q)
33- @test ⊆ (q, HalfSpace ([2 , - 3 ], 0 ), lpsolver ... ) # This also checks that the solver was ot dropped during fixandeliminate
33+ @test q ⊆ HalfSpace ([2 , - 3 ], 0 ) # This also checks that the solver was ot dropped during fixandeliminate
3434 @test ! vrepiscomputed (q)
35- @test ! ⊆ (q, HalfSpace ([2 , - 3 ], - 1 ), lpsolver ... )
35+ @test ! (q ⊆ HalfSpace ([2 , - 3 ], - 1 ))
3636 @test ! vrepiscomputed (q)
3737 hfix = HalfSpace ([ 2 , 0 ], - 1 ) ∩
3838 HalfSpace ([ 0 , - 3 ], 1 ) ∩
0 commit comments