When we estimate DSGE models, sometimes we use some parameters to compute the other, for exampl, the values at steady state are used as paramters in the linearized model but they are computed by other structural variable.
For example, if I write the following in dynare
var x y z;
parametere beta n_ss r_ss pi_ss;
beta=.99;
r_ss=1/.99;
model;
.......
end;
estim_params
beta,beta_pdf,.99,.1;
end;
estimation
Would Dynare alternate the value of r_ss when the value of beta changes during iteration process ?