ComeçarComece de graça

Simulation testing solution exercise

You are working to minimize the transportation costs of shipping products from warehouses in New York, and Atlanta, to customers in the East, South, Midwest, and West regions of the US. The input data of transportation costs and demand for each region is given to you in the variable d which is printed in the console.

Este exercício faz parte do curso

Supply Chain Analytics in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Add noise to the objective function
model += lpSum([(X[(c, w)] + (d.loc[c, w] + ____()))
                for w in wh for c in cust])
Editar e executar o código