1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/* Declarations for the Box instantiations offered by the non-templatic
language interfaces.
Copyright (C) 2001-2010 Roberto Bagnara <bagnara@cs.unipr.it>
Copyright (C) 2010-2016 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://bugseng.com/products/ppl/ . */
#ifndef PPL_interfaced_boxes_hh
#define PPL_interfaced_boxes_hh 1
namespace Parma_Polyhedra_Library {
struct Z_Box_Interval_Info_Policy {
const_bool_nodef(store_special, true);
const_bool_nodef(store_open, false);
const_bool_nodef(cache_empty, true);
const_bool_nodef(cache_singleton, true);
const_bool_nodef(cache_normalized, false);
const_int_nodef(next_bit, 0);
const_bool_nodef(may_be_empty, true);
const_bool_nodef(may_contain_infinity, false);
const_bool_nodef(check_empty_result, false);
const_bool_nodef(check_inexact, false);
};
typedef Interval_Info_Bitset<unsigned int,
Z_Box_Interval_Info_Policy> Z_Box_Interval_Info;
typedef Box<Interval<mpz_class, Z_Box_Interval_Info> > Z_Box;
struct Floating_Point_Box_Interval_Info_Policy {
const_bool_nodef(store_special, false);
const_bool_nodef(store_open, true);
const_bool_nodef(cache_empty, true);
const_bool_nodef(cache_singleton, true);
const_bool_nodef(cache_normalized, false);
const_int_nodef(next_bit, 0);
const_bool_nodef(may_be_empty, true);
const_bool_nodef(may_contain_infinity, false);
const_bool_nodef(check_empty_result, false);
const_bool_nodef(check_inexact, false);
};
typedef Interval_Info_Bitset <unsigned int,
Floating_Point_Box_Interval_Info_Policy> Floating_Point_Box_Interval_Info;
typedef
Box<Interval<float, Floating_Point_Box_Interval_Info> >
Float_Box;
typedef Box<Interval<double, Floating_Point_Box_Interval_Info> >
Double_Box;
typedef Box<Interval<long double, Floating_Point_Box_Interval_Info> >
Long_Double_Box;
struct Native_Integer_Box_Interval_Info_Policy {
const_bool_nodef(store_special, true);
const_bool_nodef(store_open, false);
const_bool_nodef(cache_empty, true);
const_bool_nodef(cache_singleton, true);
const_bool_nodef(cache_normalized, false);
const_int_nodef(next_bit, 0);
const_bool_nodef(may_be_empty, true);
const_bool_nodef(may_contain_infinity, false);
const_bool_nodef(check_empty_result, false);
const_bool_nodef(check_inexact, false);
};
typedef Interval_Info_Bitset<unsigned int,
Native_Integer_Box_Interval_Info_Policy> Native_Integer_Box_Interval_Info;
typedef Box<Interval<int8_t, Native_Integer_Box_Interval_Info> > Int8_Box;
typedef Box<Interval<int16_t, Native_Integer_Box_Interval_Info> > Int16_Box;
typedef Box<Interval<int32_t, Native_Integer_Box_Interval_Info> > Int32_Box;
typedef Box<Interval<int64_t, Native_Integer_Box_Interval_Info> > Int64_Box;
typedef Box<Interval<uint8_t, Native_Integer_Box_Interval_Info> > Uint8_Box;
typedef Box<Interval<uint16_t, Native_Integer_Box_Interval_Info> > Uint16_Box;
typedef Box<Interval<uint32_t, Native_Integer_Box_Interval_Info> > Uint32_Box;
typedef Box<Interval<uint64_t, Native_Integer_Box_Interval_Info> > Uint64_Box;
} // namespace Parma_Polyhedra_Library
#endif // !defined(PPL_interfaced_boxes_hh)
|