mirror of https://github.com/CGAL/cgal
Merge remote-tracking branch 'refs/remotes/origin/Solvers-add_osqp-danston' into Solvers-add_osqp-danston
This commit is contained in:
commit
a34d89861a
|
|
@ -255,7 +255,7 @@ public:
|
||||||
|
|
||||||
// Create solution.
|
// Create solution.
|
||||||
const c_float *x = work->solution->x;
|
const c_float *x = work->solution->x;
|
||||||
for(c_int i=0; i<static_cast<c_int>(n); ++i)
|
for(std::size_t i=0; i<n; ++i)
|
||||||
{
|
{
|
||||||
const FT value{x[i]};
|
const FT value{x[i]};
|
||||||
*(++solution) = value;
|
*(++solution) = value;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue