00001 // $Id: Sacado_Fad_StaticStorage.hpp,v 1.8 2007/11/14 00:18:18 etphipp Exp $ 00002 // $Source: /space/CVS/Trilinos/packages/sacado/src/Sacado_Fad_StaticStorage.hpp,v $ 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 // @HEADER 00031 00032 #ifndef SACADO_FAD_STATICSTORAGE_HPP 00033 #define SACADO_FAD_STATICSTORAGE_HPP 00034 00035 #include "Sacado_ConfigDefs.h" 00036 #include "Sacado_StaticArrayTraits.hpp" 00037 00038 namespace Sacado { 00039 00040 namespace Fad { 00041 00043 00047 template <typename T, int Num> 00048 class StaticStorage { 00049 00050 public: 00051 00053 StaticStorage(const T & x) : val_(x), sz_(0) {} 00054 00056 00059 StaticStorage(const int sz, const T & x) : val_(x), sz_(sz) { 00060 #ifdef SACADO_DEBUG 00061 if (sz > Num) 00062 throw "StaticStorage::StaticStorage() Error: Supplied derivative dimension exceeds maximum length."; 00063 #endif 00064 ss_array<T>::zero(dx_, sz_); 00065 } 00066 00068 StaticStorage(const StaticStorage& x) : 00069 val_(x.val_), sz_(x.sz_) { 00070 //ss_array<T>::copy(x.dx_, dx_, sz_); 00071 for (int i=0; i<sz_; i++) 00072 dx_[i] = x.dx_[i]; 00073 } 00074 00076 ~StaticStorage() {} 00077 00079 StaticStorage& operator=(const StaticStorage& x) { 00080 val_ = x.val_; 00081 sz_ = x.sz_; 00082 //ss_array<T>::copy(x.dx_, dx_, sz_); 00083 for (int i=0; i<sz_; i++) 00084 dx_[i] = x.dx_[i]; 00085 return *this; 00086 } 00087 00089 int size() const { return sz_;} 00090 00092 void resize(int sz) { 00093 #ifdef SACADO_DEBUG 00094 if (sz > Num) 00095 throw "StaticStorage::resize() Error: Supplied derivative dimension exceeds maximum length."; 00096 #endif 00097 sz_ = sz; 00098 } 00099 00101 void zero() { ss_array<T>::zero(dx_, sz_); } 00102 00103 public: 00104 00106 T val_; 00107 00109 T dx_[Num]; 00110 00112 int sz_; 00113 00114 }; // class StaticStorage 00115 00116 } // namespace Fad 00117 00118 } // namespace Sacado 00119 00120 #endif // SACADO_FAD_STATICSTORAGE_HPP
1.4.7