Originally posted by: mkadem
Hi to all,
i want to switch off some methods that cplex uses in the node 0. In fact, i found some instances where the time limit is reached (i put half an hour) and cplex doesn't starting branching (node 0). However, the relaxed version is solved in 7 seconds. i switch off cuts generations and others parameters:
cplex.setParam(IloCplex::Probe, -1);
cplex.setParam(IloCplex::IntParam(2132), -1);
cplex.setParam(IloCplex::CutPass,-1);
cplex.setParam(IloCplex::Cliques, -1);
cplex.setParam(IloCplex::Covers, -1);
cplex.setParam(IloCplex::FlowCovers, -1);
cplex.setParam(IloCplex::FlowPaths, -1);/
cplex.setParam(IloCplex::GUBCovers, -1);
cplex.setParam(IloCplex::ImplBd, -1);
cplex.setParam(IloCplex::MCFCuts, -1);
cplex.setParam(IloCplex::MIRCuts, -1);
cplex.setParam(IloCplex::FracCuts, -1);
cplex.setParam(IloCplex::DisjCuts, -1);
cplex.setParam(IloCplex::ZeroHalfCuts, -1);//
but the problem persists. what i can do ??
thanks
#CPLEXOptimizers#DecisionOptimization