From b16cec24a2b60beb64f74c4fde3eb702167796cf Mon Sep 17 00:00:00 2001 From: Serguei Sokol <sokol@insa-toulouse.fr> Date: Thu, 17 Oct 2024 10:34:22 +0200 Subject: [PATCH] v0.2.2 fixed CRAN remarks on DESCRPTION file Signed-off-by: Serguei Sokol <sokol@insa-toulouse.fr> --- DESCRIPTION | 6 +++--- NEWS.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 6e542cd..eb57afc 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,11 +1,11 @@ Package: gmresls Title: Solve Least Squares with GMRES(k) -Version: 0.2.1 -Date: 2024-10-15 +Version: 0.2.2 +Date: 2024-10-17 Authors@R: person("Serguei", "Sokol", , "sokol@insa-toulouse.fr", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-5674-3327")) -Description: Solves a least squares system 'Ax~=b' (dim(A)=(m,n) with m >= n) with a precondition matrix B: 'BAx=Bb' (dim(B)=(n,m)). Implemented method is based on 'GMRES' (Generalized minimal residual, <doi:10.1137/0907058>) with callback functions, i.e. no explicit A, B or b are required. +Description: Solves a least squares system Ax~=b (dim(A)=(m,n) with m >= n) with a precondition matrix B: BAx=Bb (dim(B)=(n,m)). Implemented method is based on GMRES (Saad, Youcef; Schultz, Martin H. (1986). "GMRES: A Generalized Minimal Residual Algorithm for Solving Nonsymmetric Linear Systems" <doi:10.1137/0907058>) with callback functions, i.e. no explicit A, B or b are required. License: GPL (>= 3) Encoding: UTF-8 Roxygen: list(markdown = TRUE) diff --git a/NEWS.md b/NEWS.md index 87048fc..f7a6b2b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,3 @@ -## v0.2.1 2024-10-15 +## v0.2.2 2024-10-17 - initial R implemetation -- GitLab