casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AutoDiffA.h
Go to the documentation of this file.
1 //# AutoDiffA.h: An automatic differentiating class for functions
2 //# Copyright (C) 2001,2002
3 //# Associated Universities, Inc. Washington DC, USA.
4 //#
5 //# This library is free software; you can redistribute it and/or modify it
6 //# under the terms of the GNU Library General Public License as published by
7 //# the Free Software Foundation; either version 2 of the License, or (at your
8 //# option) any later version.
9 //#
10 //# This library is distributed in the hope that it will be useful, but WITHOUT
11 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 //# License for more details.
14 //#
15 //# You should have received a copy of the GNU Library General Public License
16 //# along with this library; if not, write to the Free Software Foundation,
17 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18 //#
19 //# Correspondence concerning AIPS++ should be addressed as follows:
20 //# Internet email: aips2-request@nrao.edu.
21 //# Postal address: AIPS++ Project Office
22 //# National Radio Astronomy Observatory
23 //# 520 Edgemont Road
24 //# Charlottesville, VA 22903-2475 USA
25 //#
26 //#
27 //# $Id$
28 
29 #ifndef SCIMATH_AUTODIFFA_H
30 #define SCIMATH_AUTODIFFA_H
31 
32 //# Includes
33 #include <casacore/casa/aips.h>
35 
36 namespace casacore { //# NAMESPACE CASACORE - BEGIN
37 
38 //# Forward declarations
39 template <class T> class Vector;
40 
41 // <summary>
42 // Class that computes partial derivatives by automatic differentiation.
43 // </summary>
44 //
45 // <use visibility=export>
46 //
47 // <reviewed reviewer="UNKNOWN" date="before2004/08/25" tests="tAutoDiff.cc" demos="dAutoDiff.cc">
48 // </reviewed>
49 //
50 // <prerequisite>
51 // <li> <linkto class=AutoDiff>AutoDiff</linkto>
52 // </prerequisite>
53 //
54 // <etymology>
55 // Class that computes partial derivatives by automatic differentiation, thus
56 // AutoDiff.
57 // </etymology>
58 //
59 // <synopsis>
60 // AutoDiffA is an <linkto class=AutoDiff>AutoDiff</linkto>. It is used
61 // to be able to distinguish between two template incarnations; e.g. to
62 // have one or more specializations, in addition to the general template
63 // version.
64 // </synopsis>
65 //
66 // <example>
67 // See for an extensive example the demo program dAutoDiff. It is
68 // based on the example given in the <linkto class=AutoDiff>AutoDiff</linkto>
69 // class, and shows how to have both an automatic and a specific version
70 // of a function object.
71 // <srcblock>
72 // // The function, with fixed parameters a,b:
73 // template <class T> class f {
74 // public:
75 // T operator()(const T& x) { return a_p*a_p*a_p*b_p*b_p*x; }
76 // void set(const T& a, const T& b) { a_p = a; b_p = b; }
77 // private:
78 // T a_p;
79 // T b_p;
80 // };
81 // // The specialized function
82 // template <> class f<AutoDiffA<Double> > {
83 // public:
84 // T operator()(const T& x) { return a_p*a_p*a_p*b_p*b_p*x; }
85 // void set(const T& a, const T& b) { a_p = a; b_p = b; }
86 // private:
87 // T a_p;
88 // T b_p;
89 // };
90 // // Call it with different template arguments:
91 // AutoDiff<Double> a1(2,2,0), b1(3,2,1), x1(7);
92 // f<AutoDiff<Double> > f1; f1.set(a1, b1);
93 // cout << "Diff a,b: " << f1(x1) << endl;
94 //
95 // f<AutoDiffA<Double> > f12; f12.set(a1, b1);
96 // cout << "Same....: " << f12(x1) << endl;
97 //
98 // // Result will be:
99 // // Diff a,b: (504, [756, 336])
100 // // Same....: (504, [756, 336])
101 //
102 // // It needed the template instantiations definitions:
103 // template class f<AutoDiff<Double> >;
104 // </srcblock>
105 // </example>
106 //
107 // <motivation>
108 // The class was created to enable separate calculations of the same
109 // function.
110 // </motivation>
111 //
112 // <templating arg=T>
113 // <li> any class that has the standard mathematical and comparisons
114 // defined
115 // </templating>
116 //
117 // <todo asof="2001/06/07">
118 // <li> Nothing I know
119 // </todo>
120 
121 template <class T> class AutoDiffA : public AutoDiff<T> {
122  public:
123  //# Constructors
124  // Construct a constant with a value of zero. Zero derivatives.
125  AutoDiffA() : AutoDiff<T>() {}
126 
127  // Construct a constant with a value of v. Zero derivatives.
128  AutoDiffA(const T &v) : AutoDiff<T>(v) {}
129 
130  // A function f(x0,x1,...,xn,...) with a value of v. The
131  // total number of derivatives is ndiffs, the nth derivative is one, and all
132  // others are zero.
133  AutoDiffA(const T &v, const uInt ndiffs, const uInt n) :
134  AutoDiff<T>(v, ndiffs, n) {}
135 
136  // A function f(x0,x1,...,xn,...) with a value of v. The
137  // total number of derivatives is ndiffs.
138  // All derivatives are zero.
139  AutoDiffA(const T &v, const uInt ndiffs) : AutoDiff<T>(v, ndiffs) {}
140 
141  // Construct one from another
142  AutoDiffA(const AutoDiff<T> &other) : AutoDiff<T>(other) {}
143 
144  // Construct a function f(x0,x1,...,xn) of a value v and a vector of
145  // derivatives derivs(0) = df/dx0, derivs(1) = df/dx1, ...
146  AutoDiffA(const T &v, const Vector<T> &derivs) : AutoDiff<T>(v, derivs) {}
147 
149 
150  // Assignment operator. Assign a constant to variable. All derivatives
151  // are zero.
152  AutoDiffA<T> &operator=(const T &v) {
154  return *this;
155  }
156 
157  // Assign one to another.
159  AutoDiff<T>::operator=(other);
160  return *this;
161  }
162 
163  private:
164  //# Data
165 
166 };
167 
168 
169 } //# NAMESPACE CASACORE - END
170 
171 #endif
A 1-D Specialization of the Array class.
std::vector< double > Vector
Definition: ds9context.h:24
AutoDiffA< T > & operator=(const AutoDiff< T > &other)
Assign one to another.
Definition: AutoDiffA.h:158
AutoDiffA(const T &v, const Vector< T > &derivs)
Construct a function f(x0,x1,...,xn) of a value v and a vector of derivatives derivs(0) = df/dx0...
Definition: AutoDiffA.h:146
AutoDiffA(const AutoDiff< T > &other)
Construct one from another.
Definition: AutoDiffA.h:142
AutoDiffA()
Construct a constant with a value of zero.
Definition: AutoDiffA.h:125
AutoDiffA(const T &v)
Construct a constant with a value of v.
Definition: AutoDiffA.h:128
AutoDiffA< T > & operator=(const T &v)
Assignment operator.
Definition: AutoDiffA.h:152
Class that computes partial derivatives by automatic differentiation.
Definition: AutoDiff.h:257
AutoDiffA(const T &v, const uInt ndiffs)
A function f(x0,x1,...,xn,...) with a value of v.
Definition: AutoDiffA.h:139
Class that computes partial derivatives by automatic differentiation.
Definition: AutoDiffA.h:121
AutoDiffA(const T &v, const uInt ndiffs, const uInt n)
A function f(x0,x1,...,xn,...) with a value of v.
Definition: AutoDiffA.h:133
unsigned int uInt
Definition: aipstype.h:51
AutoDiff< T > & operator=(const T &v)
Assignment operator.
#define casacore
&lt;X11/Intrinsic.h&gt; #defines true, false, casacore::Bool, and String.
Definition: X11Intrinsic.h:42