Mentions légales du service

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

Allow pyfaust hierarchical wrapper to use skperm prox.

parent 2f727ad5
Branches
Tags
No related merge requests found
......@@ -20,16 +20,17 @@ using namespace Faust;
bool PyxConstraintGeneric::is_int_constraint()
{
switch(static_cast<faust_constraint_name>(this->name))
{
case CONSTRAINT_NAME_SP:
case CONSTRAINT_NAME_SPCOL:
case CONSTRAINT_NAME_SPLIN:
case CONSTRAINT_NAME_SPLINCOL:
case CONSTRAINT_NAME_SP_POS:
return true;
default:
return false;
}
{
case CONSTRAINT_NAME_SP:
case CONSTRAINT_NAME_SPCOL:
case CONSTRAINT_NAME_SPLIN:
case CONSTRAINT_NAME_SPLINCOL:
case CONSTRAINT_NAME_SP_POS:
case CONSTRAINT_NAME_SKPERM:
return true;
default:
return false;
}
}
bool PyxConstraintGeneric::is_real_constraint()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment