rearrange to reduce delta

This commit is contained in:
conrad
2023-09-05 13:48:15 +10:00
parent ee84563034
commit 9cda7ea2d6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -100,9 +100,9 @@ op_inv_gen_full::apply_direct(Mat<typename T1::elem_type>& out, const Base<typen
if(allow_approx) { arma_extra_debug_print("allow_approx"); }
if(no_ugly ) { arma_extra_debug_print("no_ugly"); }
arma_debug_check( (no_ugly && allow_approx), "inv(): options 'no_ugly' and 'allow_approx' are mutually exclusive" );
arma_debug_check( (fast && allow_approx), "inv(): options 'fast' and 'allow_approx' are mutually exclusive" );
arma_debug_check( (fast && no_ugly ), "inv(): options 'fast' and 'no_ugly' are mutually exclusive" );
arma_debug_check( (no_ugly && allow_approx), "inv(): options 'no_ugly' and 'allow_approx' are mutually exclusive" );
}
if(no_ugly)
+1 -1
View File
@@ -100,9 +100,9 @@ op_inv_spd_full::apply_direct(Mat<typename T1::elem_type>& out, const Base<typen
if(allow_approx) { arma_extra_debug_print("allow_approx"); }
if(no_ugly ) { arma_extra_debug_print("no_ugly"); }
arma_debug_check( (no_ugly && allow_approx), "inv_sympd(): options 'no_ugly' and 'allow_approx' are mutually exclusive" );
arma_debug_check( (fast && allow_approx), "inv_sympd(): options 'fast' and 'allow_approx' are mutually exclusive" );
arma_debug_check( (fast && no_ugly ), "inv_sympd(): options 'fast' and 'no_ugly' are mutually exclusive" );
arma_debug_check( (no_ugly && allow_approx), "inv_sympd(): options 'no_ugly' and 'allow_approx' are mutually exclusive" );
}
if(no_ugly)