Remove deprecated 'simul_seed' option from manual and MOD-file grammar

time-shift
Sébastien Villemot 2011-03-21 12:53:20 +01:00
parent ec6c9ed9a7
commit ae7494efa6
2 changed files with 1 additions and 5 deletions

View File

@ -2295,10 +2295,6 @@ steady;
<term><option>replic</option> = <replaceable>INTEGER</replaceable></term>
<listitem><para>Number of simulated series used to compute the IRFs. Default: <literal>1</literal> if <option>order</option>=<literal>1</literal>, and <literal>50</literal> otherwise</para></listitem>
</varlistentry>
<varlistentry>
<term><option>simul_seed</option> = <replaceable>INTEGER</replaceable></term>
<listitem><para>Specifies a seed for the random generator so as to obtain the same random sample at each run of the program. Otherwise a different sample is used for each run. Default: seed not specified</para></listitem>
</varlistentry>
<varlistentry>
<term><option>simul_algo</option> = <replaceable>INTEGER</replaceable></term>
<listitem><para>Obsolete. Use only the default = 0</para></listitem>

View File

@ -1697,7 +1697,7 @@ o_markowitz : MARKOWITZ EQUAL non_negative_number { driver.option_num("markowitz
o_minimal_solving_periods : MINIMAL_SOLVING_PERIODS EQUAL non_negative_number { driver.option_num("minimal_solving_periods", $3); };
o_mfs : MFS EQUAL INT_NUMBER { driver.mfs($3); };
o_simul : SIMUL; // Do nothing, only here for backward compatibility
o_simul_seed : SIMUL_SEED EQUAL INT_NUMBER { driver.option_num("simul_seed", $3); } ;
o_simul_seed : SIMUL_SEED EQUAL INT_NUMBER { driver.error("'simul_seed' option is no longer supported; use 'set_dynare_seed' command instead"); } ;
o_qz_criterium : QZ_CRITERIUM EQUAL non_negative_number { driver.option_num("qz_criterium", $3); };
o_datafile : DATAFILE EQUAL filename { driver.option_str("datafile", $3); };
o_nobs : NOBS EQUAL vec_int