Changes between Initial Version and Version 2 of Ticket #499
- Timestamp:
- Jan 14, 2011, 11:00:48 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #499
-
Property
Status
changed from
new
toaccepted
-
Property
Summary
changed from
Facilidad para definir restricciones
toFacilidad para definir restricciones de orden
-
Property
Status
changed from
-
Ticket #499 – Description
initial v2 3 3 4 4 Dado 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 {{{ 6 Set _.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 }}} 12 14 13 15 si 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: 14 16 15 "º1 <= º2 <= º3 <= º4 <= º5" 17 {{{ 18 º1 <= º2 <= º3 <= º4 <= º5 19 }}} 16 20