/******************************************************************************* * * TRIQS: a Toolbox for Research in Interacting Quantum Systems * * Copyright (C) 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_MATRIX_STACK_VIEW_H #define TRIQS_ARRAYS_MATRIX_STACK_VIEW_H #include "./array.hpp" #include "./matrix.hpp" #include "./matrix_view_proxy.hpp" #include namespace triqs { namespace arrays { template class matrix_stack_view { public: typedef array_view array_view_t; matrix_stack_view( typename array_view_t::view_type const & a_):a(a_) {} matrix_stack_view( array_view_t && a_):a(std::move(a_)) {} #ifdef TRIQS_WITH_PYTHON_SUPPORT /// Build from a numpy.array (X is a borrowed reference) : throws if X is not a numpy.array explicit matrix_stack_view (PyObject * X):a(typename array_view_t::view_type (X)){} #endif matrix_view_proxy operator()(size_t i) { return matrix_view_proxy (a,i);} const_matrix_view_proxy operator()(size_t i) const { return const_matrix_view_proxy (a,i);} matrix_view view(size_t i) const { return a(i,range(),range());} size_t size() const { return a.shape(0);} size_t dim0() const { return a.shape(1);} size_t dim1() const { return a.shape(2);} matrix_stack_view & operator +=(matrix_stack_view const & arg) { a += arg.a; return *this; } matrix_stack_view & operator -=(matrix_stack_view const & arg) { a -= arg.a; return *this; } template typename std::enable_if::type operator +=(RHS const & arg) { for (size_t i=0; i typename std::enable_if::type operator -=(RHS const & arg) { for (size_t i=0; i matrix_stack_view & operator *=(RHS const & arg) { a*= arg; return *this; } template matrix_stack_view & operator /=(RHS const & arg) { a/= arg; return *this; } void invert() {for (size_t i=0; i const & L, matrix_stack_view const & M, matrix_view const & R) { matrix_stack_view res (typename array_view_t::regular_type (M.size(), L.dim0(), R.dim1())); for (size_t i=0; i const & L, matrix_stack_view const & M, matrix_view const & R) { if ((dim0() != L.dim0()) || (dim1() != R.dim1()) || (L.dim1() != R.dim0())) TRIQS_RUNTIME_ERROR << "dimensions do not match!"; for (size_t i=0; i