Originally posted by: FANS_Nader_Al_Theeb
Hi,
Using CPLEX in C++:
I'm importing my data from (.dat file), I have a parameter with three indices (i,j, and k), where i=1, j=4, k=3
I use the following matrix to define the values
[ [
2, 3, 4,
1, 2, 3,
3, 4, 8,
7, 4, 3] ] I used this types of definitions for a long time with no errors, but now some thing goes wrong, when I try to print [0][1][0] or any value with j>0, I received segmentation fault error
Any help please where is the error?
#CPLEXOptimizers#DecisionOptimization