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 1087 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 1092 of file unwrap.hpp.

01093     : do_trans(true)
01094     , do_times(true)
01095     , val     (A.aux)
01096     , M_local ( (&A.m == &B) ? new Mat<eT>(A.m) : 0   )
01097     , M       ( (&A.m == &B) ? (*M_local)       : A.m )
01098     {
01099     arma_extra_debug_sigprint();
01100     }

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

Definition at line 1103 of file unwrap.hpp.

01104     {
01105     arma_extra_debug_sigprint();
01106     
01107     if(M_local)
01108       {
01109       delete M_local;
01110       }
01111     }


Member Data Documentation

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

Definition at line 1115 of file unwrap.hpp.

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

Definition at line 1116 of file unwrap.hpp.

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

Definition at line 1117 of file unwrap.hpp.

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

Definition at line 1118 of file unwrap.hpp.

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

Definition at line 1119 of file unwrap.hpp.