#include using namespace triqs::arrays; int main() { array A(2, 2); matrix M(2, 2); // M + A; // --> ERROR. Rejected by the compiler. M + make_matrix_view(A); //--> OK. }