FICO
FICO Xpress Optimization Examples Repository
FICO Optimization Community FICO Xpress Optimization Home
Back to examples browserPrevious exampleNext example

Planning problems

Description
Problem name and type, featuresDifficultyRelated examples
C‑1 Planning the production of bicycles: Production planning (single product) ***
modeling inventory balance; inline if, forall-do
C‑2 Production of drinking glasses: Multi-item production planning ** prodplan_graph.mos
modeling stock balance constraints; inline if, index value 0
C‑3 Material requirement planning: Material requirement planning (MRP) **
working with index (sub)sets, dynamic initialization, automatic finalization, as
C‑4 Planning the production of electronic components: Multi-item production planning ** c2glass.mos
modeling stock balance constraints; inline if
C‑5 Planning the production of fiberglass: Production planning with time-dependent production cost *** transship_graph.mos
representation of multi-period production as flow; encoding of arcs, exists, create, isodd, getlast, inline if
C‑6 Assignment of production batches to machines: Generalized assignment problem * assignment_graph.mos


Further explanation of this example: 'Applications of optimization with Xpress-MP', Chapter 8: Production planning

mosel_app_3.zip[download all files]

Source Files

Data Files





c5fiber.dat

! Data file for `c5fiber.mos'

ARC: [ (1  2) 5     ! Production costs
       (3  4) 8
       (5  6) 6
       (7  8) 6
       (9 10) 7
      (11 12) 6
       (2  4) 0.2   ! Storage costs
       (4  6) 0.3
       (6  8) 0.2
       (8 10) 0.25
      (10 12) 0.3]

WEIGHT: [(1) 140 100 100 120 110 100 100 90 120 120 100 110]

Back to examples browserPrevious exampleNext example