BRANCH_AND_BOUND_TOL = 1e-3
# single thread (1), multi-thread (> 1 number of threads)
BRANCH_AND_BOUND_PARALLEL = 4
BRANCH_AND_BOUND_MAX_NODES = 1000
# best first (0),  depth first (1), breadth first (2)
BRANCH_AND_BOUND_VISITING_STRATEGY = 0

# number of threads for the matlab session at root
MATLAB_SESSION_THREADS_ROOT = 16
# number of threads for the matlab session (must-link and cannot-link)
MATLAB_SESSION_THREADS_CHILD = 4

# sdpnal+ solver path
SDP_SOLVER_FOLDER = /home/ubuntu/biclustering/SDPNAL+/
# precision of the sdp solver
SDP_SOLVER_TOL = 1e-4
# do not display log (0), display log (1)
SDP_SOLVER_VERBOSE = 0

# max cutting-plane iterations
CP_MAX_ITER = 100
# cutting plane tolerance
CP_TOL = 1e-5
# max number of inequalities to separate
CP_MAX_INEQ = 100000
# fraction of the most violated inequalities to add
CP_PERC_INEQ = 0.10
# tolerance for checking the violation
CP_EPS_INEQ = 1e-4
# tolerance for active inequalities
CP_EPS_ACTIVE = 1e-4

# gurobi solver path
GUROBI_FOLDER = /home/ubuntu/gurobi1002/
# do not display log (0), display log (1)
GUROBI_VERBOSE = 0
