From 40779a39b74cd34fe8e69d9f123092a330c58244 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Mon, 3 Apr 2023 17:20:45 +0200
Subject: [PATCH] Manual: give more details for stack_solve_algo=0

Explain that the solver is a direct sparse LU, to differentiate it from
stack_solve_algo={2,3,4} which use the same Newton algorithm but with different
solvers.

(cherry picked from commit 19afc087cc3b8920ac2680750049fcf429675959)

[skip ci]
---
 doc/manual/source/the-model-file.rst | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/doc/manual/source/the-model-file.rst b/doc/manual/source/the-model-file.rst
index 3518e50850..74a149f824 100644
--- a/doc/manual/source/the-model-file.rst
+++ b/doc/manual/source/the-model-file.rst
@@ -3492,8 +3492,9 @@ speed-up on large models.
 
            ``0``
 
-               Newton method to solve simultaneously all the equations for
-               every period, using sparse matrices (Default).
+               Use a Newton algorithm with a direct sparse LU solver at each
+               iteration, applied on the stacked system of all the equations at
+               every period (Default).
 
            ``1``
 
-- 
GitLab