mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 11:43:47 +01:00
11 lines
253 B
C++
11 lines
253 B
C++
|
#include <triqs/arrays.hpp>
|
||
|
#include <iostream>
|
||
|
using namespace triqs::arrays;
|
||
|
int main() {
|
||
|
auto a = array<double, 2>(2, 3);
|
||
|
std::cout << get_shape(a) << std::endl;
|
||
|
std::cout << first_dim(a) << std::endl;
|
||
|
std::cout << second_dim(a) << std::endl;
|
||
|
}
|
||
|
|