/* Test Pointset_Powerset::Pointset_Powerset(BD_Shape), Pointset_Powerset::Pointset_Powerset(Pointset_Powerset(BD_Shape)). Copyright (C) 2001-2010 Roberto Bagnara Copyright (C) 2010-2011 BUGSENG srl (http://bugseng.com) This file is part of the Parma Polyhedra Library (PPL). The PPL is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. The PPL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA. For the most up-to-date information see the Parma Polyhedra Library site: http://www.cs.unipr.it/ppl/ . */ #include "ppl_test.hh" namespace { // Constructs the powerset of polyhedra from a bd shape. bool test01() { Variable x(0); Variable y(1); TBD_Shape bds(2); bds.add_constraint(x >= 0); bds.add_constraint(x - y <= 1); bds.add_constraint(y >= 0); Pointset_Powerset pps(bds); Pointset_Powerset known_pps(2); known_pps.add_constraint(x >= 0); known_pps.add_constraint(x - y <= 1); known_pps.add_constraint(y >= 0); bool ok = (pps == known_pps); Pointset_Powerset::const_iterator i = pps.begin(); C_Polyhedron phi = i->pointset(); print_constraints(phi, "*** phi ***"); return ok; } // Constructs the powerset of polyhedra from an empty bd shape. bool test02() { Variable x(0); Variable y(1); TBD_Shape bds(2, EMPTY); Pointset_Powerset pps(bds); Pointset_Powerset known_pps(2, EMPTY); bool ok = (pps == known_pps); return ok; } // Constructs the powerset of polyhedra from a powerset of bd shapes. bool test03() { Variable x(0); Variable y(1); Constraint_System cs; cs.insert(x >= 1); cs.insert(x <= 1); cs.insert(y <= 0); TBD_Shape bds(cs); // The complexity should be ignored. Pointset_Powerset pps_bds(bds, POLYNOMIAL_COMPLEXITY); // The complexity should be ignored. Pointset_Powerset pps(pps_bds, POLYNOMIAL_COMPLEXITY); Pointset_Powerset known_pps(2); known_pps.add_constraint(x == 1); known_pps.add_constraint(y <= 0); bool ok = (pps == known_pps); Pointset_Powerset::const_iterator j = pps.begin(); C_Polyhedron phj = j->pointset(); print_constraints(phj, "*** pps disjunct ***"); return ok; } // Constructs the powerset of bd shapes from a bd shape. bool test04() { Variable x(0); Variable y(1); Variable z(2); Variable w(3); TBD_Shape bds(4); bds.add_constraint(x >= 2); bds.add_constraint(x - y <= 4); bds.add_constraint(z == 1); Pointset_Powerset pps1(bds); Pointset_Powerset pps2(4, EMPTY); pps2.add_disjunct(bds); bool ok = (pps1 == pps2); Pointset_Powerset::const_iterator i = pps1.begin(); TBD_Shape bdsi = i->pointset(); print_constraints(bdsi, "*** bdsi ***"); Pointset_Powerset::const_iterator i2 = pps2.begin(); TBD_Shape bdsi2 = i2->pointset(); print_constraints(bdsi2, "*** bdsi2 ***"); return ok && pps1.OK(); } // Constructs the powerset of bd shapes from an empty bd shape. bool test05() { Variable x(0); Variable y(1); TBD_Shape bds(2, EMPTY); Pointset_Powerset pps(bds); Pointset_Powerset known_pps(2, EMPTY); bool ok = (pps == known_pps); return ok; } // Constructs the powerset of bd shapes from a powerset of bd shapes. bool test06() { Variable x(0); Variable y(1); Constraint_System cs; cs.insert(x >= 1); cs.insert(x <= 1); cs.insert(y <= 0); TBD_Shape bds(cs); // The complexity should be ignored. Pointset_Powerset pps_bds(bds, POLYNOMIAL_COMPLEXITY); // The complexity should be ignored. Pointset_Powerset pps(pps_bds, POLYNOMIAL_COMPLEXITY); Pointset_Powerset known_pps(2); known_pps.add_constraint(x == 1); known_pps.add_constraint(y <= 0); bool ok = (pps == known_pps); Pointset_Powerset::const_iterator j = pps.begin(); TBD_Shape bdsj = j->pointset(); print_constraints(bdsj, "*** pps disjunct ***"); return ok; } // Constructs the powerset of octagonal_shapes from a bd shape. bool test07() { Variable x(0); Variable y(1); TBD_Shape bds(2); bds.add_constraint(x == 0); bds.add_constraint(x - y <= 1); bds.add_constraint(y >= 0); Pointset_Powerset pps(bds); Pointset_Powerset known_pps(2); known_pps.add_constraint(x == 0); known_pps.add_constraint(x - y <= 1); known_pps.add_constraint(y >= 0); bool ok = (pps == known_pps); Pointset_Powerset::const_iterator i = pps.begin(); TOctagonal_Shape osi = i->pointset(); print_constraints(osi, "*** osi ***"); return ok; } // Constructs the powerset of octagonal_shapes from an empty bd shape. bool test08() { Variable x(0); Variable y(1); TBD_Shape bds(2, EMPTY); Pointset_Powerset pps(bds); Pointset_Powerset known_pps(2, EMPTY); bool ok = (pps == known_pps); return ok; } // Constructs the powerset of octagonal_shapes from a powerset of bd shapes. bool test09() { Variable x(0); Variable y(1); Constraint_System cs; cs.insert(x >= 1); cs.insert(x - y <= 1); cs.insert(y <= 0); TBD_Shape bd(cs); // The complexity should be ignored. Pointset_Powerset pps_bd(bd, POLYNOMIAL_COMPLEXITY); // The complexity should be ignored. Pointset_Powerset pps(pps_bd, POLYNOMIAL_COMPLEXITY); Pointset_Powerset known_pps(2); known_pps.add_constraint(x == 1); known_pps.add_constraint(y == 0); bool ok = (pps == known_pps); Pointset_Powerset::const_iterator i_os = pps.begin(); TOctagonal_Shape osi = i_os->pointset(); print_constraints(osi, "*** osi ***"); return ok; } // Constructs the powerset of boxes from a bd shape. bool test10() { Variable x(0); Variable y(1); TBD_Shape bds(2); bds.add_constraint(x == 0); bds.add_constraint(x - y <= 1); bds.add_constraint(y >= 0); Pointset_Powerset pps(bds); Pointset_Powerset known_pps(2); known_pps.add_constraint(x == 0); known_pps.add_constraint(y >= 0); bool ok = (pps == known_pps); Pointset_Powerset::const_iterator i = pps.begin(); TBox phi = i->pointset(); print_constraints(phi, "*** phi ***"); return ok; } // Constructs the powerset of boxes from an empty bd shape. bool test11() { Variable x(0); Variable y(1); TBD_Shape bds(2, EMPTY); Pointset_Powerset pps(bds); Pointset_Powerset known_pps(2, EMPTY); bool ok = (pps == known_pps); return ok; } // Constructs the powerset of boxes from a powerset of bd shapes. bool test12() { Variable x(0); Variable y(1); Constraint_System cs; cs.insert(x >= 1); cs.insert(x - y <= 1); cs.insert(y <= 0); TBD_Shape bd(cs); // The complexity should be ignored. Pointset_Powerset pps_bd(bd, POLYNOMIAL_COMPLEXITY); // The complexity should be ignored. Pointset_Powerset pps(pps_bd, POLYNOMIAL_COMPLEXITY); Pointset_Powerset known_pps(2); known_pps.add_constraint(x == 1); known_pps.add_constraint(y == 0); bool ok = (pps == known_pps); Pointset_Powerset::const_iterator i_box = pps.begin(); TBox boxi = i_box->pointset(); print_constraints(boxi, "*** boxi ***"); return ok; } // Constructs the powerset of grids from a bd shape. bool test13() { Variable x(0); Variable y(1); TBD_Shape bds(2); bds.add_constraint(x == 0); bds.add_constraint(x - y <= 1); bds.add_constraint(y >= 0); Pointset_Powerset pps(bds); Pointset_Powerset known_pps(2); known_pps.add_congruence((x %= 0) / 0); bool ok = (pps == known_pps); Pointset_Powerset::const_iterator i = pps.begin(); Grid phi = i->pointset(); print_congruences(phi, "*** phi ***"); return ok; } // Constructs the powerset of grids from an empty bd shape. bool test14() { Variable x(0); Variable y(1); TBD_Shape bds(2, EMPTY); Pointset_Powerset pps(bds); Pointset_Powerset known_pps(2, EMPTY); bool ok = (pps == known_pps); return ok; } // Constructs the powerset of grids from a powerset of bd shapes. bool test15() { Variable x(0); Variable y(1); Constraint_System cs; cs.insert(x >= 1); cs.insert(x - y <= 1); cs.insert(y <= 0); TBD_Shape bd(cs); // The complexity should be ignored. Pointset_Powerset pps_bd(bd, POLYNOMIAL_COMPLEXITY); Pointset_Powerset::const_iterator i_bd = pps_bd.begin(); TBD_Shape bdi = i_bd->pointset(); print_constraints(bdi, "*** bdi ***"); // The complexity should be ignored. Pointset_Powerset pps(pps_bd, POLYNOMIAL_COMPLEXITY); Pointset_Powerset known_pps(2); known_pps.add_constraint(x == 1); known_pps.add_constraint(y == 0); bool ok = (pps == known_pps); Pointset_Powerset::const_iterator i_gr = pps.begin(); Grid gri = i_gr->pointset(); print_congruences(gri, "*** gri ***"); return ok; } } // namespace BEGIN_MAIN DO_TEST(test01); DO_TEST(test02); DO_TEST(test03); DO_TEST(test04); DO_TEST(test05); DO_TEST(test06); DO_TEST(test07); DO_TEST(test08); DO_TEST(test09); DO_TEST(test10); DO_TEST(test11); DO_TEST(test12); DO_TEST(test13); DO_TEST(test14); DO_TEST(test15); END_MAIN