Functions | |
void | FLASH_QR_UT_cntl_init () |
void | FLASH_QR_UT_cntl_finalize () |
Variables | |
fla_qrut_t * | flash_qrut_cntl_leaf |
fla_qrut_t * | flash_qrut_cntl |
void FLASH_QR_UT_cntl_finalize | ( | void | ) |
References FLA_Cntl_obj_free().
Referenced by FLA_Cntl_finalize_flash().
00058 { 00059 FLA_Cntl_obj_free( flash_qrut_cntl_leaf ); 00060 }
void FLASH_QR_UT_cntl_init | ( | void | ) |
References FLA_Cntl_qrut_obj_create().
Referenced by FLA_Cntl_init_flash().
00039 { 00040 // Create a control tree to compute the subproblem. 00041 flash_qrut_cntl_leaf = FLA_Cntl_qrut_obj_create( FLA_HIER, 00042 FLA_SUBPROBLEM, 00043 NULL, 00044 NULL, 00045 NULL, 00046 NULL, 00047 NULL, 00048 NULL, 00049 NULL, 00050 NULL, 00051 NULL ); 00052 00053 // Alias the leaf control tree. 00054 flash_qrut_cntl = flash_qrut_cntl_leaf; 00055 }