I have to adopt an existing script where they used the PuLP package. I need to know how the result of the following line looks like:
unit = ["one", "two", "three"]
time = range(10)
status=LpVariable.dicts("status",[(f,g) for f in unit for g in time],0,1,LpBinary)
How does the keys/values looks like?
status["one"] = [0,1,1,1...]?
Thank you very much for your help!