vendor/scs/linsys/scs_matrix.h in scs-0.3.2 vs vendor/scs/linsys/scs_matrix.h in scs-0.4.0
- old
+ new
@@ -11,14 +11,15 @@
/* Normalization routines, used if d->NORMALIZE is true */
/* normalizes A matrix, sets scal->E and scal->D diagonal scaling matrices,
* A -> D*A*E. D and E must be all positive entries, D must satisfy cone
* boundaries */
-ScsScaling *SCS(normalize_a_p)(ScsMatrix *P, ScsMatrix *A, scs_float *b,
- scs_float *c, ScsConeWork *cone);
+ScsScaling *SCS(normalize_a_p)(ScsMatrix *P, ScsMatrix *A, ScsConeWork *cone);
/* unnormalizes A matrix, unnormalizes by w->D and w->E */
-void SCS(un_normalize_a_p)(ScsMatrix *A, ScsMatrix *P, const ScsScaling *scal);
+/* void SCS(un_normalize_a_p)(ScsMatrix *A, ScsMatrix *P, const ScsScaling
+ * *scal);
+ */
/* to free the memory allocated in a ScsMatrix (called on A and P at finish) */
void SCS(free_scs_matrix)(ScsMatrix *A);
/* copies A (instead of in-place normalization), returns 0 for failure,