libflame  revision_anchor
Functions
FLASH_LU_find_zero_on_diagonal_check.c File Reference

(r)

Functions

FLA_Error FLASH_LU_find_zero_on_diagonal_check (FLA_Obj A)
 

Function Documentation

◆ FLASH_LU_find_zero_on_diagonal_check()

FLA_Error FLASH_LU_find_zero_on_diagonal_check ( FLA_Obj  A)
14 {
15  FLA_Error e_val;
16 
17  e_val = FLA_Check_floating_object( A );
18  FLA_Check_error_code( e_val );
19 
20  e_val = FLA_Check_nonconstant_object( A );
21  FLA_Check_error_code( e_val );
22 
23  return FLA_SUCCESS;
24 }
FLA_Error FLA_Check_nonconstant_object(FLA_Obj A)
Definition: FLA_Check.c:954
FLA_Error FLA_Check_floating_object(FLA_Obj A)
Definition: FLA_Check.c:232
int FLA_Error
Definition: FLA_type_defs.h:47

References FLA_Check_floating_object(), and FLA_Check_nonconstant_object().

Referenced by FLASH_LU_find_zero_on_diagonal().