1/*-----------------------------------------------------------------------------+
2Copyright (c) 2008-2009: Joachim Faulhaber
3+------------------------------------------------------------------------------+
4 Distributed under the Boost Software License, Version 1.0.
5 (See accompanying file LICENCE.txt or copy at
6 http://www.boost.org/LICENSE_1_0.txt)
7+-----------------------------------------------------------------------------*/
8#ifndef BOOST_ICL_TEST_ICL_INTERVAL_CONTINUOUS_HPP_JOFA_100930
9#define BOOST_ICL_TEST_ICL_INTERVAL_CONTINUOUS_HPP_JOFA_100930
10
11template <class T, class IntervalT>
12void interval_ctor_4_ordered_types()
13{
14 BOOST_CHECK_EQUAL(icl::is_empty(IntervalT()), true);
15 BOOST_CHECK_EQUAL(icl::cardinality(IntervalT()), icl::identity_element<typename icl::size_type_of<T>::type>::value());
16 BOOST_CHECK_EQUAL(icl::size(IntervalT()), icl::identity_element<typename icl::size_type_of<T>::type>::value());
17
18 BOOST_CHECK_EQUAL( IntervalT(), IntervalT() );
19 BOOST_CHECK_EQUAL( IntervalT(), IntervalT(IntervalT().lower(), IntervalT().upper()) );
20 BOOST_CHECK_EQUAL( IntervalT(), IntervalT(icl::lower(IntervalT()), icl::upper(IntervalT())) );
21}
22
23
24template <class T, ICL_COMPARE Compare>
25void distant_intervals_4_numeric_continuous_types()
26{
27 typedef right_open_interval<T,Compare> L__D; // L__D for [..)
28 typedef left_open_interval<T,Compare> C__I; // C__I for (..]
29 typedef typename icl::interval<T,Compare>::type IntervalT;
30
31 BOOST_CHECK( is_interval<L__D>::value );
32 BOOST_CHECK( has_difference<typename interval_traits<L__D>::domain_type>::value );
33 BOOST_CHECK( is_continuous<typename interval_traits<L__D>::domain_type>::value );
34 BOOST_CHECK( (boost::is_same<typename interval_traits<L__D>::domain_type, T>::value) );
35
36 //CL typedef typename difference_type_of<T>::type DiffT;
37
38 test_inner_complement<T,Compare,L__D>(MK_I(L__D,0,4), MK_I(L__D,8,9));
39 test_inner_complement<T,Compare,L__D>(MK_I(L__D,7,8), MK_I(L__D,2,3));
40 test_inner_complement<T,Compare,L__D>(MK_I(L__D,2,4), MK_I(L__D,4,6));
41 test_inner_complement<T,Compare,L__D>(MK_I(L__D,3,7), MK_I(L__D,5,8));
42 test_inner_complement<T,Compare,L__D>(MK_I(L__D,7,9), MK_I(L__D,0,4));
43 test_inner_complement<T,Compare,L__D>(MK_I(L__D,0,0), MK_I(L__D,0,0));
44 test_inner_complement<T,Compare,L__D>(MK_I(L__D,1,0), MK_I(L__D,2,0));
45
46 test_inner_complement<T,Compare,C__I>(MK_I(C__I,1,5), MK_I(C__I,4,9));
47 test_inner_complement<T,Compare,C__I>(MK_I(C__I,4,6), MK_I(C__I,1,3));
48 test_inner_complement<T,Compare,C__I>(MK_I(C__I,0,2), MK_I(C__I,4,6));
49 test_inner_complement<T,Compare,C__I>(MK_I(C__I,0,2), MK_I(C__I,0,6));
50
51 //--------------------------------------------------------------------------
52#ifndef BOOST_ICL_USE_STATIC_BOUNDED_INTERVALS
53 test_inner_complement<T,Compare,IntervalT>(I_D(0,4), I_D(8,9));
54 test_inner_complement<T,Compare,IntervalT>(I_D(7,8), I_D(2,3));
55 test_inner_complement<T,Compare,IntervalT>(I_D(2,4), I_D(4,6));
56 test_inner_complement<T,Compare,IntervalT>(I_D(3,7), I_D(5,8));
57 test_inner_complement<T,Compare,IntervalT>(I_D(7,9), I_D(0,4));
58 test_inner_complement<T,Compare,IntervalT>(I_D(0,0), I_D(0,0));
59 test_inner_complement<T,Compare,IntervalT>(I_D(1,0), I_D(2,0));
60
61 test_inner_complement<T,Compare,IntervalT>(C_I(1,5), C_I(4,9));
62 test_inner_complement<T,Compare,IntervalT>(C_I(4,6), C_I(1,3));
63 test_inner_complement<T,Compare,IntervalT>(C_I(0,2), C_I(4,6));
64 test_inner_complement<T,Compare,IntervalT>(C_I(0,2), C_I(0,6));
65
66 test_inner_complement<T,Compare,IntervalT>(I_I(7,9), I_I(0,5));
67 test_inner_complement<T,Compare,IntervalT>(I_I(0,9), I_I(2,5));
68
69 test_inner_complement<T,Compare,IntervalT>(C_D(6,9), C_D(1,4));
70 test_inner_complement<T,Compare,IntervalT>(C_D(1,3), C_D(1,4));
71 test_inner_complement<T,Compare,IntervalT>(C_D(1,3), C_D(6,8));
72 test_inner_complement<T,Compare,IntervalT>(C_D(1,7), C_D(1,6));
73 test_inner_complement<T,Compare,IntervalT>(C_D(1,1), C_D(1,1));
74 test_inner_complement<T,Compare,IntervalT>(C_D(3,0), C_D(4,0));
75 test_inner_complement<T,Compare,IntervalT>(C_D(0,2), C_D(4,6));
76 test_inner_complement<T,Compare,IntervalT>(C_D(0,2), C_D(0,6));
77#endif //BOOST_ICL_USE_STATIC_BOUNDED_INTERVALS
78}
79
80
81
82#endif // BOOST_ICL_TEST_ICL_INTERVAL_CONTINUOUS_HPP_JOFA_100930
83

source code of boost/libs/icl/test/test_icl_continuous_interval.hpp