libflame  revision_anchor
Functions
FLA_Hess_check.c File Reference

(r)

Functions

FLA_Error FLA_Hess_check (FLA_Obj A, FLA_Obj t, int ilo, int ihi)
 

Function Documentation

◆ FLA_Hess_check()

FLA_Error FLA_Hess_check ( FLA_Obj  A,
FLA_Obj  t,
int  ilo,
int  ihi 
)

References FLA_Check_col_storage(), FLA_Check_floating_object(), FLA_Check_hess_indices(), FLA_Check_identical_object_datatype(), FLA_Check_nonconstant_object(), FLA_Check_vector_dim_min(), and FLA_Obj_length().

Referenced by FLA_Hess_blk_external(), and FLA_Hess_unb_external().

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 
24  FLA_Check_error_code( e_val );
25 
26  e_val = FLA_Check_vector_dim_min( t, FLA_Obj_length( A ) - 1 );
27  FLA_Check_error_code( e_val );
28 
29  e_val = FLA_Check_col_storage( t );
30  FLA_Check_error_code( e_val );
31 
32  e_val = FLA_Check_hess_indices( A, ilo, ihi );
33  FLA_Check_error_code( e_val );
34 
35  return FLA_SUCCESS;
36 }
FLA_Error FLA_Check_identical_object_datatype(FLA_Obj A, FLA_Obj B)
Definition: FLA_Check.c:967
int FLA_Error
Definition: FLA_type_defs.h:47
FLA_Error FLA_Check_col_storage(FLA_Obj A)
Definition: FLA_Check.c:1325
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
FLA_Error FLA_Check_hess_indices(FLA_Obj A, int ilo, int ihi)
Definition: FLA_Check.c:499
FLA_Error FLA_Check_vector_dim_min(FLA_Obj x, dim_t min_dim)
Definition: FLA_Check.c:740
dim_t FLA_Obj_length(FLA_Obj obj)
Definition: FLA_Query.c:116