From 1f0422b67f70cdd72585a3c9741a7a616b179e17 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Tue, 19 Mar 2024 18:19:34 +0100
Subject: [PATCH] Testsuite / run_block_bytecode_tests: really test steady
 state algorithms

The initial guess was set to the solution, so the algorithms would really be
tested.
---
 tests/block_bytecode/ls2003.mod | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tests/block_bytecode/ls2003.mod b/tests/block_bytecode/ls2003.mod
index 216c8738aa..38ce2bccd6 100644
--- a/tests/block_bytecode/ls2003.mod
+++ b/tests/block_bytecode/ls2003.mod
@@ -132,13 +132,13 @@ initval;
   nstbs=1;
   nsfs=1;
   nsbs=1;
-  nstbc_y = 1.08068253095672;
-  nstbc_c = 0.80359242014163;
-  nstbc_h = 0.29175631001732;
-  nstbc_k = 11.08360443260358;
+  nstbc_y = 1.1;
+  nstbc_c = 0.8;
+  nstbc_h = 0.3;
+  nstbc_k = 11.1;
 end;
 
-steady(solve_algo = @{solve_algo});
+steady(solve_algo = @{solve_algo}, tolf = 1e-11);
 
 @#if block
 model_info;
-- 
GitLab