mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 11:43:47 +01:00
22 lines
260 B
C++
22 lines
260 B
C++
|
|
||
|
#include <triqs/arrays.hpp>
|
||
|
|
||
|
using namespace triqs::arrays;
|
||
|
|
||
|
template<typename T>
|
||
|
void f(array<T,1> const & M) { std::cout << M << std::endl ;}
|
||
|
|
||
|
void g(array<double,1> const & M) { f(M);}
|
||
|
|
||
|
int main() {
|
||
|
|
||
|
array<double,1> A = {1,2,3};
|
||
|
|
||
|
f(A);
|
||
|
|
||
|
g(2*A);
|
||
|
|
||
|
}
|
||
|
|
||
|
|