diff armadillo-2.4.4/include/armadillo_bits/restrictors.hpp @ 0:8b6102e2a9b0

Armadillo Library
author maxzanoni76 <max.zanoni@eecs.qmul.ac.uk>
date Wed, 11 Apr 2012 09:27:06 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/armadillo-2.4.4/include/armadillo_bits/restrictors.hpp	Wed Apr 11 09:27:06 2012 +0100
@@ -0,0 +1,188 @@
+// Copyright (C) 2010-2011 NICTA (www.nicta.com.au)
+// Copyright (C) 2010-2011 Conrad Sanderson
+// 
+// This file is part of the Armadillo C++ library.
+// It is provided without any warranty of fitness
+// for any purpose. You can redistribute this file
+// and/or modify it under the terms of the GNU
+// Lesser General Public License (LGPL) as published
+// by the Free Software Foundation, either version 3
+// of the License or (at your option) any later version.
+// (see http://www.opensource.org/licenses for more info)
+
+
+//! \addtogroup restrictors
+//! @{
+
+
+
+// structures for template based restrictions of input/output arguments
+// (part of the SFINAE approach)
+// http://en.wikipedia.org/wiki/SFINAE
+
+
+template<typename T> struct arma_scalar_only { };
+
+template<> struct arma_scalar_only<u8>     { typedef u8     result; };
+template<> struct arma_scalar_only<s8>     { typedef s8     result; };
+template<> struct arma_scalar_only<u16>    { typedef u16    result; };
+template<> struct arma_scalar_only<s16>    { typedef s16    result; };
+template<> struct arma_scalar_only<u32>    { typedef u32    result; };
+template<> struct arma_scalar_only<s32>    { typedef s32    result; };
+#if defined(ARMA_64BIT_WORD)
+template<> struct arma_scalar_only<u64>    { typedef u64    result; };
+template<> struct arma_scalar_only<s64>    { typedef s64    result; };
+#endif
+template<> struct arma_scalar_only<float>  { typedef float  result; };
+template<> struct arma_scalar_only<double> { typedef double result; };
+
+
+template<typename T>
+struct arma_scalar_only< std::complex<T> > { typedef std::complex<T> result; };
+
+
+
+template<typename T> struct arma_integral_only { };
+
+template<> struct arma_integral_only<u8>  { typedef u8  result; };
+template<> struct arma_integral_only<s8>  { typedef s8  result; };
+template<> struct arma_integral_only<u16> { typedef u16 result; };
+template<> struct arma_integral_only<s16> { typedef s16 result; };
+template<> struct arma_integral_only<u32> { typedef u32 result; };
+template<> struct arma_integral_only<s32> { typedef s32 result; };
+#if defined(ARMA_64BIT_WORD)
+template<> struct arma_integral_only<u64> { typedef u64 result; };
+template<> struct arma_integral_only<s64> { typedef s64 result; };
+#endif
+
+
+
+template<typename T> struct arma_unsigned_integral_only { };
+
+template<> struct arma_unsigned_integral_only<u8>  { typedef u8  result; };
+template<> struct arma_unsigned_integral_only<u16> { typedef u16 result; };
+template<> struct arma_unsigned_integral_only<u32> { typedef u32 result; };
+#if defined(ARMA_64BIT_WORD)
+template<> struct arma_unsigned_integral_only<u64> { typedef u64 result; };
+#endif
+
+
+
+template<typename T> struct arma_signed_integral_only { };
+
+template<> struct arma_signed_integral_only<s8>   { typedef s8  result; };
+template<> struct arma_signed_integral_only<s16>  { typedef s16 result; };
+template<> struct arma_signed_integral_only<s32>  { typedef s32 result; };
+#if defined(ARMA_64BIT_WORD)
+template<> struct arma_signed_integral_only<s64>  { typedef s64 result; };
+#endif
+
+
+
+template<typename T> struct arma_signed_only { };
+
+template<> struct arma_signed_only<s8>   { typedef s8   result; };
+template<> struct arma_signed_only<s16>  { typedef s16  result; };
+template<> struct arma_signed_only<s32>  { typedef s32  result; };
+#if defined(ARMA_64BIT_WORD)
+template<> struct arma_signed_only<s64>  { typedef s64  result; };
+#endif
+template<> struct arma_signed_only<float>  { typedef float  result; };
+template<> struct arma_signed_only<double> { typedef double result; };
+
+template<typename T> struct arma_signed_only< std::complex<T> > { typedef std::complex<T> result; };
+
+
+
+template<typename T> struct arma_float_only { };
+
+template<> struct arma_float_only<float>  { typedef float  result; };
+template<> struct arma_float_only<double> { typedef double result; };
+
+
+
+template<typename T> struct arma_float_or_cx_only { };
+
+template<> struct arma_float_or_cx_only< float >                { typedef float                result; };
+template<> struct arma_float_or_cx_only< double >               { typedef double               result; };
+template<> struct arma_float_or_cx_only< std::complex<float>  > { typedef std::complex<float>  result; };
+template<> struct arma_float_or_cx_only< std::complex<double> > { typedef std::complex<double> result; };
+
+
+
+template<typename T> struct arma_cx_only { };
+
+template<> struct arma_cx_only< std::complex<float>  > { typedef std::complex<float>  result; };
+template<> struct arma_cx_only< std::complex<double> > { typedef std::complex<double> result; };
+
+
+
+template<typename T> struct arma_not_cx                    { typedef T result; };
+template<typename T> struct arma_not_cx< std::complex<T> > { };
+
+
+
+template<typename T> struct arma_blas_type_only { };
+
+template<> struct arma_blas_type_only< float                > { typedef float                result; };
+template<> struct arma_blas_type_only< double               > { typedef double               result; };
+template<> struct arma_blas_type_only< std::complex<float>  > { typedef std::complex<float>  result; };
+template<> struct arma_blas_type_only< std::complex<double> > { typedef std::complex<double> result; };
+
+
+
+template<typename T> struct arma_op_rel_only { };
+
+template<> struct arma_op_rel_only< op_rel_lt_pre    > { typedef int result; };
+template<> struct arma_op_rel_only< op_rel_lt_post   > { typedef int result; };
+template<> struct arma_op_rel_only< op_rel_gt_pre    > { typedef int result; };
+template<> struct arma_op_rel_only< op_rel_gt_post   > { typedef int result; };
+template<> struct arma_op_rel_only< op_rel_lteq_pre  > { typedef int result; };
+template<> struct arma_op_rel_only< op_rel_lteq_post > { typedef int result; };
+template<> struct arma_op_rel_only< op_rel_gteq_pre  > { typedef int result; };
+template<> struct arma_op_rel_only< op_rel_gteq_post > { typedef int result; };
+template<> struct arma_op_rel_only< op_rel_eq        > { typedef int result; };
+template<> struct arma_op_rel_only< op_rel_noteq     > { typedef int result; };
+
+
+
+template<typename T> struct arma_not_op_rel { typedef int result; };
+
+template<> struct arma_not_op_rel< op_rel_lt_pre    > { };
+template<> struct arma_not_op_rel< op_rel_lt_post   > { };
+template<> struct arma_not_op_rel< op_rel_gt_pre    > { };
+template<> struct arma_not_op_rel< op_rel_gt_post   > { };
+template<> struct arma_not_op_rel< op_rel_lteq_pre  > { };
+template<> struct arma_not_op_rel< op_rel_lteq_post > { };
+template<> struct arma_not_op_rel< op_rel_gteq_pre  > { };
+template<> struct arma_not_op_rel< op_rel_gteq_post > { };
+template<> struct arma_not_op_rel< op_rel_eq        > { };
+template<> struct arma_not_op_rel< op_rel_noteq     > { };
+
+
+
+template<typename T> struct arma_glue_rel_only { };
+
+template<> struct arma_glue_rel_only< glue_rel_lt    > { typedef int result; };
+template<> struct arma_glue_rel_only< glue_rel_gt    > { typedef int result; };
+template<> struct arma_glue_rel_only< glue_rel_lteq  > { typedef int result; };
+template<> struct arma_glue_rel_only< glue_rel_gteq  > { typedef int result; };
+template<> struct arma_glue_rel_only< glue_rel_eq    > { typedef int result; };
+template<> struct arma_glue_rel_only< glue_rel_noteq > { typedef int result; };
+
+
+
+template<typename T> struct arma_Mat_Col_Row_only { };
+
+template<typename eT> struct arma_Mat_Col_Row_only< Mat<eT> > { typedef Mat<eT> result; };
+template<typename eT> struct arma_Mat_Col_Row_only< Col<eT> > { typedef Col<eT> result; };
+template<typename eT> struct arma_Mat_Col_Row_only< Row<eT> > { typedef Row<eT> result; };
+
+
+
+template<typename  T> struct arma_Cube_only             { };
+template<typename eT> struct arma_Cube_only< Cube<eT> > { typedef Cube<eT> result; };
+
+
+
+//! @}