/* Test Polyhedron::BHRZ03_widening_assign().
Copyright (C) 2001-2004 Roberto Bagnara <bagnara@cs.unipr.it>
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 2 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., 59 Temple Place - Suite 330, 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"
using namespace std;
using namespace Parma_Polyhedra_Library;
using namespace Parma_Polyhedra_Library::IO_Operators;
#ifndef NOISY
#define NOISY 0
#endif
static GenSys
gs_square(const Integer& half_side) {
Variable A(0);
Variable B(1);
GenSys gs;
gs.insert(point(half_side*A + half_side*B));
gs.insert(point(half_side*A - half_side*B));
gs.insert(point(-half_side*A - half_side*B));
gs.insert(point(-half_side*A + half_side*B));
return gs;
}
static GenSys
gs_rhombus(const Integer& half_diagonal) {
Variable A(0);
Variable B(1);
GenSys gs;
gs.insert(point(half_diagonal*A));
gs.insert(point(half_diagonal*B));
gs.insert(point(-half_diagonal*A));
gs.insert(point(-half_diagonal*B));
return gs;
}
static C_Polyhedron
p(unsigned n) {
Integer half_diagonal = 2;
for (unsigned i = n / 8; i-- > 0; ) {
half_diagonal *= 2;
}
Integer half_side = half_diagonal;
GenSys gs;
if (n % 8 < 4) {
half_side /= 2;
gs = gs_square(half_side);
GenSys gs2 = gs_rhombus(half_diagonal);
GenSys::const_iterator gi = gs2.begin();
for (int i = n % 8; i-- > 0; )
gs.insert(*gi++);
}
else {
gs = gs_rhombus(half_diagonal);
GenSys gs2 = gs_square(half_side);
GenSys::const_iterator gi = gs2.begin();
for (int i = n % 8 - 4; i-- > 0; )
gs.insert(*gi++);
}
C_Polyhedron ph = C_Polyhedron(gs);
return ph;
}
int
main() TRY {
set_handlers();
// Chain condition for widenings:
// for each increasing chain of descriptions p_0, p_1, ..., p_i, ...,
// the sequence q_0, q_1, ..., q_i, ... defined by q_0 = p_0 and
// for each i >= 1, q_i = q_{i-1} \nabla p_i is ultimately stationary.
// Initialization: set q_0.
C_Polyhedron q_i_minus_1 = p(0);
for (unsigned i = 1; i <= 100; ++i) {
#if NOISY
cout << "*** Result of the previous iteration:" << endl;
cout << q_i_minus_1.generators() << endl;
#endif
C_Polyhedron p_i = p(i);
#if NOISY
cout << "*** New stuff:" << endl;
cout << p_i.generators() << endl;
#endif
C_Polyhedron q_i = q_i_minus_1;
q_i.poly_hull_assign(p_i);
#if NOISY
cout << "*** Poly-hull of previous with new:" << endl;
cout << q_i.generators() << endl;
#endif
q_i.BHRZ03_widening_assign(q_i_minus_1);
#if NOISY
cout << "*** Result of widening poly-hull with new:" << endl;
cout << q_i.generators() << endl;
#endif
if (q_i == q_i_minus_1) {
C_Polyhedron known_result(2);
int retval = (q_i == known_result) ? 0 : 1;
#if NOISY
print_constraints(q_i, "*** The constraints of the fix point ***");
print_generators(q_i, "*** The generators of the fix point ***");
#endif
return retval;
}
q_i_minus_1 = q_i;
}
return 1;
}
CATCH
syntax highlighted by Code2HTML, v. 0.9.1