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

#include <unwrap.hpp>

List of all members.

Public Member Functions

 partial_unwrap_check (const Op< Mat< 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< Col< eT >, op_trans2 > >

Definition at line 1200 of file unwrap.hpp.


Constructor & Destructor Documentation

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

Definition at line 1205 of file unwrap.hpp.

01206     : do_trans(true)
01207     , do_times(true)
01208     , val     (A.aux)
01209     , M_local ( (&A.m == &B) ? new Mat<eT>(A.m) : 0   )
01210     , M       ( (&A.m == &B) ? (*M_local)       : A.m )
01211     {
01212     arma_extra_debug_sigprint();
01213     }

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

Definition at line 1216 of file unwrap.hpp.

01217     {
01218     arma_extra_debug_sigprint();
01219     
01220     if(M_local)
01221       {
01222       delete M_local;
01223       }
01224     }


Member Data Documentation

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

Definition at line 1228 of file unwrap.hpp.

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

Definition at line 1229 of file unwrap.hpp.

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

Definition at line 1230 of file unwrap.hpp.

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

Definition at line 1231 of file unwrap.hpp.

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

Definition at line 1232 of file unwrap.hpp.