ilaenv.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef BOOST_NUMERIC_BINDINGS_LAPACK_ILAENV_HPP
00015 #define BOOST_NUMERIC_BINDINGS_LAPACK_ILAENV_HPP
00016
00017 #include <cstring>
00018 #include <boost/numeric/bindings/lapack/lapack.h>
00019
00020 namespace boost { namespace numeric { namespace bindings { namespace lapack {
00021
00022
00023
00024
00025
00026
00027
00028 inline
00029 int ilaenv (int const ispec, const char* name, const char* opts,
00030 int const n1 = -1, int const n2 = -1,
00031 int const n3 = -1, int const n4 = -1)
00032 {
00033 return ::LAPACK_ILAENV (&ispec, name, opts, &n1, &n2, &n3, &n4,
00034 std::strlen (name), std::strlen (opts));
00035 }
00036
00037
00038 }}}}
00039
00040 #endif
00041