From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46036) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iUbe3-0002te-IY for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iUbe2-0004kL-7g for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:07 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:49586) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iUbe2-0004kE-3P for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:06 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iUbe1-00082X-Ru for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:05 -0500 Subject: [bug#38184] [PATCH 3/4] gnu: r-subplex: Move to (gnu packages cran). Resent-Message-ID: From: zimoun Date: Tue, 12 Nov 2019 20:15:32 +0100 Message-Id: <20191112191533.32371-4-zimon.toutoune@gmail.com> In-Reply-To: <20191112191533.32371-1-zimon.toutoune@gmail.com> References: <20191112191533.32371-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38184@debbugs.gnu.org Cc: zimoun * gnu/packages/maths.scm (r-subplex): Move from here... * gnu/packages/cran.scm (r-subplex): ...to here. --- gnu/packages/cran.scm | 23 +++++++++++++++++++++++ gnu/packages/maths.scm | 22 ---------------------- 2 files changed, 23 insertions(+), 22 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ed416c4a8e..48ddaadd8d 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -15687,3 +15687,26 @@ linear algebra, numerical optimization, differential equations, plus some special functions. It uses Matlab function names where appropriate to simplify porting.") (license license:gpl3+))) + +(define-public r-subplex + (package + (name "r-subplex") + (version "1.5-4") + (source + (origin + (method url-fetch) + (uri (cran-uri "subplex" version)) + (sha256 + (base32 + "10cbgbx1bgsax5z7gz6716g360xpq4mvq19cf4qqrxv02mmwz57z")))) + (build-system r-build-system) + (native-inputs + `(("gfortran" ,gfortran))) + (home-page "https://cran.r-project.org/web/packages/subplex") + (synopsis "Unconstrained optimization using the subplex algorithm") + (description + "This package implements the Subplex optimization algorithm. +It solves unconstrained optimization problems using a simplex method on +subspaces. The method is well suited for optimizing objective functions that +are noisy or are discontinuous at the solution.") + (license license:gpl3+))) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 3565b99e05..77bd5d246b 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4343,28 +4343,6 @@ analysed.") (arguments '(#:configure-flags '("-DMCRL2_ENABLE_GUI_TOOLS=OFF"))))) -(define-public r-subplex - (package - (name "r-subplex") - (version "1.5-4") - (source - (origin - (method url-fetch) - (uri (cran-uri "subplex" version)) - (sha256 - (base32 - "10cbgbx1bgsax5z7gz6716g360xpq4mvq19cf4qqrxv02mmwz57z")))) - (build-system r-build-system) - (native-inputs - `(("gfortran" ,gfortran))) - (home-page "https://cran.r-project.org/web/packages/subplex") - (synopsis "Unconstrained optimization using the subplex algorithm") - (description "This package implements the Subplex optimization algorithm. -It solves unconstrained optimization problems using a simplex method on -subspaces. The method is well suited for optimizing objective functions that -are noisy or are discontinuous at the solution.") - (license license:gpl3+))) - (define-public r-desolve (package (name "r-desolve") -- 2.23.0