Go to the source code of this file.
Functions | |
FLA_Error | FLA_Apply_Q_UT_lhc (FLA_Obj A, FLA_Obj T, FLA_Obj W, FLA_Obj B, fla_apqut_t *cntl) |
References FLA_Apply_Q_UT_lhc_blk_var1(), FLA_Apply_Q_UT_lhc_blk_var2(), and FLA_Apply_Q_UT_lhc_task().
Referenced by FLA_Apply_Q_UT_internal().
00038 { 00039 FLA_Error r_val = FLA_SUCCESS; 00040 00041 if ( FLA_Cntl_variant( cntl ) == FLA_SUBPROBLEM ) 00042 { 00043 r_val = FLA_Apply_Q_UT_lhc_task( A, T, W, B, fla_apqut_cntl_leaf ); 00044 } 00045 else if ( FLA_Cntl_variant( cntl ) == FLA_BLOCKED_VARIANT1 ) 00046 { 00047 r_val = FLA_Apply_Q_UT_lhc_blk_var1( A, T, W, B, cntl ); 00048 } 00049 else if ( FLA_Cntl_variant( cntl ) == FLA_BLOCKED_VARIANT2 ) 00050 { 00051 r_val = FLA_Apply_Q_UT_lhc_blk_var2( A, T, W, B, cntl ); 00052 } 00053 00054 return r_val; 00055 }