partial_unwrap_check< Op< Row< eT >, op_trans2 > > Class Template Reference
[Unwrap]

#include <unwrap.hpp>

List of all members.

Public Member Functions

 partial_unwrap_check (const Op< Row< eT >, op_trans2 > &A, const Mat< eT > &B)
 ~partial_unwrap_check ()

Public Attributes

const bool do_trans
const bool do_times
const eT val
const Mat< eT > * M_local
const Mat< eT > & M

Detailed Description

template<typename eT>
class partial_unwrap_check< Op< Row< eT >, op_trans2 > >

Definition at line 1056 of file unwrap.hpp.


Constructor & Destructor Documentation

template<typename eT >
partial_unwrap_check< Op< Row< eT >, op_trans2 > >::partial_unwrap_check ( const Op< Row< eT >, op_trans2 > &  A,
const Mat< eT > &  B 
) [inline]

Definition at line 1061 of file unwrap.hpp.

01062     : do_trans(true)
01063     , do_times(true)
01064     , val     (A.aux)
01065     , M_local ( (&A.m == &B) ? new Mat<eT>(A.m) : 0   )
01066     , M       ( (&A.m == &B) ? (*M_local)       : A.m )
01067     {
01068     arma_extra_debug_sigprint();
01069     }

template<typename eT >
partial_unwrap_check< Op< Row< eT >, op_trans2 > >::~partial_unwrap_check (  )  [inline]

Definition at line 1072 of file unwrap.hpp.

01073     {
01074     arma_extra_debug_sigprint();
01075     
01076     if(M_local)
01077       {
01078       delete M_local;
01079       }
01080     }


Member Data Documentation

template<typename eT >
const bool partial_unwrap_check< Op< Row< eT >, op_trans2 > >::do_trans

Definition at line 1084 of file unwrap.hpp.

template<typename eT >
const bool partial_unwrap_check< Op< Row< eT >, op_trans2 > >::do_times

Definition at line 1085 of file unwrap.hpp.

template<typename eT >
const eT partial_unwrap_check< Op< Row< eT >, op_trans2 > >::val

Definition at line 1086 of file unwrap.hpp.

template<typename eT >
const Mat<eT>* partial_unwrap_check< Op< Row< eT >, op_trans2 > >::M_local

Definition at line 1087 of file unwrap.hpp.

template<typename eT >
const Mat<eT>& partial_unwrap_check< Op< Row< eT >, op_trans2 > >::M

Definition at line 1088 of file unwrap.hpp.