| 
    Sacado Package Browser (Single Doxygen Collection)
    Version of the Day
    
   | 
 
Derivative array storage class using static memory allocation. More...
#include <Sacado_Fad_Exp_StaticStorage.hpp>
Classes | |
| struct | apply | 
| Turn StaticStorage into a meta-function class usable with mpl::apply.  More... | |
| struct | apply_N | 
| Replace static derivative length (interpreted as a fixed length)  More... | |
Public Types | |
| typedef std::remove_cv< T >::type | value_type | 
Public Member Functions | |
| KOKKOS_INLINE_FUNCTION | StaticStorage () | 
| Default constructor.  More... | |
| KOKKOS_INLINE_FUNCTION | StaticStorage (const T &x) | 
| Constructor with value.  More... | |
| KOKKOS_INLINE_FUNCTION | StaticStorage (const int sz, const T &x, const DerivInit zero_out) | 
Constructor with size sz.  More... | |
| KOKKOS_INLINE_FUNCTION | StaticStorage (const StaticStorage &x) | 
| Copy constructor.  More... | |
| KOKKOS_INLINE_FUNCTION | ~StaticStorage () | 
| Destructor.  More... | |
| KOKKOS_INLINE_FUNCTION  StaticStorage &  | operator= (const StaticStorage &x) | 
| Assignment.  More... | |
| KOKKOS_INLINE_FUNCTION int | size () const | 
| Returns number of derivative components.  More... | |
| KOKKOS_INLINE_FUNCTION int | length () const | 
| Returns array length.  More... | |
| KOKKOS_INLINE_FUNCTION void | resize (int sz) | 
| Resize the derivative array to sz.  More... | |
| KOKKOS_INLINE_FUNCTION void | resizeAndZero (int sz) | 
| Resize the derivative array to sz.  More... | |
| KOKKOS_INLINE_FUNCTION void | expand (int sz) | 
| Expand derivative array to size sz.  More... | |
| KOKKOS_INLINE_FUNCTION void | zero () | 
| Zero out derivative array.  More... | |
| KOKKOS_INLINE_FUNCTION const T & | val () const | 
| Returns value.  More... | |
| KOKKOS_INLINE_FUNCTION T & | val () | 
| Returns value.  More... | |
| KOKKOS_INLINE_FUNCTION const T * | dx () const | 
| Returns derivative array.  More... | |
| KOKKOS_INLINE_FUNCTION T | dx (int i) const | 
Returns derivative component i with bounds checking.  More... | |
| KOKKOS_INLINE_FUNCTION T & | fastAccessDx (int i) | 
Returns derivative component i without bounds checking.  More... | |
| KOKKOS_INLINE_FUNCTION const T & | fastAccessDx (int i) const | 
Returns derivative component i without bounds checking.  More... | |
Static Public Attributes | |
| static constexpr bool | is_statically_sized = false | 
| static constexpr int | static_size = 0 | 
Protected Attributes | |
| T | val_ | 
| Value.  More... | |
| T | dx_ [Num] | 
| Derivative array.  More... | |
| int | sz_ | 
| Size of derivative array.  More... | |
Derivative array storage class using static memory allocation.
This class uses a statically allocated array whose dimension is fixed by the template parameter Num. 
Definition at line 49 of file Sacado_Fad_Exp_StaticStorage.hpp.
| typedef std::remove_cv<T>::type Sacado::Fad::Exp::StaticStorage< T, Num >::value_type | 
Definition at line 53 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Default constructor.
Definition at line 71 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Constructor with value.
Definition at line 76 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Constructor with size sz. 
Initializes derivative array 0 of length sz 
Definition at line 84 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Copy constructor.
Definition at line 96 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Destructor.
Definition at line 105 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Assignment.
Definition at line 109 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Returns number of derivative components.
Definition at line 122 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Returns array length.
Definition at line 126 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Resize the derivative array to sz.
Definition at line 130 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Resize the derivative array to sz.
This method doest not preserve any existing derivative components but sets any that are added to zero.
Definition at line 144 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Expand derivative array to size sz.
This method preserves any existing derivative components and sets any that are added to zero.
Definition at line 160 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Zero out derivative array.
Definition at line 173 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Returns value.
Definition at line 177 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Returns value.
Definition at line 181 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Returns derivative array.
Definition at line 185 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Returns derivative component i with bounds checking. 
Definition at line 189 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Returns derivative component i without bounds checking. 
Definition at line 193 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  inline | 
Returns derivative component i without bounds checking. 
Definition at line 197 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  static | 
Definition at line 54 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  static | 
Definition at line 55 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  protected | 
Definition at line 202 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  protected | 
Derivative array.
Definition at line 205 of file Sacado_Fad_Exp_StaticStorage.hpp.
      
  | 
  protected | 
Size of derivative array.
Definition at line 208 of file Sacado_Fad_Exp_StaticStorage.hpp.
 1.8.5