summaryrefslogtreecommitdiff
path: root/gnu/packages/maths.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-02 12:16:38 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:20:10 +0100
commite80a101d83e930de872b4e38cd38995515e266ec (patch)
treedbdff83346e60c6733039aea4794a801320e26cc /gnu/packages/maths.scm
parentf5f6311d345bb290397951145ef5b9b9e1c6cdce (diff)
gnu: Add scs.
* gnu/packages/maths.scm (scs): New variable. Change-Id: Iea504b64a1da5cb4d446fe6461bbf4b2a47f4139 Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r--gnu/packages/maths.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index de0a851fc86..9c45bc7bca9 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -3417,6 +3417,30 @@ matrices of small size.")
with constraints.")
(license license:asl2.0)))
+(define-public scs
+ (package
+ (name "scs")
+ (version "3.2.10")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cvxgrp/scs")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "00csacax6gh3cj39044iijsy6gkz0d1ac805z13qkllfs6bsvchy"))))
+ (build-system cmake-build-system)
+ (inputs
+ (list lapack
+ openblas))
+ (home-page "https://osqp.org/")
+ (synopsis "Splitting Conic Solver")
+ (description
+ "SCS (splitting conic solver) is a numerical optimization package for
+solving large-scale convex cone problems.")
+ (license license:expat)))
+
(define-public ceres
(package
(name "ceres-solver")