close Warning: Can't synchronize with repository "(default)" (/var/svn/mms does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 2 of Ticket #499


Ignore:
Timestamp:
Jan 14, 2011, 11:00:48 AM (14 years ago)
Author:
Pedro Gea
Comment:

Nota: Se recomienda encerrar el código entre triples llaves para facilitar su lectura. Algo como:

Si está dentro de una línea de texto: {{{Real a = 1}}}
Si son nuevas líneas:
{{{
Real a = 1;
}}}

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #499

    • Property Status changed from new to accepted
    • Property Summary changed from Facilidad para definir restricciones to Facilidad para definir restricciones de orden
  • Ticket #499 – Description

    initial v2  
    33
    44Dado un conjunto de parámetros:
    5   Set _.parameters = SetOfAnything(
    6     [["Veh.Mot.Mat", "Crisis.200801", [["Linear", 0]] ]],
    7     [["Veh.Mot.Mat", "Crisis.200802", [["Linear", 0]] ]],
    8     [["Veh.Mot.Mat", "Crisis.200803", [["Linear", 0]] ]],
    9     [["Veh.Mot.Mat", "Crisis.200804", [["Linear", 0]] ]],
    10     [["Veh.Mot.Mat", "Crisis.200805", [["Linear", 0]] ]]
    11   );
     5{{{
     6Set _.parameters = SetOfAnything(
     7  [["Veh.Mot.Mat", "Crisis.200801", [["Linear", 0]] ]],
     8  [["Veh.Mot.Mat", "Crisis.200802", [["Linear", 0]] ]],
     9  [["Veh.Mot.Mat", "Crisis.200803", [["Linear", 0]] ]],
     10  [["Veh.Mot.Mat", "Crisis.200804", [["Linear", 0]] ]],
     11  [["Veh.Mot.Mat", "Crisis.200805", [["Linear", 0]] ]]
     12);
     13}}}
    1214
    1315si queremos expresar que el primero es menor o igual que el segundo y el segundo que el tercero, etc, poder expresarlo igual que se hace al definir las variables calculadas. Algo así como:
    1416
    15 "º1 <= º2 <= º3 <= º4 <= º5"
     17{{{
     18º1 <= º2 <= º3 <= º4 <= º5
     19}}}
    1620