Skip to content

Commit

Permalink
trying to fix C++ build
Browse files Browse the repository at this point in the history
  • Loading branch information
dance858 committed Nov 17, 2024
1 parent 60fd0b1 commit bde9589
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cones.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void BLAS(scal)(const blas_int *n, const scs_float *sa, scs_float *sx,
scs_int SCS(proj_logdet_cone)(scs_float *tvX, const scs_int n, ScsConeWork *c,
scs_int offset, bool *warmstart);
scs_int SCS(proj_nuclear_cone)(scs_float *tX, scs_int m, scs_int n, ScsConeWork *c);
void SCS(proj_ell_one)(scs_float *tx, size_t n, ScsConeWork *c);
void SCS(proj_ell_one)(scs_float *tx, scs_int n, ScsConeWork *c);
scs_int SCS(proj_sum_largest_evals)(scs_float *tX, scs_int n, scs_int k,
ScsConeWork *c);

Expand Down
2 changes: 1 addition & 1 deletion src/spectral_cones/logdeterminant/logdet_cone.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void BLAS(scal)(const blas_int *n, const scs_float *sa, scs_float *sx,


// forward declare from log_cone_wrapper.c
scs_int log_cone_proj_wrapper(scs_float t0, scs_float v0, const scs_float *x0,
scs_int log_cone_proj_wrapper(scs_float t0, scs_float v0, scs_float *x0,
scs_float *proj, scs_int n, scs_float *workspace,
Newton_stats *stats, bool *warm_start);

Expand Down

0 comments on commit bde9589

Please sign in to comment.