Home
last modified time | relevance | path

Searched refs:max_nzcnt (Results 1 – 4 of 4) sorted by relevance

/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/Applications/VRP/src/CutGen/Decomp/
H A Ddecomp_user.c48 cols->max_nzcnt = size*COL_BLOCK_SIZE; in user_generate_new_cols()
201 if (cols->nzcnt + size > cols->max_nzcnt){ in add_tour_to_col_set()
202 cols->max_nzcnt += size*COL_BLOCK_SIZE; in add_tour_to_col_set()
204 cols->max_nzcnt*sizeof(int)); in add_tour_to_col_set()
206 cols->max_nzcnt*sizeof(double)); in add_tour_to_col_set()
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/include/decomp/
H A Ddecomp_types.h26 int max_nzcnt; member
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/Applications/SPP+CUTS/src/CutGen/
H A Dspp_cg.c251 int max_nzcnt = max_ln * max_ln; in allocate_var_length_structures() local
268 spp->fgraph->all_nbr = (int *) malloc(max_nzcnt * ISIZE); in allocate_var_length_structures()
269 spp->fgraph->all_edgecost = (double *) malloc(max_nzcnt * DSIZE); in allocate_var_length_structures()
270 spp->fgraph->node_node = (char *) malloc(max_nzcnt * CSIZE); in allocate_var_length_structures()
274 spp->cfgraph->all_nbr = (int *) malloc(max_nzcnt * ISIZE); in allocate_var_length_structures()
275 spp->cfgraph->all_edgecost = (double *) malloc(max_nzcnt * DSIZE); in allocate_var_length_structures()
276 spp->cfgraph->node_node = (char *) malloc(max_nzcnt * CSIZE); in allocate_var_length_structures()
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/src/CutGen/Decomp/
H A Ddecomp.c269 cols.max_nzcnt = varnum*COL_BLOCK_SIZE; in receive_cols()
394 if (cols->nzcnt + varnum > cols->max_nzcnt){ in dcmp_process_message()
395 cols->max_nzcnt += varnum*COL_BLOCK_SIZE; in dcmp_process_message()
397 cols->max_nzcnt*sizeof(int)); in dcmp_process_message()
399 cols->max_nzcnt*sizeof(double)); in dcmp_process_message()
589 cols_to_add.max_nzcnt = cols->nzcnt; in generate_new_cols()