3636void
3737BaseCube<elem_type,derived>::print(const std::string extra_text) const
3838 {
39- arma_extra_debug_sigprint ();
39+ arma_debug_sigprint ();
4040
4141 const unwrap_cube<derived> tmp ( (*this ).get_ref () );
4242
5959void
6060BaseCube<elem_type,derived>::print(std::ostream& user_stream, const std::string extra_text) const
6161 {
62- arma_extra_debug_sigprint ();
62+ arma_debug_sigprint ();
6363
6464 const unwrap_cube<derived> tmp ( (*this ).get_ref () );
6565
8282void
8383BaseCube<elem_type,derived>::raw_print(const std::string extra_text) const
8484 {
85- arma_extra_debug_sigprint ();
85+ arma_debug_sigprint ();
8686
8787 const unwrap_cube<derived> tmp ( (*this ).get_ref () );
8888
@@ -105,7 +105,7 @@ inline
105105void
106106BaseCube<elem_type,derived>::raw_print(std::ostream& user_stream, const std::string extra_text) const
107107 {
108- arma_extra_debug_sigprint ();
108+ arma_debug_sigprint ();
109109
110110 const unwrap_cube<derived> tmp ( (*this ).get_ref () );
111111
@@ -128,7 +128,7 @@ inline
128128void
129129BaseCube<elem_type,derived>::brief_print(const std::string extra_text) const
130130 {
131- arma_extra_debug_sigprint ();
131+ arma_debug_sigprint ();
132132
133133 const unwrap_cube<derived> tmp ( (*this ).get_ref () );
134134
@@ -151,7 +151,7 @@ inline
151151void
152152BaseCube<elem_type,derived>::brief_print(std::ostream& user_stream, const std::string extra_text) const
153153 {
154- arma_extra_debug_sigprint ();
154+ arma_debug_sigprint ();
155155
156156 const unwrap_cube<derived> tmp ( (*this ).get_ref () );
157157
@@ -200,7 +200,7 @@ BaseCube<elem_type,derived>::index_min() const
200200
201201 if (P.get_n_elem () == 0 )
202202 {
203- arma_debug_check (true , " index_min(): object has no elements" );
203+ arma_conform_check (true , " index_min(): object has no elements" );
204204 }
205205 else
206206 {
@@ -223,7 +223,7 @@ BaseCube<elem_type,derived>::index_max() const
223223
224224 if (P.get_n_elem () == 0 )
225225 {
226- arma_debug_check (true , " index_max(): object has no elements" );
226+ arma_conform_check (true , " index_max(): object has no elements" );
227227 }
228228 else
229229 {
@@ -240,11 +240,11 @@ inline
240240bool
241241BaseCube<elem_type,derived>::is_zero(const typename get_pod_type<elem_type>::result tol) const
242242 {
243- arma_extra_debug_sigprint ();
243+ arma_debug_sigprint ();
244244
245245 typedef typename get_pod_type<elem_type>::result T;
246246
247- arma_debug_check ( (tol < T (0 )), " is_zero(): parameter 'tol' must be >= 0" );
247+ arma_conform_check ( (tol < T (0 )), " is_zero(): parameter 'tol' must be >= 0" );
248248
249249 if (ProxyCube<derived>::use_at || is_Cube<typename ProxyCube<derived>::stored_type>::value)
250250 {
@@ -292,7 +292,7 @@ inline
292292bool
293293BaseCube<elem_type,derived>::is_empty() const
294294 {
295- arma_extra_debug_sigprint ();
295+ arma_debug_sigprint ();
296296
297297 const ProxyCube<derived> P ( (*this ).get_ref () );
298298
@@ -306,9 +306,9 @@ inline
306306bool
307307BaseCube<elem_type,derived>::is_finite() const
308308 {
309- arma_extra_debug_sigprint ();
309+ arma_debug_sigprint ();
310310
311- if (arma_config::fast_math_warn) { arma_debug_warn_level (1 , " is_finite(): detection of non-finite values is not reliable in fast math mode" ); }
311+ if (arma_config::fast_math_warn) { arma_conform_warn (1 , " is_finite(): detection of non-finite values is not reliable in fast math mode" ); }
312312
313313 if (is_Cube<typename ProxyCube<derived>::stored_type>::value)
314314 {
@@ -342,9 +342,9 @@ inline
342342bool
343343BaseCube<elem_type,derived>::has_inf() const
344344 {
345- arma_extra_debug_sigprint ();
345+ arma_debug_sigprint ();
346346
347- if (arma_config::fast_math_warn) { arma_debug_warn_level (1 , " has_inf(): detection of non-finite values is not reliable in fast math mode" ); }
347+ if (arma_config::fast_math_warn) { arma_conform_warn (1 , " has_inf(): detection of non-finite values is not reliable in fast math mode" ); }
348348
349349 if (is_Cube<typename ProxyCube<derived>::stored_type>::value)
350350 {
@@ -378,9 +378,9 @@ inline
378378bool
379379BaseCube<elem_type,derived>::has_nan() const
380380 {
381- arma_extra_debug_sigprint ();
381+ arma_debug_sigprint ();
382382
383- if (arma_config::fast_math_warn) { arma_debug_warn_level (1 , " has_nan(): detection of non-finite values is not reliable in fast math mode" ); }
383+ if (arma_config::fast_math_warn) { arma_conform_warn (1 , " has_nan(): detection of non-finite values is not reliable in fast math mode" ); }
384384
385385 if (is_Cube<typename ProxyCube<derived>::stored_type>::value)
386386 {
@@ -414,9 +414,9 @@ inline
414414bool
415415BaseCube<elem_type,derived>::has_nonfinite() const
416416 {
417- arma_extra_debug_sigprint ();
417+ arma_debug_sigprint ();
418418
419- if (arma_config::fast_math_warn) { arma_debug_warn_level (1 , " has_nonfinite(): detection of non-finite values is not reliable in fast math mode" ); }
419+ if (arma_config::fast_math_warn) { arma_conform_warn (1 , " has_nonfinite(): detection of non-finite values is not reliable in fast math mode" ); }
420420
421421 if (is_Cube<typename ProxyCube<derived>::stored_type>::value)
422422 {
@@ -473,7 +473,7 @@ arma_inline
473473const derived&
474474BaseCube_eval_Cube<elem_type, derived>::eval() const
475475 {
476- arma_extra_debug_sigprint ();
476+ arma_debug_sigprint ();
477477
478478 return static_cast <const derived&>(*this );
479479 }
@@ -488,7 +488,7 @@ inline
488488Cube<elem_type>
489489BaseCube_eval_expr<elem_type, derived>::eval() const
490490 {
491- arma_extra_debug_sigprint ();
491+ arma_debug_sigprint ();
492492
493493 return Cube<elem_type>( static_cast <const derived&>(*this ) );
494494 }
0 commit comments