scs 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +3 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +84 -0
  5. data/ext/scs/Rakefile +11 -0
  6. data/lib/scs/ffi.rb +117 -0
  7. data/lib/scs/solver.rb +178 -0
  8. data/lib/scs/version.rb +3 -0
  9. data/lib/scs.rb +17 -0
  10. data/vendor/scs/LICENSE.txt +21 -0
  11. data/vendor/scs/Makefile +164 -0
  12. data/vendor/scs/README.md +220 -0
  13. data/vendor/scs/include/aa.h +56 -0
  14. data/vendor/scs/include/cones.h +46 -0
  15. data/vendor/scs/include/ctrlc.h +33 -0
  16. data/vendor/scs/include/glbopts.h +177 -0
  17. data/vendor/scs/include/linalg.h +26 -0
  18. data/vendor/scs/include/linsys.h +64 -0
  19. data/vendor/scs/include/normalize.h +18 -0
  20. data/vendor/scs/include/rw.h +17 -0
  21. data/vendor/scs/include/scs.h +161 -0
  22. data/vendor/scs/include/scs_blas.h +51 -0
  23. data/vendor/scs/include/util.h +65 -0
  24. data/vendor/scs/linsys/amatrix.c +305 -0
  25. data/vendor/scs/linsys/amatrix.h +36 -0
  26. data/vendor/scs/linsys/amatrix.o +0 -0
  27. data/vendor/scs/linsys/cpu/direct/private.c +366 -0
  28. data/vendor/scs/linsys/cpu/direct/private.h +26 -0
  29. data/vendor/scs/linsys/cpu/direct/private.o +0 -0
  30. data/vendor/scs/linsys/cpu/indirect/private.c +256 -0
  31. data/vendor/scs/linsys/cpu/indirect/private.h +31 -0
  32. data/vendor/scs/linsys/cpu/indirect/private.o +0 -0
  33. data/vendor/scs/linsys/external/amd/LICENSE.txt +934 -0
  34. data/vendor/scs/linsys/external/amd/SuiteSparse_config.c +469 -0
  35. data/vendor/scs/linsys/external/amd/SuiteSparse_config.h +254 -0
  36. data/vendor/scs/linsys/external/amd/SuiteSparse_config.o +0 -0
  37. data/vendor/scs/linsys/external/amd/amd.h +400 -0
  38. data/vendor/scs/linsys/external/amd/amd_1.c +180 -0
  39. data/vendor/scs/linsys/external/amd/amd_1.o +0 -0
  40. data/vendor/scs/linsys/external/amd/amd_2.c +1842 -0
  41. data/vendor/scs/linsys/external/amd/amd_2.o +0 -0
  42. data/vendor/scs/linsys/external/amd/amd_aat.c +184 -0
  43. data/vendor/scs/linsys/external/amd/amd_aat.o +0 -0
  44. data/vendor/scs/linsys/external/amd/amd_control.c +64 -0
  45. data/vendor/scs/linsys/external/amd/amd_control.o +0 -0
  46. data/vendor/scs/linsys/external/amd/amd_defaults.c +37 -0
  47. data/vendor/scs/linsys/external/amd/amd_defaults.o +0 -0
  48. data/vendor/scs/linsys/external/amd/amd_dump.c +179 -0
  49. data/vendor/scs/linsys/external/amd/amd_dump.o +0 -0
  50. data/vendor/scs/linsys/external/amd/amd_global.c +16 -0
  51. data/vendor/scs/linsys/external/amd/amd_global.o +0 -0
  52. data/vendor/scs/linsys/external/amd/amd_info.c +119 -0
  53. data/vendor/scs/linsys/external/amd/amd_info.o +0 -0
  54. data/vendor/scs/linsys/external/amd/amd_internal.h +304 -0
  55. data/vendor/scs/linsys/external/amd/amd_order.c +199 -0
  56. data/vendor/scs/linsys/external/amd/amd_order.o +0 -0
  57. data/vendor/scs/linsys/external/amd/amd_post_tree.c +120 -0
  58. data/vendor/scs/linsys/external/amd/amd_post_tree.o +0 -0
  59. data/vendor/scs/linsys/external/amd/amd_postorder.c +206 -0
  60. data/vendor/scs/linsys/external/amd/amd_postorder.o +0 -0
  61. data/vendor/scs/linsys/external/amd/amd_preprocess.c +118 -0
  62. data/vendor/scs/linsys/external/amd/amd_preprocess.o +0 -0
  63. data/vendor/scs/linsys/external/amd/amd_valid.c +92 -0
  64. data/vendor/scs/linsys/external/amd/amd_valid.o +0 -0
  65. data/vendor/scs/linsys/external/amd/changes +11 -0
  66. data/vendor/scs/linsys/external/qdldl/LICENSE +201 -0
  67. data/vendor/scs/linsys/external/qdldl/README.md +120 -0
  68. data/vendor/scs/linsys/external/qdldl/changes +4 -0
  69. data/vendor/scs/linsys/external/qdldl/qdldl.c +298 -0
  70. data/vendor/scs/linsys/external/qdldl/qdldl.h +177 -0
  71. data/vendor/scs/linsys/external/qdldl/qdldl.o +0 -0
  72. data/vendor/scs/linsys/external/qdldl/qdldl_types.h +21 -0
  73. data/vendor/scs/linsys/gpu/gpu.c +41 -0
  74. data/vendor/scs/linsys/gpu/gpu.h +85 -0
  75. data/vendor/scs/linsys/gpu/indirect/private.c +304 -0
  76. data/vendor/scs/linsys/gpu/indirect/private.h +36 -0
  77. data/vendor/scs/scs.mk +181 -0
  78. data/vendor/scs/src/aa.c +224 -0
  79. data/vendor/scs/src/aa.o +0 -0
  80. data/vendor/scs/src/cones.c +802 -0
  81. data/vendor/scs/src/cones.o +0 -0
  82. data/vendor/scs/src/ctrlc.c +77 -0
  83. data/vendor/scs/src/ctrlc.o +0 -0
  84. data/vendor/scs/src/linalg.c +84 -0
  85. data/vendor/scs/src/linalg.o +0 -0
  86. data/vendor/scs/src/normalize.c +93 -0
  87. data/vendor/scs/src/normalize.o +0 -0
  88. data/vendor/scs/src/rw.c +167 -0
  89. data/vendor/scs/src/rw.o +0 -0
  90. data/vendor/scs/src/scs.c +975 -0
  91. data/vendor/scs/src/scs.o +0 -0
  92. data/vendor/scs/src/scs_version.c +5 -0
  93. data/vendor/scs/src/scs_version.o +0 -0
  94. data/vendor/scs/src/util.c +196 -0
  95. data/vendor/scs/src/util.o +0 -0
  96. data/vendor/scs/test/data/small_random_socp +0 -0
  97. data/vendor/scs/test/minunit.h +13 -0
  98. data/vendor/scs/test/problem_utils.h +93 -0
  99. data/vendor/scs/test/problems/rob_gauss_cov_est.h +85 -0
  100. data/vendor/scs/test/problems/small_lp.h +50 -0
  101. data/vendor/scs/test/problems/small_random_socp.h +33 -0
  102. data/vendor/scs/test/random_socp_prob.c +171 -0
  103. data/vendor/scs/test/run_from_file.c +69 -0
  104. data/vendor/scs/test/run_tests +2 -0
  105. data/vendor/scs/test/run_tests.c +32 -0
  106. metadata +203 -0
@@ -0,0 +1,934 @@
1
+ ==> AMD/Doc/License.txt <==
2
+
3
+ AMD, Copyright (c), 1996-2015, Timothy A. Davis,
4
+ Patrick R. Amestoy, and Iain S. Duff. All Rights Reserved.
5
+
6
+ Availability:
7
+
8
+ http://www.suitesparse.com
9
+
10
+ -------------------------------------------------------------------------------
11
+ AMD License: BSD 3-clause:
12
+ -------------------------------------------------------------------------------
13
+
14
+ Redistribution and use in source and binary forms, with or without
15
+ modification, are permitted provided that the following conditions are met:
16
+ * Redistributions of source code must retain the above copyright
17
+ notice, this list of conditions and the following disclaimer.
18
+ * Redistributions in binary form must reproduce the above copyright
19
+ notice, this list of conditions and the following disclaimer in the
20
+ documentation and/or other materials provided with the distribution.
21
+ * Neither the name of the organizations to which the authors are
22
+ affiliated, nor the names of its contributors may be used to endorse
23
+ or promote products derived from this software without specific prior
24
+ written permission.
25
+
26
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
30
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
31
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
32
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
36
+ DAMAGE.
37
+
38
+ ==> BTF/Doc/License.txt <==
39
+ BTF, Copyright (C) 2004-2013, University of Florida
40
+ by Timothy A. Davis and Ekanathan Palamadai.
41
+ BTF is also available under other licenses; contact authors for details.
42
+ http://www.suitesparse.com
43
+
44
+ --------------------------------------------------------------------------------
45
+
46
+ BTF is free software; you can redistribute it and/or
47
+ modify it under the terms of the GNU Lesser General Public
48
+ License as published by the Free Software Foundation; either
49
+ version 2.1 of the License, or (at your option) any later version.
50
+
51
+ BTF is distributed in the hope that it will be useful,
52
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
53
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
54
+ Lesser General Public License for more details.
55
+
56
+ You should have received a copy of the GNU Lesser General Public
57
+ License along with this Module; if not, write to the Free Software
58
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
59
+
60
+ ==> CAMD/Doc/License.txt <==
61
+
62
+ CAMD, Copyright (c) by Timothy A. Davis,
63
+ Yanqing Chen,
64
+ Patrick R. Amestoy, and Iain S. Duff. All Rights Reserved.
65
+ CAMD is available under alternate licenses, contact T. Davis for details.
66
+
67
+ CAMD License: BSD 3-clause
68
+
69
+ Redistribution and use in source and binary forms, with or without
70
+ modification, are permitted provided that the following conditions are met:
71
+ * Redistributions of source code must retain the above copyright
72
+ notice, this list of conditions and the following disclaimer.
73
+ * Redistributions in binary form must reproduce the above copyright
74
+ notice, this list of conditions and the following disclaimer in the
75
+ documentation and/or other materials provided with the distribution.
76
+ * Neither the name of the organizations to which the authors are
77
+ affiliated, nor the names of its contributors may be used to endorse
78
+ or promote products derived from this software without specific prior
79
+ written permission.
80
+
81
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
82
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
83
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
84
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
85
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
86
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
87
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
88
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
89
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
90
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
91
+ DAMAGE.
92
+
93
+ Availability:
94
+
95
+ http://www.suitesparse.com
96
+
97
+ ==> CCOLAMD/Doc/License.txt <==
98
+
99
+ CCOLAMD: constrained column approximate minimum degree ordering
100
+ Copyright (C) 2005-2016, Univ. of Florida. Authors: Timothy A. Davis,
101
+ Sivasankaran Rajamanickam, and Stefan Larimore. Closely based on COLAMD by
102
+ Davis, Stefan Larimore, in collaboration with Esmond Ng, and John Gilbert.
103
+ http://www.suitesparse.com
104
+
105
+ --------------------------------------------------------------------------------
106
+
107
+ CCOLAMD license: BSD 3-clause:
108
+
109
+ Redistribution and use in source and binary forms, with or without
110
+ modification, are permitted provided that the following conditions are met:
111
+ * Redistributions of source code must retain the above copyright
112
+ notice, this list of conditions and the following disclaimer.
113
+ * Redistributions in binary form must reproduce the above copyright
114
+ notice, this list of conditions and the following disclaimer in the
115
+ documentation and/or other materials provided with the distribution.
116
+ * Neither the name of the organizations to which the authors are
117
+ affiliated, nor the names of its contributors may be used to endorse
118
+ or promote products derived from this software without specific prior
119
+ written permission.
120
+
121
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
122
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
123
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
124
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
125
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
126
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
127
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
128
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
129
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
130
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
131
+ DAMAGE.
132
+
133
+ --------------------------------------------------------------------------------
134
+
135
+ ==> CHOLMOD/Doc/License.txt <==
136
+ --------------------------------------------------------------------------------
137
+ ==> Check/License.txt <==
138
+ --------------------------------------------------------------------------------
139
+
140
+ CHOLMOD/Check Module. Copyright (C) 2005-2006, Timothy A. Davis CHOLMOD is
141
+ also available under other licenses; contact authors for details.
142
+ http://www.suitesparse.com
143
+
144
+ Note that this license is for the CHOLMOD/Check module only.
145
+ All CHOLMOD modules are licensed separately.
146
+
147
+ ----------------------------------------------------------------------------
148
+
149
+ This Module is free software; you can redistribute it and/or
150
+ modify it under the terms of the GNU Lesser General Public
151
+ License as published by the Free Software Foundation; either
152
+ version 2.1 of the License, or (at your option) any later version.
153
+
154
+ This Module is distributed in the hope that it will be useful,
155
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
156
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
157
+ Lesser General Public License for more details.
158
+
159
+ You should have received a copy of the GNU Lesser General Public
160
+ License along with this Module; if not, write to the Free Software
161
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
162
+
163
+ --------------------------------------------------------------------------------
164
+ ==> Cholesky/License.txt <==
165
+ --------------------------------------------------------------------------------
166
+
167
+ CHOLMOD/Cholesky module, Copyright (C) 2005-2006, Timothy A. Davis.
168
+ CHOLMOD is also available under other licenses; contact authors for
169
+ details. http://www.suitesparse.com
170
+
171
+ Note that this license is for the CHOLMOD/Cholesky module only.
172
+ All CHOLMOD modules are licensed separately.
173
+
174
+ ----------------------------------------------------------------------------
175
+
176
+
177
+ This Module is free software; you can redistribute it and/or
178
+ modify it under the terms of the GNU Lesser General Public
179
+ License as published by the Free Software Foundation; either
180
+ version 2.1 of the License, or (at your option) any later version.
181
+
182
+ This Module is distributed in the hope that it will be useful,
183
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
184
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
185
+ Lesser General Public License for more details.
186
+
187
+ You should have received a copy of the GNU Lesser General Public
188
+ License along with this Module; if not, write to the Free Software
189
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
190
+
191
+ --------------------------------------------------------------------------------
192
+ ==> Core/License.txt <==
193
+ --------------------------------------------------------------------------------
194
+
195
+ CHOLMOD/Core Module. Copyright (C) 2005-2006, Univ. of Florida. Author:
196
+ Timothy A. Davis. CHOLMOD is also available under other licenses; contact
197
+ authors for details. http://www.suitesparse.com
198
+
199
+ Note that this license is for the CHOLMOD/Core module only.
200
+ All CHOLMOD modules are licensed separately.
201
+
202
+
203
+ ----------------------------------------------------------------------------
204
+
205
+
206
+ This Module is free software; you can redistribute it and/or
207
+ modify it under the terms of the GNU Lesser General Public
208
+ License as published by the Free Software Foundation; either
209
+ version 2.1 of the License, or (at your option) any later version.
210
+
211
+ This Module is distributed in the hope that it will be useful,
212
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
213
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
214
+ Lesser General Public License for more details.
215
+
216
+ You should have received a copy of the GNU Lesser General Public
217
+ License along with this Module; if not, write to the Free Software
218
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
219
+
220
+ --------------------------------------------------------------------------------
221
+ ==> Demo/License.txt <==
222
+ --------------------------------------------------------------------------------
223
+
224
+ CHOLMOD/Demo Module. Copyright (C) 2005-2006, Timothy A. Davis. CHOLMOD
225
+ is also available under other licenses; contact authors for details.
226
+ http://www.suitesparse.com
227
+
228
+ Note that this license is for the CHOLMOD/Demo module only.
229
+ All CHOLMOD modules are licensed separately.
230
+
231
+
232
+ ----------------------------------------------------------------------------
233
+
234
+
235
+ This Module is free software; you can redistribute it and/or
236
+ modify it under the terms of the GNU General Public License
237
+ as published by the Free Software Foundation; either version 2
238
+ of the License, or (at your option) any later version.
239
+
240
+ This Module is distributed in the hope that it will be useful,
241
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
242
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
243
+ GNU General Public License for more details.
244
+
245
+ You should have received a copy of the GNU General Public License
246
+ along with this Module; if not, write to the Free Software
247
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
248
+
249
+ --------------------------------------------------------------------------------
250
+ ==> Include/License.txt <==
251
+ --------------------------------------------------------------------------------
252
+
253
+ CHOLMOD/Include/* files. Copyright (C) 2005-2006, either Univ. of Florida
254
+ or T. Davis, depending on the file.
255
+
256
+ Each file is licensed separately, according to the Module for which it
257
+ contains definitions and prototypes:
258
+
259
+ Include/cholmod.h LGPL
260
+ Include/cholmod_blas.h LGPL
261
+ Include/cholmod_camd.h part of Partition module
262
+ Include/cholmod_check.h part of Check module
263
+ Include/cholmod_cholesky.h part of Cholesky module
264
+ Include/cholmod_complexity.h LGPL
265
+ Include/cholmod_config.h LGPL
266
+ Include/cholmod_core.h part of Core module
267
+ Include/cholmod_function.h no license; freely usable, no restrictions
268
+ Include/cholmod_gpu.h part of GPU module
269
+ Include/cholmod_gpu_kernels.h part of GPU module
270
+ Include/cholmod_internal.h LGPL
271
+ Include/cholmod_io64.h LGPL
272
+ Include/cholmod_matrixops.h part of MatrixOps module
273
+ Include/cholmod_modify.h part of Modify module
274
+ Include/cholmod_partition.h part of Partition module
275
+ Include/cholmod_supernodal.h part of Supernodal module
276
+ Include/cholmod_template.h LGPL
277
+
278
+ --------------------------------------------------------------------------------
279
+ ==> MATLAB/License.txt <==
280
+ --------------------------------------------------------------------------------
281
+
282
+ CHOLMOD/MATLAB Module. Copyright (C) 2005-2006, Timothy A. Davis. CHOLMOD
283
+ is also available under other licenses; contact authors for details.
284
+ MATLAB(tm) is a Registered Trademark of The MathWorks, Inc.
285
+ http://www.suitesparse.com
286
+
287
+ Note that this license is for the CHOLMOD/MATLAB module only.
288
+ All CHOLMOD modules are licensed separately.
289
+
290
+ ----------------------------------------------------------------------------
291
+
292
+
293
+ This Module is free software; you can redistribute it and/or
294
+ modify it under the terms of the GNU General Public License
295
+ as published by the Free Software Foundation; either version 2
296
+ of the License, or (at your option) any later version.
297
+
298
+ This Module is distributed in the hope that it will be useful,
299
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
300
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
301
+ GNU General Public License for more details.
302
+
303
+ You should have received a copy of the GNU General Public License
304
+ along with this Module; if not, write to the Free Software
305
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
306
+
307
+ --------------------------------------------------------------------------------
308
+ ==> MatrixOps/License.txt <==
309
+ --------------------------------------------------------------------------------
310
+
311
+ CHOLMOD/MatrixOps Module. Copyright (C) 2005-2006, Timothy A. Davis.
312
+ CHOLMOD is also available under other licenses; contact authors for
313
+ details. http://www.suitesparse.com
314
+
315
+ Note that this license is for the CHOLMOD/MatrixOps module only.
316
+ All CHOLMOD modules are licensed separately.
317
+
318
+
319
+ ----------------------------------------------------------------------------
320
+
321
+
322
+ This Module is free software; you can redistribute it and/or
323
+ modify it under the terms of the GNU General Public License
324
+ as published by the Free Software Foundation; either version 2
325
+ of the License, or (at your option) any later version.
326
+
327
+ This Module is distributed in the hope that it will be useful,
328
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
329
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
330
+ GNU General Public License for more details.
331
+
332
+ You should have received a copy of the GNU General Public License
333
+ along with this Module; if not, write to the Free Software
334
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
335
+
336
+ --------------------------------------------------------------------------------
337
+ ==> Modify/License.txt <==
338
+ --------------------------------------------------------------------------------
339
+
340
+ CHOLMOD/Modify Module. Copyright (C) 2005-2006, Timothy A. Davis and
341
+ William W. Hager. CHOLMOD is also available under other licenses; contact
342
+ authors for details. http://www.suitesparse.com
343
+
344
+ Note that this license is for the CHOLMOD/Modify module only.
345
+ All CHOLMOD modules are licensed separately.
346
+
347
+
348
+ ----------------------------------------------------------------------------
349
+
350
+
351
+ This Module is free software; you can redistribute it and/or
352
+ modify it under the terms of the GNU General Public License
353
+ as published by the Free Software Foundation; either version 2
354
+ of the License, or (at your option) any later version.
355
+
356
+ This Module is distributed in the hope that it will be useful,
357
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
358
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
359
+ GNU General Public License for more details.
360
+
361
+ You should have received a copy of the GNU General Public License
362
+ along with this Module; if not, write to the Free Software
363
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
364
+
365
+ --------------------------------------------------------------------------------
366
+ ==> Partition/License.txt <==
367
+ --------------------------------------------------------------------------------
368
+
369
+ CHOLMOD/Partition Module.
370
+ Copyright (C) 2005-2006, Univ. of Florida. Author: Timothy A. Davis
371
+ CHOLMOD is also available under other licenses; contact authors for details.
372
+ http://www.suitesparse.com
373
+
374
+ Note that this license is for the CHOLMOD/Partition module only.
375
+ All CHOLMOD modules are licensed separately.
376
+
377
+
378
+ ----------------------------------------------------------------------------
379
+
380
+
381
+ This Module is free software; you can redistribute it and/or
382
+ modify it under the terms of the GNU Lesser General Public
383
+ License as published by the Free Software Foundation; either
384
+ version 2.1 of the License, or (at your option) any later version.
385
+
386
+ This Module is distributed in the hope that it will be useful,
387
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
388
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
389
+ Lesser General Public License for more details.
390
+
391
+ You should have received a copy of the GNU Lesser General Public
392
+ License along with this Module; if not, write to the Free Software
393
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
394
+
395
+ --------------------------------------------------------------------------------
396
+ ==> Supernodal/License.txt <==
397
+ --------------------------------------------------------------------------------
398
+
399
+ CHOLMOD/Supernodal Module.
400
+ Copyright (C) 2005-2006, Timothy A. Davis
401
+ CHOLMOD is also available under other licenses; contact authors for details.
402
+ http://www.suitesparse.com
403
+
404
+ Note that this license is for the CHOLMOD/Supernodal module only.
405
+ All CHOLMOD modules are licensed separately.
406
+
407
+
408
+ ----------------------------------------------------------------------------
409
+
410
+
411
+ This Module is free software; you can redistribute it and/or
412
+ modify it under the terms of the GNU General Public License
413
+ as published by the Free Software Foundation; either version 2
414
+ of the License, or (at your option) any later version.
415
+
416
+ This Module is distributed in the hope that it will be useful,
417
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
418
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
419
+ GNU General Public License for more details.
420
+
421
+ You should have received a copy of the GNU General Public License
422
+ along with this Module; if not, write to the Free Software
423
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
424
+
425
+ --------------------------------------------------------------------------------
426
+ ==> Tcov/License.txt <==
427
+ --------------------------------------------------------------------------------
428
+
429
+ CHOLMOD/Tcov Module. Copyright (C) 2005-2006, Timothy A. Davis
430
+ CHOLMOD is also available under other licenses; contact authors for details.
431
+ http://www.suitesparse.com
432
+
433
+ Note that this license is for the CHOLMOD/Tcov module only.
434
+ All CHOLMOD modules are licensed separately.
435
+
436
+
437
+ ----------------------------------------------------------------------------
438
+
439
+
440
+ This Module is free software; you can redistribute it and/or
441
+ modify it under the terms of the GNU General Public License
442
+ as published by the Free Software Foundation; either version 2
443
+ of the License, or (at your option) any later version.
444
+
445
+ This Module is distributed in the hope that it will be useful,
446
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
447
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
448
+ GNU General Public License for more details.
449
+
450
+ You should have received a copy of the GNU General Public License
451
+ along with this Module; if not, write to the Free Software
452
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
453
+
454
+ --------------------------------------------------------------------------------
455
+ ==> Valgrind/License.txt <==
456
+ --------------------------------------------------------------------------------
457
+
458
+ CHOLMOD/Valgrind Module. Copyright (C) 2005-2006, Timothy A. Davis.
459
+ CHOLMOD is also available under other licenses; contact authors for details.
460
+ http://www.suitesparse.com
461
+
462
+ Note that this license is for the CHOLMOD/Valgrind module only.
463
+ All CHOLMOD modules are licensed separately.
464
+
465
+
466
+ ----------------------------------------------------------------------------
467
+
468
+
469
+ This Module is free software; you can redistribute it and/or
470
+ modify it under the terms of the GNU General Public License
471
+ as published by the Free Software Foundation; either version 2
472
+ of the License, or (at your option) any later version.
473
+
474
+ This Module is distributed in the hope that it will be useful,
475
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
476
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
477
+ GNU General Public License for more details.
478
+
479
+ You should have received a copy of the GNU General Public License
480
+ along with this Module; if not, write to the Free Software
481
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
482
+
483
+ ==> COLAMD/Doc/License.txt <==
484
+ COLAMD, Copyright 1998-2016, Timothy A. Davis. http://www.suitesparse.com
485
+ http://www.suitesparse.com
486
+
487
+ COLAMD License: BSD 3-clause
488
+
489
+ Redistribution and use in source and binary forms, with or without
490
+ modification, are permitted provided that the following conditions are met:
491
+ * Redistributions of source code must retain the above copyright
492
+ notice, this list of conditions and the following disclaimer.
493
+ * Redistributions in binary form must reproduce the above copyright
494
+ notice, this list of conditions and the following disclaimer in the
495
+ documentation and/or other materials provided with the distribution.
496
+ * Neither the name of the organizations to which the authors are
497
+ affiliated, nor the names of its contributors may be used to endorse
498
+ or promote products derived from this software without specific prior
499
+ written permission.
500
+
501
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
502
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
503
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
504
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
505
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
506
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
507
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
508
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
509
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
510
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
511
+ DAMAGE.
512
+
513
+ ==> CSparse/Doc/License.txt <==
514
+ CSparse: a Concise Sparse matrix package.
515
+ Copyright (c) 2006, Timothy A. Davis.
516
+ http://www.suitesparse.com
517
+
518
+ --------------------------------------------------------------------------------
519
+
520
+ CSparse is free software; you can redistribute it and/or
521
+ modify it under the terms of the GNU Lesser General Public
522
+ License as published by the Free Software Foundation; either
523
+ version 2.1 of the License, or (at your option) any later version.
524
+
525
+ CSparse is distributed in the hope that it will be useful,
526
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
527
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
528
+ Lesser General Public License for more details.
529
+
530
+ You should have received a copy of the GNU Lesser General Public
531
+ License along with this Module; if not, write to the Free Software
532
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
533
+
534
+ ==> CXSparse/Doc/License.txt <==
535
+ CXSparse: a Concise Sparse matrix package - Extended.
536
+ Copyright (c) 2006, Timothy A. Davis.
537
+ http://www.suitesparse.com
538
+
539
+ --------------------------------------------------------------------------------
540
+
541
+ CXSparse is free software; you can redistribute it and/or
542
+ modify it under the terms of the GNU Lesser General Public
543
+ License as published by the Free Software Foundation; either
544
+ version 2.1 of the License, or (at your option) any later version.
545
+
546
+ CXSparse is distributed in the hope that it will be useful,
547
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
548
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
549
+ Lesser General Public License for more details.
550
+
551
+ You should have received a copy of the GNU Lesser General Public
552
+ License along with this Module; if not, write to the Free Software
553
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
554
+
555
+ ==> CXSparse_newfiles/Doc/License.txt <==
556
+ CXSparse: a Concise Sparse matrix package - Extended.
557
+ Copyright (c) 2006, Timothy A. Davis.
558
+ http://www.suitesparse.com
559
+
560
+ --------------------------------------------------------------------------------
561
+
562
+ CXSparse is free software; you can redistribute it and/or
563
+ modify it under the terms of the GNU Lesser General Public
564
+ License as published by the Free Software Foundation; either
565
+ version 2.1 of the License, or (at your option) any later version.
566
+
567
+ CXSparse is distributed in the hope that it will be useful,
568
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
569
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
570
+ Lesser General Public License for more details.
571
+
572
+ You should have received a copy of the GNU Lesser General Public
573
+ License along with this Module; if not, write to the Free Software
574
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
575
+
576
+ ==> GPUQREngine/Doc/License.txt <==
577
+ GPUQREngine Copyright (c) 2013, Timothy A. Davis, Sencer Nuri Yeralan,
578
+ and Sanjay Ranka.
579
+ http://www.suitesparse.com
580
+
581
+ GPUQREngine is free software; you can redistribute it and/or modify it under
582
+ the terms of the GNU General Public License as published by the Free Software
583
+ Foundation; either version 2 of the License, or (at your option) any later
584
+ version.
585
+
586
+ GPUQREngine is distributed in the hope that it will be useful, but WITHOUT
587
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
588
+ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
589
+
590
+ You should have received a copy of the GNU General Public License along with
591
+ this Module; if not, write to the Free Software Foundation, Inc., 51 Franklin
592
+ Street, Fifth Floor, Boston, MA 02110-1301, USA.
593
+
594
+
595
+ ==> KLU/Doc/License.txt <==
596
+ KLU, Copyright (C) 2004-2013, University of Florida
597
+ by Timothy A. Davis and Ekanathan Palamadai.
598
+ KLU is also available under other licenses; contact authors for details.
599
+ http://www.suitesparse.com
600
+
601
+ --------------------------------------------------------------------------------
602
+
603
+ KLU is free software; you can redistribute it and/or
604
+ modify it under the terms of the GNU Lesser General Public
605
+ License as published by the Free Software Foundation; either
606
+ version 2.1 of the License, or (at your option) any later version.
607
+
608
+ KLU is distributed in the hope that it will be useful,
609
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
610
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
611
+ Lesser General Public License for more details.
612
+
613
+ You should have received a copy of the GNU Lesser General Public
614
+ License along with this Module; if not, write to the Free Software
615
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
616
+
617
+ ==> LDL/Doc/License.txt <==
618
+ LDL Copyright (c) 2005-2013 by Timothy A. Davis.
619
+ LDL is also available under other licenses; contact the author for details.
620
+ http://www.suitesparse.com
621
+
622
+ --------------------------------------------------------------------------------
623
+
624
+ LDL is free software; you can redistribute it and/or
625
+ modify it under the terms of the GNU Lesser General Public
626
+ License as published by the Free Software Foundation; either
627
+ version 2.1 of the License, or (at your option) any later version.
628
+
629
+ LDL is distributed in the hope that it will be useful,
630
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
631
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
632
+ Lesser General Public License for more details.
633
+
634
+ You should have received a copy of the GNU Lesser General Public
635
+ License along with this Module; if not, write to the Free Software
636
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
637
+
638
+ ==> MATLAB_Tools/Doc/License.txt <==
639
+ The MATLAB_Tools collection of packages is
640
+ Copyright (c), Timothy A. Davis, All Rights Reserved,
641
+ with the exception of the spqr_rank package, which is
642
+ Copyright (c), Timothy A. Davis and Les Foster, All Rights Reserved,
643
+
644
+ All packages are available under alternative licenses.
645
+ Contact the authors for details.
646
+
647
+ --------------------------------------------------------------------------------
648
+ MATLAB_Tools License, with the exception of SSMULT and UFcollection:
649
+ --------------------------------------------------------------------------------
650
+
651
+ Redistribution and use in source and binary forms, with or without
652
+ modification, are permitted provided that the following conditions are met:
653
+ * Redistributions of source code must retain the above copyright
654
+ notice, this list of conditions and the following disclaimer.
655
+ * Redistributions in binary form must reproduce the above copyright
656
+ notice, this list of conditions and the following disclaimer in the
657
+ documentation and/or other materials provided with the distribution.
658
+ * Neither the name of the organizations to which the authors are
659
+ affiliated, nor the names of its contributors may be used to endorse
660
+ or promote products derived from this software without specific prior
661
+ written permission.
662
+
663
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
664
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
665
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
666
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
667
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
668
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
669
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
670
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
671
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
672
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
673
+ DAMAGE.
674
+
675
+ --------------------------------------------------------------------------------
676
+ UFcollection License:
677
+ --------------------------------------------------------------------------------
678
+
679
+ UFcollection is free software; you can redistribute it and/or
680
+ modify it under the terms of the GNU General Public License
681
+ as published by the Free Software Foundation; either version 2
682
+ of the License, or (at your option) any later version.
683
+
684
+ UFcollection is distributed in the hope that it will be useful,
685
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
686
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
687
+ GNU General Public License for more details.
688
+
689
+ You should have received a copy of the GNU General Public License
690
+ along with this package; if not, write to the Free Software Foundation,
691
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
692
+
693
+ --------------------------------------------------------------------------------
694
+ SSMULT License:
695
+ --------------------------------------------------------------------------------
696
+
697
+ SSMULT, Copyright (c) 2007-2011, Timothy A. Davis,
698
+ http://www.suitesparse.com.
699
+
700
+ SSMULT is free software; you can redistribute it and/or modify it under the
701
+ terms of the GNU General Public License as published by the Free Software
702
+ Foundation; either version 2 of the License, or (at your option) any later
703
+ version.
704
+
705
+ SSMULT is distributed in the hope that it will be useful, but WITHOUT ANY
706
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
707
+ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
708
+ details.
709
+
710
+ You should have received a copy of the GNU General Public License along
711
+ with this package; if not, write to the Free Software Foundation, Inc., 51
712
+ Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
713
+
714
+
715
+ ==> RBio/Doc/License.txt <==
716
+ RBio toolbox. Copyright (C) 2006-2009, Timothy A. Davis
717
+ RBio is also available under other licenses; contact authors for details.
718
+ http://www.suitesparse.com
719
+
720
+ --------------------------------------------------------------------------------
721
+
722
+ RBio is free software; you can redistribute it and/or
723
+ modify it under the terms of the GNU General Public License
724
+ as published by the Free Software Foundation; either version 2
725
+ of the License, or (at your option) any later version.
726
+
727
+ RBio is distributed in the hope that it will be useful,
728
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
729
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
730
+ GNU General Public License for more details.
731
+
732
+ You should have received a copy of the GNU General Public License
733
+ along with this Module; if not, write to the Free Software
734
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
735
+
736
+
737
+ ==> SPQR/Doc/License.txt <==
738
+ SPQR, Copyright 2008-2016 by Timothy A. Davis.
739
+ All Rights Reserved.
740
+ SPQR is available under alternate licenses, contact T. Davis for details.
741
+
742
+ SPQR License:
743
+
744
+ Your use or distribution of SPQR or any modified version of
745
+ SPQR implies that you agree to this License.
746
+
747
+ This library is free software; you can redistribute it and/or
748
+ modify it under the terms of the GNU General Public
749
+ License as published by the Free Software Foundation; either
750
+ version 2 of the License, or (at your option) any later version.
751
+
752
+ This library is distributed in the hope that it will be useful,
753
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
754
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
755
+ General Public License for more details.
756
+
757
+ You should have received a copy of the GNU General Public
758
+ License along with this library; if not, write to the Free Software
759
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
760
+ USA
761
+
762
+ Permission is hereby granted to use or copy this program under the
763
+ terms of the GNU GPL, provided that the Copyright, this License,
764
+ and the Availability of the original version is retained on all copies.
765
+ User documentation of any code that uses this code or any modified
766
+ version of this code must cite the Copyright, this License, the
767
+ Availability note, and "Used by permission." Permission to modify
768
+ the code and to distribute modified code is granted, provided the
769
+ Copyright, this License, and the Availability note are retained,
770
+ and a notice that the code was modified is included.
771
+
772
+ Availability:
773
+
774
+ http://www.suitesparse.com
775
+
776
+
777
+ ==> SuiteSparse_GPURuntime/Doc/License.txt <==
778
+ SuiteSparse_GPURuntime Copyright (c) 2013-2016, Timothy A. Davis,
779
+ Sencer Nuri Yeralan, and Sanjay Ranka. http://www.suitesparse.com
780
+
781
+ --------------------------------------------------------------------------------
782
+
783
+ SuiteSparse_GPURuntime is free software; you can redistribute it and/or modify
784
+ it under the terms of the GNU General Public License as published by the Free
785
+ Software Foundation; either version 2 of the License, or (at your option) any
786
+ later version.
787
+
788
+ SuiteSparse_GPURuntime is distributed in the hope that it will be useful, but
789
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
790
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
791
+ details.
792
+
793
+ You should have received a copy of the GNU General Public License along with
794
+ this Module; if not, write to the Free Software Foundation, Inc., 51 Franklin
795
+ Street, Fifth Floor, Boston, MA 02110-1301, USA.
796
+
797
+ ==> ssget/Doc/License.txt <==
798
+ Copyright (c), 2009-2016, Timothy A. Davis, All Rights Reserved.
799
+
800
+ Redistribution and use in source and binary forms, with or without
801
+ modification, are permitted provided that the following conditions are met:
802
+ * Redistributions of source code must retain the above copyright
803
+ notice, this list of conditions and the following disclaimer.
804
+ * Redistributions in binary form must reproduce the above copyright
805
+ notice, this list of conditions and the following disclaimer in the
806
+ documentation and/or other materials provided with the distribution.
807
+ * Neither the name of the organizations to which the authors are
808
+ affiliated, nor the names of its contributors may be used to endorse
809
+ or promote products derived from this software without specific prior
810
+ written permission.
811
+
812
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
813
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
814
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
815
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
816
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
817
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
818
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
819
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
820
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
821
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
822
+ DAMAGE.
823
+
824
+
825
+ ==> UMFPACK/Doc/License.txt <==
826
+ UMFPACK, Copyright 1995-2009 by Timothy A. Davis.
827
+ All Rights Reserved.
828
+ UMFPACK is available under alternate licenses, contact T. Davis for details.
829
+
830
+ UMFPACK License:
831
+
832
+ Your use or distribution of UMFPACK or any modified version of
833
+ UMFPACK implies that you agree to this License.
834
+
835
+ This library is free software; you can redistribute it and/or
836
+ modify it under the terms of the GNU General Public
837
+ License as published by the Free Software Foundation; either
838
+ version 2 of the License, or (at your option) any later version.
839
+
840
+ This library is distributed in the hope that it will be useful,
841
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
842
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
843
+ General Public License for more details.
844
+
845
+ You should have received a copy of the GNU General Public
846
+ License along with this library; if not, write to the Free Software
847
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
848
+ USA
849
+
850
+ Permission is hereby granted to use or copy this program under the
851
+ terms of the GNU GPL, provided that the Copyright, this License,
852
+ and the Availability of the original version is retained on all copies.
853
+ User documentation of any code that uses this code or any modified
854
+ version of this code must cite the Copyright, this License, the
855
+ Availability note, and "Used by permission." Permission to modify
856
+ the code and to distribute modified code is granted, provided the
857
+ Copyright, this License, and the Availability note are retained,
858
+ and a notice that the code was modified is included.
859
+
860
+ Availability:
861
+
862
+ http://www.suitesparse.com
863
+
864
+
865
+ ==> CSparse/MATLAB/ssget/Doc/License.txt <==
866
+ Copyright (c), 2009-2016, Timothy A. Davis, All Rights Reserved.
867
+
868
+ Redistribution and use in source and binary forms, with or without
869
+ modification, are permitted provided that the following conditions are met:
870
+ * Redistributions of source code must retain the above copyright
871
+ notice, this list of conditions and the following disclaimer.
872
+ * Redistributions in binary form must reproduce the above copyright
873
+ notice, this list of conditions and the following disclaimer in the
874
+ documentation and/or other materials provided with the distribution.
875
+ * Neither the name of the organizations to which the authors are
876
+ affiliated, nor the names of its contributors may be used to endorse
877
+ or promote products derived from this software without specific prior
878
+ written permission.
879
+
880
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
881
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
882
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
883
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
884
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
885
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
886
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
887
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
888
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
889
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
890
+ DAMAGE.
891
+
892
+
893
+ ==> CXSparse/MATLAB/ssget/Doc/License.txt <==
894
+ Copyright (c), 2009-2016, Timothy A. Davis, All Rights Reserved.
895
+
896
+ Redistribution and use in source and binary forms, with or without
897
+ modification, are permitted provided that the following conditions are met:
898
+ * Redistributions of source code must retain the above copyright
899
+ notice, this list of conditions and the following disclaimer.
900
+ * Redistributions in binary form must reproduce the above copyright
901
+ notice, this list of conditions and the following disclaimer in the
902
+ documentation and/or other materials provided with the distribution.
903
+ * Neither the name of the organizations to which the authors are
904
+ affiliated, nor the names of its contributors may be used to endorse
905
+ or promote products derived from this software without specific prior
906
+ written permission.
907
+
908
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
909
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
910
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
911
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
912
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
913
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
914
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
915
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
916
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
917
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
918
+ DAMAGE.
919
+
920
+ ==> GraphBLAS/Doc/License.txt <==
921
+ SuiteSparse:GraphBLAS, Copyright 2017, Timothy A. Davis
922
+
923
+ Licensed under the Apache License, Version 2.0 (the "License");
924
+ you may not use SuiteSparse:GraphBLAS except in compliance with the
925
+ License. You may obtain a copy of the License at
926
+
927
+ http://www.apache.org/licenses/LICENSE-2.0
928
+
929
+ Unless required by applicable law or agreed to in writing, software
930
+ distributed under the License is distributed on an "AS IS" BASIS,
931
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
932
+ See the License for the specific language governing permissions and
933
+ limitations under the License.
934
+