StorageModel::~StorageModel(){ lmm_system_free(p_maxminSystem); surf_storage_model = NULL; xbt_dynar_free(&p_storageList); }
/** * @brief The destructor of the NetworkModel */ ~NetworkModel() { if (p_maxminSystem) lmm_system_free(p_maxminSystem); if (p_actionHeap) xbt_heap_free(p_actionHeap); if (p_modifiedSet) delete p_modifiedSet; }
CpuCas01Model::~CpuCas01Model() { lmm_system_free(maxminSystem_); maxminSystem_ = nullptr; xbt_heap_free(actionHeap_); delete modifiedSet_; surf_cpu_model_pm = nullptr; delete p_cpuRunningActionSetThatDoesNotNeedBeingChecked; }
WorkstationL07Model::~WorkstationL07Model() { xbt_dict_free(&ptask_parallel_task_link_set); delete surf_cpu_model_pm; delete surf_network_model; ptask_host_count = 0; if (ptask_maxmin_system) { lmm_system_free(ptask_maxmin_system); ptask_maxmin_system = NULL; } }
static void new_model_finalize(void) { lmm_system_free(new_model_maxmin_system); new_model_maxmin_system = NULL; surf_model_exit(surf_new_model); surf_new_model = NULL; xbt_swag_free (new_model_running_action_set_that_does_not_need_being_checked); new_model_running_action_set_that_does_not_need_being_checked = NULL; }
CpuCas01Model::~CpuCas01Model() { lmm_system_free(p_maxminSystem); p_maxminSystem = NULL; if (p_actionHeap) xbt_heap_free(p_actionHeap); delete p_modifiedSet; surf_cpu_model_pm = NULL; delete p_cpuRunningActionSetThatDoesNotNeedBeingChecked; }
void test(int nb_cnst, int nb_var, int nb_elem) { lmm_system_t Sys = NULL; lmm_constraint_t *cnst = xbt_new0(lmm_constraint_t, nb_cnst); lmm_variable_t *var = xbt_new0(lmm_variable_t, nb_var); int *used = xbt_new0(int, nb_cnst); int i, j, k; Sys = lmm_system_new(1); for (i = 0; i < nb_cnst; i++) { cnst[i] = lmm_constraint_new(Sys, NULL, float_random(10.0)); } for (i = 0; i < nb_var; i++) { var[i] = lmm_variable_new(Sys, NULL, 1.0, -1.0, nb_elem); for (j = 0; j < nb_cnst; j++) used[j] = 0; for (j = 0; j < nb_elem; j++) { k = int_random(nb_cnst); if (used[k]) { j--; continue; } lmm_expand(Sys, cnst[k], var[i], float_random(1.0)); used[k] = 1; } } printf("Starting to solve\n"); date = xbt_os_time() * 1000000; lmm_solve(Sys); date = xbt_os_time() * 1000000 - date; for (i = 0; i < nb_var; i++) lmm_variable_free(Sys, var[i]); lmm_system_free(Sys); free(cnst); free(var); free(used); }
NetworkModel::~NetworkModel() { lmm_system_free(maxminSystem_); xbt_heap_free(actionHeap_); delete modifiedSet_; }
static void test(int nb_cnst, int nb_var, int nb_elem, unsigned int pw_base_limit, unsigned int pw_max_limit, float rate_no_limit, int max_share, int mode) { lmm_system_t Sys = NULL; lmm_constraint_t *cnst = xbt_new0(lmm_constraint_t, nb_cnst); lmm_variable_t *var = xbt_new0(lmm_variable_t, nb_var); int *used = xbt_new0(int, nb_cnst); int i; int j; int k; int l; int concurrency_share; Sys = lmm_system_new(1); for (i = 0; i < nb_cnst; i++) { cnst[i] = lmm_constraint_new(Sys, NULL, float_random(10.0)); if(rate_no_limit>float_random(1.0)) //Look at what happens when there is no concurrency limit l=-1; else //Badly logarithmically random concurrency limit in [2^pw_base_limit+1,2^pw_base_limit+2^pw_max_limit] l=(1<<pw_base_limit)+(1<<int_random(pw_max_limit)); lmm_constraint_concurrency_limit_set(cnst[i],l ); } for (i = 0; i < nb_var; i++) { var[i] = lmm_variable_new(Sys, NULL, 1.0, -1.0, nb_elem); //Have a few variables with a concurrency share of two (e.g. cross-traffic in some cases) concurrency_share=1+int_random(max_share); lmm_variable_concurrency_share_set(var[i],concurrency_share); for (j = 0; j < nb_cnst; j++) used[j] = 0; for (j = 0; j < nb_elem; j++) { k = int_random(nb_cnst); if (used[k]>=concurrency_share) { j--; continue; } lmm_expand(Sys, cnst[k], var[i], float_random(1.5)); lmm_expand_add(Sys, cnst[k], var[i], float_random(1.5)); used[k]++; } } fprintf(stderr,"Starting to solve(%i)\n",myrand()%1000); date = xbt_os_time() * 1000000; lmm_solve(Sys); date = xbt_os_time() * 1000000 - date; if(mode==2){ fprintf(stderr,"Max concurrency:\n"); l=0; for (i = 0; i < nb_cnst; i++) { j=lmm_constraint_concurrency_maximum_get(cnst[i]); k=lmm_constraint_concurrency_limit_get(cnst[i]); xbt_assert(k<0 || j<=k); if(j>l) l=j; fprintf(stderr,"(%i):%i/%i ",i,j,k); lmm_constraint_concurrency_maximum_reset(cnst[i]); xbt_assert(!lmm_constraint_concurrency_maximum_get(cnst[i])); if(i%10==9) fprintf(stderr,"\n"); } fprintf(stderr,"\nTotal maximum concurrency is %i\n",l); lmm_print(Sys); } for (i = 0; i < nb_var; i++) lmm_variable_free(Sys, var[i]); lmm_system_free(Sys); free(cnst); free(var); free(used); }