From 279a702c02f83de63933faf388ac49d2cd14b0af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Wed, 30 Oct 2024 14:33:45 +0100 Subject: [PATCH] =?UTF-8?q?Drop=20legacy=20representation=20for=20the=20st?= =?UTF-8?q?atic=20model=20with=20=E2=80=9Cuse=5Fdll=E2=80=9D=20option?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This should have been removed in commit 2315bdb54a90b67dc5aae252059050bb13d8b522. Ref. dynare#1859 --- src/StaticModel.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/StaticModel.cc b/src/StaticModel.cc index 780e3ed8..93944b89 100644 --- a/src/StaticModel.cc +++ b/src/StaticModel.cc @@ -287,10 +287,6 @@ StaticModel::writeStaticFile(const string& basename, bool use_dll, const string& } create_directories(model_dir / "bytecode" / "block"); - // Legacy representation - if (use_dll) - writeModelCFile<false>(basename, mexext, matlabroot); - /* PlannerObjective subclass or discretionary optimal policy models don’t have as many variables as equations; bytecode does not support that case */ -- GitLab