Mentions légales du service

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

Fix constness inconsistency (between decl and def) of permutation argument of...

Fix constness inconsistency (between decl and def) of permutation argument of butterfly_hierarchical.
parent 52fd0b9c
No related branches found
No related tags found
No related merge requests found
Pipeline #834089 skipped
...@@ -49,7 +49,7 @@ namespace Faust ...@@ -49,7 +49,7 @@ namespace Faust
Faust::TransformHelper<FPP, Cpu>* butterfly_hierarchical_balanced(const Faust::MatDense<FPP, Cpu>& A, const std::vector<Faust::MatSparse<FPP, Cpu>*> &supports, FactMeth meth = LIFTING); Faust::TransformHelper<FPP, Cpu>* butterfly_hierarchical_balanced(const Faust::MatDense<FPP, Cpu>& A, const std::vector<Faust::MatSparse<FPP, Cpu>*> &supports, FactMeth meth = LIFTING);
template<typename FPP> template<typename FPP>
Faust::TransformHelper<FPP, Cpu>* butterfly_hierarchical(const Faust::MatDense<FPP, Cpu>& A, const ButterflyFactDir &dir=RIGHT, const Faust::MatSparse<FPP, Cpu>* P=nullptr); Faust::TransformHelper<FPP, Cpu>* butterfly_hierarchical(const Faust::MatDense<FPP, Cpu>& A, const ButterflyFactDir &dir=RIGHT, Faust::MatSparse<FPP, Cpu>* P=nullptr);
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment