Hi,
in your main model you should add
thisOplModel.settings.names=1;
because by default models in the cloud have no names.
For instance, the relaxationiterator example gives
[2018-09-24T10:30:30Z, INFO] "IloNumVarI#0x7fdb30dfe618 >= 6+5"
[2018-09-24T10:30:30Z, INFO] relax [11,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:30:30Z, INFO] "IloNumVarI#0x7fdb30dfe5e0 >= 7+5"
[2018-09-24T10:30:30Z, INFO] relax [12,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:30:30Z, INFO] "IloNumVarI#0x7fdb30dfe5a8 >= 8+5"
[2018-09-24T10:30:30Z, INFO] relax [13,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:30:30Z, INFO] "IloNumVarI#0x7fdb30dfe570 >= 9+5"
[2018-09-24T10:30:30Z, INFO] relax [14,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:30:30Z, INFO] "IloNumVarI#0x7fdb30dfe538 >= 10+5"
[2018-09-24T10:30:30Z, INFO] relax [15,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:30:30Z, INFO] Script execution finished with status 0.
in the cloud
but with
thisOplModel.settings.names=1;
you ll get
2018-09-24T10:31:49Z, INFO] cts[6]
[2018-09-24T10:31:49Z, INFO] relax [11,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:31:49Z, INFO] cts[7]
[2018-09-24T10:31:49Z, INFO] relax [12,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:31:49Z, INFO] cts[8]
[2018-09-24T10:31:49Z, INFO] relax [13,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:31:49Z, INFO] cts[9]
[2018-09-24T10:31:49Z, INFO] relax [14,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:31:49Z, INFO] cts[10]
[2018-09-24T10:31:49Z, INFO] relax [15,Infinity] to [10,Infinity] value is 10
[2018-09-24T10:31:49Z, INFO] Script execution finished with status 0.
regards
#DecisionOptimization#OPLusingCPLEXOptimizer