diff --git a/docs/page_benchmarks.html b/docs/page_benchmarks.html
index 3e161317b..af3ac72e8 100644
--- a/docs/page_benchmarks.html
+++ b/docs/page_benchmarks.html
@@ -99,7 +99,7 @@
In what follows we give a few code snippets in MATLAB and compare SuperSCS with SCS.
This is a preliminary study to show that SuperSCS outperforms SCS, but a more thorough analysis is necessary.
In what follows we compare the two algorithms using five different types of problems: (i) a LASSO-like problem ( \(\ell_1\)-regularized least squares), (ii) a semidefinite program (SDP) and, in particular, a minimum-norm problem and an LMI-constrained problem, (iii) a logistic regression problem, (iv) a minimum \(p\)-norm problem, (v) a 2-norm-constrained minimum-norm problem and, last , (vi) a matrix completion problem involving the nuclear norm.
-
Note The following benchmarks are available in /tests/matlab/ .
+Note The following benchmarks are available in /tests/matlab/ .
Reported runtimes were recorded on an Intel® Core™ i5-6200U CPU @ 2.30GHz × 4 machine with 11.6 GiB RAM running 64-bit Ubuntu 14.04.
diff --git a/docs/page_contributing.html b/docs/page_contributing.html
index 0aa202e69..67772d8e8 100644
--- a/docs/page_contributing.html
+++ b/docs/page_contributing.html
@@ -185,7 +185,7 @@
Installation instructions, mathematical documentation and other non-API documentation should not be part of function/variable documentation.
-
Instead, you should contribute to an existing page in pages/ .
+
Instead, you should contribute to an existing page in pages/ .
Unit testing in C
Unit tests are supported and executed by a simple in-house framework.
@@ -266,14 +266,14 @@
Reporting an issue
-You may report your issue using the project's issue tracker on github
+
You may report your issue using the project's issue tracker on github
In your issue report, please include the following information:
explanatory title : a clear title
@@ -329,7 +329,7 @@
Contributing to SuperSCS
-
In order to contribute and actively participate in the development of SuperSCS, you first need to fork the repository on github:
+
In order to contribute and actively participate in the development of SuperSCS, you first need to fork the repository on github:
The docker configuration is given in Dockerfile .
Note This a pre-alpha unstable version, so there might be issues.
For example, cvx_precision is not supported (you have to use cvx_solver_settings('eps',...)).
diff --git a/docs/page_logging.html b/docs/page_logging.html
index 4b9395dbd..82e8ba05e 100644
--- a/docs/page_logging.html
+++ b/docs/page_logging.html
@@ -138,7 +138,7 @@
All we have to do is to set do_record_progress to 1.
params.do_record_progress = 1;
[x, y, s, info] = scs_direct(data, K, params);
-
This is the info structure we get when we run tests/matlab/cone_test.m :
+This is the info structure we get when we run tests/matlab/cone_test.m :
info =
iter: 32
diff --git a/docs/page_save_load.html b/docs/page_save_load.html
index bc52b3eb9..d4b814caa 100644
--- a/docs/page_save_load.html
+++ b/docs/page_save_load.html
@@ -135,7 +135,7 @@
date: '09-Apr-2018 19:41:52'
creator: 'SuperSCS'
yamlVersion: '1.2'
-
license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+
license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
name: 'example-problem-1'
A:
diff --git a/docs/scs__parser_8h.html b/docs/scs__parser_8h.html
index 7b3405502..f42f843a0 100644
--- a/docs/scs__parser_8h.html
+++ b/docs/scs__parser_8h.html
@@ -275,7 +275,7 @@
diff --git a/include/scs_parser.h b/include/scs_parser.h
index 04784c8ef..29a653a1a 100644
--- a/include/scs_parser.h
+++ b/include/scs_parser.h
@@ -109,7 +109,7 @@ extern "C" {
*
* - \ref ScsConicProblemMetadata.id "id": URI of the problem which is
%http://superscs.org/problem/{problemName}
* - \ref ScsConicProblemMetadata.date "date": current date
- * - \ref ScsConicProblemMetadata.license "license": URL of
SuperSCS's license
+ * - \ref ScsConicProblemMetadata.license "license": URL of
SuperSCS's license
* - \ref ScsConicProblemMetadata.yamlVersion "yamlVersion": 1.2
* - \ref ScsConicProblemMetadata.creator "creator": the \ref #scs_version "current SuperSCS version"
*
diff --git a/matlab/scs-yaml/example.yml b/matlab/scs-yaml/example.yml
index 9fb47aa78..4cd9be4c7 100644
--- a/matlab/scs-yaml/example.yml
+++ b/matlab/scs-yaml/example.yml
@@ -4,7 +4,7 @@ meta:
date: '11-Apr-2018 03:07:22'
creator: 'SuperSCS v1.2.6'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
name: 'example-problem-1'
A:
diff --git a/matlab/scs-yaml/problem_to_yaml.m b/matlab/scs-yaml/problem_to_yaml.m
index ac014d912..0756f3d67 100644
--- a/matlab/scs-yaml/problem_to_yaml.m
+++ b/matlab/scs-yaml/problem_to_yaml.m
@@ -86,7 +86,7 @@ function problem_to_yaml(destination, problem_name, data, K, options)
id = sprintf('http://superscs.org/problem/#%s', urlencode(problem_name));
creator = 'SuperSCS';
-license = 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt';
+license = 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt';
if nargin == 5
if isfield(options, 'creator'), creator = options.creator; end
diff --git a/pages/benchmarks_page.h b/pages/benchmarks_page.h
index 6f7baf00b..baa841a05 100644
--- a/pages/benchmarks_page.h
+++ b/pages/benchmarks_page.h
@@ -92,7 +92,7 @@
*
* \subsection benchmarks-lasso LASSO problems
*
- * [1152 lasso problems](https://github.com/kul-forbes/scs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_lasso.m)
+ * [1152 lasso problems](https://github.com/kul-optec/superscs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_lasso.m)
*
*
*
@@ -125,7 +125,7 @@
*
* \subsection benchmarks-pca1 Regularized PCA
*
- * [288 regularized PCA problems](https://github.com/kul-forbes/scs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_pca.m)
+ * [288 regularized PCA problems](https://github.com/kul-optec/superscs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_pca.m)
*
*
*
@@ -146,7 +146,7 @@
*
* \subsection benchmarks-logreg Logistic regression problems
*
- * [288 logistic regression problems](https://github.com/kul-forbes/scs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_logreg.m)
+ * [288 logistic regression problems](https://github.com/kul-optec/superscs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_logreg.m)
*
*
*
@@ -177,7 +177,7 @@
*
* \subsection benchmarks-sdp2 Semidefinite programming
*
- * [48 SDP problems](https://github.com/kul-forbes/scs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_sdp2.m)
+ * [48 SDP problems](https://github.com/kul-optec/superscs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_sdp2.m)
*
*
*
@@ -208,7 +208,7 @@
*
* \subsection benchmarks-sdp2b Ill-conditioned SDPs
*
- * [48 ill-conditioned SDP problems](https://github.com/kul-forbes/scs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_sdp2b.m)
+ * [48 ill-conditioned SDP problems](https://github.com/kul-optec/superscs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_sdp2b.m)
*
*
*
@@ -239,7 +239,7 @@
*
* \subsection benchmarks-normcon Norm-constrained norm minimization
*
- * [256 norm-constrained problems](https://github.com/kul-forbes/scs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_normcon.m)
+ * [256 norm-constrained problems](https://github.com/kul-optec/superscs/blob/master/tests/profiling_matlab/profile_runners/profile_runner_normcon.m)
*
*
*
diff --git a/pages/contributing_page.h b/pages/contributing_page.h
index bb63b8353..5941f18e0 100644
--- a/pages/contributing_page.h
+++ b/pages/contributing_page.h
@@ -102,7 +102,7 @@
* documentation should not be part of function/variable documentation.
*
* Instead, you should contribute to an existing page in
- * pages/ .
+ * pages/ .
*
*
*
@@ -226,7 +226,7 @@
*
*
@@ -235,7 +235,7 @@
*
* \subsubsection sec_issues_report Reporting an issue
*
- * You may report your issue using the project's [issue tracker on github](https://github.com/kul-forbes/scs/issues)
+ * You may report your issue using the project's [issue tracker on github](https://github.com/kul-optec/superscs/issues)
*
* In your issue report, please include the following information:
*
@@ -302,7 +302,7 @@
* \subsection sec_git_contributing Contributing to SuperSCS
*
* In order to contribute and actively participate in the development of
- * SuperSCS, you first need to [fork](https://github.com/kul-forbes/scs/fork)
+ * SuperSCS, you first need to [fork](https://github.com/kul-optec/superscs/fork)
* the repository on github:
*
* \htmlonly
@@ -339,7 +339,7 @@
* - \htmlonly \endhtmlonly A pull request has preferably been created
* - \htmlonly \endhtmlonly Changelog has been updated
* - \htmlonly \endhtmlonly Make sure there are no important
- * issues
+ * issues
* - \htmlonly \endhtmlonly Check out
* Trello
*
@@ -410,7 +410,7 @@
* repetitions of each run and more.
*
* Profile runners store some general statistics in the CSV file
- * [register.csv](https://github.com/kul-forbes/scs/blob/master/tests/profiling_matlab/profile_results/register.csv)
+ * [register.csv](https://github.com/kul-optec/superscs/blob/master/tests/profiling_matlab/profile_results/register.csv)
* which can be used for look-up purposes.
*
* \subsubsection sec_performing_benchmarks_matlab_experimenters Experimenters
@@ -443,6 +443,6 @@
* ~~~~~
*
* The docker configuration is given in
- * [Dockerfile](https://github.com/kul-forbes/scs/blob/master/Dockerfile).
+ * [Dockerfile](https://github.com/kul-optec/superscs/blob/master/Dockerfile).
*
*/
\ No newline at end of file
diff --git a/pages/cvx_examples_page.h b/pages/cvx_examples_page.h
index 76ca61876..a233a8e20 100644
--- a/pages/cvx_examples_page.h
+++ b/pages/cvx_examples_page.h
@@ -42,7 +42,7 @@
* (vi) a matrix completion problem involving the nuclear norm.
*
* \note The following benchmarks are available in
- * [/tests/matlab/](https://github.com/kul-forbes/scs/tree/master/tests/matlab).
+ * [/tests/matlab/](https://github.com/kul-optec/superscs/tree/master/tests/matlab).
*
* \note Reported runtimes were recorded on an Intel® Core™ i5-6200U CPU @ 2.30GHz × 4
* machine with 11.6 GiB RAM running 64-bit Ubuntu 14.04.
diff --git a/pages/installation_page.h b/pages/installation_page.h
index 0e7263767..9acf94f2c 100644
--- a/pages/installation_page.h
+++ b/pages/installation_page.h
@@ -62,12 +62,12 @@
*
* \subsubsection sec_linux_max_install Installation
*
- * First, you need to [download SuperSCS](https://github.com/kul-forbes/scs/archive/master.zip)
- * from the [github repo](https://github.com/kul-forbes/scs) of SuperSCS, or use the
+ * First, you need to [download SuperSCS](https://github.com/kul-optec/superscs/archive/master.zip)
+ * from the [github repo](https://github.com/kul-optec/superscs) of SuperSCS, or use the
* command:
*
* ~~~~~
- * git clone 'https://github.com/kul-forbes/scs.git'
+ * git clone 'https://github.com/kul-optec/superscs.git'
* cd scs/
* ~~~~~
*
@@ -156,7 +156,7 @@
* make_scs;
* \endcode
*
- * This should work. If not, please [report an issue](https://github.com/kul-forbes/scs/issues).
+ * This should work. If not, please [report an issue](https://github.com/kul-optec/superscs/issues).
*
*
*
@@ -203,7 +203,7 @@
*
* We have set the tolerance to \f$10^{-8}\f$.
*
- * In case you encounter any problems, please [report an issue](https://github.com/kul-forbes/scs/issues).
+ * In case you encounter any problems, please [report an issue](https://github.com/kul-optec/superscs/issues).
*
* \note This a pre-alpha unstable version, so there might be issues.
*
diff --git a/pages/logging_page.h b/pages/logging_page.h
index c47f82e7d..e4589a54e 100644
--- a/pages/logging_page.h
+++ b/pages/logging_page.h
@@ -87,7 +87,7 @@
* ~~~~~
*
* This is the \c info structure we get when we run
- * [tests/matlab/cone_test.m](https://github.com/kul-forbes/scs/blob/master/tests/matlab/cone_test.m):
+ * [tests/matlab/cone_test.m](https://github.com/kul-optec/superscs/blob/master/tests/matlab/cone_test.m):
*
* ~~~~~{.m}
* info =
diff --git a/pages/mainpage.h b/pages/mainpage.h
index f05754969..d405f1b98 100644
--- a/pages/mainpage.h
+++ b/pages/mainpage.h
@@ -88,7 +88,7 @@
*
* \subsection sec-github-page Download
*
- * The source code of [SuperSCS](https://github.com/kul-forbes/scs) is available on [github](https://github.com/kul-forbes/scs).
+ * The source code of [SuperSCS](https://github.com/kul-optec/superscs) is available on [github](https://github.com/kul-optec/superscs).
*
* Check out the \ref page_installation "installation guide".
*
@@ -96,11 +96,11 @@
* \subsection sec-verification Verification
*
* Quality assurance:
- * - [unit tests](https://github.com/kul-forbes/scs/tree/master/tests) (make run-test)
+ * - [unit tests](https://github.com/kul-optec/superscs/tree/master/tests) (make run-test)
* - [memory management tests](http://valgrind.org) using valgrind
- * - [continuous integration (Travis CI)](https://travis-ci.org/kul-forbes/scs) (Linux + Mac OSX)
+ * - [continuous integration (Travis CI)](https://travis-ci.org/kul-optec/superscs) (Linux + Mac OSX)
* - [continuous integration (Appveyor)](https://ci.appveyor.com/project/alphaville/scs/branch/dev) (Windows)
- * - [coverage reports](https://codecov.io/gh/kul-forbes/scs) on Codecov
+ * - [coverage reports](https://codecov.io/gh/kul-optec/superscs) on Codecov
* - [code quality reports](https://www.codacy.com/app/alphaville/scs/dashboard) on codacy
* - [lcov report](coverage/) using make cov COV=1
*
@@ -115,7 +115,7 @@
* \subsection sec-license License
*
* SuperSCS is licensed with an
- * MIT license .
+ * MIT license .
*
* The MIT license is a short and simple permissive license with conditions
* only requiring preservation of copyright and license notices.
@@ -124,7 +124,7 @@
* terms and without source code.
*
* You only need to keep
- * LICENSE.txt
+ * LICENSE.txt
* and, if you redistribute the source code, the copyright notices therein.
*
* \subsection sec-question Do you have a question?
@@ -144,7 +144,7 @@
*
*
diff --git a/pages/save_load_page.h b/pages/save_load_page.h
index 3777662bd..664b210f5 100644
--- a/pages/save_load_page.h
+++ b/pages/save_load_page.h
@@ -89,7 +89,7 @@
* date: '09-Apr-2018 19:41:52'
* creator: 'SuperSCS'
* yamlVersion: '1.2'
- * license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ * license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
* problem:
* name: 'example-problem-1'
* A:
diff --git a/src/scs_parser.c b/src/scs_parser.c
index 378847fe9..24c48444a 100644
--- a/src/scs_parser.c
+++ b/src/scs_parser.c
@@ -624,7 +624,7 @@ ScsConicProblemMetadata * scs_init_conic_problem_metadata(const char * problemNa
metadata = scs_malloc(sizeof (*metadata));
if (metadata == SCS_NULL) return SCS_NULL;
strncpy(metadata->license,
- "https://github.com/kul-forbes/scs/blob/master/LICENSE.txt",
+ "https://github.com/kul-optec/superscs/blob/master/LICENSE.txt",
SCS_METADATA_TEXT_SIZE);
strncpy(metadata->problemName, problemName, SCS_METADATA_TEXT_SIZE);
snprintf(metadata->id, SCS_METADATA_TEXT_SIZE, "http://superscs.org/problem/%s", problemName);
diff --git a/tests/c/data/liswet1.yml b/tests/c/data/liswet1.yml
index 999ad1cbd..ee27437a7 100644
--- a/tests/c/data/liswet1.yml
+++ b/tests/c/data/liswet1.yml
@@ -4,7 +4,7 @@ meta:
date: '12-Apr-2018 00:56:47'
creator: 'SuperSCS'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
name: 'liswet1'
A:
diff --git a/tests/c/data/liswet7.yml b/tests/c/data/liswet7.yml
index 2356e3b83..0c3abd2f9 100644
--- a/tests/c/data/liswet7.yml
+++ b/tests/c/data/liswet7.yml
@@ -4,7 +4,7 @@ meta:
date: '12-Apr-2018 01:21:11'
creator: 'SuperSCS'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
name: 'liswet7'
A:
diff --git a/tests/c/data/test-0.yml b/tests/c/data/test-0.yml
index e30e8660a..e7d19e3b8 100644
--- a/tests/c/data/test-0.yml
+++ b/tests/c/data/test-0.yml
@@ -3,7 +3,7 @@ meta:
id: 'http://superscs.org/problem/anonymous-conic-problem'
creator: '1.3.2'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
date: '2018-5-7 18:18:16 [GMT+3]'
problem:
name: 'anonymous-conic-problem'
diff --git a/tests/c/data/test-1.yml b/tests/c/data/test-1.yml
index 385f2843f..f48fd40e0 100644
--- a/tests/c/data/test-1.yml
+++ b/tests/c/data/test-1.yml
@@ -6,7 +6,7 @@ meta:
date: '11-Apr-2018 02:54:32' # date of creation
creator: 'SuperSCS v1.2.6'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
# The problem data are shown below
problem:
name: 'test-problem-1'
diff --git a/tests/c/data/test-2.yml b/tests/c/data/test-2.yml
index 6653e16be..3e4d79302 100644
--- a/tests/c/data/test-2.yml
+++ b/tests/c/data/test-2.yml
@@ -4,7 +4,7 @@ meta:
date: '11-Apr-2018 03:23:58'
creator: 'SuperSCS v1.2.6'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
name: 'test-problem-2'
A:
diff --git a/tests/c/data/test-3.yml b/tests/c/data/test-3.yml
index ecf9d6307..8de1373be 100644
--- a/tests/c/data/test-3.yml
+++ b/tests/c/data/test-3.yml
@@ -7,7 +7,7 @@ meta:
creator: 'SuperSCS'
# Minimum YAML version required
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
# problem starts here
name: 'test-problem-3'
diff --git a/tests/c/data/test-4.yml b/tests/c/data/test-4.yml
index 975ddb6b8..fda695137 100644
--- a/tests/c/data/test-4.yml
+++ b/tests/c/data/test-4.yml
@@ -4,7 +4,7 @@ meta:
date: '11-Apr-2018 13:16:34'
creator: 'SuperSCS'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
name: 'test-4-sdp-2'
A:
diff --git a/tests/c/data/test-5.yml b/tests/c/data/test-5.yml
index 3593f141b..1a05e392b 100644
--- a/tests/c/data/test-5.yml
+++ b/tests/c/data/test-5.yml
@@ -4,7 +4,7 @@ meta:
date: '11-Apr-2018 14:43:02'
creator: 'SuperSCS'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
name: 'test-5-logreg'
A:
diff --git a/tests/c/data/test-6.yml b/tests/c/data/test-6.yml
index 548372054..9f3089b14 100644
--- a/tests/c/data/test-6.yml
+++ b/tests/c/data/test-6.yml
@@ -4,7 +4,7 @@ meta:
date: '11-Apr-2018 15:34:30'
creator: 'SuperSCS'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
name: 'test-problem-6-power-cone'
A:
diff --git a/tests/c/data/test-7.yml b/tests/c/data/test-7.yml
index a92938796..a955409d0 100644
--- a/tests/c/data/test-7.yml
+++ b/tests/c/data/test-7.yml
@@ -4,7 +4,7 @@ meta:
date: '11-Apr-2018 19:37:36'
creator: 'SuperSCS'
yamlVersion: '1.2'
- license: 'https://github.com/kul-forbes/scs/blob/master/LICENSE.txt'
+ license: 'https://github.com/kul-optec/superscs/blob/master/LICENSE.txt'
problem:
name: 'test-problem-7-primal-exponential-cone'
A:
diff --git a/tests/c/test_superscs.c b/tests/c/test_superscs.c
index f878417f2..1bdc5662a 100644
--- a/tests/c/test_superscs.c
+++ b/tests/c/test_superscs.c
@@ -1415,7 +1415,7 @@ bool test_exponential_unbdd_from_YAML(char **str) {
bool test_problem_metadata(char **str) {
const char problemName[] = "problem-123\0";
- const char license[] = "https://github.com/kul-forbes/scs/blob/master/LICENSE.txt";
+ const char license[] = "https://github.com/kul-optec/superscs/blob/master/LICENSE.txt";
const char id[] = "http://superscs.org/problem/problem-123";
int year = -1, month = -1, day = -1, hour = -1, minute = -1, second = -1;
char timezone[100];