ILOG CPLEX 11.0 User's Manual > Languages and APIs > ILOG Concert Technology for C++ Users > Architecture of a CPLEX C++ Application

Figure 1.1, A View of Concert Technology for C++ Users shows a program using ILOG CPLEX Concert Technology to solve optimization problems. The optimization part of the user's application program is captured in a set of interacting C++ objects that the application creates and controls. These objects can be divided into two categories:

  1. Modeling objects are used to define the optimization problem. Generally an application creates several modeling objects to specify the optimization problems. Those objects are grouped into an IloModel object representing the complete optimization problem.
  2. Solving objects in an instance of IloCplex are used to solve models created with the modeling objects. An instance of IloCplex reads a model and extracts its data to the appropriate representation for the ILOG CPLEX optimizers. Then the IloCplex object is ready to solve the model it extracted. After it solves a model, it can be queried for solution information.

images/cplusIloCplexa.gif

Figure 1.1 A View of Concert Technology for C++ Users