A cube implementation that stores the cube in memory. More...
#include <fstream>#include <vector>#include <ql/errors.hpp>#include <boost/make_shared.hpp>#include <orea/cube/npvcube.hpp>#include <set>Go to the source code of this file.
Classes | |
| class | InMemoryCubeBase< T > |
| InMemoryCube stores the cube in memory using nested STL vectors. More... | |
| class | InMemoryCube1< T > |
| InMemoryCube of fixed depth 1. More... | |
| class | InMemoryCubeN< T > |
| InMemoryCube of variable depth. More... | |
Namespaces | |
| namespace | ore |
| namespace | ore::analytics |
Typedefs | |
| using | SinglePrecisionInMemoryCube = InMemoryCube1< float > |
| InMemoryCube of depth 1 with single precision floating point numbers. More... | |
| using | DoublePrecisionInMemoryCube = InMemoryCube1< double > |
| InMemoryCube of depth 1 with double precision floating point numbers. More... | |
| using | SinglePrecisionInMemoryCubeN = InMemoryCubeN< float > |
| InMemoryCube of depth N with single precision floating point numbers. More... | |
| using | DoublePrecisionInMemoryCubeN = InMemoryCubeN< double > |
| InMemoryCube of depth N with double precision floating point numbers. More... | |
A cube implementation that stores the cube in memory.
Definition in file inmemorycube.hpp.