Doxygen
1.9.1
|
Files | |
file | tsgIndexSets.hpp |
Data structures for storing multi-indexes and floating point values. | |
file | tsgHardCodedTabulatedRules.hpp |
Hard-coded nodes and weights. | |
file | tsgSequenceOptimizer.hpp |
Algorithms for computing greedy sequences. | |
file | tsgGridCore.hpp |
Definition for the base grid class. | |
Classes | |
class | TasGrid::Data2D< T > |
Generic 2D data structure divided into contiguous strips of fixed length (similar to a matrix). More... | |
class | TasGrid::MultiIndexSet |
Class that stores multi-indexes in sorted (lexicographical) order. More... | |
class | TasGrid::StorageSet |
Class that stores values, i.e., model outputs, the order of the values is in sync with the order of some MultiIndexSet. More... | |
Functions | |
template<typename T > | |
std::vector< T > | TasGrid::spltVector2D (std::vector< T > const &x, size_t stride, int ibegin, int iend) |
Take a vector logically organized into stips and strides and extract a sub-strip from every strip. More... | |
std::vector<T> TasGrid::spltVector2D | ( | std::vector< T > const & | x, |
size_t | stride, | ||
int | ibegin, | ||
int | iend | ||
) |
Take a vector logically organized into stips and strides and extract a sub-strip from every strip.
Used in copy subset of the values and the Data2D surplusses. The vector is organized in strips with the given stride and the returned vector has the same number of strips but containing the data between the ibegin and iend (not including iend).