From ebc26bd5ade9c2ff3be91736ec8a5ac5e7d83b8f Mon Sep 17 00:00:00 2001 From: Alinson Xavier Date: Tue, 31 Mar 2015 14:19:00 -0400 Subject: [PATCH] Move parameters to params.h --- src/lp.h | 5 +---- src/params.h | 5 +++++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/lp.h b/src/lp.h index de5f0d0..199f3c4 100644 --- a/src/lp.h +++ b/src/lp.h @@ -2,10 +2,7 @@ #define _PROJECT_LP_H_ #include - -#define LP_EPSILON 0.000001 -#define MAX_CUT_POOL_SIZE 1000000 -#define MAX_CUT_AGE 10 +#include "params.h" struct LP { diff --git a/src/params.h b/src/params.h index 31fb664..c4b2bc8 100644 --- a/src/params.h +++ b/src/params.h @@ -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