partial_unwrap_check< Row< eT > > Class Template Reference
[Unwrap]

#include <unwrap.hpp>

List of all members.

Public Member Functions

 partial_unwrap_check (const Row< eT > &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< Row< eT > >

Definition at line 979 of file unwrap.hpp.


Constructor & Destructor Documentation

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

Definition at line 984 of file unwrap.hpp.

00985     : do_trans(false)
00986     , do_times(false)
00987     , val     (1)
00988     , M_local ( (&A == &B) ? new Mat<eT>(A) : 0 )
00989     , M       ( (&A == &B) ? (*M_local)     : A )
00990     {
00991     arma_extra_debug_sigprint();
00992     }

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

Definition at line 996 of file unwrap.hpp.

00997     {
00998     arma_extra_debug_sigprint();
00999     
01000     if(M_local)
01001       {
01002       delete M_local;
01003       }
01004     }


Member Data Documentation

template<typename eT >
const bool partial_unwrap_check< Row< eT > >::do_trans

Definition at line 1008 of file unwrap.hpp.

template<typename eT >
const bool partial_unwrap_check< Row< eT > >::do_times

Definition at line 1009 of file unwrap.hpp.

template<typename eT >
const eT partial_unwrap_check< Row< eT > >::val

Definition at line 1010 of file unwrap.hpp.

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

Definition at line 1011 of file unwrap.hpp.

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

Definition at line 1012 of file unwrap.hpp.