/******************************************************************************* * * 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" #include #include #include #include #include #include using namespace triqs::arrays; template void test() { Vd a(2),aa(2),c(2) ;a()=2.0; c() = 1; Vi b(2);b()=3; std::cerr << blas::dot(a,b) << std::endl; aa = 2*a; assert_close( dot(a,b), 12); assert_close( dot(aa,a), 16); assert_close( dot(aa,b), 24); assert_close( dot(aa-a,b), 12); std::cerr << dot(aa,a) << std::endl ; std::cerr << dot(aa,b) << std::endl ; std::cerr << dot(aa-a, b) << std::endl; std::cerr<< "---------------------"< , vector >(); /// Added by I. Krivenko, #122 /// test the complex version, specially with the zdotu workaround on Os X. vector> v(2); v(0) = 0; v(1) = {0, 1}; std::cerr << v << std::endl; std::cerr << blas::dot(v, v) << std::endl; std::cerr << blas::dot(v, v) << std::endl; assert_close( dot(v,v), -1); assert_close( dotc(v,v), 1); // does not work for array just because of .size() vs .shape(0)... //test , array >(); //test , vector >(); //test , array >(); }