Functions | |
FLA_Error | FLA_Hess_check (FLA_Obj A, FLA_Obj t, int ilo, int ihi) |
References FLA_Check_floating_object(), FLA_Check_hess_indices(), FLA_Check_identical_object_datatype(), FLA_Check_nonconstant_object(), FLA_Check_vector_length_min(), and FLA_Obj_width().
Referenced by FLA_Hess_blk_external(), and FLA_Hess_unb_external().
00036 { 00037 FLA_Error e_val; 00038 00039 e_val = FLA_Check_floating_object( A ); 00040 FLA_Check_error_code( e_val ); 00041 00042 e_val = FLA_Check_nonconstant_object( A ); 00043 FLA_Check_error_code( e_val ); 00044 00045 e_val = FLA_Check_identical_object_datatype( A, t ); 00046 FLA_Check_error_code( e_val ); 00047 00048 e_val = FLA_Check_vector_length_min( t, FLA_Obj_width( A ) - 1 ); 00049 FLA_Check_error_code( e_val ); 00050 00051 e_val = FLA_Check_hess_indices( A, ilo, ihi ); 00052 FLA_Check_error_code( e_val ); 00053 00054 return FLA_SUCCESS; 00055 }