From 605cd365d27729314c9c4dfdd9362eb2bd0cceca Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Hermes=29?=
 <stephane.adjemian@univ-lemans.fr>
Date: Mon, 13 Jun 2016 11:58:43 +0200
Subject: [PATCH] Added routines for steady state computation (julia).

---
 ModFile.cc | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/ModFile.cc b/ModFile.cc
index 2b2c684b..05c7bce2 100644
--- a/ModFile.cc
+++ b/ModFile.cc
@@ -1104,11 +1104,12 @@ ModFile::writeExternalFilesJulia(const string &basename, FileOutputType output)
                << "#" << endl
                << "# NB: this file was automatically generated by Dynare" << endl
                << "#     from " << basename << ".mod" << endl
-               << "#" << endl
+               << "#" << endl << endl
                << "using DynareModel" << endl
                << "using DynareOptions" << endl
-               << "using DynareOutput" << endl
+               << "using DynareOutput" << endl << endl
                << "using Utils" << endl
+               << "using SteadyState" << endl << endl
                << "using " << basename << "Static" << endl
                << "using " << basename << "Dynamic" << endl
                << "if isfile(\"" << basename << "SteadyState.jl"  "\")" << endl
@@ -1197,7 +1198,7 @@ ModFile::writeExternalFilesJulia(const string &basename, FileOutputType output)
                << "    using " << basename << "DynamicParamsDerivs" << endl
                << "    model_.dynamic_params_derivs = " << basename << "DynamicParamsDerivs.params_derivs" << endl
                << "end" << endl
-               << "end" << endl;
+	       << "end" << endl;
   jlOutputFile.close();
   cout << "done" << endl;
 }
-- 
GitLab