/******************************************************************************* * * TRIQS: a Toolbox for Research in Interacting Quantum Systems * * Copyright (C) 2011-2013 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 . * ******************************************************************************/ #ifndef TRIQS_ARRAYS_EXPRESSION_VECTOR_ALGEBRA_H #define TRIQS_ARRAYS_EXPRESSION_VECTOR_ALGEBRA_H #include "./tools.hpp" #include "../matrix.hpp" namespace triqs { namespace arrays { template struct vector_expr : TRIQS_CONCEPT_TAG_NAME(ImmutableVector) { typedef typename std::remove_reference::type L_t; typedef typename std::remove_reference::type R_t; static_assert( get_rank::value==0 || get_rank::value==0 || get_rank::value == get_rank::value, "rank mismatch in array operations"); typedef typename std::result_of(typename L_t::value_type,typename R_t::value_type)>::type value_type; typedef typename std::remove_reference::type>::type domain_type; L l; R r; template vector_expr(LL && l_, RR && r_) : l(std::forward(l_)), r(std::forward(r_)) {} domain_type domain() const { return combine_domain()(l,r); } //mini_vector shape() const { return this->domain().lengths();} size_t size() const { return this->domain().lengths()[0];} template value_type operator[](KeyType && key) const { return utility::operation()(l[std::forward(key)] , r[std::forward(key)]);} template value_type operator()(Args && ... args) const { return utility::operation()(l(std::forward(args)...) , r(std::forward(args)...));} friend std::ostream &operator <<(std::ostream &sout, vector_expr const &expr){return sout << "("<::name << " "< make_vector(vector_expr const & e) { return e;} }; template // a special case : the unary operator ! struct vector_unary_m_expr : TRIQS_CONCEPT_TAG_NAME(ImmutableVector) { typedef typename std::remove_reference::type L_t; typedef typename L_t::value_type value_type; typedef typename L_t::domain_type domain_type; L l; template vector_unary_m_expr(LL && l_) : l(std::forward(l_)) {} domain_type domain() const { return l.domain(); } //mini_vector shape() const { return this->domain().lengths();} size_t size() const { return this->domain().lengths()[0];} template value_type operator[](KeyType&& key) const {return -l[std::forward(key)];} template value_type operator()(Args && ... args) const { return -l(std::forward(args)...);} friend std::ostream &operator <<(std::ostream &sout, vector_unary_m_expr const &expr){return sout << '-'< make_vector(vector_unary_m_expr const & e) { return e;} }; // Now we can define all the C++ operators ... #define DEFINE_OPERATOR(TAG, OP, TRAIT1, TRAIT2) \ template\ typename std::enable_if::value && TRAIT2 ::value,\ vector_expr::type, typename node_t::type>>::type\ operator OP (A1 && a1, A2 && a2) { return {std::forward(a1),std::forward(a2)};} #define DELETE_OPERATOR(TAG, OP, TRAIT1, TRAIT2) \ template\ typename std::enable_if::value && TRAIT2 ::value, vector_expr>::type\ operator OP (A1 && a1, A2 && a2) = delete; DEFINE_OPERATOR(plus, +, ImmutableVector,ImmutableVector); DEFINE_OPERATOR(minus, -, ImmutableVector,ImmutableVector); DELETE_OPERATOR(multiplies, *, ImmutableVector,ImmutableVector); DELETE_OPERATOR(divides, /, ImmutableVector,ImmutableVector); DEFINE_OPERATOR(multiplies, *, is_in_ZRC,ImmutableVector); DEFINE_OPERATOR(multiplies, *, ImmutableVector,is_in_ZRC); DEFINE_OPERATOR(divides, /, ImmutableVector,is_in_ZRC); #undef DEFINE_OPERATOR // the unary is special template typename std::enable_if< ImmutableVector::value, vector_unary_m_expr::type > >::type operator - (A1 && a1) { return {std::forward(a1)};} }}//namespace triqs::arrays #endif