Functions | |
FLA_Error | FLA_Dot2cs_check (FLA_Conj conj, FLA_Obj alpha, FLA_Obj x, FLA_Obj y, FLA_Obj beta, FLA_Obj rho) |
FLA_Error FLA_Dot2cs_check | ( | FLA_Conj | conj, | |
FLA_Obj | alpha, | |||
FLA_Obj | x, | |||
FLA_Obj | y, | |||
FLA_Obj | beta, | |||
FLA_Obj | rho | |||
) |
References FLA_Check_consistent_object_datatype(), FLA_Check_equal_vector_lengths(), FLA_Check_floating_object(), FLA_Check_identical_object_datatype(), FLA_Check_if_scalar(), FLA_Check_if_vector(), FLA_Check_nonconstant_object(), and FLA_Check_valid_conj().
Referenced by FLA_Dot2cs_external().
00036 { 00037 FLA_Error e_val; 00038 00039 e_val = FLA_Check_valid_conj( conj ); 00040 FLA_Check_error_code( e_val ); 00041 00042 e_val = FLA_Check_floating_object( x ); 00043 FLA_Check_error_code( e_val ); 00044 00045 e_val = FLA_Check_nonconstant_object( x ); 00046 FLA_Check_error_code( e_val ); 00047 00048 e_val = FLA_Check_identical_object_datatype( x, y ); 00049 FLA_Check_error_code( e_val ); 00050 00051 e_val = FLA_Check_identical_object_datatype( x, rho ); 00052 FLA_Check_error_code( e_val ); 00053 00054 e_val = FLA_Check_consistent_object_datatype( x, alpha ); 00055 FLA_Check_error_code( e_val ); 00056 00057 e_val = FLA_Check_consistent_object_datatype( x, beta ); 00058 FLA_Check_error_code( e_val ); 00059 00060 e_val = FLA_Check_if_vector( x ); 00061 FLA_Check_error_code( e_val ); 00062 00063 e_val = FLA_Check_if_vector( y ); 00064 FLA_Check_error_code( e_val ); 00065 00066 e_val = FLA_Check_if_scalar( alpha ); 00067 FLA_Check_error_code( e_val ); 00068 00069 e_val = FLA_Check_if_scalar( beta ); 00070 FLA_Check_error_code( e_val ); 00071 00072 e_val = FLA_Check_if_scalar( rho ); 00073 FLA_Check_error_code( e_val ); 00074 00075 e_val = FLA_Check_equal_vector_lengths( x, y ); 00076 FLA_Check_error_code( e_val ); 00077 00078 return FLA_SUCCESS; 00079 }