3
0
mirror of https://github.com/triqs/dft_tools synced 2024-12-25 05:43:40 +01:00
Go to file
Olivier Parcollet 7aedaef945 arrays : fix matrix = scalar for complex types
Pb :
M() = rhs; // rhs of type RHS
Currenlty does :
M(i,j) = (i==j ? rhs : RHS{})
Changed to
M(i,j) = (i==j ? rhs : RHS{0*rhs})

If RHS is a double, int ... Same result.
If RHS is a matrix, gf, currently the offdiag elements
are default constructed (i.e. of 0 size !).
Which can break operations later (matrix<matrix<double>>)
After change : all elements have the same size !
2014-02-12 21:50:58 +01:00
cmake Remove default c++14 flags on clang 3.4 ... 2014-01-28 20:59:05 +01:00
doc doc: small tutorial for the GF's 2014-01-20 17:49:47 +01:00
foreignlibs Get rid of boost compilation from sources 2013-09-02 14:26:32 +02:00
packaging/os_x install : update boost.rb 2013-12-21 13:25:37 +01:00
pytriqs arrays: to_python now raise exception when array is empty 2014-02-04 15:04:40 +01:00
shells Better name for run_pytriqs_for_test 2013-08-02 10:15:05 +02:00
test Add statistic tools 2014-02-12 09:41:07 +01:00
triqs arrays : fix matrix = scalar for complex types 2014-02-12 21:50:58 +01:00
.clang-format mc_tools: simplify measure_aux 2014-01-30 20:28:30 +01:00
CITATIONS.bib First commit : triqs libs version 1.0 alpha1 2013-07-17 19:24:07 +02:00
CMakeLists.txt Fix #40 2013-12-17 21:38:11 +01:00
COPYING.txt First commit : triqs libs version 1.0 alpha1 2013-07-17 19:24:07 +02:00
LICENSE.txt First commit : triqs libs version 1.0 alpha1 2013-07-17 19:24:07 +02:00
README.txt First commit : triqs libs version 1.0 alpha1 2013-07-17 19:24:07 +02:00

 
The TRIQS website is under http://ipht.cea.fr/triqs. Start there
to learn about TRIQS.

To install TRIQS, follow the installation steps given under
http://ipht.cea.fr/triqs/doc/user_manual/install/install.html

Before you proceed, make sure you have read the LICENSE.txt file.

Enjoy!

The TRIQS team