Add mod.file lost in 6d048d8766

time-shift
Johannes Pfeifer 2015-07-21 10:02:34 +02:00
parent 6d048d8766
commit 1f0897005f
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// Test whether a nonlinear equation specfied as a linear model is correctly filtered out
var A;
varexo epsilona;
parameters rho;
rho = .42;
model(linear);
log(A) = rho*log(A(-1)) + epsilona;
end;
initval;
A = 1.34;
end;
steady;