Functions | |
FLA_Error | FLA_Hess (FLA_Obj A, FLA_Obj t, int ilo, int ihi) |
void FLA_F2C() | fla_hess_f (F_INT *A, F_INT *t, F_INT *ilo, F_INT *ihi, F_INT *IERROR) |
Variables | |
fla_hess_t * | fla_hess_cntl |
fla_blocksize_t * | fla_hess_blocksize |
References FLA_Hess_internal().
Referenced by fla_hess_f().
00039 { 00040 FLA_Error r_val; 00041 00042 // Note the following constraints: 0 <= ilo <= n-1, 0 <= ihi <= n-1. 00043 r_val = FLA_Hess_internal( A, t, ilo, ihi, fla_hess_cntl ); 00044 00045 return r_val; 00046 }
void FLA_F2C() fla_hess_f | ( | F_INT * | A, | |
F_INT * | t, | |||
F_INT * | ilo, | |||
F_INT * | ihi, | |||
F_INT * | IERROR | |||
) |
References FLA_Hess().
00050 { 00051 *IERROR = FLA_Hess( *( ( FLA_Obj * ) A ), 00052 *( ( FLA_Obj * ) t ), 00053 *( ( int * ) ilo ), 00054 *( ( int * ) ihi ) ); 00055 }