mirror of
https://github.com/triqs/dft_tools
synced 2024-10-31 19:23:45 +01:00
f2c7d449cc
for earlier commits, see TRIQS0.x repository.
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);
|
|
|
|
}
|
|
|
|
|