25 template<
typename T>
using Table1D = std::vector<T>;
26 template<
typename T>
using Table2D = std::vector<std::vector<T>>;
27 template<
typename T>
using Table3D = std::vector<std::vector<std::vector<T>>>;
30 auto table1D(
unsigned dim1) -> Table1D<T>
32 return Table1D<T>(dim1);
36 auto table2D(
unsigned dim1,
unsigned dim2) -> Table2D<T>
38 return Table2D<T>(dim1, table1D<T>(dim2));
42 auto table3D(
unsigned dim1,
unsigned dim2,
unsigned dim3) -> Table3D<T>
44 return Table3D<T>(dim1, table2D<T>(dim2, dim3));
The namespace containing all components of the Reaktoro library.
Definition: Algorithms.hpp:29