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,206 @@
1
+ /* ========================================================================= */
2
+ /* === AMD_postorder ======================================================= */
3
+ /* ========================================================================= */
4
+
5
+ /* ------------------------------------------------------------------------- */
6
+ /* AMD, Copyright (c) Timothy A. Davis, */
7
+ /* Patrick R. Amestoy, and Iain S. Duff. See ../README.txt for License. */
8
+ /* email: DrTimothyAldenDavis@gmail.com */
9
+ /* ------------------------------------------------------------------------- */
10
+
11
+ /* Perform a postordering (via depth-first search) of an assembly tree. */
12
+
13
+ #include "amd_internal.h"
14
+
15
+ GLOBAL void AMD_postorder
16
+ (
17
+ /* inputs, not modified on output: */
18
+ Int nn, /* nodes are in the range 0..nn-1 */
19
+ Int Parent [ ], /* Parent [j] is the parent of j, or EMPTY if root */
20
+ Int Nv [ ], /* Nv [j] > 0 number of pivots represented by node j,
21
+ * or zero if j is not a node. */
22
+ Int Fsize [ ], /* Fsize [j]: size of node j */
23
+
24
+ /* output, not defined on input: */
25
+ Int Order [ ], /* output post-order */
26
+
27
+ /* workspaces of size nn: */
28
+ Int Child [ ],
29
+ Int Sibling [ ],
30
+ Int Stack [ ]
31
+ )
32
+ {
33
+ Int i, j, k, parent, frsize, f, fprev, maxfrsize, bigfprev, bigf, fnext ;
34
+
35
+ for (j = 0 ; j < nn ; j++)
36
+ {
37
+ Child [j] = EMPTY ;
38
+ Sibling [j] = EMPTY ;
39
+ }
40
+
41
+ /* --------------------------------------------------------------------- */
42
+ /* place the children in link lists - bigger elements tend to be last */
43
+ /* --------------------------------------------------------------------- */
44
+
45
+ for (j = nn-1 ; j >= 0 ; j--)
46
+ {
47
+ if (Nv [j] > 0)
48
+ {
49
+ /* this is an element */
50
+ parent = Parent [j] ;
51
+ if (parent != EMPTY)
52
+ {
53
+ /* place the element in link list of the children its parent */
54
+ /* bigger elements will tend to be at the end of the list */
55
+ Sibling [j] = Child [parent] ;
56
+ Child [parent] = j ;
57
+ }
58
+ }
59
+ }
60
+
61
+ #ifndef NDEBUG
62
+ {
63
+ Int nels, ff, nchild ;
64
+ AMD_DEBUG1 (("\n\n================================ AMD_postorder:\n"));
65
+ nels = 0 ;
66
+ for (j = 0 ; j < nn ; j++)
67
+ {
68
+ if (Nv [j] > 0)
69
+ {
70
+ AMD_DEBUG1 (( ""ID" : nels "ID" npiv "ID" size "ID
71
+ " parent "ID" maxfr "ID"\n", j, nels,
72
+ Nv [j], Fsize [j], Parent [j], Fsize [j])) ;
73
+ /* this is an element */
74
+ /* dump the link list of children */
75
+ nchild = 0 ;
76
+ AMD_DEBUG1 ((" Children: ")) ;
77
+ for (ff = Child [j] ; ff != EMPTY ; ff = Sibling [ff])
78
+ {
79
+ AMD_DEBUG1 ((ID" ", ff)) ;
80
+ ASSERT (Parent [ff] == j) ;
81
+ nchild++ ;
82
+ ASSERT (nchild < nn) ;
83
+ }
84
+ AMD_DEBUG1 (("\n")) ;
85
+ parent = Parent [j] ;
86
+ if (parent != EMPTY)
87
+ {
88
+ ASSERT (Nv [parent] > 0) ;
89
+ }
90
+ nels++ ;
91
+ }
92
+ }
93
+ }
94
+ AMD_DEBUG1 (("\n\nGo through the children of each node, and put\n"
95
+ "the biggest child last in each list:\n")) ;
96
+ #endif
97
+
98
+ /* --------------------------------------------------------------------- */
99
+ /* place the largest child last in the list of children for each node */
100
+ /* --------------------------------------------------------------------- */
101
+
102
+ for (i = 0 ; i < nn ; i++)
103
+ {
104
+ if (Nv [i] > 0 && Child [i] != EMPTY)
105
+ {
106
+
107
+ #ifndef NDEBUG
108
+ Int nchild ;
109
+ AMD_DEBUG1 (("Before partial sort, element "ID"\n", i)) ;
110
+ nchild = 0 ;
111
+ for (f = Child [i] ; f != EMPTY ; f = Sibling [f])
112
+ {
113
+ ASSERT (f >= 0 && f < nn) ;
114
+ AMD_DEBUG1 ((" f: "ID" size: "ID"\n", f, Fsize [f])) ;
115
+ nchild++ ;
116
+ ASSERT (nchild <= nn) ;
117
+ }
118
+ #endif
119
+
120
+ /* find the biggest element in the child list */
121
+ fprev = EMPTY ;
122
+ maxfrsize = EMPTY ;
123
+ bigfprev = EMPTY ;
124
+ bigf = EMPTY ;
125
+ for (f = Child [i] ; f != EMPTY ; f = Sibling [f])
126
+ {
127
+ ASSERT (f >= 0 && f < nn) ;
128
+ frsize = Fsize [f] ;
129
+ if (frsize >= maxfrsize)
130
+ {
131
+ /* this is the biggest seen so far */
132
+ maxfrsize = frsize ;
133
+ bigfprev = fprev ;
134
+ bigf = f ;
135
+ }
136
+ fprev = f ;
137
+ }
138
+ ASSERT (bigf != EMPTY) ;
139
+
140
+ fnext = Sibling [bigf] ;
141
+
142
+ AMD_DEBUG1 (("bigf "ID" maxfrsize "ID" bigfprev "ID" fnext "ID
143
+ " fprev " ID"\n", bigf, maxfrsize, bigfprev, fnext, fprev)) ;
144
+
145
+ if (fnext != EMPTY)
146
+ {
147
+ /* if fnext is EMPTY then bigf is already at the end of list */
148
+
149
+ if (bigfprev == EMPTY)
150
+ {
151
+ /* delete bigf from the element of the list */
152
+ Child [i] = fnext ;
153
+ }
154
+ else
155
+ {
156
+ /* delete bigf from the middle of the list */
157
+ Sibling [bigfprev] = fnext ;
158
+ }
159
+
160
+ /* put bigf at the end of the list */
161
+ Sibling [bigf] = EMPTY ;
162
+ ASSERT (Child [i] != EMPTY) ;
163
+ ASSERT (fprev != bigf) ;
164
+ ASSERT (fprev != EMPTY) ;
165
+ Sibling [fprev] = bigf ;
166
+ }
167
+
168
+ #ifndef NDEBUG
169
+ AMD_DEBUG1 (("After partial sort, element "ID"\n", i)) ;
170
+ for (f = Child [i] ; f != EMPTY ; f = Sibling [f])
171
+ {
172
+ ASSERT (f >= 0 && f < nn) ;
173
+ AMD_DEBUG1 ((" "ID" "ID"\n", f, Fsize [f])) ;
174
+ ASSERT (Nv [f] > 0) ;
175
+ nchild-- ;
176
+ }
177
+ ASSERT (nchild == 0) ;
178
+ #endif
179
+
180
+ }
181
+ }
182
+
183
+ /* --------------------------------------------------------------------- */
184
+ /* postorder the assembly tree */
185
+ /* --------------------------------------------------------------------- */
186
+
187
+ for (i = 0 ; i < nn ; i++)
188
+ {
189
+ Order [i] = EMPTY ;
190
+ }
191
+
192
+ k = 0 ;
193
+
194
+ for (i = 0 ; i < nn ; i++)
195
+ {
196
+ if (Parent [i] == EMPTY && Nv [i] > 0)
197
+ {
198
+ AMD_DEBUG1 (("Root of assembly tree "ID"\n", i)) ;
199
+ k = AMD_post_tree (i, k, Child, Sibling, Order, Stack
200
+ #ifndef NDEBUG
201
+ , nn
202
+ #endif
203
+ ) ;
204
+ }
205
+ }
206
+ }
@@ -0,0 +1,118 @@
1
+ /* ========================================================================= */
2
+ /* === AMD_preprocess ====================================================== */
3
+ /* ========================================================================= */
4
+
5
+ /* ------------------------------------------------------------------------- */
6
+ /* AMD, Copyright (c) Timothy A. Davis, */
7
+ /* Patrick R. Amestoy, and Iain S. Duff. See ../README.txt for License. */
8
+ /* email: DrTimothyAldenDavis@gmail.com */
9
+ /* ------------------------------------------------------------------------- */
10
+
11
+ /* Sorts, removes duplicate entries, and transposes from the nonzero pattern of
12
+ * a column-form matrix A, to obtain the matrix R. The input matrix can have
13
+ * duplicate entries and/or unsorted columns (AMD_valid (n,Ap,Ai) must not be
14
+ * AMD_INVALID).
15
+ *
16
+ * This input condition is NOT checked. This routine is not user-callable.
17
+ */
18
+
19
+ #include "amd_internal.h"
20
+
21
+ /* ========================================================================= */
22
+ /* === AMD_preprocess ====================================================== */
23
+ /* ========================================================================= */
24
+
25
+ /* AMD_preprocess does not check its input for errors or allocate workspace.
26
+ * On input, the condition (AMD_valid (n,n,Ap,Ai) != AMD_INVALID) must hold.
27
+ */
28
+
29
+ GLOBAL void AMD_preprocess
30
+ (
31
+ Int n, /* input matrix: A is n-by-n */
32
+ const Int Ap [ ], /* size n+1 */
33
+ const Int Ai [ ], /* size nz = Ap [n] */
34
+
35
+ /* output matrix R: */
36
+ Int Rp [ ], /* size n+1 */
37
+ Int Ri [ ], /* size nz (or less, if duplicates present) */
38
+
39
+ Int W [ ], /* workspace of size n */
40
+ Int Flag [ ] /* workspace of size n */
41
+ )
42
+ {
43
+
44
+ /* --------------------------------------------------------------------- */
45
+ /* local variables */
46
+ /* --------------------------------------------------------------------- */
47
+
48
+ Int i, j, p, p2 ;
49
+
50
+ ASSERT (AMD_valid (n, n, Ap, Ai) != AMD_INVALID) ;
51
+
52
+ /* --------------------------------------------------------------------- */
53
+ /* count the entries in each row of A (excluding duplicates) */
54
+ /* --------------------------------------------------------------------- */
55
+
56
+ for (i = 0 ; i < n ; i++)
57
+ {
58
+ W [i] = 0 ; /* # of nonzeros in row i (excl duplicates) */
59
+ Flag [i] = EMPTY ; /* Flag [i] = j if i appears in column j */
60
+ }
61
+ for (j = 0 ; j < n ; j++)
62
+ {
63
+ p2 = Ap [j+1] ;
64
+ for (p = Ap [j] ; p < p2 ; p++)
65
+ {
66
+ i = Ai [p] ;
67
+ if (Flag [i] != j)
68
+ {
69
+ /* row index i has not yet appeared in column j */
70
+ W [i]++ ; /* one more entry in row i */
71
+ Flag [i] = j ; /* flag row index i as appearing in col j*/
72
+ }
73
+ }
74
+ }
75
+
76
+ /* --------------------------------------------------------------------- */
77
+ /* compute the row pointers for R */
78
+ /* --------------------------------------------------------------------- */
79
+
80
+ Rp [0] = 0 ;
81
+ for (i = 0 ; i < n ; i++)
82
+ {
83
+ Rp [i+1] = Rp [i] + W [i] ;
84
+ }
85
+ for (i = 0 ; i < n ; i++)
86
+ {
87
+ W [i] = Rp [i] ;
88
+ Flag [i] = EMPTY ;
89
+ }
90
+
91
+ /* --------------------------------------------------------------------- */
92
+ /* construct the row form matrix R */
93
+ /* --------------------------------------------------------------------- */
94
+
95
+ /* R = row form of pattern of A */
96
+ for (j = 0 ; j < n ; j++)
97
+ {
98
+ p2 = Ap [j+1] ;
99
+ for (p = Ap [j] ; p < p2 ; p++)
100
+ {
101
+ i = Ai [p] ;
102
+ if (Flag [i] != j)
103
+ {
104
+ /* row index i has not yet appeared in column j */
105
+ Ri [W [i]++] = j ; /* put col j in row i */
106
+ Flag [i] = j ; /* flag row index i as appearing in col j*/
107
+ }
108
+ }
109
+ }
110
+
111
+ #ifndef NDEBUG
112
+ ASSERT (AMD_valid (n, n, Rp, Ri) == AMD_OK) ;
113
+ for (j = 0 ; j < n ; j++)
114
+ {
115
+ ASSERT (W [j] == Rp [j+1]) ;
116
+ }
117
+ #endif
118
+ }
@@ -0,0 +1,92 @@
1
+ /* ========================================================================= */
2
+ /* === AMD_valid =========================================================== */
3
+ /* ========================================================================= */
4
+
5
+ /* ------------------------------------------------------------------------- */
6
+ /* AMD, Copyright (c) Timothy A. Davis, */
7
+ /* Patrick R. Amestoy, and Iain S. Duff. See ../README.txt for License. */
8
+ /* email: DrTimothyAldenDavis@gmail.com */
9
+ /* ------------------------------------------------------------------------- */
10
+
11
+ /* Check if a column-form matrix is valid or not. The matrix A is
12
+ * n_row-by-n_col. The row indices of entries in column j are in
13
+ * Ai [Ap [j] ... Ap [j+1]-1]. Required conditions are:
14
+ *
15
+ * n_row >= 0
16
+ * n_col >= 0
17
+ * nz = Ap [n_col] >= 0 number of entries in the matrix
18
+ * Ap [0] == 0
19
+ * Ap [j] <= Ap [j+1] for all j in the range 0 to n_col.
20
+ * Ai [0 ... nz-1] must be in the range 0 to n_row-1.
21
+ *
22
+ * If any of the above conditions hold, AMD_INVALID is returned. If the
23
+ * following condition holds, AMD_OK_BUT_JUMBLED is returned (a warning,
24
+ * not an error):
25
+ *
26
+ * row indices in Ai [Ap [j] ... Ap [j+1]-1] are not sorted in ascending
27
+ * order, and/or duplicate entries exist.
28
+ *
29
+ * Otherwise, AMD_OK is returned.
30
+ *
31
+ * In v1.2 and earlier, this function returned TRUE if the matrix was valid
32
+ * (now returns AMD_OK), or FALSE otherwise (now returns AMD_INVALID or
33
+ * AMD_OK_BUT_JUMBLED).
34
+ */
35
+
36
+ #include "amd_internal.h"
37
+
38
+ GLOBAL Int AMD_valid
39
+ (
40
+ /* inputs, not modified on output: */
41
+ Int n_row, /* A is n_row-by-n_col */
42
+ Int n_col,
43
+ const Int Ap [ ], /* column pointers of A, of size n_col+1 */
44
+ const Int Ai [ ] /* row indices of A, of size nz = Ap [n_col] */
45
+ )
46
+ {
47
+ Int nz, j, p1, p2, ilast, i, p, result = AMD_OK ;
48
+
49
+ if (n_row < 0 || n_col < 0 || Ap == NULL || Ai == NULL)
50
+ {
51
+ return (AMD_INVALID) ;
52
+ }
53
+ nz = Ap [n_col] ;
54
+ if (Ap [0] != 0 || nz < 0)
55
+ {
56
+ /* column pointers must start at Ap [0] = 0, and Ap [n] must be >= 0 */
57
+ AMD_DEBUG0 (("column 0 pointer bad or nz < 0\n")) ;
58
+ return (AMD_INVALID) ;
59
+ }
60
+ for (j = 0 ; j < n_col ; j++)
61
+ {
62
+ p1 = Ap [j] ;
63
+ p2 = Ap [j+1] ;
64
+ AMD_DEBUG2 (("\nColumn: "ID" p1: "ID" p2: "ID"\n", j, p1, p2)) ;
65
+ if (p1 > p2)
66
+ {
67
+ /* column pointers must be ascending */
68
+ AMD_DEBUG0 (("column "ID" pointer bad\n", j)) ;
69
+ return (AMD_INVALID) ;
70
+ }
71
+ ilast = EMPTY ;
72
+ for (p = p1 ; p < p2 ; p++)
73
+ {
74
+ i = Ai [p] ;
75
+ AMD_DEBUG3 (("row: "ID"\n", i)) ;
76
+ if (i < 0 || i >= n_row)
77
+ {
78
+ /* row index out of range */
79
+ AMD_DEBUG0 (("index out of range, col "ID" row "ID"\n", j, i));
80
+ return (AMD_INVALID) ;
81
+ }
82
+ if (i <= ilast)
83
+ {
84
+ /* row index unsorted, or duplicate entry present */
85
+ AMD_DEBUG1 (("index unsorted/dupl col "ID" row "ID"\n", j, i));
86
+ result = AMD_OK_BUT_JUMBLED ;
87
+ }
88
+ ilast = i ;
89
+ }
90
+ }
91
+ return (result) ;
92
+ }
@@ -0,0 +1,11 @@
1
+ Flatten out all .c and .h to single dir.
2
+ All files: double -> scs_float.
3
+ git grep -l 'double' | xargs sed -i 's/double/scs_float/g'
4
+ SuiteSparse_config.h: add '#include "scs.h"'
5
+ add '#include "ctrlc.h"'
6
+ add '#define SuiteSparse_long scs_int'
7
+ disable timer #define NTIMER
8
+ SuiteSparse_config.c: replace *alloc and printf in 2 structs.
9
+ amd_internal.h: remove all refs to long version, int -> scs_int
10
+ amd_global.c: add typedef to rm warning
11
+ amd.h: int -> scs_int.h
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.