Given an amount of baker and packer days, the bakery Zurich wants to know how much to produce of product x_1,...,x_n
to optimize the profit.
The file inputs expects a dictionary "parameters" with the keys:
model_name
packer_days_total
baker_days_total
and another dictionary products which is a list of dictionaries with the keys:
name
lb
lower bound of the number of units to produceub
upper bound of the number of units to producecat
category of units (whether Integer or continuous)price
price per unitbaker_days
days a baker is needed to produce 1 unitpacker_days
days a packer is needed to produce 1 unit
In the end, execute the main file. The result will be printed to the console