Functions | |
FLA_Error | FLA_LU_nopiv_check (FLA_Obj A) |
References FLA_Check_floating_object(), and FLA_Check_nonconstant_object().
Referenced by FLA_LU_nopiv(), FLA_LU_nopiv_blk_external(), FLA_LU_nopiv_unb_external(), and FLASH_LU_nopiv().
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 return FLA_SUCCESS; 00046 }