00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
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_) { ss_array<T>::copy(x.dx_, dx_, sz_); }
00070
00072 ~StaticStorage() {}
00073
00075 StaticStorage& operator=(const StaticStorage& x) {
00076 val_ = x.val_;
00077 sz_ = x.sz_;
00078 ss_array<T>::copy(x.dx_, dx_, sz_);
00079 return *this;
00080 }
00081
00083 int size() const { return sz_;}
00084
00086 void resize(int sz) {
00087 #ifdef SACADO_DEBUG
00088 if (sz > Num)
00089 throw "StaticStorage::resize() Error: Supplied derivative dimension exceeds maximum length.";
00090 #endif
00091 sz_ = sz;
00092 }
00093
00095 void zero() { ss_array<T>::zero(dx_, sz_); }
00096
00097 public:
00098
00100 T val_;
00101
00103 T dx_[Num];
00104
00106 int sz_;
00107
00108 };
00109
00110 }
00111
00112 }
00113
00114 #endif // SACADO_FAD_STATICSTORAGE_HPP