| 
    libflame
    12600
    
   
   | 
  
  
  
 
Functions | |
| FLA_Error | FLA_Obj_equals_check (FLA_Obj A, FLA_Obj B) | 
| FLA_Error FLA_Obj_equals_check | ( | FLA_Obj | A, | 
| FLA_Obj | B | ||
| ) | 
References FLA_Check_conformal_dims(), FLA_Check_consistent_object_datatype(), and FLA_Check_valid_object_datatype().
Referenced by FLA_Obj_equals().
{
  FLA_Error e_val;
  e_val = FLA_Check_valid_object_datatype( A );
  FLA_Check_error_code( e_val );
  e_val = FLA_Check_valid_object_datatype( B );
  FLA_Check_error_code( e_val );
  e_val = FLA_Check_consistent_object_datatype( A, B );
  FLA_Check_error_code( e_val );
  e_val = FLA_Check_conformal_dims( FLA_NO_TRANSPOSE, A, B );
  FLA_Check_error_code( e_val );
  return FLA_SUCCESS;
}
 1.7.6.1