.. _welcome: Welcome ======= TRIQS is a scientific project that provides a set of tools for the study of interacting quantum systems. It allows to quickly implement many-body calculations and explore new theoretical and phenomenological ideas within a flexible, easy-to-use python environment (à la Matlab). Powerful c++ libraries ---------------------- .. code-block:: c++ #include #include #include using triqs::arrays::array; using triqs::arrays::matrix; using triqs::clef::placeholder; int main(){ placeholder<0> i_; placeholder<1> j_; matrix A(2,2); A(i_,j_) << i_+j_; matrix B = inverse(A); double C = determinant(A); std::cout << "A^(-1) = "<< B << std::endl; std::cout << "det(A) = " <