Hi,
I am not sure that s supported yet.
So in the meantime you could transform your nested tupleset into a flat tuple set:
test = [((1,2),"Q"),((3,4),"R")]
test2=[ [i[0][0],i[0][1],i[1]] for i in test]
print(test2)
which gives
[[1, 2, 'Q'], [3, 4, 'R']]
and then you rely on the tuple set input for doopl
regards
PS: better doopl is already a wish in
https://ibm-data-and-ai.ideas.aha.io/?project=CPLEX------------------------------
ALEX FLEISCHER
------------------------------