Skip to content

Commit

Permalink
Merge pull request bodono#9 from alastair-abbott/master
Browse files Browse the repository at this point in the history
Bump to scs 3.2.0
  • Loading branch information
bodono authored Sep 26, 2022
2 parents 3853470 + 2950e15 commit ea3efce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scs
Submodule scs updated 75 files
+1 −1 .bumpversion.cfg
+6 −4 .github/workflows/build.yml
+6 −1 .github/workflows/docs.yml
+1 −1 CITATION.cff
+2 −2 CMakeLists.txt
+3 −1 README.md
+1 −1 docs/src/Doxyfile
+1 −1 docs/src/algorithm/index.rst
+26 −14 docs/src/algorithm/warm_start.rst
+11 −1 docs/src/api/c.rst
+4 −3 docs/src/api/cones.rst
+9 −6 docs/src/api/matlab.rst
+26 −13 docs/src/api/python.rst
+1 −1 docs/src/api/settings.rst
+1 −1 docs/src/citing/index.rst
+21 −19 docs/src/conf.py
+2 −2 docs/src/examples/c.rst
+3 −2 docs/src/examples/matlab.rst
+14 −9 docs/src/examples/python.rst
+19 −0 docs/src/examples/python/basic_qp.rst
+68 −0 docs/src/examples/python/entropy.py
+28 −0 docs/src/examples/python/entropy.py.out
+47 −0 docs/src/examples/python/entropy.rst
+70 −0 docs/src/examples/python/lasso.py
+213 −0 docs/src/examples/python/lasso.py.out
+52 −0 docs/src/examples/python/lasso.rst
+102 −0 docs/src/examples/python/mat_completion.py
+239 −0 docs/src/examples/python/mat_completion.py.out
+71 −0 docs/src/examples/python/mat_completion.rst
+124 −0 docs/src/examples/python/mpc.py
+143 −0 docs/src/examples/python/mpc.py.out
+49 −0 docs/src/examples/python/mpc.rst
+8 −8 docs/src/examples/python/qp.py
+9 −8 docs/src/examples/python/qp.py.out
+2 −1 docs/src/examples/qp.c
+8 −7 docs/src/examples/qp.c.out
+2 −1 docs/src/examples/qp.m
+11 −11 docs/src/examples/qp.m.out
+7 −3 docs/src/examples/qp.prob
+1 −1 docs/src/index.rst
+5 −3 include/cones.h
+4 −5 include/glbopts.h
+1 −0 include/normalize.h
+3 −3 include/rw.h
+45 −22 include/scs.h
+15 −18 include/scs_work.h
+3 −1 include/util.h
+0 −897 linsys/external/amd/LICENSE.txt
+4 −2 linsys/external/amd/SuiteSparse_config.c
+0 −5 linsys/external/amd/SuiteSparse_config.h
+38 −67 linsys/scs_matrix.c
+4 −3 linsys/scs_matrix.h
+0 −4 scs.mk
+0 −4 src/aa.c
+63 −25 src/cones.c
+1 −1 src/linalg.c
+49 −0 src/normalize.c
+48 −40 src/rw.c
+212 −170 src/scs.c
+26 −12 src/util.c
+3 −3 test/problem_utils.h
+1 −0 test/problems/degenerate.h
+1 −0 test/problems/hs21_tiny_qp.h
+5 −1 test/problems/hs21_tiny_qp_rw.h
+1 −0 test/problems/infeasible_tiny_qp.h
+2 −1 test/problems/qafiro_tiny_qp.h
+5 −1 test/problems/random_prob.h
+8 −1 test/problems/rob_gauss_cov_est.h
+4 −1 test/problems/small_lp.h
+42 −7 test/problems/small_qp.h
+4 −1 test/problems/test_validation.h
+3 −3 test/problems/unbounded_tiny_qp.h
+3 −1 test/random_socp_prob.c
+15 −3 test/run_from_file.c
+15 −6 test/run_tests.c
2 changes: 1 addition & 1 deletion scs.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function [ x, y, s, info ] = scs( varargin )
% scs 3.1.0
% scs 3.2.0
% for version call: scs_version()
data = varargin{1};
K = varargin{2};
Expand Down

0 comments on commit ea3efce

Please sign in to comment.