You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
498 B
27 lines
498 B
#ifndef _PROJECT_MAIN_H_
|
|
#define _PROJECT_MAIN_H_
|
|
|
|
extern unsigned int SEED;
|
|
|
|
extern double *OPTIMAL_X;
|
|
extern double SUBTOUR_TIME;
|
|
extern double COMBS_TIME;
|
|
|
|
extern double LP_SOLVE_TIME;
|
|
extern int LP_SOLVE_COUNT;
|
|
extern int LP_MAX_ROWS;
|
|
extern int LP_MAX_COLS;
|
|
|
|
extern double CUT_POOL_TIME;
|
|
extern long CUT_POOL_MAX_MEMORY;
|
|
|
|
extern int FLOW_MAX_FLOW_COUNT;
|
|
|
|
extern double TOTAL_TIME;
|
|
extern double INITIAL_TIME;
|
|
extern double ROOT_VALUE;
|
|
|
|
extern int SUBTOUR_COUNT;
|
|
extern int COMBS_COUNT;
|
|
|
|
#endif |