/*******************************************************************************
*
* TRIQS: a Toolbox for Research in Interacting Quantum Systems
*
* Copyright (C) 2011 by O. Parcollet
*
* TRIQS is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* TRIQS. If not, see .
*
******************************************************************************/
#include "./common.hpp"
#define ARRAY_DEBUG_SLICE
#include "./src/array.hpp"
#include
using std::cout; using std::endl;
using namespace triqs::arrays;
///
template
void print_in_indexmap_order (std::ostream & out, IM const & im, A const & a) {
out<<"[";
//for (typename IM::iterator it(im); it; ++it) out<
void f(AA & A) {
for (int i =0; i<2; ++i)
for (int j=0; j<3; ++j)
for (int k=0; k<4; ++k)
A(i,j,k) = 100*(i+1)+ 10*(j+1) + (k+1);
print_in_indexmap_order(std::cout,A.indexmap(),A);std::cout< > > A0 (2,3,4);
//array > > A1 (2,3,4);
//array > > A2 (2,3,4);
// permutation in triqs::arrays
array A0 (2,3,4);
array A1 (2,3,4);
array A2 (2,3,4);
array A3 (2,3,4);
array A4 (2,3,4,FORTRAN_LAYOUT);
f(A0);
f(A1);
f(A2);
f(A3);
f(A4);
}
catch (const char * ERR) {
std::cout<<"Error is "<