guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

18/33: gnu: Add julia-nlsolversbase.


From: guix-commits
Subject: 18/33: gnu: Add julia-nlsolversbase.
Date: Mon, 14 Jun 2021 07:46:22 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit f52f7a30851daa195664a070e50aa0992a58e2a6
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jun 14 12:45:18 2021 +0300

    gnu: Add julia-nlsolversbase.
    
    * gnu/packages/julia-xyz.scm (julia-nlsolversbase): New variable.
---
 gnu/packages/julia-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 697fc23..8ab24c0 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -2156,6 +2156,35 @@ still being completely generic
 @code{NaN} instead of throwing a @code{DomainError}.")
     (license license:expat)))
 
+(define-public julia-nlsolversbase
+  (package
+    (name "julia-nlsolversbase")
+    (version "7.8.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaNLSolvers/NLSolversBase.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "0n8qh5a2ghjx1j70zxn0hmh8gzpa46kmjg8di879y9974bfk0f98"))))
+    (build-system julia-build-system)
+    (propagated-inputs
+     `(("julia-diffresults" ,julia-diffresults)
+       ("julia-finitediff" ,julia-finitediff)
+       ("julia-forwarddiff" ,julia-forwarddiff)))
+    (native-inputs
+     `(("julia-optimtestproblems" ,julia-optimtestproblems)
+       ("julia-recursivearraytools" ,julia-recursivearraytools)))
+    (home-page "https://github.com/JuliaNLSolvers/NLSolversBase.jl";)
+    (synopsis "Optimization and equation solver software in JuliaNLSolvers")
+    (description "This package aims at establishing common ground for Optim.jl,
+LineSearches.jl, and NLsolve.jl.  The common ground is mainly the types used to
+hold objective related callables, information about the objectives, and an
+interface to interact with these types.")
+    (license license:expat)))
+
 (define-public julia-nnlib
   (package
     (name "julia-nnlib")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]