Originally posted by: trebron
Howdy,
This might be of interest to the development team.
The simple model below causes a Segmentation Fault of OPL (CPLEX_Studio1271)
Cheers
Norbert
tuple SomeTuple{
key int ID;
key string someString;
int data1;
int data2;
int data3;
}
{SomeTuple} someTupleSet;
tuple SomeOtherTuple{
key int ID;
key int someInt;
int data4;
}
{SomeTuple} someOtherTupleSet;
execute{
var a=1;
var b=2;
var idx = someTupleSet.find(a,b);
}
<> oplrun -p . Test
<<< setup
### UNEXPECTED ERROR ...
Segmentation fault
#DecisionOptimization#OPLusingCPLEXOptimizer