-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathauglag.cpp
executable file
·123 lines (111 loc) · 4.47 KB
/
auglag.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
Copyright ©2013 The Regents of the University of California
(Regents). All Rights Reserved. Permission to use, copy, modify, and
distribute this software and its documentation for educational,
research, and not-for-profit purposes, without fee and without a
signed licensing agreement, is hereby granted, provided that the
above copyright notice, this paragraph and the following two
paragraphs appear in all copies, modifications, and
distributions. Contact The Office of Technology Licensing, UC
Berkeley, 2150 Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620,
(510) 643-7201, for commercial licensing opportunities.
IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT,
INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
DOCUMENTATION, EVEN IF REGENTS HAS BEEN ADVISED OF THE POSSIBILITY
OF SUCH DAMAGE.
REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING
DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS
IS". REGENTS HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT,
UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*/
#include "optimization.hpp"
#include "optimization.h"
#include <omp.h>
#include <vector>
using namespace std;
using namespace alglib;
static const NLConOpt *problem;
static vector<double> lambda;
static double mu;
static void auglag_value_and_grad (const real_1d_array &x, double &value,
real_1d_array &grad, void *ptr=NULL);
static void multiplier_update (const real_1d_array &x);
void augmented_lagrangian_method (const NLConOpt &problem, OptOptions opt,
bool verbose) {
::problem = &problem;
::lambda = vector<double>(::problem->ncon, 0);
::mu = 1e3;
real_1d_array x;
x.setlength(::problem->nvar);
::problem->initialize(&x[0]);
mincgstate state;
mincgreport rep;
mincgcreate(x, state);
const int max_total_iter = opt.max_iter(),
max_sub_iter = sqrt(max_total_iter);
int iter = 0;
while (iter < max_total_iter) {
int max_iter = min(max_sub_iter, max_total_iter - iter);
mincgsetcond(state, opt.eps_g(), opt.eps_f(), opt.eps_x(), max_iter);
if (iter > 0)
mincgrestartfrom(state, x);
mincgsuggeststep(state, 1e-3*::problem->nvar);
mincgoptimize(state, auglag_value_and_grad);
mincgresults(state, x, rep);
multiplier_update(x);
if (verbose)
cout << rep.iterationscount << " iterations" << endl;
if (rep.iterationscount == 0)
break;
iter += rep.iterationscount;
}
::problem->finalize(&x[0]);
}
static void add (real_1d_array &x, const vector<double> &y) {
for (int i = 0; i < y.size(); i++)
x[i] += y[i];
}
inline double clamp_violation (double x, int sign) {
return (sign<0) ? max(x, 0.) : (sign>0) ? min(x, 0.) : x;}
static void auglag_value_and_grad (const real_1d_array &x, double &value,
real_1d_array &grad, void *ptr) {
::problem->precompute(&x[0]);
value = ::problem->objective(&x[0]);
::problem->obj_grad(&x[0], &grad[0]);
static const int nthreads = omp_get_max_threads();
static double *values = new double[nthreads];
static vector<double> *grads = new vector<double>[nthreads];
for (int t = 0; t < nthreads; t++) {
values[t] = 0;
grads[t].assign(::problem->nvar, 0);
}
#pragma omp parallel for
for (int j = 0; j < ::problem->ncon; j++) {
int t = omp_get_thread_num();
int sign;
double gj = ::problem->constraint(&x[0], j, sign);
double cj = clamp_violation(gj + ::lambda[j]/::mu, sign);
if (cj != 0) {
values[t] += ::mu/2*sq(cj);
::problem->con_grad(&x[0], j, ::mu*cj, &grads[t][0]);
}
}
for (int t = 0; t < nthreads; t++)
value += values[t];
#pragma omp parallel for
for (int i = 0; i < ::problem->nvar; i++)
for (int t = 0; t < nthreads; t++)
grad[i] += grads[t][i];
}
static void multiplier_update (const real_1d_array &x) {
::problem->precompute(&x[0]);
#pragma omp parallel for
for (int j = 0; j < ::problem->ncon; j++) {
int sign;
double gj = ::problem->constraint(&x[0], j, sign);
::lambda[j] = clamp_violation(::lambda[j] + ::mu*gj, sign);
}
}