chiark / gitweb /
Fix _NOSCAL algo typos in the man (#70)
[nlopt.git] / util / stop.c
1 /* Copyright (c) 2007-2014 Massachusetts Institute of Technology
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining
4  * a copy of this software and associated documentation files (the
5  * "Software"), to deal in the Software without restriction, including
6  * without limitation the rights to use, copy, modify, merge, publish,
7  * distribute, sublicense, and/or sell copies of the Software, and to
8  * permit persons to whom the Software is furnished to do so, subject to
9  * the following conditions:
10  * 
11  * The above copyright notice and this permission notice shall be
12  * included in all copies or substantial portions of the Software.
13  * 
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
21  */
22
23 #include <math.h>
24 #include <string.h>
25 #include <stdio.h>
26 #include <stdarg.h>
27 #include "nlopt-util.h"
28
29 /* utility routines to implement the various stopping criteria */
30
31 static int relstop(double vold, double vnew, double reltol, double abstol)
32 {
33      if (nlopt_isinf(vold)) return 0;
34      return(fabs(vnew - vold) < abstol 
35             || fabs(vnew - vold) < reltol * (fabs(vnew) + fabs(vold)) * 0.5
36             || (reltol > 0 && vnew == vold)); /* catch vnew == vold == 0 */
37 }
38
39 int nlopt_stop_ftol(const nlopt_stopping *s, double f, double oldf)
40 {
41      return (relstop(oldf, f, s->ftol_rel, s->ftol_abs));
42 }
43
44 int nlopt_stop_f(const nlopt_stopping *s, double f, double oldf)
45 {
46      return (f <= s->minf_max || nlopt_stop_ftol(s, f, oldf));
47 }
48
49 int nlopt_stop_x(const nlopt_stopping *s, const double *x, const double *oldx)
50 {
51      unsigned i;
52      for (i = 0; i < s->n; ++i)
53           if (!relstop(oldx[i], x[i], s->xtol_rel, s->xtol_abs[i]))
54                return 0;
55      return 1;
56 }
57
58 int nlopt_stop_dx(const nlopt_stopping *s, const double *x, const double *dx)
59 {
60      unsigned i;
61      for (i = 0; i < s->n; ++i)
62           if (!relstop(x[i] - dx[i], x[i], s->xtol_rel, s->xtol_abs[i]))
63                return 0;
64      return 1;
65 }
66
67 static double sc(double x, double smin, double smax)
68 {
69      return smin + x * (smax - smin);
70 }
71
72 /* some of the algorithms rescale x to a unit hypercube, so we need to
73    scale back before we can compare to the tolerances */
74 int nlopt_stop_xs(const nlopt_stopping *s,
75                   const double *xs, const double *oldxs,
76                   const double *scale_min, const double *scale_max)
77 {
78      unsigned i;
79      for (i = 0; i < s->n; ++i)
80           if (relstop(sc(oldxs[i], scale_min[i], scale_max[i]), 
81                       sc(xs[i], scale_min[i], scale_max[i]),
82                       s->xtol_rel, s->xtol_abs[i]))
83                return 1;
84      return 0;
85 }
86
87 int nlopt_stop_evals(const nlopt_stopping *s)
88 {
89      return (s->maxeval > 0 && s->nevals >= s->maxeval);
90 }
91
92 int nlopt_stop_time_(double start, double maxtime)
93 {
94      return (maxtime > 0 && nlopt_seconds() - start >= maxtime);
95 }
96
97 int nlopt_stop_time(const nlopt_stopping *s)
98 {
99      return nlopt_stop_time_(s->start, s->maxtime);
100 }
101
102 int nlopt_stop_evalstime(const nlopt_stopping *stop)
103 {
104      return nlopt_stop_evals(stop) || nlopt_stop_time(stop);
105 }
106
107 int nlopt_stop_forced(const nlopt_stopping *stop)
108 {
109      return stop->force_stop && *(stop->force_stop);
110 }
111
112 unsigned nlopt_count_constraints(unsigned p, const nlopt_constraint *c)
113 {
114      unsigned i, count = 0;
115      for (i = 0; i < p; ++i)
116           count += c[i].m;
117      return count;
118 }
119
120 unsigned nlopt_max_constraint_dim(unsigned p, const nlopt_constraint *c)
121 {
122      unsigned i, max_dim = 0;
123      for (i = 0; i < p; ++i)
124           if (c[i].m > max_dim)
125                max_dim = c[i].m;
126      return max_dim;
127 }
128
129 void nlopt_eval_constraint(double *result, double *grad,
130                            const nlopt_constraint *c,
131                            unsigned n, const double *x)
132 {
133      if (c->f)
134           result[0] = c->f(n, x, grad, c->f_data);
135      else
136           c->mf(c->m, result, n, x, grad, c->f_data);
137 }
138
139 char *nlopt_vsprintf(char *p, const char *format, va_list ap)
140 {
141     size_t len = strlen(format) + 128;
142     int ret;
143
144     p = (char *) realloc(p, len);
145     if (!p) abort();
146     
147     while ((ret = vsnprintf(p, len, format, ap)) < 0 || (size_t)ret >= len) {
148         /* C99 vsnprintf returns the required number of bytes (excluding \0)
149            if the buffer is too small; older versions (e.g. MS) return -1 */
150         len = ret >= 0 ? (size_t)(ret + 1) : (len*3)>>1;
151         p = (char *) realloc(p, len);
152         if (!p) abort();
153     }
154     return p;
155 }
156
157 void nlopt_stop_msg(const nlopt_stopping *s, const char *format, ...)
158 {
159     va_list ap;
160     if (s->stop_msg) {
161         va_start(ap, format);
162         *(s->stop_msg) = nlopt_vsprintf(*(s->stop_msg), format, ap);
163         va_end(ap);
164     }
165 }