libflame revision_anchor
|
Go to the source code of this file.
Functions | |
FLA_Error | FLA_Apply_H2_UT_internal (FLA_Side side, FLA_Obj tau, FLA_Obj u2, FLA_Obj a1, FLA_Obj A2) |
FLA_Error FLA_Apply_H2_UT_internal | ( | FLA_Side | side, |
FLA_Obj | tau, | ||
FLA_Obj | u2, | ||
FLA_Obj | a1, | ||
FLA_Obj | A2 | ||
) |
References FLA_Apply_H2_UT_l_opt_var1(), and FLA_Apply_H2_UT_r_opt_var1().
Referenced by FLA_Apply_H2_UT().
{ FLA_Error r_val = FLA_SUCCESS; if ( side == FLA_LEFT ) { //r_val = FLA_Apply_H2_UT_l_unb_var1( tau, u2, a1, A2 ); r_val = FLA_Apply_H2_UT_l_opt_var1( tau, u2, a1, A2 ); } else if ( side == FLA_RIGHT ) { //r_val = FLA_Apply_H2_UT_r_unb_var1( tau, u2, a1, A2 ); r_val = FLA_Apply_H2_UT_r_opt_var1( tau, u2, a1, A2 ); } return r_val; }