| 
    libflame
    12600
    
   
   | 
  
  
  
 
Functions | |
| FLA_Error | FLA_Obj_gt_check (FLA_Obj A, FLA_Obj B) | 
| FLA_Error FLA_Obj_gt_check | ( | FLA_Obj | A, | 
| FLA_Obj | B | ||
| ) | 
References FLA_Check_comparable_object(), FLA_Check_consistent_object_datatype(), and FLA_Check_if_scalar().
Referenced by FLA_Obj_gt().
{
  FLA_Error e_val;
  e_val = FLA_Check_comparable_object( A );
  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_if_scalar( A );
  FLA_Check_error_code( e_val );
  e_val = FLA_Check_if_scalar( B );
  FLA_Check_error_code( e_val );
  return FLA_SUCCESS;
}
 1.7.6.1