Auto Company Infeasible
{ Exmpl3.3-4_AutoComp.mpl }
{ Winston, Operations Research, Applications and Algorithms, 4th ed. }
{ Chapter 3.3, Example 4, Product-Mix/Cars, Size: 2x2, Page 65 }
TITLE
AutoCompany;
INDEX
vehicle := (Cars, Trucks);
shop := (Paint, BodyAssembly);
DATA
Profit[vehicle] := (200, 300);
CapPerDay[shop, vehicle] := (60, 40,
50, 50);
MinProd[vehicle] := (20, 30);
VARIABLES
Produce[vehicle];
MODEL
MAX TotalProfit = SUM(vehicle: Profit * Produce);
SUBJECT TO
ProdCapacity[shop] :
SUM(vehicle: 1/CapPerDay * Produce) <= 1;
BOUNDS
Produce >= MinProd;
END
Back To Top
|
Maximal Home Page
|
List of Models |
Previous Page
|
Next Page