3
0
mirror of https://github.com/triqs/dft_tools synced 2024-12-25 05:43:40 +01:00
dft_tools/pytriqs
Olivier Parcollet 7cf7d09c77 Fix #112 and put back g +=/-= matrix for imfreq
- The issue comes from the fact that the default generated
  += and co by the Python API is the one for immutable types, like int.
- Indeed, in python, for an int :
  x=1
  id(x)
  140266967205832
  x+=1
  id(x)
  140266967205808
- For a mutable type, like a gf, it is necessary to
  add explicitly the xxx_inplace_add functions.
- Added :
   - the generation of the inplace_xxx functions
   - a method in class_ in the wrapper generator that
     deduce all += operator from the + operators.
   - this assumes that the +=, ... are defined in C++.
   - The generation of such operators are optional, with option
     with_inplace_operators in the arithmetic flag.
- Also, added the overload g += M and g -= M for
  g : GfImfreq, M a complex matrix.
  Mainly for legacy Python codes.
2014-09-06 19:07:34 +02:00
..
archive More prettification: can not --> cannot 2014-07-16 23:30:05 +02:00
dos More prettification: can not --> cannot 2014-07-16 23:30:05 +02:00
fit First commit : triqs libs version 1.0 alpha1 2013-07-17 19:24:07 +02:00
gf Fix #112 and put back g +=/-= matrix for imfreq 2014-09-06 19:07:34 +02:00
lattice Wrapper : clean and document. 2014-05-31 16:10:07 +02:00
operators Fix #101 operator: add python wrapper for is_zero 2014-07-03 19:23:32 +02:00
parameters Wrapper : clean and document. 2014-05-31 16:10:07 +02:00
plot More prettification: can not --> cannot 2014-07-16 23:30:05 +02:00
random_generator wrapper: add use_module 2014-05-30 19:34:13 +02:00
sumk First commit : triqs libs version 1.0 alpha1 2013-07-17 19:24:07 +02:00
utility pytriqs: add option to use mpi4py instead of boost.python.mpi 2013-12-30 22:32:09 +01:00
wrap_generator Fix #112 and put back g +=/-= matrix for imfreq 2014-09-06 19:07:34 +02:00
__init__.py Wrapper : clean and document. 2014-05-31 16:10:07 +02:00
__init__.py.template First commit : triqs libs version 1.0 alpha1 2013-07-17 19:24:07 +02:00
CMakeLists.txt Cmake. Fix #97 and #89 2014-07-02 21:44:51 +02:00
magic.py.in magic : redirect std::cout to python sys.out.write 2014-06-11 16:25:47 +02:00
version.py.in Work on documentation 2013-09-17 14:55:55 +02:00