File: row.hpp

package info (click to toggle)
siconos 4.4.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 78,364 kB
  • sloc: cpp: 160,975; ansic: 130,000; fortran: 33,051; python: 21,000; xml: 1,244; sh: 385; makefile: 318
file content (100 lines) | stat: -rw-r--r-- 2,745 bytes parent folder | download | duplicates (5)
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
//
// Copyright (c) 2009 Rutger ter Borg
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//

#ifndef BOOST_NUMERIC_BINDINGS_ROW_HPP
#define BOOST_NUMERIC_BINDINGS_ROW_HPP

#include <boost/numeric/bindings/begin.hpp>
#include <boost/numeric/bindings/end.hpp>
#include <boost/numeric/bindings/detail/adaptable_type.hpp>
#include <boost/numeric/bindings/detail/offset.hpp>
#include <boost/numeric/bindings/size.hpp>
#include <boost/numeric/bindings/stride.hpp>
#include <boost/numeric/bindings/value_type.hpp>
#include <boost/ref.hpp>

namespace boost {
namespace numeric {
namespace bindings {
namespace detail {

template< typename T >
struct row_wrapper:
        adaptable_type< row_wrapper<T> >,
        reference_wrapper<T> {

    row_wrapper( T& t, std::size_t index ):
        reference_wrapper<T>(t),
        m_index( index ) {}

    std::size_t m_index;
};

template< typename T, typename Id, typename Enable >
struct adaptor< row_wrapper<T>, Id, Enable > {

    typedef typename bindings::value_type< T>::type value_type;
    typedef mpl::map<
        mpl::pair< tag::value_type, value_type >,
        mpl::pair< tag::entity, tag::vector >,
        mpl::pair< tag::size_type<1>, typename result_of::size2<T>::type >,
        mpl::pair< tag::data_structure, tag::linear_array >,
        mpl::pair< tag::stride_type<1>, typename result_of::stride2<T>::type >
    > property_map;

    static typename result_of::size2<T>::type size1( const Id& id ) {
        return bindings::size2( id.get() );
    }

    static typename result_of::begin_value< T >::type begin_value( Id& id ) {
        return bindings::begin_value( id.get() ) +
               offset( id.get(), id.m_index, 0 );
    }

    static typename result_of::end_value< T >::type end_value( Id& id ) {
        return bindings::begin_value( id.get() ) +
               offset( id.get(), id.m_index, size1(id) );
    }

    static typename result_of::stride2<T>::type stride1( const Id& id ) {
        return bindings::stride2( id.get() );
    }

};

} // namespace detail

namespace result_of {

template< typename T >
struct row {
    typedef detail::row_wrapper<T> type;
};

} // namespace result_of

template< typename T >
detail::row_wrapper<T> const row( T& underlying, std::size_t index ) {
    return detail::row_wrapper<T>( underlying, index );
}

template< typename T >
detail::row_wrapper<const T> const row( const T& underlying, std::size_t index ) {
    return detail::row_wrapper<const T>( underlying, index );
}

template< int N, typename T >
void row( const T& underlying ) {

}

} // namespace bindings
} // namespace numeric
} // namespace boost

#endif