diff --git a/include/armadillo_bits/fn_solve.hpp b/include/armadillo_bits/fn_solve.hpp index 7490d9e0..e088db0c 100644 --- a/include/armadillo_bits/fn_solve.hpp +++ b/include/armadillo_bits/fn_solve.hpp @@ -34,7 +34,7 @@ solve const solve_opts::opts& opts = solve_opts::none ) { - arma_extra_debug_sigprint(); + arma_extra_warn_sigprint(); return Glue(A.get_ref(), B.get_ref(), opts.flags); } @@ -52,14 +52,14 @@ solve const solve_opts::opts& opts = solve_opts::none ) { - arma_extra_debug_sigprint(); + arma_extra_warn_sigprint(); const bool status = glue_solve_gen::apply(out, A.get_ref(), B.get_ref(), opts.flags); if(status == false) { out.soft_reset(); - arma_extra_debug("solve(): solution not found"); + arma_extra_warn("solve(): solution not found"); } } @@ -79,7 +79,7 @@ solve const Base& B ) { - arma_extra_debug_sigprint(); + arma_extra_warn_sigprint(); uword flags = uword(0); @@ -102,7 +102,7 @@ solve const solve_opts::opts& opts ) { - arma_extra_debug_sigprint(); + arma_extra_warn_sigprint(); uword flags = opts.flags; @@ -124,7 +124,7 @@ solve const Base& B ) { - arma_extra_debug_sigprint(); + arma_extra_warn_sigprint(); uword flags = uword(0); @@ -136,7 +136,7 @@ solve if(status == false) { out.soft_reset(); - arma_extra_debug("solve(): solution not found"); + arma_extra_warn("solve(): solution not found"); } } @@ -153,7 +153,7 @@ solve const solve_opts::opts& opts ) { - arma_extra_debug_sigprint(); + arma_extra_warn_sigprint(); uword flags = opts.flags; @@ -165,7 +165,7 @@ solve if(status == false) { out.soft_reset(); - arma_extra_debug("solve(): solution not found"); + arma_extra_warn("solve(): solution not found"); } }