Auto Company



   {  Exmpl3.3-3_AutoComp.mpl  }

   {  Winston, Operations Research, Applications and Algorithms, 4th ed.  }

   {  Chapter 3.3,  Example 3,  Product-Mix/Cars,  Size: 2x2,  Page 63  }


TITLE
    AutoCompany;

INDEX
    vehicle := (Cars, Trucks);
    shop    := (Paint, BodyAssembly);
DATA
    Profit[vehicle]          := (200, 300);

    CapPerDay[shop, vehicle] := (60, 40,
                                 50, 50);

VARIABLES
    Produce[vehicle] -> "";

MODEL

    MAX TotalProfit =  SUM(vehicle: Profit * Produce);

SUBJECT TO

    ProdCapacity[shop] :

        SUM(vehicle: 1/CapPerDay * Produce)  <=  1;

END



Back To Top | Maximal Home Page | List of Models | Previous Page | Next Page