> Tutorials > Concert Technology Tutorial for .NET Users > Describe |
Describe |
INDEX
![]() |
The aim in this tutorial is to to see three different ways to build a model: by rows, by columns, or by nonzeros. After building the model of the problem in one of those ways, the application optimizes the problem and displays the solution.
Step 1 - | Describe the Problem |
Write a natural language description of the problem and answer these questions:
Here is a conventional formulation of the problem that the example optimizes:
Maximize |
x1 + 2x2 + 3x3 |
subject to |
-x1 + x2 + x3 ![]()
x1 - 3x2 + x3 ![]() |
with these bounds |
0 ![]() ![]()
0 ![]() ![]() ![]()
0 ![]() ![]() ![]() |
x1, x2, x3 |
-x1 + x2 + x3 ![]()
x1 - 3x2 + x3 ![]() | |
0 ![]() ![]()
0 ![]() ![]() ![]()
0 ![]() ![]() ![]() |
Maximize |
x1 + 2x2 + 3x3 |
Copyright © 1987-2003 ILOG, S.A. All rights reserved. Legal terms. | PREVIOUS NEXT |