Functions | |
FLA_Error | FLA_Shift_pivots_to_check (FLA_Pivot_type ptype, FLA_Obj ipiv) |
FLA_Error FLA_Shift_pivots_to_check | ( | FLA_Pivot_type | ptype, | |
FLA_Obj | ipiv | |||
) |
References FLA_Check_if_vector(), FLA_Check_int_object(), FLA_Check_nonconstant_object(), FLA_Check_valid_pivot_type(), FLA_Check_vector_length(), and FLA_Obj_length().
Referenced by FLA_Shift_pivots_to().
00036 { 00037 FLA_Error e_val; 00038 00039 e_val = FLA_Check_valid_pivot_type( ptype ); 00040 FLA_Check_error_code( e_val ); 00041 00042 e_val = FLA_Check_int_object( ipiv ); 00043 FLA_Check_error_code( e_val ); 00044 00045 e_val = FLA_Check_nonconstant_object( ipiv ); 00046 FLA_Check_error_code( e_val ); 00047 00048 e_val = FLA_Check_if_vector( ipiv ); 00049 FLA_Check_error_code( e_val ); 00050 00051 e_val = FLA_Check_vector_length( ipiv, FLA_Obj_length( ipiv ) ); 00052 FLA_Check_error_code( e_val ); 00053 00054 return FLA_SUCCESS; 00055 }