|
libflame
revision_anchor
|
Functions | |
| FLA_Error | FLA_Apply_Q_UT_rhfr (FLA_Obj A, FLA_Obj T, FLA_Obj W, FLA_Obj B, fla_apqut_t *cntl) |
Variables | |
| fla_apqut_t * | fla_apqut_cntl_leaf |
| FLA_Error FLA_Apply_Q_UT_rhfr | ( | FLA_Obj | A, |
| FLA_Obj | T, | ||
| FLA_Obj | W, | ||
| FLA_Obj | B, | ||
| fla_apqut_t * | cntl | ||
| ) |
References FLA_Apply_Q_UT_rhfr_blk_var1(), FLA_Apply_Q_UT_rhfr_blk_var2(), and FLA_Apply_Q_UT_rhfr_blk_var3().
Referenced by FLA_Apply_Q_UT_internal().
{
FLA_Error r_val = FLA_SUCCESS;
if ( FLA_Cntl_variant( cntl ) == FLA_BLOCKED_VARIANT1 )
{
r_val = FLA_Apply_Q_UT_rhfr_blk_var1( A, T, W, B, cntl );
}
else if ( FLA_Cntl_variant( cntl ) == FLA_BLOCKED_VARIANT2 )
{
r_val = FLA_Apply_Q_UT_rhfr_blk_var2( A, T, W, B, cntl );
}
else if ( FLA_Cntl_variant( cntl ) == FLA_BLOCKED_VARIANT3 )
{
r_val = FLA_Apply_Q_UT_rhfr_blk_var3( A, T, W, B, cntl );
}
else
{
FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
}
return r_val;
}
1.7.6.1