|
Sacado Package Browser (Single Doxygen Collection) Version of the Day
|
00001 // $Id$ 00002 // $Source$ 00003 // @HEADER 00004 // *********************************************************************** 00005 // 00006 // Sacado Package 00007 // Copyright (2006) Sandia Corporation 00008 // 00009 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00010 // the U.S. Government retains certain rights in this software. 00011 // 00012 // This library is free software; you can redistribute it and/or modify 00013 // it under the terms of the GNU Lesser General Public License as 00014 // published by the Free Software Foundation; either version 2.1 of the 00015 // License, or (at your option) any later version. 00016 // 00017 // This library is distributed in the hope that it will be useful, but 00018 // WITHOUT ANY WARRANTY; without even the implied warranty of 00019 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00020 // Lesser General Public License for more details. 00021 // 00022 // You should have received a copy of the GNU Lesser General Public 00023 // License along with this library; if not, write to the Free Software 00024 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00025 // USA 00026 // Questions? Contact David M. Gay (dmgay@sandia.gov) or Eric T. Phipps 00027 // (etphipp@sandia.gov). 00028 // 00029 // *********************************************************************** 00030 // 00031 // The forward-mode AD classes in Sacado are a derivative work of the 00032 // expression template classes in the Fad package by Nicolas Di Cesare. 00033 // The following banner is included in the original Fad source code: 00034 // 00035 // ************ DO NOT REMOVE THIS BANNER **************** 00036 // 00037 // Nicolas Di Cesare <Nicolas.Dicesare@ann.jussieu.fr> 00038 // http://www.ann.jussieu.fr/~dicesare 00039 // 00040 // CEMRACS 98 : C++ courses, 00041 // templates : new C++ techniques 00042 // for scientific computing 00043 // 00044 //******************************************************** 00045 // 00046 // A short implementation ( not all operators and 00047 // functions are overloaded ) of 1st order Automatic 00048 // Differentiation in forward mode (FAD) using 00049 // EXPRESSION TEMPLATES. 00050 // 00051 //******************************************************** 00052 // @HEADER 00053 00054 #ifndef SACADO_FAD_GENERALFAD_HPP 00055 #define SACADO_FAD_GENERALFAD_HPP 00056 00057 #include "Sacado_Fad_Expression.hpp" 00058 #include "Sacado_dummy_arg.hpp" 00059 00060 namespace Sacado { 00061 00063 namespace Fad { 00064 00066 00071 template <typename T, typename Storage> 00072 class GeneralFad : public Storage { 00073 00074 public: 00075 00077 typedef T value_type; 00078 00080 typedef typename ScalarType<T>::type scalar_type; 00081 00086 00088 GeneralFad() : Storage(T(0.)), update_val_(true) {} 00089 00091 00094 GeneralFad(const T & x) : Storage(x), update_val_(true) {} 00095 00097 00100 GeneralFad(const int sz, const T & x) : 00101 Storage(sz, x), update_val_(true) {} 00102 00104 00109 GeneralFad(const int sz, const int i, const T & x) : 00110 Storage(sz, x), update_val_(true) { 00111 this->fastAccessDx(i)=1.; 00112 } 00113 00115 GeneralFad(const GeneralFad& x) : 00116 Storage(x), update_val_(x.update_val_) {} 00117 00119 template <typename S> GeneralFad(const Expr<S>& x); 00120 00122 ~GeneralFad() {} 00123 00125 00131 void diff(const int ith, const int n); 00132 00134 void setUpdateValue(bool update_val) { update_val_ = update_val; } 00135 00137 bool updateValue() const { return update_val_; } 00138 00140 template <typename S> 00141 bool isEqualTo(const Expr<S>& x) const { 00142 typedef IsEqual<value_type> IE; 00143 if (x.size() != this->size()) return false; 00144 bool eq = IE::eval(x.val(), this->val()); 00145 for (int i=0; i<this->size(); i++) 00146 eq = eq && IE::eval(x.dx(i), this->dx(i)); 00147 return eq; 00148 } 00149 00151 00156 00161 int availableSize() const { return this->length(); } 00162 00164 bool hasFastAccess() const { return this->size()!=0; } 00165 00167 bool isPassive() const { return this->size()==0; } 00168 00170 void setIsConstant(bool is_const) { 00171 if (is_const && this->size()!=0) 00172 this->resize(0); 00173 } 00174 00176 00181 00183 GeneralFad& operator=(const T& val); 00184 00186 GeneralFad& 00187 operator=(const GeneralFad& x); 00188 00190 template <typename S> 00191 GeneralFad& operator=(const Expr<S>& x); 00192 00194 00199 00201 GeneralFad& operator += (const T& x); 00202 00204 GeneralFad& operator -= (const T& x); 00205 00207 GeneralFad& operator *= (const T& x); 00208 00210 GeneralFad& operator /= (const T& x); 00211 00213 00217 GeneralFad& operator += (const typename dummy<value_type,scalar_type>::type& x); 00218 00220 00224 GeneralFad& operator -= (const typename dummy<value_type,scalar_type>::type& x); 00225 00227 00231 GeneralFad& operator *= (const typename dummy<value_type,scalar_type>::type& x); 00232 00234 00238 GeneralFad& operator /= (const typename dummy<value_type,scalar_type>::type& x); 00239 00241 template <typename S> 00242 GeneralFad& operator += (const Expr<S>& x); 00243 00245 template <typename S> 00246 GeneralFad& operator -= (const Expr<S>& x); 00247 00249 template <typename S> 00250 GeneralFad& operator *= (const Expr<S>& x); 00251 00253 template <typename S> 00254 GeneralFad& operator /= (const Expr<S>& x); 00255 00257 00258 protected: 00259 00261 bool update_val_; 00262 00263 }; // class GeneralFad 00264 00265 } // namespace Fad 00266 00267 } // namespace Sacado 00268 00269 #include "Sacado_Fad_GeneralFadImp.hpp" 00270 00271 #endif // SACADO_FAD_GENERALFAD_HPP
1.7.4