mirror of
http://172.16.200.102/MOISE/Timed-Altarica-To-Fiacre-Translator.git
synced 2025-11-26 04:27:59 +01:00
Initial commit.
This commit is contained in:
88
sdk/boost/numeric/bindings/mtl/compressed2D.hpp
Normal file
88
sdk/boost/numeric/bindings/mtl/compressed2D.hpp
Normal file
@@ -0,0 +1,88 @@
|
||||
//
|
||||
// Copyright (c) 2009--2010
|
||||
// Thomas Klimpel and 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_MTL_COMPRESSED2D_HPP
|
||||
#define BOOST_NUMERIC_BINDINGS_MTL_COMPRESSED2D_HPP
|
||||
|
||||
#include <boost/numeric/bindings/detail/adaptor.hpp>
|
||||
#include <boost/numeric/bindings/detail/copy_const.hpp>
|
||||
#include <boost/numeric/bindings/mtl/detail/convert_to.hpp>
|
||||
#include <boost/numeric/mtl/matrix/compressed2D.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace numeric {
|
||||
namespace bindings {
|
||||
namespace detail {
|
||||
|
||||
template< typename T, typename Parameters, typename Id, typename Enable >
|
||||
struct adaptor< mtl::compressed2D< T, Parameters >, Id, Enable > {
|
||||
|
||||
typedef typename copy_const< Id, T >::type value_type;
|
||||
typedef typename copy_const<
|
||||
Id,
|
||||
//typename Id::index_type
|
||||
//typename Id::size_type // (Seems to be the actually used index_type)
|
||||
std::ptrdiff_t // (Seems to be an actual usable type for bindings purposes)
|
||||
>::type index_type;
|
||||
typedef typename convert_to<
|
||||
tag::data_order,
|
||||
typename Parameters::orientation
|
||||
>::type data_order;
|
||||
typedef mpl::map<
|
||||
mpl::pair< tag::value_type, value_type >,
|
||||
mpl::pair< tag::index_type, index_type >,
|
||||
mpl::pair< tag::entity, tag::matrix >,
|
||||
mpl::pair< tag::size_type<1>, std::ptrdiff_t >,
|
||||
mpl::pair< tag::size_type<2>, std::ptrdiff_t >,
|
||||
mpl::pair< tag::matrix_type, tag::general >,
|
||||
mpl::pair< tag::data_structure, tag::compressed_sparse >,
|
||||
mpl::pair< tag::data_order, data_order >,
|
||||
mpl::pair< tag::index_base, mpl::int_<0> >
|
||||
> property_map;
|
||||
|
||||
static std::ptrdiff_t size1( const Id& id ) {
|
||||
return id.num_rows();
|
||||
}
|
||||
|
||||
static std::ptrdiff_t size2( const Id& id ) {
|
||||
return id.num_cols();
|
||||
}
|
||||
|
||||
static value_type* begin_value( Id& id ) {
|
||||
return id.address_data();
|
||||
}
|
||||
|
||||
static value_type* end_value( Id& id ) {
|
||||
return id.address_data() + id.nnz();
|
||||
}
|
||||
|
||||
static index_type* begin_compressed_index_major( Id& id ) {
|
||||
return reinterpret_cast<index_type*>(id.address_major());
|
||||
}
|
||||
|
||||
static index_type* end_compressed_index_major( Id& id ) {
|
||||
return reinterpret_cast<index_type*>(id.address_major() + id.dim1() + 1);
|
||||
}
|
||||
|
||||
static index_type* begin_index_minor( Id& id ) {
|
||||
return reinterpret_cast<index_type*>(id.address_minor());
|
||||
}
|
||||
|
||||
static index_type* end_index_minor( Id& id ) {
|
||||
return reinterpret_cast<index_type*>(id.address_minor() + id.nnz());
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
} // namespace detail
|
||||
} // namespace bindings
|
||||
} // namespace numeric
|
||||
} // namespace boost
|
||||
|
||||
#endif
|
||||
98
sdk/boost/numeric/bindings/mtl/dense2D.hpp
Normal file
98
sdk/boost/numeric/bindings/mtl/dense2D.hpp
Normal file
@@ -0,0 +1,98 @@
|
||||
//
|
||||
// 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_MTL_DENSE2D_HPP
|
||||
#define BOOST_NUMERIC_BINDINGS_MTL_DENSE2D_HPP
|
||||
|
||||
#include <boost/numeric/bindings/detail/adaptor.hpp>
|
||||
#include <boost/numeric/bindings/detail/if_row_major.hpp>
|
||||
#include <boost/numeric/bindings/mtl/detail/convert_to.hpp>
|
||||
#include <boost/numeric/mtl/matrix/dense2D.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace numeric {
|
||||
namespace bindings {
|
||||
namespace detail {
|
||||
|
||||
template< typename Dimensions, int N >
|
||||
struct mtl_matrix_size_type {
|
||||
typedef std::ptrdiff_t type;
|
||||
};
|
||||
|
||||
template< std::size_t Rows, std::size_t Cols >
|
||||
struct mtl_matrix_size_type< mtl::fixed::dimensions< Rows, Cols >, 1 > {
|
||||
typedef mpl::int_< Rows > type;
|
||||
};
|
||||
|
||||
template< std::size_t Rows, std::size_t Cols >
|
||||
struct mtl_matrix_size_type< mtl::fixed::dimensions< Rows, Cols >, 2 > {
|
||||
typedef mpl::int_< Cols > type;
|
||||
};
|
||||
|
||||
template< typename T, typename Parameters, typename Id, typename Enable >
|
||||
struct adaptor< mtl::dense2D< T, Parameters >, Id, Enable > {
|
||||
|
||||
typedef typename copy_const< Id, T >::type value_type;
|
||||
typedef typename convert_to<
|
||||
tag::data_order,
|
||||
typename Parameters::orientation
|
||||
>::type data_order;
|
||||
typedef typename mtl_matrix_size_type<
|
||||
typename Parameters::dimensions,
|
||||
1
|
||||
>::type size_type1;
|
||||
typedef typename mtl_matrix_size_type<
|
||||
typename Parameters::dimensions,
|
||||
2
|
||||
>::type size_type2;
|
||||
|
||||
typedef mpl::map<
|
||||
mpl::pair< tag::value_type, value_type >,
|
||||
mpl::pair< tag::entity, tag::matrix >,
|
||||
mpl::pair< tag::size_type<1>, size_type1 >,
|
||||
mpl::pair< tag::size_type<2>, size_type2 >,
|
||||
mpl::pair< tag::data_structure, tag::linear_array >,
|
||||
mpl::pair< tag::data_order, data_order >,
|
||||
mpl::pair< tag::stride_type<1>,
|
||||
typename if_row_major< data_order, size_type2, tag::contiguous >::type >,
|
||||
mpl::pair< tag::stride_type<2>,
|
||||
typename if_row_major< data_order, tag::contiguous, size_type1 >::type >
|
||||
> property_map;
|
||||
|
||||
static std::ptrdiff_t size1( const Id& id ) {
|
||||
return id.num_rows();
|
||||
}
|
||||
|
||||
static std::ptrdiff_t size2( const Id& id ) {
|
||||
return id.num_cols();
|
||||
}
|
||||
|
||||
static value_type* begin_value( Id& id ) {
|
||||
return id.elements();
|
||||
}
|
||||
|
||||
static value_type* end_value( Id& id ) {
|
||||
return id.elements() + id.used_memory();
|
||||
}
|
||||
|
||||
static std::ptrdiff_t stride1( const Id& id ) {
|
||||
return id.num_cols();
|
||||
}
|
||||
|
||||
static std::ptrdiff_t stride2( const Id& id ) {
|
||||
return id.num_rows();
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
} // namespace detail
|
||||
} // namespace bindings
|
||||
} // namespace numeric
|
||||
} // namespace boost
|
||||
|
||||
#endif
|
||||
71
sdk/boost/numeric/bindings/mtl/dense_vector.hpp
Normal file
71
sdk/boost/numeric/bindings/mtl/dense_vector.hpp
Normal file
@@ -0,0 +1,71 @@
|
||||
//
|
||||
// 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_MTL_DENSE_VECTOR_HPP
|
||||
#define BOOST_NUMERIC_BINDINGS_MTL_DENSE_VECTOR_HPP
|
||||
|
||||
#include <boost/numeric/bindings/detail/adaptor.hpp>
|
||||
#include <boost/numeric/bindings/mtl/detail/convert_to.hpp>
|
||||
#include <boost/numeric/mtl/vector/dense_vector.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace numeric {
|
||||
namespace bindings {
|
||||
namespace detail {
|
||||
|
||||
template< typename Dimension >
|
||||
struct mtl_vector_size_type {
|
||||
typedef std::ptrdiff_t type;
|
||||
};
|
||||
|
||||
template< std::size_t Size >
|
||||
struct mtl_vector_size_type< mtl::vector::fixed::dimension< Size > > {
|
||||
typedef mpl::int_< Size > type;
|
||||
};
|
||||
|
||||
template< typename T, typename Parameters, typename Id, typename Enable >
|
||||
struct adaptor< mtl::dense_vector< T, Parameters >, Id, Enable > {
|
||||
|
||||
typedef typename copy_const< Id, T >::type value_type;
|
||||
typedef typename convert_to<
|
||||
tag::data_order,
|
||||
typename Parameters::orientation
|
||||
>::type data_order;
|
||||
typedef typename mtl_vector_size_type<
|
||||
typename Parameters::dimension
|
||||
>::type size_type1;
|
||||
|
||||
typedef mpl::map<
|
||||
mpl::pair< tag::value_type, value_type >,
|
||||
mpl::pair< tag::entity, tag::vector >,
|
||||
mpl::pair< tag::size_type<1>, size_type1 >,
|
||||
mpl::pair< tag::data_structure, tag::linear_array >,
|
||||
mpl::pair< tag::data_order, data_order >,
|
||||
mpl::pair< tag::stride_type<1>, tag::contiguous >
|
||||
> property_map;
|
||||
|
||||
static std::ptrdiff_t size1( const Id& id ) {
|
||||
return id.size();
|
||||
}
|
||||
|
||||
static value_type* begin_value( Id& id ) {
|
||||
return id.begin();
|
||||
}
|
||||
|
||||
static value_type* end_value( Id& id ) {
|
||||
return id.end();
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
} // namespace detail
|
||||
} // namespace bindings
|
||||
} // namespace numeric
|
||||
} // namespace boost
|
||||
|
||||
#endif
|
||||
36
sdk/boost/numeric/bindings/mtl/detail/convert_to.hpp
Normal file
36
sdk/boost/numeric/bindings/mtl/detail/convert_to.hpp
Normal file
@@ -0,0 +1,36 @@
|
||||
//
|
||||
// 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_MTL_DETAIL_CONVERT_TO_HPP
|
||||
#define BOOST_NUMERIC_BINDINGS_MTL_DETAIL_CONVERT_TO_HPP
|
||||
|
||||
#include <boost/numeric/bindings/detail/convert_to.hpp>
|
||||
#include <boost/numeric/bindings/tag.hpp>
|
||||
#include <boost/numeric/mtl/utility/tag.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace numeric {
|
||||
namespace bindings {
|
||||
namespace detail {
|
||||
|
||||
template<>
|
||||
struct convert_to< bindings::tag::data_order, mtl::tag::row_major > {
|
||||
typedef bindings::tag::row_major type;
|
||||
};
|
||||
|
||||
template<>
|
||||
struct convert_to< bindings::tag::data_order, mtl::tag::col_major > {
|
||||
typedef bindings::tag::column_major type;
|
||||
};
|
||||
|
||||
} // namespace detail
|
||||
} // namespace bindings
|
||||
} // namespace numeric
|
||||
} // namespace boost
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user