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 Version 8 and Version 9 of upgrade/estimations


Ignore:
Timestamp:
Jul 5, 2010, 7:00:59 AM (15 years ago)
Author:
Pedro Gea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • upgrade/estimations

    v8 v9  
    151151
    152152=== Fijar parámetros en definición ===
    153 ...
     153
     154En MMS_0.5 no era posible fijar los parámetros en definición ya que esto no funcionaba correctamente. Esta limitación está solucionada en MMS_0.6, y para fijar un parámetro se pueden modificar sus atributos InitialValue e IsFixed:
     155
     156'''Código en MMS_0.6'''
     157
     158{{{
     159#!java
     160@MMS.Parameter param = ...
     161Real fixedValue = ...
     162Real param::SetInitialValue(fixedValue);
     163Real param::SetIsFixed(True);
     164}}}
    154165
    155166
    156167
     168