Dip  0.92.4
sym_cp_params.h
Go to the documentation of this file.
1 /*===========================================================================*/
2 /* */
3 /* This file is part of the SYMPHONY MILP Solver Framework. */
4 /* */
5 /* SYMPHONY was jointly developed by Ted Ralphs (ted@lehigh.edu) and */
6 /* Laci Ladanyi (ladanyi@us.ibm.com). */
7 /* */
8 /* (c) Copyright 2000-2019 Ted Ralphs. All Rights Reserved. */
9 /* */
10 /* This software is licensed under the Eclipse Public License. Please see */
11 /* accompanying file for terms. */
12 /* */
13 /*===========================================================================*/
14 
15 #ifndef _CUT_POOL_PARAMS_H
16 #define _CUT_POOL_PARAMS_H
17 
18 /*===========================================================================*\
19  * Contains the parameters necessary for the functioning of the cut pool
20 \*===========================================================================*/
21 
22 typedef struct CP_PARAMS{
23  int verbosity;
26  int logging;
29  int max_size;
36 }cp_params;
37 
38 #endif
int touches_until_deletion
Definition: sym_cp_params.h:33
char log_file_name[MAX_FILE_NAME_LENGTH+1]
Definition: sym_cp_params.h:27
int max_number_of_cuts
Definition: sym_cp_params.h:30
int min_to_delete
Definition: sym_cp_params.h:34
char warm_start_file_name[MAX_FILE_NAME_LENGTH+1]
Definition: sym_cp_params.h:25
int block_size
Definition: sym_cp_params.h:28
#define MAX_FILE_NAME_LENGTH
Definition: sym_proto.h:18
int warm_start
Definition: sym_cp_params.h:24
int delete_which
Definition: sym_cp_params.h:32
int cuts_to_check
Definition: sym_cp_params.h:31
struct CP_PARAMS cp_params
int check_which
Definition: sym_cp_params.h:35