Skip to content

Commit 82b1e21

Browse files
authored
Merge pull request #19 from oxfordcontrol/v0.10.1
V0.10.1
2 parents 0957e03 + e76fc13 commit 82b1e21

File tree

5 files changed

+63
-64
lines changed

5 files changed

+63
-64
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
branches: [main, master]
44
pull_request:
55
branches: [main, master]
6+
workflow_dispatch:
67

78
name: R-CMD-check
89

DESCRIPTION

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: clarabel
22
Type: Package
33
Title: Interior Point Conic Optimization Solver
4-
Version: 0.10.0
4+
Version: 0.10.1
55
Authors@R: c(person("Balasubramanian", "Narasimhan", role = c("aut", "cre"),
66
email = "naras@stanford.edu"),
77
person("Paul", "Goulart", role = c("aut", "cph")),
@@ -10,8 +10,6 @@ Authors@R: c(person("Balasubramanian", "Narasimhan", role = c("aut", "cre"),
1010
comment = "For vendoring/Makefile hints/R scripts for generating crate authors/licenses"),
1111
person("David", "Zimmermann-Kollenda", role = c("ctb"),
1212
comment = "For configure scripts and tools/msvr.R lifted from rtitoken package"),
13-
person("Hiroaki", "Yutani", role = c("ctb"),
14-
comment = "For vendoring/Makefile hints/R scripts for generating crate authors/licenses"),
1513
person(given = "The authors of the dependency Rust crates", role = c("ctb"),
1614
comment = "see inst/AUTHORS file for details"))
1715
Description: A versatile interior point solver that solves linear programs (LPs), quadratic programs (QPs), second-order cone programs (SOCPs), semidefinite programs (SDPs), and problems with exponential and power cone constraints (<https://clarabel.org/stable/>). For quadratic objectives, unlike interior point solvers based on the standard homogeneous self-dual embedding (HSDE) model, Clarabel handles quadratic objective without requiring any epigraphical reformulation of its objective function. It can therefore be significantly faster than other HSDE-based solvers for problems with quadratic objective functions. Infeasible problems are detected using using a homogeneous embedding technique.
@@ -27,6 +25,6 @@ Suggests:
2725
rmarkdown,
2826
tinytest
2927
VignetteBuilder: knitr
30-
SystemRequirements: Cargo (Rust's package manager), rustc (>= 1.67.1), and GNU Make
28+
SystemRequirements: Cargo (Rust's package manager), rustc (>= 1.70.0), and GNU Make
3129
Imports:
3230
methods

src/rust/Cargo.lock

Lines changed: 57 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rust/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "clarabel"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
edition = "2021"
55

66
[lib]
77
crate-type = ["staticlib", "lib"]
88

99
[dependencies]
10-
savvy = "0.8.6"
10+
savvy = "0.8.9"
1111
clarabel = {version = '0.10.0', features = [ 'sdp-r' ]}
1212
lazy_static = "1.4.0"
1313
regex = "1.10.4"
@@ -22,7 +22,7 @@ regex = "1.10.4"
2222
# However, it's possible that the panic is thrown by some of the dependency
2323
# crate and there's little you can do. In such cases, you can change the
2424
# following line to `panic = "unwind"` to always catch a panic.
25-
panic = "abort"
25+
panic = "unwind"
2626

2727
[patch.crates-io]
2828
clarabel = { git = "https://github.com/oxfordcontrol/Clarabel.rs", rev = "c2f76b69a157c1917101e76098e970f1e026d5f5" }

src/rust/vendor.tar.xz

16.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)