Mentions légales du service

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

Change the default template type parameter from float to Real<FPP> (more consistent).

parent b292ba9b
Branches
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ namespace Faust
{
template<typename FPP, FDevice DEVICE, typename FPP2 = float>
template<typename FPP, FDevice DEVICE, typename FPP2 = Real<FPP>>
class GivensFGFT : public GivensFGFTGen<FPP, DEVICE, FPP2> {
/**
* \class GivensFGFT
......
......@@ -13,7 +13,7 @@
namespace Faust
{
template<typename FPP, FDevice DEVICE, typename FPP2 = float>
template<typename FPP, FDevice DEVICE, typename FPP2 = Real<FPP>>
class GivensFGFTComplex : public GivensFGFTGen<typename FPP::value_type, DEVICE, FPP2, FPP>{
/**
* \class GivensFGFTComplex
......
......@@ -15,7 +15,7 @@ namespace Faust
template<typename FPP, FDevice DEVICE, typename FPP2, typename FPP4>
class GivensFGFTParallelGen;
template<typename FPP, FDevice DEVICE, typename FPP2 = float, typename FPP4 = FPP>
template<typename FPP, FDevice DEVICE, typename FPP2 = Real<FPP>, typename FPP4 = FPP>
class GivensFGFTGen {
/**
* \class GivensFGFTGen
......
......@@ -10,7 +10,7 @@ namespace Faust
{
template<typename FPP, FDevice DEVICE, typename FPP2 = float>
template<typename FPP, FDevice DEVICE, typename FPP2 = Real<FPP>>
class GivensFGFTParallel : public GivensFGFT<FPP,DEVICE,FPP2>, public GivensFGFTParallelGen<FPP, DEVICE, FPP2>
{
/**
......
......@@ -10,7 +10,7 @@ namespace Faust
{
template<typename FPP, FDevice DEVICE, typename FPP2 = float>
template<typename FPP, FDevice DEVICE, typename FPP2 = Real<FPP>>
class GivensFGFTParallelComplex : public GivensFGFTComplex<FPP,DEVICE,FPP2>, public GivensFGFTParallelGen<typename FPP::value_type, DEVICE, FPP2, FPP>
{
/**
......
......@@ -10,7 +10,7 @@ namespace Faust
{
template<typename FPP, FDevice DEVICE, typename FPP2 = float, typename FPP4 = FPP>
template<typename FPP, FDevice DEVICE, typename FPP2 = Real<FPP>, typename FPP4 = FPP>
class GivensFGFTParallelGen
{
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment