Skip to content

Commit

Permalink
Merge pull request #5 from nasajoey/stage
Browse files Browse the repository at this point in the history
Fixing additional code quality issues
  • Loading branch information
nasajoey authored Jan 3, 2024
2 parents 450cd35 + 7827e54 commit 0f1127a
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/dw_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -790,15 +790,13 @@ int main(int argc, char* argv[]) {
if( (integerization_zero_file = fopen(INTEGERIZED_ZEROS_FILE, "w")) == NULL ) {
printf("Problem opening file: %s\n", INTEGERIZED_ZEROS_FILE);
free_sub_data(sub_data, globals);
free(local_buffer);
free(threads);
return -1;
}

process_solution(sub_data, INTEGERIZED_ZEROS_FILE, DW_MODE_PRINT_RELAXED);
//process_solution(sub_data, INTEGERIZED_ZEROS_FILE, DW_MODE_INT_SOL);
// for( i = 1; i <= glp_get_num_cols(master_lp); i++ ) {
// parse_zero_var(glp_get_col_prim(master_lp, i), i,
// master_lp, integerization_zero_file);
// }
fclose(integerization_zero_file);

/* Collect runtime information and print it out. */
dw_printf(IMPORTANCE_AVG,
Expand Down

0 comments on commit 0f1127a

Please sign in to comment.