2013-07-17 19:24:07 +02:00
|
|
|
//#define TRIQS_ARRAYS_ENFORCE_BOUNDCHECK
|
|
|
|
|
2013-07-29 09:57:07 +02:00
|
|
|
#include <triqs/gfs/two_real_times.hpp>
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2013-07-28 13:28:19 +02:00
|
|
|
//using namespace triqs::gfss::local;
|
|
|
|
using namespace triqs::gfs;
|
2013-07-17 19:24:07 +02:00
|
|
|
namespace tql= triqs::clef;
|
|
|
|
//namespace tqa= triqs::arrays;
|
|
|
|
using tqa::range;
|
|
|
|
using triqs::arrays::make_shape;
|
|
|
|
using triqs::arrays::array;
|
|
|
|
|
|
|
|
#define TEST(X) std::cout << BOOST_PP_STRINGIZE((X)) << " ---> "<< (X) <<std::endl<<std::endl;
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
2013-07-29 11:51:52 +02:00
|
|
|
try {
|
|
|
|
|
2013-07-17 19:24:07 +02:00
|
|
|
//typedef gf<two_real_times> Gf_type;
|
|
|
|
//typedef gf_view<two_real_times> Gf_view_type;
|
|
|
|
|
|
|
|
auto G = make_gf<two_real_times>( 10,100,make_shape(2,2));
|
|
|
|
auto G2 = make_gf<two_real_times>( 10,100,make_shape(2,2));
|
|
|
|
|
|
|
|
//Gf_type G (two_real_times::mesh_t(10,100),make_shape(2,2));
|
|
|
|
//Gf_type G2 (two_real_times::mesh_t(10,100),make_shape(2,2));
|
|
|
|
|
|
|
|
triqs::clef::placeholder<0> t_;
|
|
|
|
triqs::clef::placeholder<1> tp_;
|
|
|
|
|
|
|
|
array<double,2> A(2,2);
|
|
|
|
A(t_,tp_) << t_ - 3*tp_;
|
|
|
|
std::cout <<A << std::endl ;
|
|
|
|
|
|
|
|
G(t_,tp_) << t_ - 3*tp_;
|
2013-07-29 11:51:52 +02:00
|
|
|
G2(t_,tp_) << t_ + 3*tp_;
|
|
|
|
|
|
|
|
G2(t_,tp_) << 2* G(tp_,t_);
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
TEST( G(1,1) );
|
2013-07-28 13:47:42 +02:00
|
|
|
TEST( G[G.mesh()(1,1) ]);
|
2013-07-17 19:24:07 +02:00
|
|
|
TEST( G.on_mesh(1,1));
|
|
|
|
|
|
|
|
//G2(t_,tp_) << G(tp_,t_);
|
|
|
|
TEST( G(2,1) );
|
|
|
|
TEST( G2(1,2) );
|
|
|
|
TEST( G(1,2) );
|
|
|
|
TEST( G2(2,1) );
|
|
|
|
|
|
|
|
//TEST( G2(2,1,3) ); // should not compile
|
|
|
|
|
2013-07-29 11:51:52 +02:00
|
|
|
}
|
|
|
|
catch( std::exception const &e) { std::cout << e.what()<< std::endl;}
|
2013-07-17 19:24:07 +02:00
|
|
|
}
|