| Proxy.hpp | | Proxy.hpp | |
| | | | |
| skipping to change at line 40 | | skipping to change at line 40 | |
| class Proxy< Mat<eT> > | | class Proxy< Mat<eT> > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef eT elem_type; | | typedef eT elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef Mat<eT> stored_type; | | typedef Mat<eT> stored_type; | |
| typedef const eT* ea_type; | | typedef const eT* ea_type; | |
| | | | |
| static const bool prefer_at_accessor = false; | | static const bool prefer_at_accessor = false; | |
|
| | | static const bool has_subview = false; | |
| | | | |
| arma_aligned const Mat<eT>& Q; | | arma_aligned const Mat<eT>& Q; | |
| | | | |
| inline explicit Proxy(const Mat<eT>& A) | | inline explicit Proxy(const Mat<eT>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.n_rows; } | | arma_inline u32 get_n_rows() const { return Q.n_rows; } | |
| | | | |
| skipping to change at line 71 | | skipping to change at line 72 | |
| class Proxy< Col<eT> > | | class Proxy< Col<eT> > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef eT elem_type; | | typedef eT elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef Col<eT> stored_type; | | typedef Col<eT> stored_type; | |
| typedef const eT* ea_type; | | typedef const eT* ea_type; | |
| | | | |
| static const bool prefer_at_accessor = false; | | static const bool prefer_at_accessor = false; | |
|
| | | static const bool has_subview = false; | |
| | | | |
| arma_aligned const Col<eT>& Q; | | arma_aligned const Col<eT>& Q; | |
| | | | |
| inline explicit Proxy(const Col<eT>& A) | | inline explicit Proxy(const Col<eT>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.n_rows; } | | arma_inline u32 get_n_rows() const { return Q.n_rows; } | |
| | | | |
| skipping to change at line 102 | | skipping to change at line 104 | |
| class Proxy< Row<eT> > | | class Proxy< Row<eT> > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef eT elem_type; | | typedef eT elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef Row<eT> stored_type; | | typedef Row<eT> stored_type; | |
| typedef const eT* ea_type; | | typedef const eT* ea_type; | |
| | | | |
| static const bool prefer_at_accessor = false; | | static const bool prefer_at_accessor = false; | |
|
| | | static const bool has_subview = false; | |
| | | | |
| arma_aligned const Row<eT>& Q; | | arma_aligned const Row<eT>& Q; | |
| | | | |
| inline explicit Proxy(const Row<eT>& A) | | inline explicit Proxy(const Row<eT>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return 1; } | | arma_inline u32 get_n_rows() const { return 1; } | |
| | | | |
| skipping to change at line 133 | | skipping to change at line 136 | |
| class Proxy< Op<T1, op_type> > | | class Proxy< Op<T1, op_type> > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef typename T1::elem_type elem_type; | | typedef typename T1::elem_type elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef Mat<elem_type> stored_type; | | typedef Mat<elem_type> stored_type; | |
| typedef const elem_type* ea_type; | | typedef const elem_type* ea_type; | |
| | | | |
| static const bool prefer_at_accessor = false; | | static const bool prefer_at_accessor = false; | |
|
| | | static const bool has_subview = false; | |
| | | | |
| arma_aligned const Mat<elem_type> Q; | | arma_aligned const Mat<elem_type> Q; | |
| | | | |
| inline explicit Proxy(const Op<T1, op_type>& A) | | inline explicit Proxy(const Op<T1, op_type>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.n_rows; } | | arma_inline u32 get_n_rows() const { return Q.n_rows; } | |
| | | | |
| skipping to change at line 164 | | skipping to change at line 168 | |
| class Proxy< Glue<T1, T2, glue_type> > | | class Proxy< Glue<T1, T2, glue_type> > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef typename T1::elem_type elem_type; | | typedef typename T1::elem_type elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef Mat<elem_type> stored_type; | | typedef Mat<elem_type> stored_type; | |
| typedef const elem_type* ea_type; | | typedef const elem_type* ea_type; | |
| | | | |
| static const bool prefer_at_accessor = false; | | static const bool prefer_at_accessor = false; | |
|
| | | static const bool has_subview = false; | |
| | | | |
| arma_aligned const Mat<elem_type> Q; | | arma_aligned const Mat<elem_type> Q; | |
| | | | |
| inline explicit Proxy(const Glue<T1, T2, glue_type>& A) | | inline explicit Proxy(const Glue<T1, T2, glue_type>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.n_rows; } | | arma_inline u32 get_n_rows() const { return Q.n_rows; } | |
| | | | |
| skipping to change at line 195 | | skipping to change at line 200 | |
| class Proxy< subview<eT> > | | class Proxy< subview<eT> > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef eT elem_type; | | typedef eT elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef subview<eT> stored_type; | | typedef subview<eT> stored_type; | |
| typedef const subview<eT>& ea_type; | | typedef const subview<eT>& ea_type; | |
| | | | |
| static const bool prefer_at_accessor = true; | | static const bool prefer_at_accessor = true; | |
|
| | | static const bool has_subview = true; | |
| | | | |
| arma_aligned const subview<eT>& Q; | | arma_aligned const subview<eT>& Q; | |
| | | | |
| inline explicit Proxy(const subview<eT>& A) | | inline explicit Proxy(const subview<eT>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.n_rows; } | | arma_inline u32 get_n_rows() const { return Q.n_rows; } | |
| | | | |
| skipping to change at line 226 | | skipping to change at line 232 | |
| class Proxy< subview_elem1<eT,T1> > | | class Proxy< subview_elem1<eT,T1> > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef eT elem_type; | | typedef eT elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef Mat<eT> stored_type; | | typedef Mat<eT> stored_type; | |
| typedef const eT* ea_type; | | typedef const eT* ea_type; | |
| | | | |
| static const bool prefer_at_accessor = false; | | static const bool prefer_at_accessor = false; | |
|
| | | static const bool has_subview = false; | |
| | | | |
| arma_aligned const Mat<eT> Q; | | arma_aligned const Mat<eT> Q; | |
| | | | |
| inline explicit Proxy(const subview_elem1<eT,T1>& A) | | inline explicit Proxy(const subview_elem1<eT,T1>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.n_rows; } | | arma_inline u32 get_n_rows() const { return Q.n_rows; } | |
| | | | |
| skipping to change at line 257 | | skipping to change at line 264 | |
| class Proxy< diagview<eT> > | | class Proxy< diagview<eT> > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef eT elem_type; | | typedef eT elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef diagview<eT> stored_type; | | typedef diagview<eT> stored_type; | |
| typedef const diagview<eT>& ea_type; | | typedef const diagview<eT>& ea_type; | |
| | | | |
| static const bool prefer_at_accessor = false; | | static const bool prefer_at_accessor = false; | |
|
| | | static const bool has_subview = true; | |
| | | | |
| arma_aligned const diagview<eT>& Q; | | arma_aligned const diagview<eT>& Q; | |
| | | | |
| inline explicit Proxy(const diagview<eT>& A) | | inline explicit Proxy(const diagview<eT>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.n_rows; } | | arma_inline u32 get_n_rows() const { return Q.n_rows; } | |
| | | | |
| skipping to change at line 288 | | skipping to change at line 296 | |
| class Proxy< eOp<T1, eop_type > > | | class Proxy< eOp<T1, eop_type > > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef typename T1::elem_type elem_type; | | typedef typename T1::elem_type elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef eOp<T1, eop_type> stored_type; | | typedef eOp<T1, eop_type> stored_type; | |
| typedef const eOp<T1, eop_type>& ea_type; | | typedef const eOp<T1, eop_type>& ea_type; | |
| | | | |
| static const bool prefer_at_accessor = eOp<T1, eop_type>::prefer_at_acces
sor; | | static const bool prefer_at_accessor = eOp<T1, eop_type>::prefer_at_acces
sor; | |
|
| | | static const bool has_subview = eOp<T1, eop_type>::has_subview; | |
| | | | |
| arma_aligned const eOp<T1, eop_type>& Q; | | arma_aligned const eOp<T1, eop_type>& Q; | |
| | | | |
| inline explicit Proxy(const eOp<T1, eop_type>& A) | | inline explicit Proxy(const eOp<T1, eop_type>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.get_n_rows(); } | | arma_inline u32 get_n_rows() const { return Q.get_n_rows(); } | |
| | | | |
| skipping to change at line 319 | | skipping to change at line 328 | |
| class Proxy< eGlue<T1, T2, eglue_type > > | | class Proxy< eGlue<T1, T2, eglue_type > > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef typename T1::elem_type elem_type; | | typedef typename T1::elem_type elem_type; | |
| typedef typename get_pod_type<elem_type>::result pod_type; | | typedef typename get_pod_type<elem_type>::result pod_type; | |
| typedef eGlue<T1, T2, eglue_type> stored_type; | | typedef eGlue<T1, T2, eglue_type> stored_type; | |
| typedef const eGlue<T1, T2, eglue_type>& ea_type; | | typedef const eGlue<T1, T2, eglue_type>& ea_type; | |
| | | | |
| static const bool prefer_at_accessor = eGlue<T1, T2, eglue_type>::prefer_
at_accessor; | | static const bool prefer_at_accessor = eGlue<T1, T2, eglue_type>::prefer_
at_accessor; | |
|
| | | static const bool has_subview = eGlue<T1, T2, eglue_type>::has_sub
view; | |
| | | | |
| arma_aligned const eGlue<T1, T2, eglue_type>& Q; | | arma_aligned const eGlue<T1, T2, eglue_type>& Q; | |
| | | | |
| inline explicit Proxy(const eGlue<T1, T2, eglue_type>& A) | | inline explicit Proxy(const eGlue<T1, T2, eglue_type>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.get_n_rows(); } | | arma_inline u32 get_n_rows() const { return Q.get_n_rows(); } | |
| | | | |
| skipping to change at line 350 | | skipping to change at line 360 | |
| class Proxy< mtOp<out_eT, T1, op_type> > | | class Proxy< mtOp<out_eT, T1, op_type> > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef out_eT elem_type; | | typedef out_eT elem_type; | |
| typedef typename get_pod_type<out_eT>::result pod_type; | | typedef typename get_pod_type<out_eT>::result pod_type; | |
| typedef Mat<out_eT> stored_type; | | typedef Mat<out_eT> stored_type; | |
| typedef const elem_type* ea_type; | | typedef const elem_type* ea_type; | |
| | | | |
| static const bool prefer_at_accessor = false; | | static const bool prefer_at_accessor = false; | |
|
| | | static const bool has_subview = false; | |
| | | | |
| arma_aligned const Mat<out_eT> Q; | | arma_aligned const Mat<out_eT> Q; | |
| | | | |
| inline explicit Proxy(const mtOp<out_eT, T1, op_type>& A) | | inline explicit Proxy(const mtOp<out_eT, T1, op_type>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.n_rows; } | | arma_inline u32 get_n_rows() const { return Q.n_rows; } | |
| | | | |
| skipping to change at line 381 | | skipping to change at line 392 | |
| class Proxy< mtGlue<out_eT, T1, T2, glue_type > > | | class Proxy< mtGlue<out_eT, T1, T2, glue_type > > | |
| { | | { | |
| public: | | public: | |
| | | | |
| typedef out_eT elem_type; | | typedef out_eT elem_type; | |
| typedef typename get_pod_type<out_eT>::result pod_type; | | typedef typename get_pod_type<out_eT>::result pod_type; | |
| typedef Mat<out_eT> stored_type; | | typedef Mat<out_eT> stored_type; | |
| typedef const elem_type* ea_type; | | typedef const elem_type* ea_type; | |
| | | | |
| static const bool prefer_at_accessor = false; | | static const bool prefer_at_accessor = false; | |
|
| | | static const bool has_subview = false; | |
| | | | |
| arma_aligned const Mat<out_eT> Q; | | arma_aligned const Mat<out_eT> Q; | |
| | | | |
| inline explicit Proxy(const mtGlue<out_eT, T1, T2, glue_type>& A) | | inline explicit Proxy(const mtGlue<out_eT, T1, T2, glue_type>& A) | |
| : Q(A) | | : Q(A) | |
| { | | { | |
| arma_extra_debug_sigprint(); | | arma_extra_debug_sigprint(); | |
| } | | } | |
| | | | |
| arma_inline u32 get_n_rows() const { return Q.n_rows; } | | arma_inline u32 get_n_rows() const { return Q.n_rows; } | |
| | | | |
End of changes. 12 change blocks. |
| 0 lines changed or deleted | | 12 lines changed or added | |
|