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 0 | #define ARMA_VERSION_PATCH 1 | |||
#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 | |||
debug.hpp | debug.hpp | |||
---|---|---|---|---|
skipping to change at line 971 | skipping to change at line 971 | |||
#else | #else | |||
#undef ARMA_EXTRA_DEBUG | #undef ARMA_EXTRA_DEBUG | |||
#define arma_debug_print true ? (void)0 : arma_print | #define arma_debug_print true ? (void)0 : arma_print | |||
#define arma_debug_warn true ? (void)0 : arma_warn | #define arma_debug_warn true ? (void)0 : arma_warn | |||
#define arma_debug_check true ? (void)0 : arma_check | #define arma_debug_check true ? (void)0 : arma_check | |||
#define arma_debug_set_error true ? (void)0 : arma_set_error | #define arma_debug_set_error true ? (void)0 : arma_set_error | |||
#define arma_debug_assert_same_size true ? (void)0 : arma_assert_same_s ize | #define arma_debug_assert_same_size true ? (void)0 : arma_assert_same_s ize | |||
#define arma_debug_assert_mul_size true ? (void)0 : arma_assert_mul_si ze | #define arma_debug_assert_mul_size true ? (void)0 : arma_assert_mul_si ze | |||
#define arma_debug_assert_cube_as_mat true ? (void)0 : arma_debug_assert_ cube_as_mat | #define arma_debug_assert_cube_as_mat true ? (void)0 : arma_assert_cube_a s_mat | |||
#endif | #endif | |||
#if defined(ARMA_EXTRA_DEBUG) | #if defined(ARMA_EXTRA_DEBUG) | |||
#define arma_extra_debug_sigprint arma_sigprint(ARMA_FNSIG); arma_b ktprint | #define arma_extra_debug_sigprint arma_sigprint(ARMA_FNSIG); arma_b ktprint | |||
#define arma_extra_debug_sigprint_this arma_sigprint(ARMA_FNSIG); arma_t hisprint | #define arma_extra_debug_sigprint_this arma_sigprint(ARMA_FNSIG); arma_t hisprint | |||
#define arma_extra_debug_print arma_print | #define arma_extra_debug_print arma_print | |||
#define arma_extra_debug_warn arma_warn | #define arma_extra_debug_warn arma_warn | |||
#define arma_extra_debug_check arma_check | #define arma_extra_debug_check arma_check | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
podarray_bones.hpp | podarray_bones.hpp | |||
---|---|---|---|---|
skipping to change at line 70 | skipping to change at line 70 | |||
inline void zeros(); | inline void zeros(); | |||
inline void zeros(const uword new_n_elem); | inline void zeros(const uword new_n_elem); | |||
arma_inline eT* memptr(); | arma_inline eT* memptr(); | |||
arma_inline const eT* memptr() const; | arma_inline const eT* memptr() const; | |||
arma_hot inline void copy_row(const Mat<eT>& A, const uword row); | arma_hot inline void copy_row(const Mat<eT>& A, const uword row); | |||
protected: | protected: | |||
inline void init_cold(const uword new_n_elemZ); | inline void init_cold(const uword new_n_elem); | |||
inline void init_warm(const uword new_n_elem); | inline void init_warm(const uword new_n_elem); | |||
}; | }; | |||
//! @} | //! @} | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||