2013-07-17 19:24:07 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
#include "./common.hpp"
|
|
|
|
#include "./src/array.hpp"
|
|
|
|
#include "./src/vector.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
namespace tqa=triqs::arrays;
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::cout << "With swap"<< std::endl;
|
|
|
|
{
|
|
|
|
triqs::arrays::vector<double> V(3), W(4);;
|
|
|
|
V() = 3; W()=4;
|
|
|
|
|
|
|
|
auto VV = V(tqa::range (0,2));
|
|
|
|
auto VW = W(tqa::range (0,2));
|
|
|
|
|
|
|
|
std::cout << "V = "<< V << " W = " << W<< " V view "<< VV<< " W view "<< VW<< std::endl;
|
|
|
|
swap(V,W);
|
|
|
|
std::cout << "V = "<< V << " W = " << W<< " V view "<< VV<< " W view "<< VW<< std::endl;
|
|
|
|
swap(VV,VW);
|
|
|
|
std::cout << "V = "<< V << " W = " << W<< " V view "<< VV<< " W view "<< VW<< std::endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "With std::swap"<< std::endl;
|
|
|
|
|
|
|
|
{
|
|
|
|
triqs::arrays::vector<double> V(3), W(4);;
|
|
|
|
V() = 3; W()=4;
|
|
|
|
|
2013-06-25 22:29:14 +02:00
|
|
|
std::cout << "V = "<< V << " W = " << W<< std::endl;
|
2013-07-17 19:24:07 +02:00
|
|
|
std::swap(V,W);
|
2013-06-25 22:29:14 +02:00
|
|
|
std::cout << "V = "<< V << " W = " << W<< std::endl;
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
// This does NOT compile, the std::swap specialization is deleted.
|
2013-06-25 22:29:14 +02:00
|
|
|
auto VV = V(tqa::range (0,2));
|
|
|
|
auto VW = W(tqa::range (0,2));
|
2013-07-17 19:24:07 +02:00
|
|
|
//std::swap(VV,VW);
|
|
|
|
|
|
|
|
}
|
|
|
|
std::cout << "With deep_swap"<< std::endl;
|
|
|
|
|
|
|
|
{
|
|
|
|
triqs::arrays::vector<double> V(3), W(3);;
|
|
|
|
V() = 3; W()=4;
|
|
|
|
|
|
|
|
auto VV = V(tqa::range (0,2));
|
|
|
|
auto VW = W(tqa::range (0,2));
|
|
|
|
|
|
|
|
std::cout << "V = "<< V << " W = " << W<< " V view "<< VV<< " W view "<< VW<< std::endl;
|
|
|
|
deep_swap(V,W);
|
|
|
|
std::cout << "V = "<< V << " W = " << W<< " V view "<< VV<< " W view "<< VW<< std::endl;
|
|
|
|
deep_swap(VV,VW);
|
|
|
|
std::cout << "V = "<< V << " W = " << W<< " V view "<< VV<< " W view "<< VW<< std::endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|