mirror of
http://172.16.200.102/MOISE/Timed-Altarica-To-Fiacre-Translator.git
synced 2025-11-26 06:37:59 +01:00
Initial commit.
This commit is contained in:
18
sdk/boost/numeric/bindings/lapack/detail/clapack.h
Normal file
18
sdk/boost/numeric/bindings/lapack/detail/clapack.h
Normal file
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// Copyright (c) 2010
|
||||
// Toon Knapen, Karl Meerbergen, Kresimir Fresl,
|
||||
// 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_LAPACK_DETAIL_CLAPACK_H
|
||||
#define BOOST_NUMERIC_BINDINGS_LAPACK_DETAIL_CLAPACK_H
|
||||
|
||||
extern "C" {
|
||||
#include <clapack.h>
|
||||
}
|
||||
|
||||
#endif
|
||||
29
sdk/boost/numeric/bindings/lapack/detail/clapack_option.hpp
Normal file
29
sdk/boost/numeric/bindings/lapack/detail/clapack_option.hpp
Normal file
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// 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_LAPACK_DETAIL_CLAPACK_OPTION_HPP
|
||||
#define BOOST_NUMERIC_BINDINGS_LAPACK_DETAIL_CLAPACK_OPTION_HPP
|
||||
|
||||
#include <boost/numeric/bindings/blas/detail/cblas_option.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace numeric {
|
||||
namespace bindings {
|
||||
namespace lapack {
|
||||
namespace detail {
|
||||
|
||||
template< typename Tag >
|
||||
struct clapack_option: blas::detail::cblas_option< Tag > {};
|
||||
|
||||
} // namespace detail
|
||||
} // namespace blas
|
||||
} // namespace bindings
|
||||
} // namespace numeric
|
||||
} // namespace boost
|
||||
|
||||
#endif
|
||||
4380
sdk/boost/numeric/bindings/lapack/detail/lapack.h
Normal file
4380
sdk/boost/numeric/bindings/lapack/detail/lapack.h
Normal file
File diff suppressed because it is too large
Load Diff
1442
sdk/boost/numeric/bindings/lapack/detail/lapack_names.h
Normal file
1442
sdk/boost/numeric/bindings/lapack/detail/lapack_names.h
Normal file
File diff suppressed because it is too large
Load Diff
32
sdk/boost/numeric/bindings/lapack/detail/lapack_option.hpp
Normal file
32
sdk/boost/numeric/bindings/lapack/detail/lapack_option.hpp
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// 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_LAPACK_DETAIL_LAPACK_OPTION_HPP
|
||||
#define BOOST_NUMERIC_BINDINGS_LAPACK_DETAIL_LAPACK_OPTION_HPP
|
||||
|
||||
#include <boost/numeric/bindings/blas/detail/blas_option.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace numeric {
|
||||
namespace bindings {
|
||||
namespace lapack {
|
||||
namespace detail {
|
||||
|
||||
template< typename Tag >
|
||||
struct lapack_option: bindings::blas::detail::blas_option< Tag > {};
|
||||
|
||||
template<>
|
||||
struct lapack_option< tag::both >: mpl::char_< 'B' > {};
|
||||
|
||||
} // namespace detail
|
||||
} // namespace lapack
|
||||
} // namespace bindings
|
||||
} // namespace numeric
|
||||
} // namespace boost
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user