Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 82b65a0c authored by hhakim's avatar hhakim
Browse files

Reduce noise in TransformHelper<FPP,Cpu>::set_FM_mul_mode where silent...

Reduce noise in TransformHelper<FPP,Cpu>::set_FM_mul_mode where silent argument default value changed from false to true.
parent f1cce588
Branches
Tags
No related merge requests found
......@@ -100,7 +100,7 @@ namespace Faust
// MatDense<FPP,Cpu> multiply(const MatDense<FPP,Cpu> A) const;
virtual MatDense<FPP, Cpu> multiply(const MatDense<FPP,Cpu> &A, const bool transpose=false, const bool conjugate=false);
virtual void update_total_nnz();
void set_FM_mul_mode(const int mul_order_opt_mode, const bool silent=false);
void set_FM_mul_mode(const int mul_order_opt_mode, const bool silent=true);
void set_Fv_mul_mode(const int mode);
virtual MatDense<FPP, Cpu> multiply(const MatSparse<FPP,Cpu> &A, const bool transpose=false, const bool conjugate=false);
......
......@@ -517,7 +517,7 @@ namespace Faust {
}
template<typename FPP>
void TransformHelper<FPP,Cpu>::set_FM_mul_mode(const int mul_order_opt_mode, const bool silent /* = false */)
void TransformHelper<FPP,Cpu>::set_FM_mul_mode(const int mul_order_opt_mode, const bool silent /* = true */)
{
this->mul_order_opt_mode = mul_order_opt_mode;
if(! silent)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment