arma_version.hpp   arma_version.hpp 
skipping to change at line 18 skipping to change at line 18
// Lesser General Public License (LGPL) as published // Lesser General Public License (LGPL) as published
// by the Free Software Foundation, either version 3 // by the Free Software Foundation, either version 3
// of the License or (at your option) any later version. // of the License or (at your option) any later version.
// (see http://www.opensource.org/licenses for more info) // (see http://www.opensource.org/licenses for more info)
//! \addtogroup arma_version //! \addtogroup arma_version
//! @{ //! @{
#define ARMA_VERSION_MAJOR 3 #define ARMA_VERSION_MAJOR 3
#define ARMA_VERSION_MINOR 2 #define ARMA_VERSION_MINOR 2
#define ARMA_VERSION_PATCH 4 #define ARMA_VERSION_PATCH 5
#define ARMA_VERSION_NAME "Creamfields" #define ARMA_VERSION_NAME "Creamfields"
struct arma_version struct arma_version
{ {
static const unsigned int major = ARMA_VERSION_MAJOR; static const unsigned int major = ARMA_VERSION_MAJOR;
static const unsigned int minor = ARMA_VERSION_MINOR; static const unsigned int minor = ARMA_VERSION_MINOR;
static const unsigned int patch = ARMA_VERSION_PATCH; static const unsigned int patch = ARMA_VERSION_PATCH;
static static
inline inline
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 subview_elem2_bones.hpp   subview_elem2_bones.hpp 
skipping to change at line 37 skipping to change at line 37
arma_aligned const Mat<eT>& m; arma_aligned const Mat<eT>& m;
arma_aligned const Base<uword,T1>& base_ri; arma_aligned const Base<uword,T1>& base_ri;
arma_aligned const Base<uword,T2>& base_ci; arma_aligned const Base<uword,T2>& base_ci;
const bool all_rows; const bool all_rows;
const bool all_cols; const bool all_cols;
protected: protected:
arma_inline subview_elem2(const Mat<eT>& in_m, const Base<uword,T1>& in_r i, const Base<uword,T1>& in_ci, const bool in_all_rows, const bool in_all_c ols); arma_inline subview_elem2(const Mat<eT>& in_m, const Base<uword,T1>& in_r i, const Base<uword,T2>& in_ci, const bool in_all_rows, const bool in_all_c ols);
public: public:
inline ~subview_elem2(); inline ~subview_elem2();
template<typename op_type> template<typename op_type>
inline void inplace_op(const eT val); inline void inplace_op(const eT val);
template<typename op_type, typename expr> template<typename op_type, typename expr>
inline void inplace_op(const Base<eT,expr>& x); inline void inplace_op(const Base<eT,expr>& x);
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 subview_elem2_meat.hpp   subview_elem2_meat.hpp 
skipping to change at line 29 skipping to change at line 29
{ {
arma_extra_debug_sigprint(); arma_extra_debug_sigprint();
} }
template<typename eT, typename T1, typename T2> template<typename eT, typename T1, typename T2>
arma_inline arma_inline
subview_elem2<eT,T1,T2>::subview_elem2 subview_elem2<eT,T1,T2>::subview_elem2
( (
const Mat<eT>& in_m, const Mat<eT>& in_m,
const Base<uword,T1>& in_ri, const Base<uword,T1>& in_ri,
const Base<uword,T1>& in_ci, const Base<uword,T2>& in_ci,
const bool in_all_rows, const bool in_all_rows,
const bool in_all_cols const bool in_all_cols
) )
: m (in_m ) : m (in_m )
, base_ri (in_ri ) , base_ri (in_ri )
, base_ci (in_ci ) , base_ci (in_ci )
, all_rows (in_all_rows) , all_rows (in_all_rows)
, all_cols (in_all_cols) , all_cols (in_all_cols)
{ {
arma_extra_debug_sigprint(); arma_extra_debug_sigprint();
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/