Move parameters to params.h

This commit is contained in:
2015-03-31 14:19:00 -04:00
parent fd0b37bdf9
commit ebc26bd5ad
2 changed files with 6 additions and 4 deletions

View File

@@ -2,10 +2,7 @@
#define _PROJECT_LP_H_
#include <cplex.h>
#define LP_EPSILON 0.000001
#define MAX_CUT_POOL_SIZE 1000000
#define MAX_CUT_AGE 10
#include "params.h"
struct LP
{

View File

@@ -1,6 +1,11 @@
#ifndef PROJECT_PARAMS_H
#define PROJECT_PARAMS_H
#define LP_EPSILON 0.000001
#define MAX_CUT_AGE 5
#define MAX_CUT_POOL_SIZE 1000000
#define LOG_LEVEL LOG_LEVEL_INFO
#define ENABLE_COMB_INEQUALITIES