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.
- Timestamp:
-
Jul 2, 2010, 4:12:35 PM (15 years ago)
- Author:
-
Pedro Gea
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v3
|
v4
|
|
82 | 82 | }}} |
83 | 83 | |
| 84 | === Configuración de las estrategias === |
| 85 | |
| 86 | En MMS_0.6 desaperecen métodos específicos para configurar las estrategias |
| 87 | como {{{::SetSampleLength}}}. Para consultas y modificar las configuraciones |
| 88 | existen los métodos: |
| 89 | {{{ |
| 90 | Anything settingValue = strategy::GetSetting(Text settingName); |
| 91 | Real strategy::SetSetting(settingName, newValue); |
| 92 | }}} |
| 93 | Por ejemplo en lugar de: |
| 94 | {{{ |
| 95 | strategy::SetSampleLength(1000); |
| 96 | }}} |
| 97 | haríamos: |
| 98 | {{{ |
| 99 | strategy::SetSetting("mcmc.sampleLength", 1000); |
| 100 | }}} |
| 101 | |