ROL
ROL_Arcsine.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_ARCSINE_HPP
45 #define ROL_ARCSINE_HPP
46 
47 #include "ROL_Distribution.hpp"
48 #include "ROL_ParameterList.hpp"
49 
50 namespace ROL {
51 
52 template<class Real>
53 class Arcsine : public Distribution<Real> {
54 private:
55  Real a_;
56  Real b_;
57 
58 public:
59  Arcsine(const Real a = 0., const Real b = 1.)
60  : a_(std::min(a,b)), b_(std::max(a,b)) {}
61 
62  Arcsine(ROL::ParameterList &parlist) {
63  a_ = parlist.sublist("SOL").sublist("Distribution").sublist("Arcsine").get("Lower Bound",0.);
64  b_ = parlist.sublist("SOL").sublist("Distribution").sublist("Arcsine").get("Upper Bound",1.);
65  Real tmp = a_;
66  a_ = std::min(a_,b_);
67  b_ = std::max(b_,tmp);
68  }
69 
70  Real evaluatePDF(const Real input) const {
71  return ((input <= a_) ? 0. : ((input >= b_) ? 0. :
72  1./(ROL::ScalarTraits<Real>::pi()*std::sqrt((input-a_)*(b_-input)))));
73  }
74 
75  Real evaluateCDF(const Real input) const {
76  return ((input <= a_) ? 0. : ((input >= b_) ? 1. :
77  2./ROL::ScalarTraits<Real>::pi() * asin(std::sqrt((input-a_)/(b_-a_)))));
78  }
79  Real integrateCDF(const Real input) const {
80  ROL_TEST_FOR_EXCEPTION( true, std::invalid_argument,
81  ">>> ERROR (ROL::Arcsine): Arcsine integrateCDF not implemented!");
82  }
83 
84  Real invertCDF(const Real input) const {
85  Real x = std::pow(std::sin(0.5*ROL::ScalarTraits<Real>::pi()*input),2);
86  return x*(b_-a_) + a_;
87  }
88 
89  Real moment(const size_t m) const {
90  Real mean = 0.5*(a_+b_);
91  Real val = 0.0;
92  switch(m) {
93  case 1: val = mean; break;
94  case 2: val = std::pow(b_-a_,2)/8. + mean*mean; break;
95  default:
96  ROL_TEST_FOR_EXCEPTION( true, std::invalid_argument,
97  ">>> ERROR (ROL::Arcsine): Arcsine moment not implemented for m > 2!");
98  }
99  return val;
100  }
101 
102  Real lowerBound(void) const {
103  return a_;
104  }
105 
106  Real upperBound(void) const {
107  return b_;
108  }
109 
110  void test(std::ostream &outStream = std::cout ) const {
111  size_t size = 5;
112  std::vector<Real> X(size,0.);
113  std::vector<int> T(size,0);
114  X[0] = a_-4.*(Real)rand()/(Real)RAND_MAX;
115  T[0] = 0;
116  X[1] = a_;
117  T[1] = 1;
118  X[2] = (b_-a_)*(Real)rand()/(Real)RAND_MAX + a_;
119  T[2] = 0;
120  X[3] = b_;
121  T[3] = 1;
122  X[4] = b_+4.*(Real)rand()/(Real)RAND_MAX;
123  T[4] = 0;
124  Distribution<Real>::test(X,T,outStream);
125  }
126 };
127 
128 }
129 
130 #endif
Arcsine(ROL::ParameterList &parlist)
Definition: ROL_Arcsine.hpp:62
Arcsine(const Real a=0., const Real b=1.)
Definition: ROL_Arcsine.hpp:59
Real evaluateCDF(const Real input) const
Definition: ROL_Arcsine.hpp:75
Real lowerBound(void) const
void test(std::ostream &outStream=std::cout) const
Real integrateCDF(const Real input) const
Definition: ROL_Arcsine.hpp:79
Real evaluatePDF(const Real input) const
Definition: ROL_Arcsine.hpp:70
Real moment(const size_t m) const
Definition: ROL_Arcsine.hpp:89
virtual void test(std::ostream &outStream=std::cout) const
Real upperBound(void) const
Real invertCDF(const Real input) const
Definition: ROL_Arcsine.hpp:84