Michel Juillard
Michel Juillard
Currently, the vector M_.state_var is created by the preprocessor only when estimation is taking place. Because, this vector contains information useful in any context involving linear representation, I suggest to...
dynamic exceptions specification is now deprecated in C++ In mexFunction, when an unknown exception occurs, Matlab or Octave may crash Maybe we should remove them from the mexFunction code. I...
Currently trends are taken into account only if users indicate them for observed variables. However, in random walk with drift, a deterministic trend appears endogenously for variables that are not...
The k_order_perturbation MEX doesn't return error information similar to the ones that we have in the MATLAB code for 1st and 2nd order solution. This will create a problem if...
Currently, we don't check for singularity in first order approximation when solving for static variables (is b10 singular?) or solving for shocks coefficient (is A_ singular?) 1) We should probably...
The code for computing a 2nd order approximation of Ramsey policy is already in place. I just need to complete the evaluation of objective function (at 3rd order).
Here is an example where an error in trend declaration isn't detected by the balanced growth test. It may come from the fact that labor enhancing productivity (G) is not...
1) adding the possibility to use one of the parameters of the model as the planner_discount factor 2) give independent access to the fonction evaluating the objective function
DataDeps depends upon BinaryProvider and BinaryProvider doesn't build on aarch64-apple-darwin. See https://discourse.julialang.org/t/m1-mac-faile-to-install-binaryprovider-package/74103/2
Since recently, ``tokenize`` fails on a file containing double quotes. Example ``` using Tokenize # Create test file open("test.txt", "w") do out print(out, "f(\"data\")") end # Display test file open("test.txt")...