Op_meat.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 template<typename T1, typename op_type>
00023 Op<T1, op_type>::Op(const T1& in_m)
00024 : m(in_m)
00025 , aux(aux)
00026 , aux_u32_a(aux_u32_a)
00027 , aux_u32_b(aux_u32_b)
00028 {
00029 arma_extra_debug_sigprint();
00030 }
00031
00032
00033
00034 template<typename T1, typename op_type>
00035 Op<T1, op_type>::Op(const T1& in_m, const typename T1::elem_type in_aux)
00036 : m(in_m)
00037 , aux(in_aux)
00038 , aux_u32_a(aux_u32_a)
00039 , aux_u32_b(aux_u32_b)
00040 {
00041 arma_extra_debug_sigprint();
00042 }
00043
00044
00045
00046 template<typename T1, typename op_type>
00047 Op<T1, op_type>::Op(const T1& in_m, const u32 in_aux_u32_a, const u32 in_aux_u32_b)
00048 : m(in_m)
00049 , aux(aux)
00050 , aux_u32_a(in_aux_u32_a)
00051 , aux_u32_b(in_aux_u32_b)
00052 {
00053 arma_extra_debug_sigprint();
00054 }
00055
00056
00057
00058 template<typename T1, typename op_type>
00059 Op<T1, op_type>::Op(const T1& in_m, const typename T1::elem_type in_aux, const u32 in_aux_u32_a, const u32 in_aux_u32_b)
00060 : m(in_m)
00061 , aux(in_aux)
00062 , aux_u32_a(in_aux_u32_a)
00063 , aux_u32_b(in_aux_u32_b)
00064 {
00065 arma_extra_debug_sigprint();
00066 }
00067
00068
00069
00070 template<typename T1, typename op_type>
00071 Op<T1, op_type>::~Op()
00072 {
00073 arma_extra_debug_sigprint();
00074 }
00075
00076
00077
00078