Originally posted by: Sung_Hwang
Hi!
I try to read model by using cplex.importModel(), but it's not working
IloEnv env;
IloModel model(env);
IloCplex cplex(env);
build_master(); -> Under this function, I built model formulation and write it by using
exportModel("master.lp")
cplex.importModel(model, "master.lp"); -> I try to import model, but I got the error message that
Unhandled exception at 0x012c2449 in bender_decomposition.exe;0xC0000005:
Access violation reading location 0xfeef00fe
I do not know what is wrong in this code.
Thank you
#CPLEXOptimizers#DecisionOptimization