ROL
ROL_l1Objective.hpp
Go to the documentation of this file.
1 // @HEADER
2 // ************************************************************************
3 //
4 // Rapid Optimization Library (ROL) Package
5 // Copyright (2014) Sandia Corporation
6 //
7 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
8 // license for use of this work by or on behalf of the U.S. Government.
9 //
10 // Redistribution and use in source and binary forms, with or without
11 // modification, are permitted provided that the following conditions are
12 // met:
13 //
14 // 1. Redistributions of source code must retain the above copyright
15 // notice, this list of conditions and the following disclaimer.
16 //
17 // 2. Redistributions in binary form must reproduce the above copyright
18 // notice, this list of conditions and the following disclaimer in the
19 // documentation and/or other materials provided with the distribution.
20 //
21 // 3. Neither the name of the Corporation nor the names of the
22 // contributors may be used to endorse or promote products derived from
23 // this software without specific prior written permission.
24 //
25 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 //
37 // Questions? Contact lead developers:
38 // Drew Kouri (dpkouri@sandia.gov) and
39 // Denis Ridzal (dridzal@sandia.gov)
40 //
41 // ************************************************************************
42 // @HEADER
43 
44 #ifndef ROL_L1OBJECTIVE_H
45 #define ROL_L1OBJECTIVE_H
46 
47 #include "ROL_Objective.hpp"
48 
57 namespace ROL {
58 
59 template<typename Real>
60 class l1Objective : public Objective<Real> {
61 private:
62  const Ptr<Vector<Real>> weights_, shift_;
63  Ptr<Vector<Real>> tmp_;
64 
65  struct ProjSymBnd : public Elementwise::BinaryFunction<Real> {
66  Real apply(const Real &xc, const Real &yc) const { return std::min(yc, std::max(-yc, xc)); }
67  } psb_;
68 
69 public:
70 
72  : weights_(weights), shift_(weights->dual().clone()) {
73  shift_->zero();
74  tmp_ = shift_->clone();
75  }
76 
77  l1Objective(const Ptr<Vector<Real>> &weights, const Ptr<Vector<Real>> &shift)
78  : weights_(weights), shift_(shift) {
79  tmp_ = shift_->clone();
80  }
81 
82  Real value( const Vector<Real> &x, Real &tol ) {
83  tmp_->set(x);
84  tmp_->axpy(static_cast<Real>(-1),*shift_);
85  tmp_->applyUnary(Elementwise::AbsoluteValue<Real>());
86  return weights_->apply(*tmp_);
87  }
88 
89  void gradient( Vector<Real> &g, const Vector<Real> &x, Real &tol ) {
90  g.set(x);
91  g.axpy(static_cast<Real>(-1),*shift_);
92  g.applyUnary(Elementwise::Sign<Real>());
93  g.applyBinary(Elementwise::Multiply<Real>(), *weights_);
94  }
95 
96  Real dirDeriv( const Vector<Real> &x, const Vector<Real> &d, Real &tol ) {
97  gradient(*tmp_, x, tol);
98  return tmp_->apply(d);
99  }
100 
101  void prox( Vector<Real> &Pv, const Vector<Real> &v, Real t, Real &tol){
102  Pv.set(*shift_);
103  Pv.axpy(static_cast<Real>(-1), v);
104  Pv.scale(static_cast<Real>(1) / t);
105  Pv.applyBinary(psb_, *weights_);
106  Pv.scale(t);
107  Pv.plus(v);
108  }
109 }; // class l1Objective
110 
111 } // namespace ROL
112 
113 #endif
Provides the interface to evaluate objective functions.
virtual void scale(const Real alpha)=0
Compute where .
virtual void plus(const Vector &x)=0
Compute , where .
const double weights[4][5]
Definition: ROL_Types.hpp:868
virtual void axpy(const Real alpha, const Vector &x)
Compute where .
Definition: ROL_Vector.hpp:153
virtual void applyBinary(const Elementwise::BinaryFunction< Real > &f, const Vector &x)
Definition: ROL_Vector.hpp:248
void prox(Vector< Real > &Pv, const Vector< Real > &v, Real t, Real &tol)
l1Objective(const Ptr< Vector< Real >> &weights)
Defines the linear algebra or vector space interface.
Definition: ROL_Vector.hpp:80
Real value(const Vector< Real > &x, Real &tol)
Compute value.
ROL::l1Objective::ProjSymBnd psb_
Real dirDeriv(const Vector< Real > &x, const Vector< Real > &d, Real &tol)
Compute directional derivative.
virtual void applyUnary(const Elementwise::UnaryFunction< Real > &f)
Definition: ROL_Vector.hpp:242
const Ptr< Vector< Real > > weights_
Ptr< Vector< Real > > tmp_
Provides the interface to evaluate the weighted/shifted l1 objective function.
virtual void set(const Vector &x)
Set where .
Definition: ROL_Vector.hpp:209
void gradient(Vector< Real > &g, const Vector< Real > &x, Real &tol)
Compute gradient.
l1Objective(const Ptr< Vector< Real >> &weights, const Ptr< Vector< Real >> &shift)
const Ptr< Vector< Real > > shift_
Real apply(const Real &xc, const Real &yc) const