Skip to content

Commit 68df462

Browse files
committed
no unicode dash in comment
1 parent 0b4031a commit 68df462

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/algs/mma/ccsa_quadratic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ nlopt_result ccsa_quadratic_minimize(
488488

489489
if (!inner_gradients) { /* evaluate again, this time with gradients */
490490
fcur = f(n, xcur, dfdx_cur, f_data);
491-
/* don't update *(stop->nevals_p)  hope user caches xcur
491+
/* don't update *(stop->nevals_p) -- hope user caches xcur
492492
so that they don't actually recompute f */
493493
if (nlopt_stop_forced(stop)) {
494494
ret = NLOPT_FORCED_STOP; goto done; }

src/algs/mma/mma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ nlopt_result mma_minimize(unsigned n, nlopt_func f, void *f_data,
337337

338338
if (!inner_gradients) { /* evaluate again, this time with gradients */
339339
fcur = f(n, xcur, dfdx_cur, f_data);
340-
/* don't update *(stop->nevals_p)  hope user caches xcur
340+
/* don't update *(stop->nevals_p) -- hope user caches xcur
341341
so that they don't actually recompute f */
342342
if (nlopt_stop_forced(stop)) {
343343
ret = NLOPT_FORCED_STOP; goto done; }

0 commit comments

Comments
 (0)