|
libflame
revision_anchor
|
Functions | |
| FLA_Error | FLA_Apply_pivots_ln (FLA_Obj p, FLA_Obj A, fla_appiv_t *cntl) |
| FLA_Error FLA_Apply_pivots_ln | ( | FLA_Obj | p, |
| FLA_Obj | A, | ||
| fla_appiv_t * | cntl | ||
| ) |
References FLA_Apply_pivots_ln_blk_var1(), FLA_Apply_pivots_ln_blk_var2(), FLA_Apply_pivots_ln_opt_var1(), and FLA_Apply_pivots_ln_unb_ext().
Referenced by FLA_Apply_pivots_internal().
{
FLA_Error r_val = FLA_SUCCESS;
if ( FLA_Cntl_variant( cntl ) == FLA_UNBLOCKED_EXTERN )
{
r_val = FLA_Apply_pivots_ln_unb_ext( p, A );
}
else if ( FLA_Cntl_variant( cntl ) == FLA_UNB_OPT_VARIANT1 )
{
r_val = FLA_Apply_pivots_ln_opt_var1( p, A );
}
else if ( FLA_Cntl_variant( cntl ) == FLA_BLOCKED_VARIANT1 )
{
r_val = FLA_Apply_pivots_ln_blk_var1( p, A, cntl );
}
else if ( FLA_Cntl_variant( cntl ) == FLA_BLOCKED_VARIANT2 )
{
r_val = FLA_Apply_pivots_ln_blk_var2( p, A, cntl );
}
else
{
FLA_Check_error_code( FLA_NOT_YET_IMPLEMENTED );
}
return r_val;
}
1.7.6.1