mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 19:53:45 +01:00
f2c7d449cc
for earlier commits, see TRIQS0.x repository.
16 lines
554 B
ReStructuredText
16 lines
554 B
ReStructuredText
.. highlight:: c
|
|
|
|
Issue with the complex numbers
|
|
============================================================================
|
|
|
|
There is no standard representation of the complex numbers `std::complex<T>` in hdf5.
|
|
|
|
The classes therefore represent them as arrays of `T` with one more dimension, and
|
|
adding a tag *_complex_* to the array for identification when rereading.
|
|
|
|
* This is compatible with the ALPS 2.0 storage.
|
|
* This is **not** compatible with the regular h5py storage for complex.
|
|
The conversion is made by HDFArchive class automatically.
|
|
|
|
|