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 3 and Version 4 of upgrade/estimations


Ignore:
Timestamp:
Jul 2, 2010, 4:12:35 PM (15 years ago)
Author:
Pedro Gea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • upgrade/estimations

    v3 v4  
    8282}}}
    8383
     84=== Configuración de las estrategias ===
     85
     86En MMS_0.6 desaperecen métodos específicos para configurar las estrategias
     87como {{{::SetSampleLength}}}. Para consultas y modificar las configuraciones
     88existen los métodos:
     89{{{
     90Anything settingValue = strategy::GetSetting(Text settingName);
     91Real strategy::SetSetting(settingName, newValue);
     92}}}
     93Por ejemplo en lugar de:
     94{{{
     95strategy::SetSampleLength(1000);
     96}}}
     97haríamos:
     98{{{
     99strategy::SetSetting("mcmc.sampleLength", 1000);
     100}}}
     101