[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/10: gnu: Add bonmin.
From: |
guix-commits |
Subject: |
04/10: gnu: Add bonmin. |
Date: |
Sat, 30 Sep 2023 10:11:24 -0400 (EDT) |
monego pushed a commit to branch master
in repository guix.
commit 39eb0d8a9454b96dbdbc5d098c95d9da4fb071ae
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sun Jul 30 11:18:12 2023 -0300
gnu: Add bonmin.
* gnu/packages/maths.scm (bonmin): New variable.
---
gnu/packages/maths.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index bb60877625..9e34da7ad0 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1368,6 +1368,28 @@ Extern C linkage permits the package routines to be
called from C++.")
(license (license:non-copyleft ; original minpack license
"https://github.com/certik/minpack/blob/master/LICENSE"))))
+(define-public bonmin
+ (package
+ (name "bonmin")
+ (version "1.8.9")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/coin-or/Bonmin")
+ (commit (string-append "releases/" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "153kj4wx386609g21hw3cv5yxps62qqrc64zwb9ryd2xad1w1a4y"))))
+ (build-system gnu-build-system)
+ (native-inputs (list gfortran pkg-config))
+ (inputs (list cbc ipopt lapack))
+ (home-page "https://coin-or.github.io/Bonmin/")
+ (synopsis "Basic Open-source Nonlinear Mixed INteger programming")
+ (description "Bonmin is a code for solving general MINLP (Mixed Integer
+NonLinear Programming) problems. It builds on top of Cbc and Ipopt.")
+ (license license:epl1.0)))
+
(define-public gctp
(package
(name "gctp")
- branch master updated (ee5de9cdf2 -> 9f41aa021f), guix-commits, 2023/09/30
- 02/10: gnu: Add primesieve., guix-commits, 2023/09/30
- 03/10: gnu: Add cminpack., guix-commits, 2023/09/30
- 07/10: gnu: ceres: Propagate eigen and gflags., guix-commits, 2023/09/30
- 08/10: gnu: Add python-numpoly., guix-commits, 2023/09/30
- 09/10: gnu: Add python-chaospy., guix-commits, 2023/09/30
- 10/10: gnu: Add python-openturns., guix-commits, 2023/09/30
- 01/10: gnu: Add hmat., guix-commits, 2023/09/30
- 05/10: gnu: Add pagmo., guix-commits, 2023/09/30
- 04/10: gnu: Add bonmin.,
guix-commits <=
- 06/10: gnu: Add spectra., guix-commits, 2023/09/30