FLA_Swap_rows_check.c File Reference

(r)


Functions

FLA_Error FLA_Swap_rows_check (FLA_Obj A, dim_t k1, dim_t k2, FLA_Obj ipiv)

Function Documentation

FLA_Error FLA_Swap_rows_check ( FLA_Obj  A,
dim_t  k1,
dim_t  k2,
FLA_Obj  ipiv 
)

References FLA_Check_floating_object(), FLA_Check_if_vector(), FLA_Check_int_object(), FLA_Check_nonconstant_object(), and FLA_Check_pivot_index_range().

Referenced by FLA_Swap_rows().

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_int_object( ipiv );
00046   FLA_Check_error_code( e_val );
00047 
00048   e_val = FLA_Check_nonconstant_object( ipiv );
00049   FLA_Check_error_code( e_val );
00050 
00051   e_val = FLA_Check_if_vector( ipiv );
00052   FLA_Check_error_code( e_val );
00053 
00054   e_val = FLA_Check_pivot_index_range( ipiv, k1, k2 );
00055   FLA_Check_error_code( e_val );
00056 
00057   return FLA_SUCCESS;
00058 }


Generated on Mon Jul 6 05:45:51 2009 for libflame by  doxygen 1.5.9