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 1231 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 1236 of file unwrap.hpp.

01237     : do_trans(true)
01238     , do_times(true)
01239     , val     (A.aux)
01240     , M_local ( (&A.m == &B) ? new Mat<eT>(A.m) : 0   )
01241     , M       ( (&A.m == &B) ? (*M_local)       : A.m )
01242     {
01243     arma_extra_debug_sigprint();
01244     }

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

Definition at line 1247 of file unwrap.hpp.

01248     {
01249     arma_extra_debug_sigprint();
01250     
01251     if(M_local)
01252       {
01253       delete M_local;
01254       }
01255     }


Member Data Documentation

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

Definition at line 1259 of file unwrap.hpp.

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

Definition at line 1260 of file unwrap.hpp.

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

Definition at line 1261 of file unwrap.hpp.

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

Definition at line 1262 of file unwrap.hpp.

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

Definition at line 1263 of file unwrap.hpp.