To solve my inventory problem I need a three-dimensional decision variable x_{ij}^t
I am new to the CPLEX Python API docplex and all I found so far is
m = Model(name='inventory_problem')
x = m.integer_var_matrix(keys1=all_origins, keys2=all_destinations)
which would cover i and j in the indeces but how can I include the third dimension?
I guess it is not very difficult but I just cannot find it ... Thanks very much!