Functions | |
FLA_Error | FLA_QR_UT_copy_internal_check (FLA_Obj A, FLA_Obj T, FLA_Obj U, fla_qrut_t *cntl) |
FLA_Error FLA_QR_UT_copy_internal_check | ( | FLA_Obj | A, | |
FLA_Obj | T, | |||
FLA_Obj | U, | |||
fla_qrut_t * | cntl | |||
) |
References FLA_Check_conformal_dims(), FLA_Check_identical_object_elemtype(), FLA_Check_null_pointer(), FLA_Check_object_width_equals(), and FLA_Obj_width().
Referenced by FLA_QR_UT_copy_internal().
00036 { 00037 FLA_Error e_val; 00038 00039 // Abort if the control structure is NULL. 00040 e_val = FLA_Check_null_pointer( ( void* ) cntl ); 00041 FLA_Check_error_code( e_val ); 00042 00043 // Verify that the object element types are identical. 00044 e_val = FLA_Check_identical_object_elemtype( A, T ); 00045 FLA_Check_error_code( e_val ); 00046 00047 e_val = FLA_Check_identical_object_elemtype( A, U ); 00048 FLA_Check_error_code( e_val ); 00049 00050 // Verify conformality between all the objects. This check works regardless 00051 // of whether the element type is FLA_MATRIX or FLA_SCALAR because the 00052 // element length and width are used instead of scalar length and width. 00053 e_val = FLA_Check_object_width_equals( A, FLA_Obj_width( T ) ); 00054 FLA_Check_error_code( e_val ); 00055 00056 e_val = FLA_Check_conformal_dims( FLA_NO_TRANSPOSE, A, U ); 00057 FLA_Check_error_code( e_val ); 00058 00059 return FLA_SUCCESS; 00060 }