FLA_Mult_add_check.c File Reference

(r)


Functions

FLA_Error FLA_Mult_add_check (FLA_Obj alpha, FLA_Obj beta, FLA_Obj gamma)

Function Documentation

FLA_Error FLA_Mult_add_check ( FLA_Obj  alpha,
FLA_Obj  beta,
FLA_Obj  gamma 
)

References FLA_Check_floating_object(), FLA_Check_if_scalar(), and FLA_Check_nonconstant_object().

Referenced by FLA_Mult_add().

00036 {
00037   FLA_Error e_val;
00038 
00039   e_val = FLA_Check_floating_object( alpha );
00040   FLA_Check_error_code( e_val );
00041 
00042   e_val = FLA_Check_floating_object( beta );
00043   FLA_Check_error_code( e_val );
00044 
00045   e_val = FLA_Check_floating_object( gamma );
00046   FLA_Check_error_code( e_val );
00047 
00048   e_val = FLA_Check_if_scalar( alpha );
00049   FLA_Check_error_code( e_val );
00050 
00051   e_val = FLA_Check_if_scalar( beta );
00052   FLA_Check_error_code( e_val );
00053 
00054   e_val = FLA_Check_if_scalar( gamma );
00055   FLA_Check_error_code( e_val );
00056 
00057   e_val = FLA_Check_nonconstant_object( gamma );
00058   FLA_Check_error_code( e_val );
00059 
00060   return FLA_SUCCESS;
00061 }


Generated on Mon Jul 6 05:45:51 2009 for libflame by  doxygen 1.5.9