Originally posted by: SystemAdmin
[hernan said:]
Hi everybody,
I've been testing an IP with some instances and it works ok, but now I'm testing with bigger instances and get a Bus error (core dumped) when I call CPXmipopt.
I'm using CPLEX Callable Library, and I've been commented my settings (cuts, variable/node selection strategy, custom callbacks, etc.) and use everything by default, only set: CPXsetintparam (env, CPX_PARAM_SCRIND, CPX_ON), CPXsetintparam (env, CPX_PARAM_CONFLICTDISPLAY, 2), CPXsetintparam(env, CPX_PARAM_MIPINTERVAL, 1), to see if I get some useful information.
I think I've an error somewhere in my code or in stack segment (I don't know if CPXmipopt uses it heavily?), because, when I comment some constraints I don't get core dumped, but I've not found it. Moreover, before run CPXmipopt, I call CPXwriteprob and write the model to a .lp file. If I read the file using cplex command line it works ok!!!. I've been checked the indices and values vectors, the values, number of elements, etc. and I didn't found anything.
About the problem size:
number of variables: 7429 (most of them binaries, the remainders integer)
number of constraints: 13147
number of nonzero values in the constraint matrix: 259295
SunOS 5.9 / CPLEX 10.1 / GNU C++ 3.4.6
I'm not admin in the server, and for some reason I get a cored dumped when I run gdb.
Any idea??
Thanks in advance!
#CPLEXOptimizers#DecisionOptimization