From 8556043c9adb23c5e896a5667d2d03ec70b43fc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Wed, 8 Nov 2023 12:18:17 +0100 Subject: [PATCH] solve_two_boundaries.m: remove an unused variable --- matlab/solve_two_boundaries.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/matlab/solve_two_boundaries.m b/matlab/solve_two_boundaries.m index b5daed82d0..bc166e5910 100644 --- a/matlab/solve_two_boundaries.m +++ b/matlab/solve_two_boundaries.m @@ -38,7 +38,7 @@ function [y, T, success, max_res, iter] = solve_two_boundaries(fh, y, x, params, % iter [integer] Number of iterations % % ALGORITHM -% Newton with LU or GMRES or BicGstab +% Newton with LU or GMRES or BiCGStab % Copyright © 1996-2023 Dynare Team % @@ -61,7 +61,6 @@ verbose = options_.verbosity; cvg=false; iter=0; -Per_u_=0; Blck_size=size(y_index,2); correcting_factor=0.01; ilu_setup.droptol=1e-10; -- GitLab