diff --git a/triqs/3.3.x/_modules/triqs/dos/dos.html b/triqs/3.3.x/_modules/triqs/dos/dos.html index 831119f0fb..4df4c3da70 100644 --- a/triqs/3.3.x/_modules/triqs/dos/dos.html +++ b/triqs/3.3.x/_modules/triqs/dos/dos.html @@ -1787,7 +1787,7 @@
import numpy
-[docs]
+[docs]
class DOS :
r"""
* Stores a density of state of fermions
@@ -1806,7 +1806,7 @@ Source code for triqs.dos.dos
"""
-[docs]
+[docs]
def __init__(self, eps, rho, name = ''):
"""
Parameters
@@ -1852,7 +1852,7 @@ Source code for triqs.dos.dos
"""%self.__dict__
@@ -1861,7 +1861,7 @@ Source code for triqs.dos.dos
return [ {'label' : self.name, 'xlabel' :r'$\epsilon$', 'ylabel' : r'%s$(\epsilon)$'%self.name, 'xdata' : self.eps,'ydata' : self.rho } ]
-[docs]
+[docs]
def density(self,mu=0):
"""Calculates the density of free fermions for the given DOS for chemical potential mu."""
@@ -1885,7 +1885,7 @@ Source code for triqs.dos.dos
##########################################################################
-[docs]
+[docs]
def dos_from_file(Filename, name = '', single_orbital = None):
"""
Read the DOS from a file
@@ -1926,7 +1926,7 @@ Source code for triqs.dos.dos
##########################################################################
-[docs]
+[docs]
class DOSFromFunction(DOS):
"""
* A DOS class, but constructed from a function.
@@ -1934,7 +1934,7 @@ Source code for triqs.dos.dos
* The number of points can be variable and self-adjusted in the Hilbert transform to adapt precision.
"""
-[docs]
+[docs]
def __init__(self, function, x_min, x_max, n_pts=100, name=''):
"""
:param function: * a function :math:`\\epsilon \\rightarrow \\rho(\\epsilon)`
diff --git a/triqs/3.3.x/_modules/triqs/dos/hilbert_transform.html b/triqs/3.3.x/_modules/triqs/dos/hilbert_transform.html
index 9b26813b22..c1e3e61d95 100644
--- a/triqs/3.3.x/_modules/triqs/dos/hilbert_transform.html
+++ b/triqs/3.3.x/_modules/triqs/dos/hilbert_transform.html
@@ -1790,7 +1790,7 @@ Source code for triqs.dos.hilbert_transform
import numpy
-[docs]
+[docs]
class HilbertTransform:
r"""
Computes the Hilbert Transform from a DOS object
@@ -1803,7 +1803,7 @@ Source code for triqs.dos.hilbert_transform
"""
-[docs]
+[docs]
def __init__(self, rho):
"""
:param rho: a DOS object.
@@ -1834,7 +1834,7 @@ Source code for triqs.dos.hilbert_transform
#-------------------------------------------------------------
-[docs]
+[docs]
def __call__ (self, Sigma, mu=0, eta=0, field=None, epsilon_hat=None, result=None,
n_points_integral=None, test_convergence=None):
r"""
diff --git a/triqs/3.3.x/_modules/triqs/gf/backwd_compat/gf_retime.html b/triqs/3.3.x/_modules/triqs/gf/backwd_compat/gf_retime.html
index dfbd2d2e7d..aa3e095ffc 100644
--- a/triqs/3.3.x/_modules/triqs/gf/backwd_compat/gf_retime.html
+++ b/triqs/3.3.x/_modules/triqs/gf/backwd_compat/gf_retime.html
@@ -1787,7 +1787,7 @@ Source code for triqs.gf.backwd_compat.gf_retime
from triqs.gf.meshes import MeshReTime
-[docs]
+[docs]
class GfReTime(Gf) :
"""
Parameters (KEYWORD argument ONLY)
@@ -1816,7 +1816,7 @@ Source code for triqs.gf.backwd_compat.gf_retime
"""
-[docs]
+[docs]
def __init__(self, **kw): # enforce keyword only policy
"""
Same as Gf, but can rebuild the mesh for backward compatibility
diff --git a/triqs/3.3.x/_modules/triqs/gf/block_gf.html b/triqs/3.3.x/_modules/triqs/gf/block_gf.html
index 88522ad21e..a34c92c9c3 100644
--- a/triqs/3.3.x/_modules/triqs/gf/block_gf.html
+++ b/triqs/3.3.x/_modules/triqs/gf/block_gf.html
@@ -1791,7 +1791,7 @@ Source code for triqs.gf.block_gf
from .gf import Gf
-[docs]
+[docs]
def fix_gf_struct_type(gf_struct):
"""For backward compatibility: Convert old gf_struct types to [(str,int), ...]"""
if isinstance(gf_struct,dict):
@@ -1807,14 +1807,14 @@ Source code for triqs.gf.block_gf
-[docs]
+[docs]
def call_factory_from_dict(cl,name, dic):
"""Given a class cl and a dict dic, it calls cl.__factory_from_dict__(dic)"""
return cl.__factory_from_dict__(name, dic)
-[docs]
+[docs]
class BlockGf:
"""
Generic Green's Function by Block.
@@ -1824,7 +1824,7 @@ Source code for triqs.gf.block_gf
# not implemented as a dictionary since we want to be sure of the order !).
-[docs]
+[docs]
def __init__(self, **kwargs):
"""
* There are several possible constructors, which accept only keyword arguments.
@@ -1911,14 +1911,14 @@ Source code for triqs.gf.block_gf
#------------ copy and construction -----------------------------------------------
-[docs]
+[docs]
def copy(self,*args):
"""Returns a (deep) copy of self (i.e. new independent Blocks initialised with self) """
return self.__class__ (name_list = self.__indices[:], block_list = [ g.copy(*args) for g in self.__GFlist],make_copies=False)
-[docs]
+[docs]
def view_selected_blocks(self, selected_blocks):
"""Returns a VIEW of the selected blocks of self, in the same order as self."""
for b in selected_blocks: assert b in self.__indices,"Selected Blocks must be existing blocks"
@@ -1926,7 +1926,7 @@ Source code for triqs.gf.block_gf
-[docs]
+[docs]
def copy_selected_blocks(self, selected_blocks):
"""Returns a COPY of the selected blocks of self, in the same order as self."""
for b in selected_blocks: assert b in self.__indices,"Selected Blocks must be existing blocks"
@@ -1934,7 +1934,7 @@ Source code for triqs.gf.block_gf
-[docs]
+[docs]
def copy_from(self, G2):
"""Copy the Green's function from G2: G2 MUST have the same structure!"""
assert isinstance(G2, BlockGf)
@@ -2008,7 +2008,7 @@ Source code for triqs.gf.block_gf
return str(x).replace(' ','').replace('(','').replace(')','').replace("'",'').replace(',','-')
-[docs]
+[docs]
def save(self, filename, accumulate=False):
""" Save the Green function in i omega_n (as 2 columns).
- accumulate:
@@ -2018,7 +2018,7 @@ Source code for triqs.gf.block_gf
-[docs]
+[docs]
def load(self, filename, no_exception = False):
"""
adjust_temperature: if true,
@@ -2192,20 +2192,20 @@ Source code for triqs.gf.block_gf
#--------------------------------------------------------------------------
-[docs]
+[docs]
def density(self, *args, **kwargs):
"""Returns the density as a dict of density of the blocks"""
return dict( (s,g.density(*args, **kwargs)) for s,g in self )
-[docs]
+[docs]
def total_density(self, *args, **kwargs):
""" Total density of G """
return sum([ g.total_density(*args, **kwargs) for i,g in self ])
@@ -2216,7 +2216,7 @@ Source code for triqs.gf.block_gf
raise RuntimeError("The blocks of this Green Function do not possess the %s method"%ATTR)
-[docs]
+[docs]
def invert(self):
"""Inverse all the blocks inplace"""
self.__check_attr("invert")
@@ -2224,7 +2224,7 @@ Source code for triqs.gf.block_gf
-[docs]
+[docs]
def inverse(self):
"""Return inverse of the BlockGf"""
self.__check_attr("inverse")
@@ -2232,7 +2232,7 @@ Source code for triqs.gf.block_gf
-[docs]
+[docs]
def transpose(self):
"""Return transpose of the BlockGf"""
self.__check_attr("transpose")
@@ -2240,7 +2240,7 @@ Source code for triqs.gf.block_gf
-[docs]
+[docs]
def conjugate(self):
"""Return conjugate of the BlockGf"""
self.__check_attr("conjugate")
diff --git a/triqs/3.3.x/_modules/triqs/gf/descriptor_base.html b/triqs/3.3.x/_modules/triqs/gf/descriptor_base.html
index 015a5bdeab..66092e0852 100644
--- a/triqs/3.3.x/_modules/triqs/gf/descriptor_base.html
+++ b/triqs/3.3.x/_modules/triqs/gf/descriptor_base.html
@@ -1792,10 +1792,10 @@ Source code for triqs.gf.descriptor_base
from .meshes import MeshImFreq, MeshDLRImFreq, MeshReFreq
-[docs]
+[docs]
class LazyCTX:
@@ -1813,19 +1813,19 @@ Source code for triqs.gf.descriptor_base
-[docs]
+[docs]
def is_scalar(x):
return type(x) in [ type(1), type(1.0), type(1j), numpy.ndarray, int, numpy.int_, numpy.int8, numpy.int16, numpy.int32, float, numpy.float32, numpy.float64, complex, numpy.complex64, numpy.complex128 ]
-[docs]
+[docs]
def convert_scalar_to_const(expr):
# if the expression is a pure scalar, replace it by Const
@@ -1844,10 +1844,10 @@ Source code for triqs.gf.descriptor_base
@@ -1855,10 +1855,10 @@ Source code for triqs.gf.descriptor_base
# The Base for any descriptor taking a BlockGf
-[docs]
+[docs]
class BaseBlock(Base):
-[docs]
+[docs]
def __init__ (self, G, *args, **kw):
Base.__init__(self, G = G)
if self.is_block_descriptor():
@@ -1866,7 +1866,7 @@ Source code for triqs.gf.descriptor_base
@@ -1878,7 +1878,7 @@ Source code for triqs.gf.descriptor_base
#########################################################################
-[docs]
+[docs]
class Function (Base):
r"""
Stores a python function
@@ -1886,7 +1886,7 @@ Source code for triqs.gf.descriptor_base
If the Green's function is defined on an array of points :math:`x_i`, then it will be initialized to :math:`F(x_i)`.
"""
-[docs]
+[docs]
def __init__ (self, function):
r"""
:param function: the function :math:`\omega \rightarrow function(\omega)`
@@ -1908,10 +1908,10 @@ Source code for triqs.gf.descriptor_base
#########################################################################
-[docs]
+[docs]
class Const(Base):
@@ -1933,7 +1933,7 @@ Source code for triqs.gf.descriptor_base
#########################################################################
-[docs]
+[docs]
class Omega_(Base):
r"""The function:math:`\omega \rightarrow \omega` """
def __str__(self): return "Omega"
diff --git a/triqs/3.3.x/_sources/documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.rst.txt b/triqs/3.3.x/_sources/documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.rst.txt
index 5b6de7af90..8b2facebf1 100644
--- a/triqs/3.3.x/_sources/documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.rst.txt
+++ b/triqs/3.3.x/_sources/documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.rst.txt
@@ -33,4 +33,4 @@ Documentation
Returns
^^^^^^^
-Reference to the derived iterator after calling the derived iterator's `increment()` function.
\ No newline at end of file
+Copy of the derived iterator before calling the derived iterator's `increment()` function.
\ No newline at end of file
diff --git a/triqs/3.3.x/_sources/documentation/cpp_api/itertools/zip_iter/operator==.rst.txt b/triqs/3.3.x/_sources/documentation/cpp_api/itertools/zip_iter/operator==.rst.txt
index f8255c6c28..f026f6c74a 100644
--- a/triqs/3.3.x/_sources/documentation/cpp_api/itertools/zip_iter/operator==.rst.txt
+++ b/triqs/3.3.x/_sources/documentation/cpp_api/itertools/zip_iter/operator==.rst.txt
@@ -48,4 +48,4 @@ Parameters
Returns
^^^^^^^
-True, if one of the original iterators is equal to the corresponding iterator of the sentinel.
\ No newline at end of file
+True, if all original iterators are equal.
\ No newline at end of file
diff --git a/triqs/3.3.x/documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.html b/triqs/3.3.x/documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.html
index 981125baaf..5eb0d7da31 100644
--- a/triqs/3.3.x/documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.html
+++ b/triqs/3.3.x/documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.html
@@ -1812,7 +1812,7 @@
Documentation
Returns
-Reference to the derived iterator after calling the derived iterator’s increment() function.
+Copy of the derived iterator before calling the derived iterator’s increment() function.
diff --git a/triqs/3.3.x/documentation/cpp_api/itertools/zip_iter/operator==.html b/triqs/3.3.x/documentation/cpp_api/itertools/zip_iter/operator==.html
index 46a90bae99..319cd54ba6 100644
--- a/triqs/3.3.x/documentation/cpp_api/itertools/zip_iter/operator==.html
+++ b/triqs/3.3.x/documentation/cpp_api/itertools/zip_iter/operator==.html
@@ -1830,7 +1830,7 @@ Parameters
Returns
-True, if one of the original iterators is equal to the corresponding iterator of the sentinel.
+True, if all original iterators are equal.
diff --git a/triqs/3.3.x/searchindex.js b/triqs/3.3.x/searchindex.js
index 090be12d18..e980a20aa3 100644
--- a/triqs/3.3.x/searchindex.js
+++ b/triqs/3.3.x/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["ChangeLog", "_templates/autosummary_class_template", "_templates/autosummary_module_template", "about", "applications", "contents", "contributing", "contributing/documentation", "contributing/pull_request", "documentation", "documentation/cpp_api/contents", "documentation/cpp_api/itertools", "documentation/cpp_api/itertools/chunk_range", "documentation/cpp_api/itertools/distance", "documentation/cpp_api/itertools/enum_iter", "documentation/cpp_api/itertools/enum_iter/constructor", "documentation/cpp_api/itertools/enum_iter/dereference", "documentation/cpp_api/itertools/enum_iter/increment", "documentation/cpp_api/itertools/enum_iter/operator==", "documentation/cpp_api/itertools/enumerate", "documentation/cpp_api/itertools/enumerated", "documentation/cpp_api/itertools/enumerated/begin", "documentation/cpp_api/itertools/enumerated/cbegin", "documentation/cpp_api/itertools/enumerated/cend", "documentation/cpp_api/itertools/enumerated/end", "documentation/cpp_api/itertools/enumerated/operator==", "documentation/cpp_api/itertools/foreach", "documentation/cpp_api/itertools/iterator_facade", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator*", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator->", "documentation/cpp_api/itertools/make_product", "documentation/cpp_api/itertools/make_sentinel", "documentation/cpp_api/itertools/make_vector_from_range", "documentation/cpp_api/itertools/multiplied", "documentation/cpp_api/itertools/multiplied/begin", "documentation/cpp_api/itertools/multiplied/cbegin", "documentation/cpp_api/itertools/multiplied/cend", "documentation/cpp_api/itertools/multiplied/constructor", "documentation/cpp_api/itertools/multiplied/end", "documentation/cpp_api/itertools/multiplied/operator==", "documentation/cpp_api/itertools/prod_iter", "documentation/cpp_api/itertools/prod_iter/constructor", "documentation/cpp_api/itertools/prod_iter/dereference", "documentation/cpp_api/itertools/prod_iter/increment", "documentation/cpp_api/itertools/prod_iter/operator==", "documentation/cpp_api/itertools/product", "documentation/cpp_api/itertools/product_range", "documentation/cpp_api/itertools/range", "documentation/cpp_api/itertools/range/begin", "documentation/cpp_api/itertools/range/cbegin", "documentation/cpp_api/itertools/range/cend", "documentation/cpp_api/itertools/range/constructor", "documentation/cpp_api/itertools/range/end", "documentation/cpp_api/itertools/range/first", "documentation/cpp_api/itertools/range/last", "documentation/cpp_api/itertools/range/operator+", "documentation/cpp_api/itertools/range/operator<<", "documentation/cpp_api/itertools/range/operator==", "documentation/cpp_api/itertools/range/size", "documentation/cpp_api/itertools/range/step", "documentation/cpp_api/itertools/sentinel_t", "documentation/cpp_api/itertools/slice", "documentation/cpp_api/itertools/sliced", "documentation/cpp_api/itertools/sliced/begin", "documentation/cpp_api/itertools/sliced/cbegin", "documentation/cpp_api/itertools/sliced/cend", "documentation/cpp_api/itertools/sliced/end", "documentation/cpp_api/itertools/sliced/operator==", "documentation/cpp_api/itertools/sliced/size", "documentation/cpp_api/itertools/stride", "documentation/cpp_api/itertools/stride_iter", "documentation/cpp_api/itertools/stride_iter/constructor", "documentation/cpp_api/itertools/stride_iter/dereference", "documentation/cpp_api/itertools/stride_iter/increment", "documentation/cpp_api/itertools/stride_iter/operator==", "documentation/cpp_api/itertools/strided", "documentation/cpp_api/itertools/strided/begin", "documentation/cpp_api/itertools/strided/cbegin", "documentation/cpp_api/itertools/strided/cend", "documentation/cpp_api/itertools/strided/end", "documentation/cpp_api/itertools/strided/operator==", "documentation/cpp_api/itertools/transform", "documentation/cpp_api/itertools/transform_iter", "documentation/cpp_api/itertools/transform_iter/constructor", "documentation/cpp_api/itertools/transform_iter/dereference", "documentation/cpp_api/itertools/transform_iter/increment", "documentation/cpp_api/itertools/transform_iter/operator=", "documentation/cpp_api/itertools/transform_iter/operator==", "documentation/cpp_api/itertools/transformed", "documentation/cpp_api/itertools/transformed/begin", "documentation/cpp_api/itertools/transformed/cbegin", "documentation/cpp_api/itertools/transformed/cend", "documentation/cpp_api/itertools/transformed/end", "documentation/cpp_api/itertools/zip", "documentation/cpp_api/itertools/zip_iter", "documentation/cpp_api/itertools/zip_iter/constructor", "documentation/cpp_api/itertools/zip_iter/dereference", "documentation/cpp_api/itertools/zip_iter/increment", "documentation/cpp_api/itertools/zip_iter/operator==", "documentation/cpp_api/itertools/zipped", "documentation/cpp_api/itertools/zipped/begin", "documentation/cpp_api/itertools/zipped/cbegin", "documentation/cpp_api/itertools/zipped/cend", "documentation/cpp_api/itertools/zipped/constructor", "documentation/cpp_api/itertools/zipped/end", "documentation/cpp_api/itertools/zipped/operator==", "documentation/cpp_api/mpi", "documentation/cpp_api/mpi/all_gather", "documentation/cpp_api/mpi/all_reduce", "documentation/cpp_api/mpi/all_reduce_in_place", "documentation/cpp_api/mpi/broadcast", "documentation/cpp_api/mpi/chunk", "documentation/cpp_api/mpi/chunk_length", "documentation/cpp_api/mpi/communicator", "documentation/cpp_api/mpi/communicator/abort", "documentation/cpp_api/mpi/communicator/barrier", "documentation/cpp_api/mpi/communicator/constructor", "documentation/cpp_api/mpi/communicator/get", "documentation/cpp_api/mpi/communicator/rank", "documentation/cpp_api/mpi/communicator/size", "documentation/cpp_api/mpi/communicator/split", "documentation/cpp_api/mpi/environment", "documentation/cpp_api/mpi/environment/constructor", "documentation/cpp_api/mpi/gather", "documentation/cpp_api/mpi/get_mpi_type", "documentation/cpp_api/mpi/is_initialized", "documentation/cpp_api/mpi/lazy", "documentation/cpp_api/mpi/lazy/invoke", "documentation/cpp_api/mpi/lazy/shape", "documentation/cpp_api/mpi/map_C_function", "documentation/cpp_api/mpi/map_add", "documentation/cpp_api/mpi/monitor", "documentation/cpp_api/mpi/monitor/constructor", "documentation/cpp_api/mpi/monitor/emergency_occured", "documentation/cpp_api/mpi/monitor/finalize_communications", "documentation/cpp_api/mpi/monitor/operator=", "documentation/cpp_api/mpi/monitor/request_emergency_stop", "documentation/cpp_api/mpi/monitor/root_check_nodes_and_bcast", "documentation/cpp_api/mpi/mpi_broadcast", "documentation/cpp_api/mpi/mpi_gather", "documentation/cpp_api/mpi/mpi_reduce", "documentation/cpp_api/mpi/mpi_reduce_in_place", "documentation/cpp_api/mpi/mpi_scatter", "documentation/cpp_api/mpi/mpi_type", "documentation/cpp_api/mpi/mpi_typeLTconstTGT", "documentation/cpp_api/mpi/mpi_typeLTstd::tupleLTT...GTGT", "documentation/cpp_api/mpi/mpi_type_from_tie", "documentation/cpp_api/mpi/reduce", "documentation/cpp_api/mpi/reduce_in_place", "documentation/cpp_api/mpi/scatter", "documentation/cpp_api/triqs/atom_diag", "documentation/cpp_api/triqs/atom_diag/act", "documentation/cpp_api/triqs/atom_diag/atom_diag", "documentation/cpp_api/triqs/atom_diag/atom_diag/c_connection", "documentation/cpp_api/triqs/atom_diag/atom_diag/c_matrix", "documentation/cpp_api/triqs/atom_diag/atom_diag/cdag_connection", "documentation/cpp_api/triqs/atom_diag/atom_diag/cdag_matrix", "documentation/cpp_api/triqs/atom_diag/atom_diag/constructor", "documentation/cpp_api/triqs/atom_diag/atom_diag/flatten_subspace_index", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_eigensystems", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_eigenvalue", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_energies", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_fock_states", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_fops", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_full_hilbert_space", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_full_hilbert_space_dim", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_gs_energy", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_h_atomic", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_matrix_element_of_monomial", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_op_mat", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_quantum_numbers", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_subspace_dim", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_subspace_dims", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_unitary_matrices", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_unitary_matrix", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_vacuum_state", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_vacuum_subspace_index", "documentation/cpp_api/triqs/atom_diag/atom_diag/index_range_of_subspace", "documentation/cpp_api/triqs/atom_diag/atom_diag/n_subspaces", "documentation/cpp_api/triqs/atom_diag/atomic_density_matrix", "documentation/cpp_api/triqs/atom_diag/atomic_g_iw", "documentation/cpp_api/triqs/atom_diag/atomic_g_l", "documentation/cpp_api/triqs/atom_diag/atomic_g_lehmann", "documentation/cpp_api/triqs/atom_diag/atomic_g_tau", "documentation/cpp_api/triqs/atom_diag/atomic_g_w", "documentation/cpp_api/triqs/atom_diag/partition_function", "documentation/cpp_api/triqs/atom_diag/quantum_number_eigenvalues", "documentation/cpp_api/triqs/atom_diag/quantum_number_eigenvalues_checked", "documentation/cpp_api/triqs/atom_diag/trace_rho_op", "documentation/cpp_api/triqs/det_manip", "documentation/cpp_api/triqs/det_manip/det_manip", "documentation/cpp_api/triqs/det_manip/det_manip/change_col", "documentation/cpp_api/triqs/det_manip/det_manip/change_row", "documentation/cpp_api/triqs/det_manip/det_manip/clear", "documentation/cpp_api/triqs/det_manip/det_manip/complete_operation", "documentation/cpp_api/triqs/det_manip/det_manip/constructor", "documentation/cpp_api/triqs/det_manip/det_manip/determinant", "documentation/cpp_api/triqs/det_manip/det_manip/get_function", "documentation/cpp_api/triqs/det_manip/det_manip/get_n_operations_before_check", "documentation/cpp_api/triqs/det_manip/det_manip/get_precision_error", "documentation/cpp_api/triqs/det_manip/det_manip/get_precision_warning", "documentation/cpp_api/triqs/det_manip/det_manip/get_singular_threshold", "documentation/cpp_api/triqs/det_manip/det_manip/get_x", "documentation/cpp_api/triqs/det_manip/det_manip/get_x_internal_order", "documentation/cpp_api/triqs/det_manip/det_manip/get_y", "documentation/cpp_api/triqs/det_manip/det_manip/get_y_internal_order", "documentation/cpp_api/triqs/det_manip/det_manip/h5_read", "documentation/cpp_api/triqs/det_manip/det_manip/h5_write", "documentation/cpp_api/triqs/det_manip/det_manip/insert", "documentation/cpp_api/triqs/det_manip/det_manip/insert2", "documentation/cpp_api/triqs/det_manip/det_manip/insert2_at_end", "documentation/cpp_api/triqs/det_manip/det_manip/insert_at_end", "documentation/cpp_api/triqs/det_manip/det_manip/inverse_matrix", "documentation/cpp_api/triqs/det_manip/det_manip/inverse_matrix_internal_order", "documentation/cpp_api/triqs/det_manip/det_manip/is_singular", "documentation/cpp_api/triqs/det_manip/det_manip/matrix", "documentation/cpp_api/triqs/det_manip/det_manip/reject_last_try", "documentation/cpp_api/triqs/det_manip/det_manip/remove", "documentation/cpp_api/triqs/det_manip/det_manip/remove2", "documentation/cpp_api/triqs/det_manip/det_manip/remove2_at_end", "documentation/cpp_api/triqs/det_manip/det_manip/remove_at_end", "documentation/cpp_api/triqs/det_manip/det_manip/reserve", "documentation/cpp_api/triqs/det_manip/det_manip/roll_matrix", "documentation/cpp_api/triqs/det_manip/det_manip/set_n_operations_before_check", "documentation/cpp_api/triqs/det_manip/det_manip/set_precision_error", "documentation/cpp_api/triqs/det_manip/det_manip/set_precision_warning", "documentation/cpp_api/triqs/det_manip/det_manip/set_singular_threshold", "documentation/cpp_api/triqs/det_manip/det_manip/size", "documentation/cpp_api/triqs/det_manip/det_manip/swap_col", "documentation/cpp_api/triqs/det_manip/det_manip/swap_row", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_col", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_col_row", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_row", "documentation/cpp_api/triqs/det_manip/det_manip/try_insert", "documentation/cpp_api/triqs/det_manip/det_manip/try_insert_k", "documentation/cpp_api/triqs/det_manip/det_manip/try_refill", "documentation/cpp_api/triqs/det_manip/det_manip/try_remove", "documentation/cpp_api/triqs/det_manip/det_manip/try_remove_k", "documentation/cpp_api/triqs/gfs", "documentation/cpp_api/triqs/gfs/", "documentation/cpp_api/triqs/gfs/block_gf", "documentation/cpp_api/triqs/gfs/block_gf/block_names", "documentation/cpp_api/triqs/gfs/block_gf/block_sizes", "documentation/cpp_api/triqs/gfs/block_gf/constructor", "documentation/cpp_api/triqs/gfs/block_gf/data", "documentation/cpp_api/triqs/gfs/block_gf/h5_read", "documentation/cpp_api/triqs/gfs/block_gf/h5_write", "documentation/cpp_api/triqs/gfs/block_gf/hdf5_format", "documentation/cpp_api/triqs/gfs/block_gf/operator()", "documentation/cpp_api/triqs/gfs/block_gf/operator=", "documentation/cpp_api/triqs/gfs/density", "documentation/cpp_api/triqs/gfs/fit_gf_dlr", "documentation/cpp_api/triqs/gfs/fit_hermitian_tail", "documentation/cpp_api/triqs/gfs/fit_tail", "documentation/cpp_api/triqs/gfs/flatten_2d", "documentation/cpp_api/triqs/gfs/flatten_gf_2d", "documentation/cpp_api/triqs/gfs/get_mesh", "documentation/cpp_api/triqs/gfs/gf", "documentation/cpp_api/triqs/gfs/gf/constructor", "documentation/cpp_api/triqs/gfs/gf/data", "documentation/cpp_api/triqs/gfs/gf/data_shape", "documentation/cpp_api/triqs/gfs/gf/h5_read", "documentation/cpp_api/triqs/gfs/gf/h5_write", "documentation/cpp_api/triqs/gfs/gf/hdf5_format", "documentation/cpp_api/triqs/gfs/gf/mesh", "documentation/cpp_api/triqs/gfs/gf/operator<<", "documentation/cpp_api/triqs/gfs/gf/operator=", "documentation/cpp_api/triqs/gfs/gf/target_indices", "documentation/cpp_api/triqs/gfs/gf/target_shape", "documentation/cpp_api/triqs/gfs/gf_const_view", "documentation/cpp_api/triqs/gfs/gf_const_view/constructor", "documentation/cpp_api/triqs/gfs/gf_const_view/data", "documentation/cpp_api/triqs/gfs/gf_const_view/data_shape", "documentation/cpp_api/triqs/gfs/gf_const_view/h5_read", "documentation/cpp_api/triqs/gfs/gf_const_view/h5_write", "documentation/cpp_api/triqs/gfs/gf_const_view/hdf5_format", "documentation/cpp_api/triqs/gfs/gf_const_view/mesh", "documentation/cpp_api/triqs/gfs/gf_const_view/operator<<", "documentation/cpp_api/triqs/gfs/gf_const_view/rebind", "documentation/cpp_api/triqs/gfs/gf_const_view/target_indices", "documentation/cpp_api/triqs/gfs/gf_const_view/target_shape", "documentation/cpp_api/triqs/gfs/gf_view", "documentation/cpp_api/triqs/gfs/gf_view/constructor", "documentation/cpp_api/triqs/gfs/gf_view/data", "documentation/cpp_api/triqs/gfs/gf_view/data_shape", "documentation/cpp_api/triqs/gfs/gf_view/h5_read", "documentation/cpp_api/triqs/gfs/gf_view/h5_write", "documentation/cpp_api/triqs/gfs/gf_view/hdf5_format", "documentation/cpp_api/triqs/gfs/gf_view/mesh", "documentation/cpp_api/triqs/gfs/gf_view/operator<<", "documentation/cpp_api/triqs/gfs/gf_view/operator=", "documentation/cpp_api/triqs/gfs/gf_view/rebind", "documentation/cpp_api/triqs/gfs/gf_view/target_indices", "documentation/cpp_api/triqs/gfs/gf_view/target_shape", "documentation/cpp_api/triqs/gfs/h5_read_gf_struct", "documentation/cpp_api/triqs/gfs/imag", "documentation/cpp_api/triqs/gfs/impl_tag", "documentation/cpp_api/triqs/gfs/inverse", "documentation/cpp_api/triqs/gfs/is_gf_hermitian", "documentation/cpp_api/triqs/gfs/is_gf_real", "documentation/cpp_api/triqs/gfs/is_gf_real_in_tau", "documentation/cpp_api/triqs/gfs/make_block2_gf", "documentation/cpp_api/triqs/gfs/make_block_gf", "documentation/cpp_api/triqs/gfs/make_block_gf_view", "documentation/cpp_api/triqs/gfs/make_gf_dlr", "documentation/cpp_api/triqs/gfs/make_gf_dlr_imfreq", "documentation/cpp_api/triqs/gfs/make_gf_dlr_imtime", "documentation/cpp_api/triqs/gfs/make_gf_from_fourier", "documentation/cpp_api/triqs/gfs/make_gf_from_inverse_fourier", "documentation/cpp_api/triqs/gfs/make_gf_from_real_gf", "documentation/cpp_api/triqs/gfs/make_gf_imfreq", "documentation/cpp_api/triqs/gfs/make_gf_imtime", "documentation/cpp_api/triqs/gfs/make_hermitian", "documentation/cpp_api/triqs/gfs/make_real_in_tau", "documentation/cpp_api/triqs/gfs/make_zero_tail", "documentation/cpp_api/triqs/gfs/mpi_reduce", "documentation/cpp_api/triqs/gfs/positive_freq_view", "documentation/cpp_api/triqs/gfs/real", "documentation/cpp_api/triqs/gfs/reinterpret_scalar_valued_gf_as_matrix_valued", "documentation/cpp_api/triqs/gfs/tau_L2_norm", "documentation/cpp_api/triqs/gfs/unflatten_2d", "documentation/cpp_api/triqs/gfs/unflatten_gf_2d", "documentation/cpp_api/triqs/hilbert_space", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/begin", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/cbegin", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/cend", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/constructor", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/data", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/end", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/h5_read_attribute", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/h5_write_attribute", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/has_indices", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/insert", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/insert_from_indices_t", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/operator==", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/operator[]", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/size", "documentation/cpp_api/triqs/hilbert_space/hilbert_space", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/constructor", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/get_fock_state", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/get_state_index", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/h5_read", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/h5_write", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/has_state", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/hdf5_format", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/operator!=", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/operator==", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/size", "documentation/cpp_api/triqs/hilbert_space/imperative_operator", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/constructor", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/is_empty", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/operator()", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/update", "documentation/cpp_api/triqs/hilbert_space/make_zero_state", "documentation/cpp_api/triqs/hilbert_space/space_partition", "documentation/cpp_api/triqs/hilbert_space/space_partition/constructor", "documentation/cpp_api/triqs/hilbert_space/space_partition/find_mappings", "documentation/cpp_api/triqs/hilbert_space/space_partition/foreach", "documentation/cpp_api/triqs/hilbert_space/space_partition/get_matrix_elements", "documentation/cpp_api/triqs/hilbert_space/space_partition/lookup_basis_state", "documentation/cpp_api/triqs/hilbert_space/space_partition/merge_subspaces", "documentation/cpp_api/triqs/hilbert_space/space_partition/n_subspaces", "documentation/cpp_api/triqs/hilbert_space/state", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/amplitudes", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/constructor", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/dot_product", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/foreach", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/get_hilbert", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator()", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator*=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator+=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator-=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/set_hilbert", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/size", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/constructor", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/dot_product", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/foreach", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/get_hilbert", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/nterms", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator()", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator*=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator+=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator-=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/set_hilbert", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/size", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/add_fock_state", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/constructor", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_all_fock_states", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_fock_state", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_index", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_state_index", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/h5_read", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/h5_write", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/has_state", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/hdf5_format", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/operator!=", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/operator==", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/set_index", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/size", "documentation/cpp_api/triqs/mc_tools", "documentation/cpp_api/triqs/mc_tools/mc_generic", "documentation/cpp_api/triqs/mc_tools/mc_generic/accumulate", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_measure", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_measure_aux", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_move", "documentation/cpp_api/triqs/mc_tools/mc_generic/clear_measures", "documentation/cpp_api/triqs/mc_tools/mc_generic/collect_results", "documentation/cpp_api/triqs/mc_tools/mc_generic/constructor", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_acceptance_rates", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_accumulation_time", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_accumulation_time_HHMMSS", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_config_id", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_current_cycle_number", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_duration", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_percent", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_rng", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_total_time", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_warmup_time", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_warmup_time_HHMMSS", "documentation/cpp_api/triqs/mc_tools/mc_generic/h5_read", "documentation/cpp_api/triqs/mc_tools/mc_generic/h5_write", "documentation/cpp_api/triqs/mc_tools/mc_generic/rm_measure", "documentation/cpp_api/triqs/mc_tools/mc_generic/run", "documentation/cpp_api/triqs/mc_tools/mc_generic/set_after_cycle_duty", "documentation/cpp_api/triqs/mc_tools/mc_generic/warmup", "documentation/cpp_api/triqs/mc_tools/mc_generic/warmup_and_accumulate", "documentation/cpp_api/triqs/mc_tools/move_set", "documentation/cpp_api/triqs/mc_tools/move_set/accept", "documentation/cpp_api/triqs/mc_tools/move_set/add", "documentation/cpp_api/triqs/mc_tools/move_set/attempt", "documentation/cpp_api/triqs/mc_tools/move_set/clear_statistics", "documentation/cpp_api/triqs/mc_tools/move_set/collect_statistics", "documentation/cpp_api/triqs/mc_tools/move_set/constructor", "documentation/cpp_api/triqs/mc_tools/move_set/get_acceptance_rates", "documentation/cpp_api/triqs/mc_tools/move_set/get_statistics", "documentation/cpp_api/triqs/mc_tools/move_set/reject", "documentation/cpp_api/triqs/mc_tools/random_generator", "documentation/cpp_api/triqs/mc_tools/random_generator/constructor", "documentation/cpp_api/triqs/mc_tools/random_generator/name", "documentation/cpp_api/triqs/mc_tools/random_generator/operator()", "documentation/cpp_api/triqs/mc_tools/random_generator/preview", "documentation/cpp_api/triqs/mc_tools/random_generator_names", "documentation/cpp_api/triqs/stat", "documentation/cpp_api/triqs/stat/accumulator", "documentation/cpp_api/triqs/stat/accumulator/compress_linear_bins", "documentation/cpp_api/triqs/stat/accumulator/constructor", "documentation/cpp_api/triqs/stat/accumulator/data_input_count", "documentation/cpp_api/triqs/stat/accumulator/lin_bin_capacity", "documentation/cpp_api/triqs/stat/accumulator/linear_bins", "documentation/cpp_api/triqs/stat/accumulator/log_bin_errors", "documentation/cpp_api/triqs/stat/accumulator/log_bin_errors_all_reduce", "documentation/cpp_api/triqs/stat/accumulator/n_lin_bins", "documentation/cpp_api/triqs/stat/accumulator/n_lin_bins_max", "documentation/cpp_api/triqs/stat/accumulator/n_log_bins", "documentation/cpp_api/triqs/stat/accumulator/n_log_bins_max", "documentation/cpp_api/triqs/stat/accumulator/operator<<", "documentation/cpp_api/triqs/stat/cdf", "documentation/cpp_api/triqs/stat/histogram", "documentation/cpp_api/triqs/stat/histogram/clear", "documentation/cpp_api/triqs/stat/histogram/constructor", "documentation/cpp_api/triqs/stat/histogram/data", "documentation/cpp_api/triqs/stat/histogram/h5_read", "documentation/cpp_api/triqs/stat/histogram/h5_write", "documentation/cpp_api/triqs/stat/histogram/hdf5_format", "documentation/cpp_api/triqs/stat/histogram/limits", "documentation/cpp_api/triqs/stat/histogram/mesh_point", "documentation/cpp_api/triqs/stat/histogram/mpi_broadcast", "documentation/cpp_api/triqs/stat/histogram/mpi_reduce", "documentation/cpp_api/triqs/stat/histogram/n_data_pts", "documentation/cpp_api/triqs/stat/histogram/n_lost_pts", "documentation/cpp_api/triqs/stat/histogram/operator+", "documentation/cpp_api/triqs/stat/histogram/operator<<", "documentation/cpp_api/triqs/stat/histogram/operator==", "documentation/cpp_api/triqs/stat/histogram/size", "documentation/cpp_api/triqs/stat/jackknife", "documentation/cpp_api/triqs/stat/jackknife_mpi", "documentation/cpp_api/triqs/stat/mean", "documentation/cpp_api/triqs/stat/mean_and_err", "documentation/cpp_api/triqs/stat/mean_and_err_mpi", "documentation/cpp_api/triqs/stat/mean_mpi", "documentation/cpp_api/triqs/stat/pdf", "documentation/cpp_api/triqs/stat/tau_estimate_from_errors", "documentation/manual/contents", "documentation/manual/cpp2py/cfunction", "documentation/manual/cpp2py/class", "documentation/manual/cpp2py/contents", "documentation/manual/cpp2py/convert", "documentation/manual/cpp2py/module", "documentation/manual/cpp2py/principle", "documentation/manual/cpp2py/reference", "documentation/manual/hdf5/contents", "documentation/manual/hdf5/protocol", "documentation/manual/hdf5/ref", "documentation/manual/mpi/contents", "documentation/manual/triqs/atom_diag/contents", "documentation/manual/triqs/atom_diag/functions", "documentation/manual/triqs/clef/assign", "documentation/manual/triqs/clef/contents", "documentation/manual/triqs/clef/examples/contents", "documentation/manual/triqs/clef/examples/lazy_sum", "documentation/manual/triqs/clef/expressions_eval", "documentation/manual/triqs/clef/expressions_form", "documentation/manual/triqs/clef/function", "documentation/manual/triqs/clef/introduction", "documentation/manual/triqs/clef/overload", "documentation/manual/triqs/conventions", "documentation/manual/triqs/det_manip/contents", "documentation/manual/triqs/det_manip/det_manip", "documentation/manual/triqs/det_manip/implementation_notes", "documentation/manual/triqs/gfs/basic_notions/contents", "documentation/manual/triqs/gfs/c++/clef", "documentation/manual/triqs/gfs/c++/concepts", "documentation/manual/triqs/gfs/c++/contents", "documentation/manual/triqs/gfs/c++/fourier", "documentation/manual/triqs/gfs/c++/fourier_impl_notes", "documentation/manual/triqs/gfs/c++/gf_and_view", "documentation/manual/triqs/gfs/c++/gf_assign", "documentation/manual/triqs/gfs/c++/gf_block", "documentation/manual/triqs/gfs/c++/gf_call", "documentation/manual/triqs/gfs/c++/gf_constructors", "documentation/manual/triqs/gfs/c++/gf_data", "documentation/manual/triqs/gfs/c++/gf_imfreq", "documentation/manual/triqs/gfs/c++/gf_imtime", "documentation/manual/triqs/gfs/c++/gf_legendre", "documentation/manual/triqs/gfs/c++/gf_misc", "documentation/manual/triqs/gfs/c++/gf_part_eval_curry", "documentation/manual/triqs/gfs/c++/gf_product", "documentation/manual/triqs/gfs/c++/gf_refreq", "documentation/manual/triqs/gfs/c++/gf_reinterpret", "documentation/manual/triqs/gfs/c++/gf_retime", "documentation/manual/triqs/gfs/c++/gf_special", "documentation/manual/triqs/gfs/c++/gf_subscript", "documentation/manual/triqs/gfs/c++/implementation_notes", "documentation/manual/triqs/gfs/c++/matsubara_freq_mesh", "documentation/manual/triqs/gfs/c++/matsubara_imtime", "documentation/manual/triqs/gfs/c++/tail", "documentation/manual/triqs/gfs/contents", "documentation/manual/triqs/gfs/py/block", "documentation/manual/triqs/gfs/py/block/GfImFreq", "documentation/manual/triqs/gfs/py/block/GfImTime", "documentation/manual/triqs/gfs/py/block/GfLegendre", "documentation/manual/triqs/gfs/py/block/GfReFreq", "documentation/manual/triqs/gfs/py/block/GfReTime", "documentation/manual/triqs/gfs/py/contents", "documentation/manual/triqs/gfs/py/descriptors", "documentation/manual/triqs/gfs/py/full", "documentation/manual/triqs/gfs/py/tail", "documentation/manual/triqs/gfs/py/tools", "documentation/manual/triqs/gfs/py/transforms", "documentation/manual/triqs/hilbert_space/contents", "documentation/manual/triqs/hilbert_space/statevector_concept", "documentation/manual/triqs/lattice_tools/bravais", "documentation/manual/triqs/lattice_tools/contents", "documentation/manual/triqs/lattice_tools/dos", "documentation/manual/triqs/lattice_tools/hilbert", "documentation/manual/triqs/lattice_tools/sumk", "documentation/manual/triqs/lattice_tools/tightbinding", "documentation/manual/triqs/lattice_tools/tightbinding_and_example", "documentation/manual/triqs/mc_tools/concepts", "documentation/manual/triqs/mc_tools/contents", "documentation/manual/triqs/mc_tools/full_ref", "documentation/manual/triqs/mc_tools/ising", "documentation/manual/triqs/mc_tools/loop", "documentation/manual/triqs/mc_tools/random", "documentation/manual/triqs/mc_tools/tutorial", "documentation/manual/triqs/operators/contents", "documentation/manual/triqs/operators/operators", "documentation/manual/triqs/operators/util/U_matrix", "documentation/manual/triqs/operators/util/extractors", "documentation/manual/triqs/operators/util/hamiltonians", "documentation/manual/triqs/operators/util/observables", "documentation/manual/triqs/operators/util/op_struct", "documentation/manual/triqs/plotting_protocols/contents", "documentation/manual/triqs/plotting_protocols/fit/fit", "documentation/manual/triqs/plotting_protocols/plotting/plotting", "documentation/manual/triqs/provenance/contents", "documentation/manual/triqs/random_generator/contents", "documentation/manual/triqs/stat/contents", "documentation/manual/triqs/utilities/contents", "documentation/manual/triqs/utilities/exceptions", "documentation/manual/triqs/utilities/python_include_mess", "documentation/manual/triqs/utilities/tupletools", "documentation/python_api/triqs.atom_diag", "documentation/python_api/triqs.atom_diag.AtomDiag", "documentation/python_api/triqs.atom_diag.atom_diag", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.__init__", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.c_connection", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.c_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_connection", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.energies", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.flatten_subspace_index", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.fock_states", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.fops", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.full_hilbert_space_dim", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_eigenvalue", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dim", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dims", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.gs_energy", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.h_atomic", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.n_subspaces", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.quantum_numbers", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.unitary_matrices", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_state", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_subspace_index", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.__init__", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.c_connection", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.c_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.cdag_connection", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.cdag_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.energies", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.flatten_subspace_index", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.fock_states", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.fops", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.full_hilbert_space_dim", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_eigenvalue", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dim", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dims", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.gs_energy", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.h_atomic", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.n_subspaces", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.quantum_numbers", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.unitary_matrices", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_state", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_subspace_index", "documentation/python_api/triqs.atom_diag.atom_diag.act", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_density_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_iw", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_l", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_tau", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_w", "documentation/python_api/triqs.atom_diag.atom_diag.partition_function", "documentation/python_api/triqs.atom_diag.atom_diag.quantum_number_eigenvalues", "documentation/python_api/triqs.atom_diag.atom_diag.quantum_number_eigenvalues_checked", "documentation/python_api/triqs.atom_diag.atom_diag.trace_rho_op", "documentation/python_api/triqs.dos", "documentation/python_api/triqs.dos.dos", "documentation/python_api/triqs.dos.dos.DOS", "documentation/python_api/triqs.dos.dos.DOS.__init__", "documentation/python_api/triqs.dos.dos.DOS.copy", "documentation/python_api/triqs.dos.dos.DOS.density", "documentation/python_api/triqs.dos.dos.DOSFromFunction", "documentation/python_api/triqs.dos.dos.DOSFromFunction.__init__", "documentation/python_api/triqs.dos.dos.DOSFromFunction.copy", "documentation/python_api/triqs.dos.dos.DOSFromFunction.density", "documentation/python_api/triqs.dos.dos.dos_from_file", "documentation/python_api/triqs.dos.hilbert_transform", "documentation/python_api/triqs.dos.hilbert_transform.HilbertTransform", "documentation/python_api/triqs.dos.hilbert_transform.HilbertTransform.__init__", "documentation/python_api/triqs.fit", "documentation/python_api/triqs.fit.fit", "documentation/python_api/triqs.fit.fit.Fit", "documentation/python_api/triqs.fit.fit.Fit.__init__", "documentation/python_api/triqs.gf", "documentation/python_api/triqs.gf.backwd_compat", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.data", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.density", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.real", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.zero", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.data", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.density", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.real", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.zero", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.data", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.density", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.real", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.zero", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.data", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.density", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.real", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.zero", "documentation/python_api/triqs.gf.backwd_compat.gf_retime", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.data", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.density", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.real", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.zero", "documentation/python_api/triqs.gf.block2_gf", "documentation/python_api/triqs.gf.block2_gf.Block2Gf", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.__init__", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.all_indices", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy_from", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy_selected_blocks", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.imag", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices1", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices2", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.n_blocks", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.real", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.view_selected_blocks", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.zero", "documentation/python_api/triqs.gf.block_gf", "documentation/python_api/triqs.gf.block_gf.BlockGf", "documentation/python_api/triqs.gf.block_gf.BlockGf.__init__", "documentation/python_api/triqs.gf.block_gf.BlockGf.all_indices", "documentation/python_api/triqs.gf.block_gf.BlockGf.beta", "documentation/python_api/triqs.gf.block_gf.BlockGf.conjugate", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy_from", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy_selected_blocks", "documentation/python_api/triqs.gf.block_gf.BlockGf.density", "documentation/python_api/triqs.gf.block_gf.BlockGf.imag", "documentation/python_api/triqs.gf.block_gf.BlockGf.indices", "documentation/python_api/triqs.gf.block_gf.BlockGf.inverse", "documentation/python_api/triqs.gf.block_gf.BlockGf.invert", "documentation/python_api/triqs.gf.block_gf.BlockGf.load", "documentation/python_api/triqs.gf.block_gf.BlockGf.mesh", "documentation/python_api/triqs.gf.block_gf.BlockGf.n_blocks", "documentation/python_api/triqs.gf.block_gf.BlockGf.real", "documentation/python_api/triqs.gf.block_gf.BlockGf.save", "documentation/python_api/triqs.gf.block_gf.BlockGf.total_density", "documentation/python_api/triqs.gf.block_gf.BlockGf.transpose", "documentation/python_api/triqs.gf.block_gf.BlockGf.view_selected_blocks", "documentation/python_api/triqs.gf.block_gf.BlockGf.zero", "documentation/python_api/triqs.gf.block_gf.call_factory_from_dict", "documentation/python_api/triqs.gf.block_gf.fix_gf_struct_type", "documentation/python_api/triqs.gf.descriptor_base", "documentation/python_api/triqs.gf.descriptor_base.Base", "documentation/python_api/triqs.gf.descriptor_base.Base.__init__", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.__init__", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.is_block_descriptor", "documentation/python_api/triqs.gf.descriptor_base.Const", "documentation/python_api/triqs.gf.descriptor_base.Const.__init__", "documentation/python_api/triqs.gf.descriptor_base.Function", "documentation/python_api/triqs.gf.descriptor_base.Function.__init__", "documentation/python_api/triqs.gf.descriptor_base.LazyCTX", "documentation/python_api/triqs.gf.descriptor_base.LazyCTX.__init__", "documentation/python_api/triqs.gf.descriptor_base.Omega_", "documentation/python_api/triqs.gf.descriptor_base.Omega_.__init__", "documentation/python_api/triqs.gf.descriptor_base.convert_scalar_to_const", "documentation/python_api/triqs.gf.descriptor_base.is_lazy", "documentation/python_api/triqs.gf.descriptor_base.is_scalar", "documentation/python_api/triqs.gf.descriptors", "documentation/python_api/triqs.gf.descriptors.Flat", "documentation/python_api/triqs.gf.descriptors.Flat.__init__", "documentation/python_api/triqs.gf.descriptors.Fourier", "documentation/python_api/triqs.gf.descriptors.Fourier.__init__", "documentation/python_api/triqs.gf.descriptors.Fourier.is_block_descriptor", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.__init__", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.is_block_descriptor", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.__init__", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.is_block_descriptor", "documentation/python_api/triqs.gf.descriptors.OneFermionInTime", "documentation/python_api/triqs.gf.descriptors.OneFermionInTime.__init__", "documentation/python_api/triqs.gf.descriptors.SemiCircular", "documentation/python_api/triqs.gf.descriptors.SemiCircular.__init__", "documentation/python_api/triqs.gf.descriptors.Wilson", "documentation/python_api/triqs.gf.descriptors.Wilson.__init__", "documentation/python_api/triqs.gf.descriptors.semi", "documentation/python_api/triqs.gf.dlr_crm_dyson_solver", "documentation/python_api/triqs.gf.dlr_crm_dyson_solver.minimize_dyson", "documentation/python_api/triqs.gf.gf", "documentation/python_api/triqs.gf.gf.AddMethod", "documentation/python_api/triqs.gf.gf.AddMethod.__init__", "documentation/python_api/triqs.gf.gf.AddMethod.mro", "documentation/python_api/triqs.gf.gf.CallProxyNone", "documentation/python_api/triqs.gf.gf.CallProxyNone.__init__", "documentation/python_api/triqs.gf.gf.Gf", "documentation/python_api/triqs.gf.gf.Gf.__init__", "documentation/python_api/triqs.gf.gf.Gf.conjugate", "documentation/python_api/triqs.gf.gf.Gf.copy", "documentation/python_api/triqs.gf.gf.Gf.copy_from", "documentation/python_api/triqs.gf.gf.Gf.data", "documentation/python_api/triqs.gf.gf.Gf.density", "documentation/python_api/triqs.gf.gf.Gf.enforce_discontinuity", "documentation/python_api/triqs.gf.gf.Gf.fit_hermitian_tail", "documentation/python_api/triqs.gf.gf.Gf.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.gf.Gf.fit_tail", "documentation/python_api/triqs.gf.gf.Gf.fit_tail_on_window", "documentation/python_api/triqs.gf.gf.Gf.from_L_G_R", "documentation/python_api/triqs.gf.gf.Gf.imag", "documentation/python_api/triqs.gf.gf.Gf.indices", "documentation/python_api/triqs.gf.gf.Gf.inverse", "documentation/python_api/triqs.gf.gf.Gf.invert", "documentation/python_api/triqs.gf.gf.Gf.is_gf_hermitian", "documentation/python_api/triqs.gf.gf.Gf.is_gf_real_in_tau", "documentation/python_api/triqs.gf.gf.Gf.mesh", "documentation/python_api/triqs.gf.gf.Gf.rank", "documentation/python_api/triqs.gf.gf.Gf.real", "documentation/python_api/triqs.gf.gf.Gf.rebinning_tau", "documentation/python_api/triqs.gf.gf.Gf.replace_by_tail", "documentation/python_api/triqs.gf.gf.Gf.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.gf.Gf.set_from_fourier", "documentation/python_api/triqs.gf.gf.Gf.set_from_imfreq", "documentation/python_api/triqs.gf.gf.Gf.set_from_imtime", "documentation/python_api/triqs.gf.gf.Gf.set_from_legendre", "documentation/python_api/triqs.gf.gf.Gf.set_from_pade", "documentation/python_api/triqs.gf.gf.Gf.target_indices", "documentation/python_api/triqs.gf.gf.Gf.target_rank", "documentation/python_api/triqs.gf.gf.Gf.target_shape", "documentation/python_api/triqs.gf.gf.Gf.tau_L2_norm", "documentation/python_api/triqs.gf.gf.Gf.total_density", "documentation/python_api/triqs.gf.gf.Gf.transpose", "documentation/python_api/triqs.gf.gf.Gf.x_data_view", "documentation/python_api/triqs.gf.gf.Gf.zero", "documentation/python_api/triqs.gf.gf.Idx", "documentation/python_api/triqs.gf.gf.Idx.__init__", "documentation/python_api/triqs.gf.gf.add_method_helper", "documentation/python_api/triqs.gf.gf.bckwd", "documentation/python_api/triqs.gf.gf.call_factory_from_dict", "documentation/python_api/triqs.gf.gf_factories", "documentation/python_api/triqs.gf.gf_factories.fit_gf_dlr", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr_imfreq", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr_imtime", "documentation/python_api/triqs.gf.gf_factories.make_gf_from_fourier", "documentation/python_api/triqs.gf.gf_factories.make_gf_imfreq", "documentation/python_api/triqs.gf.gf_factories.make_gf_imtime", "documentation/python_api/triqs.gf.gf_factories.make_hermitian", "documentation/python_api/triqs.gf.gf_factories.make_real_in_tau", "documentation/python_api/triqs.gf.gf_fnt", "documentation/python_api/triqs.gf.gf_fnt.density", "documentation/python_api/triqs.gf.gf_fnt.enforce_discontinuity", "documentation/python_api/triqs.gf.gf_fnt.fit_hermitian_tail", "documentation/python_api/triqs.gf.gf_fnt.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.gf_fnt.fit_tail", "documentation/python_api/triqs.gf.gf_fnt.fit_tail_on_window", "documentation/python_api/triqs.gf.gf_fnt.is_gf_hermitian", "documentation/python_api/triqs.gf.gf_fnt.is_gf_real_in_tau", "documentation/python_api/triqs.gf.gf_fnt.rebinning_tau", "documentation/python_api/triqs.gf.gf_fnt.replace_by_tail", "documentation/python_api/triqs.gf.gf_fnt.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.gf_fnt.set_from_fourier", "documentation/python_api/triqs.gf.gf_fnt.set_from_imfreq", "documentation/python_api/triqs.gf.gf_fnt.set_from_imtime", "documentation/python_api/triqs.gf.gf_fnt.set_from_legendre", "documentation/python_api/triqs.gf.gf_fnt.set_from_pade", "documentation/python_api/triqs.gf.gf_fnt.tau_L2_norm", "documentation/python_api/triqs.gf.lazy_expressions", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.__init__", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.copy", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.get_terminal", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.is_terminal", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.set_from", "documentation/python_api/triqs.gf.lazy_expressions.LazyExprTerminal", "documentation/python_api/triqs.gf.lazy_expressions.LazyExprTerminal.__init__", "documentation/python_api/triqs.gf.lazy_expressions.all_terminals", "documentation/python_api/triqs.gf.lazy_expressions.eval_expr", "documentation/python_api/triqs.gf.lazy_expressions.eval_expr_with_context", "documentation/python_api/triqs.gf.lazy_expressions.lazy_function", "documentation/python_api/triqs.gf.lazy_expressions.make_lazy", "documentation/python_api/triqs.gf.lazy_expressions.transform", "documentation/python_api/triqs.gf.map_block", "documentation/python_api/triqs.gf.matsubara_freq", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.__init__", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.imag", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.index", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.real", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.value", "documentation/python_api/triqs.gf.mesh_point", "documentation/python_api/triqs.gf.mesh_point.MeshPoint", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.__init__", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.imag", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.real", "documentation/python_api/triqs.gf.mesh_point.MeshValueGenerator", "documentation/python_api/triqs.gf.mesh_point.MeshValueGenerator.__init__", "documentation/python_api/triqs.gf.mesh_product", "documentation/python_api/triqs.gf.mesh_product.MeshProduct", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.__init__", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.components", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.copy", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.copy_from", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.rank", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.size_of_components", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.to_data_index", "documentation/python_api/triqs.gf.mesh_product.call_factory_from_dict", "documentation/python_api/triqs.gf.meshes", "documentation/python_api/triqs.gf.meshes.MeshBrZone", "documentation/python_api/triqs.gf.meshes.MeshBrZone.__init__", "documentation/python_api/triqs.gf.meshes.MeshBrZone.bz", "documentation/python_api/triqs.gf.meshes.MeshBrZone.closest_index", "documentation/python_api/triqs.gf.meshes.MeshBrZone.copy", "documentation/python_api/triqs.gf.meshes.MeshBrZone.copy_from", "documentation/python_api/triqs.gf.meshes.MeshBrZone.dims", "documentation/python_api/triqs.gf.meshes.MeshBrZone.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_index", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_value", "documentation/python_api/triqs.gf.meshes.MeshBrZone.units", "documentation/python_api/triqs.gf.meshes.MeshBrZone.values", "documentation/python_api/triqs.gf.meshes.MeshCycLat", "documentation/python_api/triqs.gf.meshes.MeshCycLat.__init__", "documentation/python_api/triqs.gf.meshes.MeshCycLat.copy", "documentation/python_api/triqs.gf.meshes.MeshCycLat.copy_from", "documentation/python_api/triqs.gf.meshes.MeshCycLat.dims", "documentation/python_api/triqs.gf.meshes.MeshCycLat.lattice", "documentation/python_api/triqs.gf.meshes.MeshCycLat.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_index", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_value", "documentation/python_api/triqs.gf.meshes.MeshCycLat.units", "documentation/python_api/triqs.gf.meshes.MeshCycLat.values", "documentation/python_api/triqs.gf.meshes.MeshDLR", "documentation/python_api/triqs.gf.meshes.MeshDLR.__init__", "documentation/python_api/triqs.gf.meshes.MeshDLR.beta", "documentation/python_api/triqs.gf.meshes.MeshDLR.copy", "documentation/python_api/triqs.gf.meshes.MeshDLR.copy_from", "documentation/python_api/triqs.gf.meshes.MeshDLR.eps", "documentation/python_api/triqs.gf.meshes.MeshDLR.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshDLR.statistic", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_index", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_value", "documentation/python_api/triqs.gf.meshes.MeshDLR.values", "documentation/python_api/triqs.gf.meshes.MeshDLR.w_max", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.__init__", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.beta", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.copy", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.copy_from", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.eps", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.statistic", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_index", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_value", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.values", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.w_max", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.__init__", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.beta", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.copy", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.copy_from", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.eps", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.statistic", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_index", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_value", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.values", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.w_max", "documentation/python_api/triqs.gf.meshes.MeshImFreq", "documentation/python_api/triqs.gf.meshes.MeshImFreq.__init__", "documentation/python_api/triqs.gf.meshes.MeshImFreq.beta", "documentation/python_api/triqs.gf.meshes.MeshImFreq.copy", "documentation/python_api/triqs.gf.meshes.MeshImFreq.copy_from", "documentation/python_api/triqs.gf.meshes.MeshImFreq.first_index", "documentation/python_api/triqs.gf.meshes.MeshImFreq.last_index", "documentation/python_api/triqs.gf.meshes.MeshImFreq.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshImFreq.n_iw", "documentation/python_api/triqs.gf.meshes.MeshImFreq.positive_only", "documentation/python_api/triqs.gf.meshes.MeshImFreq.set_tail_fit_parameters", "documentation/python_api/triqs.gf.meshes.MeshImFreq.statistic", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_index", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_value", "documentation/python_api/triqs.gf.meshes.MeshImFreq.values", "documentation/python_api/triqs.gf.meshes.MeshImTime", "documentation/python_api/triqs.gf.meshes.MeshImTime.__init__", "documentation/python_api/triqs.gf.meshes.MeshImTime.beta", "documentation/python_api/triqs.gf.meshes.MeshImTime.copy", "documentation/python_api/triqs.gf.meshes.MeshImTime.copy_from", "documentation/python_api/triqs.gf.meshes.MeshImTime.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshImTime.statistic", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_index", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_value", "documentation/python_api/triqs.gf.meshes.MeshImTime.values", "documentation/python_api/triqs.gf.meshes.MeshLegendre", "documentation/python_api/triqs.gf.meshes.MeshLegendre.__init__", "documentation/python_api/triqs.gf.meshes.MeshLegendre.beta", "documentation/python_api/triqs.gf.meshes.MeshLegendre.copy", "documentation/python_api/triqs.gf.meshes.MeshLegendre.copy_from", "documentation/python_api/triqs.gf.meshes.MeshLegendre.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshLegendre.statistic", "documentation/python_api/triqs.gf.meshes.MeshLegendre.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshLegendre.to_index", "documentation/python_api/triqs.gf.meshes.MeshReFreq", "documentation/python_api/triqs.gf.meshes.MeshReFreq.__init__", "documentation/python_api/triqs.gf.meshes.MeshReFreq.copy", "documentation/python_api/triqs.gf.meshes.MeshReFreq.copy_from", "documentation/python_api/triqs.gf.meshes.MeshReFreq.delta", "documentation/python_api/triqs.gf.meshes.MeshReFreq.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_index", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_value", "documentation/python_api/triqs.gf.meshes.MeshReFreq.values", "documentation/python_api/triqs.gf.meshes.MeshReFreq.w_max", "documentation/python_api/triqs.gf.meshes.MeshReFreq.w_min", "documentation/python_api/triqs.gf.meshes.MeshReTime", "documentation/python_api/triqs.gf.meshes.MeshReTime.__init__", "documentation/python_api/triqs.gf.meshes.MeshReTime.copy", "documentation/python_api/triqs.gf.meshes.MeshReTime.copy_from", "documentation/python_api/triqs.gf.meshes.MeshReTime.delta", "documentation/python_api/triqs.gf.meshes.MeshReTime.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshReTime.t_max", "documentation/python_api/triqs.gf.meshes.MeshReTime.t_min", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_index", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_value", "documentation/python_api/triqs.gf.meshes.MeshReTime.values", "documentation/python_api/triqs.gf.meshes.make_adjoint_mesh", "documentation/python_api/triqs.gf.plot", "documentation/python_api/triqs.gf.plot.bz", "documentation/python_api/triqs.gf.plot.bz.dist", "documentation/python_api/triqs.gf.plot.bz.generate_points", "documentation/python_api/triqs.gf.plot.bz.generate_points_on_path", "documentation/python_api/triqs.gf.plot.bz.length", "documentation/python_api/triqs.gf.plot.bz.make_plottable", "documentation/python_api/triqs.gf.plot.bz.plot", "documentation/python_api/triqs.gf.plot.bz.slice_on_path", "documentation/python_api/triqs.gf.plot.bz_x_x", "documentation/python_api/triqs.gf.plot.bz_x_x.plot", "documentation/python_api/triqs.gf.plot.bz_x_x.plottable_slice_along_path", "documentation/python_api/triqs.gf.plot.dispatcher", "documentation/python_api/triqs.gf.plot.one_var", "documentation/python_api/triqs.gf.plot.one_var.dlr_imfreq", "documentation/python_api/triqs.gf.plot.one_var.dlr_imtime", "documentation/python_api/triqs.gf.plot.one_var.imfreq", "documentation/python_api/triqs.gf.plot.one_var.imtime", "documentation/python_api/triqs.gf.plot.one_var.legendre", "documentation/python_api/triqs.gf.plot.one_var.refreq", "documentation/python_api/triqs.gf.plot.one_var.retime", "documentation/python_api/triqs.gf.plot.plot_base", "documentation/python_api/triqs.gf.plot.plot_base.plot_base", "documentation/python_api/triqs.gf.plot.select_indices", "documentation/python_api/triqs.gf.plot.select_indices.closest_point_in_line", "documentation/python_api/triqs.gf.plot.select_indices.closest_to", "documentation/python_api/triqs.gf.plot.select_indices.dist", "documentation/python_api/triqs.gf.plot.select_indices.pick_selection_vec", "documentation/python_api/triqs.gf.plot.select_indices.select_path_indices", "documentation/python_api/triqs.gf.tools", "documentation/python_api/triqs.gf.tools.conjugate", "documentation/python_api/triqs.gf.tools.delta", "documentation/python_api/triqs.gf.tools.discretize_bath", "documentation/python_api/triqs.gf.tools.dyson", "documentation/python_api/triqs.gf.tools.fit_legendre", "documentation/python_api/triqs.gf.tools.inverse", "documentation/python_api/triqs.gf.tools.make_delta", "documentation/python_api/triqs.gf.tools.make_zero_tail", "documentation/python_api/triqs.gf.tools.read_gf_from_txt", "documentation/python_api/triqs.gf.tools.transpose", "documentation/python_api/triqs.gf.tools.write_gf_to_txt", "documentation/python_api/triqs.gf.wrapped_aux", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.set_from_gf_data_mul_LR", "documentation/python_api/triqs.lattice", "documentation/python_api/triqs.lattice.bz_patch", "documentation/python_api/triqs.lattice.bz_patch.BZPatch", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.__init__", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.dos", "documentation/python_api/triqs.lattice.lattice_tools", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.__init__", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.lattice_to_real_coordinates", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.n_orbitals", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.ndim", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.orbital_names", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.orbital_positions", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.units", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.__init__", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.lattice", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.ndim", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.units", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.__init__", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.dispersion", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.displ_vec", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.fourier", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.lattice", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.lattice_to_real_coordinates", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.overlap_mat_vec", "documentation/python_api/triqs.lattice.lattice_tools.dos", "documentation/python_api/triqs.lattice.lattice_tools.dos_patch", "documentation/python_api/triqs.lattice.point", "documentation/python_api/triqs.lattice.point.LatticePoint", "documentation/python_api/triqs.lattice.point.LatticePoint.__init__", "documentation/python_api/triqs.lattice.point.LatticePoint.value", "documentation/python_api/triqs.lattice.super_lattice", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.__init__", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_L_to_SL", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_SL_to_L", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.cluster_sites", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.dispersion", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.fold", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.fourier", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.get_kmesh", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.get_rmesh", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.hoppings", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.lattice_to_real_coordinates", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.n_orbitals", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.ndim", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.orbital_names", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.orbital_positions", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.pack_index_site_orbital", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.units", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.unpack_index_site_orbital", "documentation/python_api/triqs.lattice.tight_binding", "documentation/python_api/triqs.lattice.tight_binding.TBLattice", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.__init__", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.dispersion", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.fourier", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.get_kmesh", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.get_rmesh", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.hoppings", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.lattice_to_real_coordinates", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.n_orbitals", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.ndim", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.orbital_names", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.orbital_positions", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.units", "documentation/python_api/triqs.lattice.tight_binding.dos", "documentation/python_api/triqs.lattice.tight_binding.dos_patch", "documentation/python_api/triqs.lattice.utils", "documentation/python_api/triqs.lattice.utils.TB_from_pythTB", "documentation/python_api/triqs.lattice.utils.TB_from_wannier90", "documentation/python_api/triqs.lattice.utils.TB_to_sympy", "documentation/python_api/triqs.lattice.utils.extend_wannier90_to_spin", "documentation/python_api/triqs.lattice.utils.k_space_path", "documentation/python_api/triqs.lattice.utils.parse_hopping_from_wannier90_hr_dat", "documentation/python_api/triqs.lattice.utils.parse_lattice_vectors_from_wannier90_wout", "documentation/python_api/triqs.operators", "documentation/python_api/triqs.operators.operators", "documentation/python_api/triqs.operators.operators.Operator", "documentation/python_api/triqs.operators.operators.Operator.__init__", "documentation/python_api/triqs.operators.operators.Operator.imag", "documentation/python_api/triqs.operators.operators.Operator.is_zero", "documentation/python_api/triqs.operators.operators.Operator.real", "documentation/python_api/triqs.operators.operators.c", "documentation/python_api/triqs.operators.operators.c_dag", "documentation/python_api/triqs.operators.operators.dagger", "documentation/python_api/triqs.operators.operators.is_op_hermitian", "documentation/python_api/triqs.operators.operators.n", "documentation/python_api/triqs.operators.util", "documentation/python_api/triqs.operators.util.U_matrix", "documentation/python_api/triqs.operators.util.U_matrix.U_J_to_radial_integrals", "documentation/python_api/triqs.operators.util.U_matrix.U_matrix_kanamori", "documentation/python_api/triqs.operators.util.U_matrix.U_matrix_slater", "documentation/python_api/triqs.operators.util.U_matrix.angular_matrix_element", "documentation/python_api/triqs.operators.util.U_matrix.clebsch_gordan", "documentation/python_api/triqs.operators.util.U_matrix.cubic_names", "documentation/python_api/triqs.operators.util.U_matrix.eg_submatrix", "documentation/python_api/triqs.operators.util.U_matrix.radial_integrals_to_U_J", "documentation/python_api/triqs.operators.util.U_matrix.reduce_4index_to_2index", "documentation/python_api/triqs.operators.util.U_matrix.spherical_to_cubic", "documentation/python_api/triqs.operators.util.U_matrix.subarray", "documentation/python_api/triqs.operators.util.U_matrix.t2g_submatrix", "documentation/python_api/triqs.operators.util.U_matrix.three_j_symbol", "documentation/python_api/triqs.operators.util.U_matrix.transform_U_matrix", "documentation/python_api/triqs.operators.util.extractors", "documentation/python_api/triqs.operators.util.extractors.block_matrix_from_op", "documentation/python_api/triqs.operators.util.extractors.dict_to_matrix", "documentation/python_api/triqs.operators.util.extractors.extract_U_dict2", "documentation/python_api/triqs.operators.util.extractors.extract_U_dict4", "documentation/python_api/triqs.operators.util.extractors.extract_h_dict", "documentation/python_api/triqs.operators.util.extractors.op_from_block_matrix", "documentation/python_api/triqs.operators.util.extractors.quadratic_terms", "documentation/python_api/triqs.operators.util.extractors.quartic_terms", "documentation/python_api/triqs.operators.util.hamiltonians", "documentation/python_api/triqs.operators.util.hamiltonians.backward_compat", "documentation/python_api/triqs.operators.util.hamiltonians.diagonal_part", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_density", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_kanamori", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_slater", "documentation/python_api/triqs.operators.util.hamiltonians.make_operator_real", "documentation/python_api/triqs.operators.util.observables", "documentation/python_api/triqs.operators.util.observables.L2_op", "documentation/python_api/triqs.operators.util.observables.LS_op", "documentation/python_api/triqs.operators.util.observables.L_op", "documentation/python_api/triqs.operators.util.observables.N_op", "documentation/python_api/triqs.operators.util.observables.S2_op", "documentation/python_api/triqs.operators.util.observables.S_op", "documentation/python_api/triqs.operators.util.observables.check_backward_compat", "documentation/python_api/triqs.operators.util.op_struct", "documentation/python_api/triqs.operators.util.op_struct.get_mkind", "documentation/python_api/triqs.operators.util.op_struct.set_operator_structure", "documentation/python_api/triqs.plot", "documentation/python_api/triqs.plot.mpl_interface", "documentation/python_api/triqs.plot.mpl_interface.oplot", "documentation/python_api/triqs.plot.mpl_interface.oploti", "documentation/python_api/triqs.plot.mpl_interface.oplotr", "documentation/python_api/triqs.plot.mpl_interface.use_amsmath", "documentation/python_api/triqs.plot.protocol", "documentation/python_api/triqs.plot.protocol.clip_array", "documentation/python_api/triqs.plot.protocol.plot_protocol_apply", "documentation/python_api/triqs.random_generator", "documentation/python_api/triqs.random_generator.RandomGenerator", "documentation/python_api/triqs.random_generator.RandomGenerator.__init__", "documentation/python_api/triqs.random_generator.random_generator", "documentation/python_api/triqs.random_generator.random_generator.random_generator_names_list", "documentation/python_api/triqs.stat", "documentation/python_api/triqs.stat.histogram", "documentation/python_api/triqs.stat.histogram.plot", "documentation/python_api/triqs.stat.histograms", "documentation/python_api/triqs.stat.histograms.Histogram", "documentation/python_api/triqs.stat.histograms.Histogram.__init__", "documentation/python_api/triqs.stat.histograms.Histogram.clear", "documentation/python_api/triqs.stat.histograms.Histogram.data", "documentation/python_api/triqs.stat.histograms.Histogram.limits", "documentation/python_api/triqs.stat.histograms.Histogram.mesh_point", "documentation/python_api/triqs.stat.histograms.Histogram.n_data_pts", "documentation/python_api/triqs.stat.histograms.Histogram.n_lost_pts", "documentation/python_api/triqs.stat.histograms.cdf", "documentation/python_api/triqs.stat.histograms.pdf", "documentation/python_api/triqs.sumk", "documentation/python_api/triqs.sumk.sumk_discrete", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.GFBlocIndices", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.__init__", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.n_kpts", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.resize_arrays", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.GFBlocIndices", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.Recompute_Grid", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.__init__", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.n_kpts", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.resize_arrays", "documentation/python_api/triqs.utility", "documentation/python_api/triqs.utility.bound_and_bisect", "documentation/python_api/triqs.utility.bound_and_bisect.bound_and_bisect", "documentation/python_api/triqs.utility.bound_and_bisect.determine_bounds", "documentation/python_api/triqs.utility.capture_stdout", "documentation/python_api/triqs.utility.comparison_tests", "documentation/python_api/triqs.utility.comparison_tests.assert_array_close_to_scalar", "documentation/python_api/triqs.utility.comparison_tests.assert_arrays_are_close", "documentation/python_api/triqs.utility.comparison_tests.assert_block2_gfs_are_close", "documentation/python_api/triqs.utility.comparison_tests.assert_block_gfs_are_close", "documentation/python_api/triqs.utility.comparison_tests.assert_gfs_are_close", "documentation/python_api/triqs.utility.dichotomy", "documentation/python_api/triqs.utility.dichotomy.dichotomy", "documentation/python_api/triqs.utility.dist_on_nodes", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.SleepTime", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.__init__", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.run", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.SleepTime", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.__init__", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.finished", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.result", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.run", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.treate", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.SleepTime", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.__init__", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.finished", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.result", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.run", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.the_function", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.treate", "documentation/python_api/triqs.utility.h5diff", "documentation/python_api/triqs.utility.h5diff.compare", "documentation/python_api/triqs.utility.h5diff.h5diff", "documentation/python_api/triqs.utility.mpi", "documentation/python_api/triqs.utility.mpi.check_for_mpi", "documentation/python_api/triqs.utility.mpi_mpi4py", "documentation/python_api/triqs.utility.mpi_mpi4py.all_reduce", "documentation/python_api/triqs.utility.mpi_mpi4py.barrier", "documentation/python_api/triqs.utility.mpi_mpi4py.bcast", "documentation/python_api/triqs.utility.mpi_mpi4py.is_master_node", "documentation/python_api/triqs.utility.mpi_mpi4py.master_gets_host_names", "documentation/python_api/triqs.utility.mpi_mpi4py.myprint_err", "documentation/python_api/triqs.utility.mpi_mpi4py.myprint_out", "documentation/python_api/triqs.utility.mpi_mpi4py.recv", "documentation/python_api/triqs.utility.mpi_mpi4py.report", "documentation/python_api/triqs.utility.mpi_mpi4py.send", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_array", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_inf", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_sup", "documentation/python_api/triqs.utility.mpi_nompi", "documentation/python_api/triqs.utility.mpi_nompi.all_reduce", "documentation/python_api/triqs.utility.mpi_nompi.barrier", "documentation/python_api/triqs.utility.mpi_nompi.bcast", "documentation/python_api/triqs.utility.mpi_nompi.is_master_node", "documentation/python_api/triqs.utility.mpi_nompi.master_gets_host_names", "documentation/python_api/triqs.utility.mpi_nompi.myprint_err", "documentation/python_api/triqs.utility.mpi_nompi.myprint_out", "documentation/python_api/triqs.utility.mpi_nompi.recv", "documentation/python_api/triqs.utility.mpi_nompi.report", "documentation/python_api/triqs.utility.mpi_nompi.send", "documentation/python_api/triqs.utility.mpi_nompi.slice_array", "documentation/python_api/triqs.utility.redirect", "documentation/python_api/triqs.utility.redirect.T", "documentation/python_api/triqs.utility.redirect.T.__init__", "documentation/python_api/triqs.utility.redirect.T.daemon", "documentation/python_api/triqs.utility.redirect.T.getName", "documentation/python_api/triqs.utility.redirect.T.ident", "documentation/python_api/triqs.utility.redirect.T.isDaemon", "documentation/python_api/triqs.utility.redirect.T.is_alive", "documentation/python_api/triqs.utility.redirect.T.join", "documentation/python_api/triqs.utility.redirect.T.name", "documentation/python_api/triqs.utility.redirect.T.native_id", "documentation/python_api/triqs.utility.redirect.T.run", "documentation/python_api/triqs.utility.redirect.T.setDaemon", "documentation/python_api/triqs.utility.redirect.T.setName", "documentation/python_api/triqs.utility.redirect.T.start", "documentation/python_api/triqs.utility.redirect.T.stop", "documentation/python_api/triqs.utility.redirect.start_redirect", "documentation/python_api/triqs.utility.redirect.stop_redirect", "faqs", "index", "install", "installation/clang", "installation/environment_vars", "installation/install_options", "installation/osx_install", "installation/python_virtualenv", "installation/requirements", "installation/ubuntu", "porting_to_triqs3", "userguide", "userguide/c++/arrays/tutorial", "userguide/c++/det_manip/tutorial", "userguide/c++/gfs/tutorial", "userguide/c++/hdf5/tutorial", "userguide/c++/using_the_lib/application_structure", "userguide/c++/using_the_lib/contents", "userguide/c++/using_the_lib/profiling", "userguide/c++/using_the_lib/triqs_library", "userguide/python/basics", "userguide/python/dmft_one_page", "userguide/python/external_resources", "userguide/python/model_dmft", "userguide/python/tight_binding", "userguide/python/tutorials/AbinitioDMFT/01-solid_dmft", "userguide/python/tutorials/AbinitioDMFT/02-FermiSee", "userguide/python/tutorials/AbinitioDMFT/03-phase-diagram-exploration", "userguide/python/tutorials/AbinitioDMFT/04-HubbardI-comparison", "userguide/python/tutorials/AbinitioDMFT/solutions/01s-solid_dmft", "userguide/python/tutorials/AbinitioDMFT/solutions/02s-FermiSee", "userguide/python/tutorials/AbinitioDMFT/solutions/03s-phase-diagram-exploration", "userguide/python/tutorials/AbinitioDMFT/solutions/04s-HubbardI-comparison", "userguide/python/tutorials/Basics/00a-Introducing_the_ipython_notebook", "userguide/python/tutorials/Basics/00b-Matplotlib_Examples", "userguide/python/tutorials/Basics/01-Greens_functions", "userguide/python/tutorials/Basics/02-Archiving_your_data", "userguide/python/tutorials/Basics/03-Operators", "userguide/python/tutorials/Basics/04-Multivariable_Green_functions", "userguide/python/tutorials/Basics/solutions/01s-Greens_functions", "userguide/python/tutorials/ModelDMFT/01-IPT_and_DMFT", "userguide/python/tutorials/ModelDMFT/02-Introduction_to_the_CTHYB_solver", "userguide/python/tutorials/ModelDMFT/03-Single-orbital_Hubbard_with_CTQMC", "userguide/python/tutorials/ModelDMFT/04-Two-orbital_Hubbard_with_CTQMC", "userguide/python/tutorials/ModelDMFT/05-VBDMFT_Hubbard", "userguide/python/tutorials/ModelDMFT/README", "userguide/python/tutorials/ModelDMFT/solutions/01s-IPT_and_DMFT", "userguide/python/tutorials/ModelDMFT/solutions/03s-Single-orbital_Hubbard_with_CTQMC", "userguide/python/tutorials/ModelDMFT/solutions/04s-Two-orbital_Hubbard_with_CTQMC", "userguide/python/tutorials/ModelDMFT/solutions/05s-VBDMFT_Hubbard", "userguide/python/tutorials/README", "userguide/python/tutorials/TwoParticleResponse/01-Fermi_surface_nesting", "userguide/python/tutorials/TwoParticleResponse/02-Lindhard", "userguide/python/tutorials/TwoParticleResponse/03-RPA", "userguide/python/tutorials/TwoParticleResponse/04-TPSC", "userguide/python/tutorials/TwoParticleResponse/05-TPSC_MerminWagner", "userguide/python/tutorials/TwoParticleResponse/solutions/01s-Fermi_surface_nesting", "userguide/python/tutorials/TwoParticleResponse/solutions/02s-Lindhard", "userguide/python/tutorials/TwoParticleResponse/solutions/03s-RPA", "userguide/python/tutorials/TwoParticleResponse/solutions/04s-TPSC", "userguide/python/tutorials/TwoParticleResponse/solutions/05s-TPSC_MerminWagner", "userguide/python/two_particle_response", "versions"], "filenames": ["ChangeLog.md", "_templates/autosummary_class_template.rst", "_templates/autosummary_module_template.rst", "about.rst", "applications.rst", "contents.rst", "contributing.rst", "contributing/documentation.rst", "contributing/pull_request.rst", "documentation.rst", "documentation/cpp_api/contents.rst", "documentation/cpp_api/itertools.rst", "documentation/cpp_api/itertools/chunk_range.rst", "documentation/cpp_api/itertools/distance.rst", "documentation/cpp_api/itertools/enum_iter.rst", "documentation/cpp_api/itertools/enum_iter/constructor.rst", "documentation/cpp_api/itertools/enum_iter/dereference.rst", "documentation/cpp_api/itertools/enum_iter/increment.rst", "documentation/cpp_api/itertools/enum_iter/operator==.rst", "documentation/cpp_api/itertools/enumerate.rst", "documentation/cpp_api/itertools/enumerated.rst", "documentation/cpp_api/itertools/enumerated/begin.rst", "documentation/cpp_api/itertools/enumerated/cbegin.rst", "documentation/cpp_api/itertools/enumerated/cend.rst", "documentation/cpp_api/itertools/enumerated/end.rst", "documentation/cpp_api/itertools/enumerated/operator==.rst", "documentation/cpp_api/itertools/foreach.rst", "documentation/cpp_api/itertools/iterator_facade.rst", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT.rst", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator*.rst", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.rst", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator->.rst", "documentation/cpp_api/itertools/make_product.rst", "documentation/cpp_api/itertools/make_sentinel.rst", "documentation/cpp_api/itertools/make_vector_from_range.rst", "documentation/cpp_api/itertools/multiplied.rst", "documentation/cpp_api/itertools/multiplied/begin.rst", "documentation/cpp_api/itertools/multiplied/cbegin.rst", "documentation/cpp_api/itertools/multiplied/cend.rst", "documentation/cpp_api/itertools/multiplied/constructor.rst", "documentation/cpp_api/itertools/multiplied/end.rst", "documentation/cpp_api/itertools/multiplied/operator==.rst", "documentation/cpp_api/itertools/prod_iter.rst", "documentation/cpp_api/itertools/prod_iter/constructor.rst", "documentation/cpp_api/itertools/prod_iter/dereference.rst", "documentation/cpp_api/itertools/prod_iter/increment.rst", "documentation/cpp_api/itertools/prod_iter/operator==.rst", "documentation/cpp_api/itertools/product.rst", "documentation/cpp_api/itertools/product_range.rst", "documentation/cpp_api/itertools/range.rst", "documentation/cpp_api/itertools/range/begin.rst", "documentation/cpp_api/itertools/range/cbegin.rst", "documentation/cpp_api/itertools/range/cend.rst", "documentation/cpp_api/itertools/range/constructor.rst", "documentation/cpp_api/itertools/range/end.rst", "documentation/cpp_api/itertools/range/first.rst", "documentation/cpp_api/itertools/range/last.rst", "documentation/cpp_api/itertools/range/operator+.rst", "documentation/cpp_api/itertools/range/operator<<.rst", "documentation/cpp_api/itertools/range/operator==.rst", "documentation/cpp_api/itertools/range/size.rst", "documentation/cpp_api/itertools/range/step.rst", "documentation/cpp_api/itertools/sentinel_t.rst", "documentation/cpp_api/itertools/slice.rst", "documentation/cpp_api/itertools/sliced.rst", "documentation/cpp_api/itertools/sliced/begin.rst", "documentation/cpp_api/itertools/sliced/cbegin.rst", "documentation/cpp_api/itertools/sliced/cend.rst", "documentation/cpp_api/itertools/sliced/end.rst", "documentation/cpp_api/itertools/sliced/operator==.rst", "documentation/cpp_api/itertools/sliced/size.rst", "documentation/cpp_api/itertools/stride.rst", "documentation/cpp_api/itertools/stride_iter.rst", "documentation/cpp_api/itertools/stride_iter/constructor.rst", "documentation/cpp_api/itertools/stride_iter/dereference.rst", "documentation/cpp_api/itertools/stride_iter/increment.rst", "documentation/cpp_api/itertools/stride_iter/operator==.rst", "documentation/cpp_api/itertools/strided.rst", "documentation/cpp_api/itertools/strided/begin.rst", "documentation/cpp_api/itertools/strided/cbegin.rst", "documentation/cpp_api/itertools/strided/cend.rst", "documentation/cpp_api/itertools/strided/end.rst", "documentation/cpp_api/itertools/strided/operator==.rst", "documentation/cpp_api/itertools/transform.rst", "documentation/cpp_api/itertools/transform_iter.rst", "documentation/cpp_api/itertools/transform_iter/constructor.rst", "documentation/cpp_api/itertools/transform_iter/dereference.rst", "documentation/cpp_api/itertools/transform_iter/increment.rst", "documentation/cpp_api/itertools/transform_iter/operator=.rst", "documentation/cpp_api/itertools/transform_iter/operator==.rst", "documentation/cpp_api/itertools/transformed.rst", "documentation/cpp_api/itertools/transformed/begin.rst", "documentation/cpp_api/itertools/transformed/cbegin.rst", "documentation/cpp_api/itertools/transformed/cend.rst", "documentation/cpp_api/itertools/transformed/end.rst", "documentation/cpp_api/itertools/zip.rst", "documentation/cpp_api/itertools/zip_iter.rst", "documentation/cpp_api/itertools/zip_iter/constructor.rst", "documentation/cpp_api/itertools/zip_iter/dereference.rst", "documentation/cpp_api/itertools/zip_iter/increment.rst", "documentation/cpp_api/itertools/zip_iter/operator==.rst", "documentation/cpp_api/itertools/zipped.rst", "documentation/cpp_api/itertools/zipped/begin.rst", "documentation/cpp_api/itertools/zipped/cbegin.rst", "documentation/cpp_api/itertools/zipped/cend.rst", "documentation/cpp_api/itertools/zipped/constructor.rst", "documentation/cpp_api/itertools/zipped/end.rst", "documentation/cpp_api/itertools/zipped/operator==.rst", "documentation/cpp_api/mpi.rst", "documentation/cpp_api/mpi/all_gather.rst", "documentation/cpp_api/mpi/all_reduce.rst", "documentation/cpp_api/mpi/all_reduce_in_place.rst", "documentation/cpp_api/mpi/broadcast.rst", "documentation/cpp_api/mpi/chunk.rst", "documentation/cpp_api/mpi/chunk_length.rst", "documentation/cpp_api/mpi/communicator.rst", "documentation/cpp_api/mpi/communicator/abort.rst", "documentation/cpp_api/mpi/communicator/barrier.rst", "documentation/cpp_api/mpi/communicator/constructor.rst", "documentation/cpp_api/mpi/communicator/get.rst", "documentation/cpp_api/mpi/communicator/rank.rst", "documentation/cpp_api/mpi/communicator/size.rst", "documentation/cpp_api/mpi/communicator/split.rst", "documentation/cpp_api/mpi/environment.rst", "documentation/cpp_api/mpi/environment/constructor.rst", "documentation/cpp_api/mpi/gather.rst", "documentation/cpp_api/mpi/get_mpi_type.rst", "documentation/cpp_api/mpi/is_initialized.rst", "documentation/cpp_api/mpi/lazy.rst", "documentation/cpp_api/mpi/lazy/invoke.rst", "documentation/cpp_api/mpi/lazy/shape.rst", "documentation/cpp_api/mpi/map_C_function.rst", "documentation/cpp_api/mpi/map_add.rst", "documentation/cpp_api/mpi/monitor.rst", "documentation/cpp_api/mpi/monitor/constructor.rst", "documentation/cpp_api/mpi/monitor/emergency_occured.rst", "documentation/cpp_api/mpi/monitor/finalize_communications.rst", "documentation/cpp_api/mpi/monitor/operator=.rst", "documentation/cpp_api/mpi/monitor/request_emergency_stop.rst", "documentation/cpp_api/mpi/monitor/root_check_nodes_and_bcast.rst", "documentation/cpp_api/mpi/mpi_broadcast.rst", "documentation/cpp_api/mpi/mpi_gather.rst", "documentation/cpp_api/mpi/mpi_reduce.rst", "documentation/cpp_api/mpi/mpi_reduce_in_place.rst", "documentation/cpp_api/mpi/mpi_scatter.rst", "documentation/cpp_api/mpi/mpi_type.rst", "documentation/cpp_api/mpi/mpi_typeLTconstTGT.rst", "documentation/cpp_api/mpi/mpi_typeLTstd::tupleLTT...GTGT.rst", "documentation/cpp_api/mpi/mpi_type_from_tie.rst", "documentation/cpp_api/mpi/reduce.rst", "documentation/cpp_api/mpi/reduce_in_place.rst", "documentation/cpp_api/mpi/scatter.rst", "documentation/cpp_api/triqs/atom_diag.rst", "documentation/cpp_api/triqs/atom_diag/act.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/c_connection.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/c_matrix.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/cdag_connection.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/cdag_matrix.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/constructor.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/flatten_subspace_index.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_eigensystems.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_eigenvalue.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_energies.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_fock_states.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_fops.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_full_hilbert_space.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_full_hilbert_space_dim.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_gs_energy.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_h_atomic.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_matrix_element_of_monomial.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_op_mat.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_quantum_numbers.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_subspace_dim.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_subspace_dims.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_unitary_matrices.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_unitary_matrix.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_vacuum_state.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_vacuum_subspace_index.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/index_range_of_subspace.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/n_subspaces.rst", "documentation/cpp_api/triqs/atom_diag/atomic_density_matrix.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_iw.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_l.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_lehmann.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_tau.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_w.rst", "documentation/cpp_api/triqs/atom_diag/partition_function.rst", "documentation/cpp_api/triqs/atom_diag/quantum_number_eigenvalues.rst", "documentation/cpp_api/triqs/atom_diag/quantum_number_eigenvalues_checked.rst", "documentation/cpp_api/triqs/atom_diag/trace_rho_op.rst", "documentation/cpp_api/triqs/det_manip.rst", "documentation/cpp_api/triqs/det_manip/det_manip.rst", "documentation/cpp_api/triqs/det_manip/det_manip/change_col.rst", "documentation/cpp_api/triqs/det_manip/det_manip/change_row.rst", "documentation/cpp_api/triqs/det_manip/det_manip/clear.rst", "documentation/cpp_api/triqs/det_manip/det_manip/complete_operation.rst", "documentation/cpp_api/triqs/det_manip/det_manip/constructor.rst", "documentation/cpp_api/triqs/det_manip/det_manip/determinant.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_function.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_n_operations_before_check.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_precision_error.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_precision_warning.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_singular_threshold.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_x.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_x_internal_order.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_y.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_y_internal_order.rst", "documentation/cpp_api/triqs/det_manip/det_manip/h5_read.rst", "documentation/cpp_api/triqs/det_manip/det_manip/h5_write.rst", "documentation/cpp_api/triqs/det_manip/det_manip/insert.rst", "documentation/cpp_api/triqs/det_manip/det_manip/insert2.rst", "documentation/cpp_api/triqs/det_manip/det_manip/insert2_at_end.rst", "documentation/cpp_api/triqs/det_manip/det_manip/insert_at_end.rst", "documentation/cpp_api/triqs/det_manip/det_manip/inverse_matrix.rst", "documentation/cpp_api/triqs/det_manip/det_manip/inverse_matrix_internal_order.rst", "documentation/cpp_api/triqs/det_manip/det_manip/is_singular.rst", "documentation/cpp_api/triqs/det_manip/det_manip/matrix.rst", "documentation/cpp_api/triqs/det_manip/det_manip/reject_last_try.rst", "documentation/cpp_api/triqs/det_manip/det_manip/remove.rst", "documentation/cpp_api/triqs/det_manip/det_manip/remove2.rst", "documentation/cpp_api/triqs/det_manip/det_manip/remove2_at_end.rst", "documentation/cpp_api/triqs/det_manip/det_manip/remove_at_end.rst", "documentation/cpp_api/triqs/det_manip/det_manip/reserve.rst", "documentation/cpp_api/triqs/det_manip/det_manip/roll_matrix.rst", "documentation/cpp_api/triqs/det_manip/det_manip/set_n_operations_before_check.rst", "documentation/cpp_api/triqs/det_manip/det_manip/set_precision_error.rst", "documentation/cpp_api/triqs/det_manip/det_manip/set_precision_warning.rst", "documentation/cpp_api/triqs/det_manip/det_manip/set_singular_threshold.rst", "documentation/cpp_api/triqs/det_manip/det_manip/size.rst", "documentation/cpp_api/triqs/det_manip/det_manip/swap_col.rst", "documentation/cpp_api/triqs/det_manip/det_manip/swap_row.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_col.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_col_row.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_row.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_insert.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_insert_k.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_refill.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_remove.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_remove_k.rst", "documentation/cpp_api/triqs/gfs.rst", "documentation/cpp_api/triqs/gfs/.rst", "documentation/cpp_api/triqs/gfs/block_gf.rst", "documentation/cpp_api/triqs/gfs/block_gf/block_names.rst", "documentation/cpp_api/triqs/gfs/block_gf/block_sizes.rst", "documentation/cpp_api/triqs/gfs/block_gf/constructor.rst", "documentation/cpp_api/triqs/gfs/block_gf/data.rst", "documentation/cpp_api/triqs/gfs/block_gf/h5_read.rst", "documentation/cpp_api/triqs/gfs/block_gf/h5_write.rst", "documentation/cpp_api/triqs/gfs/block_gf/hdf5_format.rst", "documentation/cpp_api/triqs/gfs/block_gf/operator().rst", "documentation/cpp_api/triqs/gfs/block_gf/operator=.rst", "documentation/cpp_api/triqs/gfs/density.rst", "documentation/cpp_api/triqs/gfs/fit_gf_dlr.rst", "documentation/cpp_api/triqs/gfs/fit_hermitian_tail.rst", "documentation/cpp_api/triqs/gfs/fit_tail.rst", "documentation/cpp_api/triqs/gfs/flatten_2d.rst", "documentation/cpp_api/triqs/gfs/flatten_gf_2d.rst", "documentation/cpp_api/triqs/gfs/get_mesh.rst", "documentation/cpp_api/triqs/gfs/gf.rst", "documentation/cpp_api/triqs/gfs/gf/constructor.rst", "documentation/cpp_api/triqs/gfs/gf/data.rst", "documentation/cpp_api/triqs/gfs/gf/data_shape.rst", "documentation/cpp_api/triqs/gfs/gf/h5_read.rst", "documentation/cpp_api/triqs/gfs/gf/h5_write.rst", "documentation/cpp_api/triqs/gfs/gf/hdf5_format.rst", "documentation/cpp_api/triqs/gfs/gf/mesh.rst", "documentation/cpp_api/triqs/gfs/gf/operator<<.rst", "documentation/cpp_api/triqs/gfs/gf/operator=.rst", "documentation/cpp_api/triqs/gfs/gf/target_indices.rst", "documentation/cpp_api/triqs/gfs/gf/target_shape.rst", "documentation/cpp_api/triqs/gfs/gf_const_view.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/constructor.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/data.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/data_shape.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/h5_read.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/h5_write.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/hdf5_format.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/mesh.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/operator<<.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/rebind.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/target_indices.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/target_shape.rst", "documentation/cpp_api/triqs/gfs/gf_view.rst", "documentation/cpp_api/triqs/gfs/gf_view/constructor.rst", "documentation/cpp_api/triqs/gfs/gf_view/data.rst", "documentation/cpp_api/triqs/gfs/gf_view/data_shape.rst", "documentation/cpp_api/triqs/gfs/gf_view/h5_read.rst", "documentation/cpp_api/triqs/gfs/gf_view/h5_write.rst", "documentation/cpp_api/triqs/gfs/gf_view/hdf5_format.rst", "documentation/cpp_api/triqs/gfs/gf_view/mesh.rst", "documentation/cpp_api/triqs/gfs/gf_view/operator<<.rst", "documentation/cpp_api/triqs/gfs/gf_view/operator=.rst", "documentation/cpp_api/triqs/gfs/gf_view/rebind.rst", "documentation/cpp_api/triqs/gfs/gf_view/target_indices.rst", "documentation/cpp_api/triqs/gfs/gf_view/target_shape.rst", "documentation/cpp_api/triqs/gfs/h5_read_gf_struct.rst", "documentation/cpp_api/triqs/gfs/imag.rst", "documentation/cpp_api/triqs/gfs/impl_tag.rst", "documentation/cpp_api/triqs/gfs/inverse.rst", "documentation/cpp_api/triqs/gfs/is_gf_hermitian.rst", "documentation/cpp_api/triqs/gfs/is_gf_real.rst", "documentation/cpp_api/triqs/gfs/is_gf_real_in_tau.rst", "documentation/cpp_api/triqs/gfs/make_block2_gf.rst", "documentation/cpp_api/triqs/gfs/make_block_gf.rst", "documentation/cpp_api/triqs/gfs/make_block_gf_view.rst", "documentation/cpp_api/triqs/gfs/make_gf_dlr.rst", "documentation/cpp_api/triqs/gfs/make_gf_dlr_imfreq.rst", "documentation/cpp_api/triqs/gfs/make_gf_dlr_imtime.rst", "documentation/cpp_api/triqs/gfs/make_gf_from_fourier.rst", "documentation/cpp_api/triqs/gfs/make_gf_from_inverse_fourier.rst", "documentation/cpp_api/triqs/gfs/make_gf_from_real_gf.rst", "documentation/cpp_api/triqs/gfs/make_gf_imfreq.rst", "documentation/cpp_api/triqs/gfs/make_gf_imtime.rst", "documentation/cpp_api/triqs/gfs/make_hermitian.rst", "documentation/cpp_api/triqs/gfs/make_real_in_tau.rst", "documentation/cpp_api/triqs/gfs/make_zero_tail.rst", "documentation/cpp_api/triqs/gfs/mpi_reduce.rst", "documentation/cpp_api/triqs/gfs/positive_freq_view.rst", "documentation/cpp_api/triqs/gfs/real.rst", "documentation/cpp_api/triqs/gfs/reinterpret_scalar_valued_gf_as_matrix_valued.rst", "documentation/cpp_api/triqs/gfs/tau_L2_norm.rst", "documentation/cpp_api/triqs/gfs/unflatten_2d.rst", "documentation/cpp_api/triqs/gfs/unflatten_gf_2d.rst", "documentation/cpp_api/triqs/hilbert_space.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/begin.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/cbegin.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/cend.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/data.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/end.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/h5_read_attribute.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/h5_write_attribute.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/has_indices.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/insert.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/insert_from_indices_t.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/operator==.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/operator[].rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/size.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/get_fock_state.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/get_state_index.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/h5_read.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/h5_write.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/has_state.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/hdf5_format.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/operator!=.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/operator==.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/size.rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator.rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/is_empty.rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/operator().rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/update.rst", "documentation/cpp_api/triqs/hilbert_space/make_zero_state.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/find_mappings.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/foreach.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/get_matrix_elements.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/lookup_basis_state.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/merge_subspaces.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/n_subspaces.rst", "documentation/cpp_api/triqs/hilbert_space/state.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/amplitudes.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/dot_product.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/foreach.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/get_hilbert.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator().rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator*=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator+=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator-=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/set_hilbert.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/size.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/dot_product.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/foreach.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/get_hilbert.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/nterms.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator().rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator*=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator+=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator-=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/set_hilbert.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/size.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/add_fock_state.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_all_fock_states.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_fock_state.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_index.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_state_index.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/h5_read.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/h5_write.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/has_state.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/hdf5_format.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/operator!=.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/operator==.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/set_index.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/size.rst", "documentation/cpp_api/triqs/mc_tools.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/accumulate.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_measure.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_measure_aux.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_move.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/clear_measures.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/collect_results.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/constructor.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_acceptance_rates.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_accumulation_time.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_accumulation_time_HHMMSS.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_config_id.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_current_cycle_number.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_duration.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_percent.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_rng.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_total_time.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_warmup_time.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_warmup_time_HHMMSS.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/h5_read.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/h5_write.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/rm_measure.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/run.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/set_after_cycle_duty.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/warmup.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/warmup_and_accumulate.rst", "documentation/cpp_api/triqs/mc_tools/move_set.rst", "documentation/cpp_api/triqs/mc_tools/move_set/accept.rst", "documentation/cpp_api/triqs/mc_tools/move_set/add.rst", "documentation/cpp_api/triqs/mc_tools/move_set/attempt.rst", "documentation/cpp_api/triqs/mc_tools/move_set/clear_statistics.rst", "documentation/cpp_api/triqs/mc_tools/move_set/collect_statistics.rst", "documentation/cpp_api/triqs/mc_tools/move_set/constructor.rst", "documentation/cpp_api/triqs/mc_tools/move_set/get_acceptance_rates.rst", "documentation/cpp_api/triqs/mc_tools/move_set/get_statistics.rst", "documentation/cpp_api/triqs/mc_tools/move_set/reject.rst", "documentation/cpp_api/triqs/mc_tools/random_generator.rst", "documentation/cpp_api/triqs/mc_tools/random_generator/constructor.rst", "documentation/cpp_api/triqs/mc_tools/random_generator/name.rst", "documentation/cpp_api/triqs/mc_tools/random_generator/operator().rst", "documentation/cpp_api/triqs/mc_tools/random_generator/preview.rst", "documentation/cpp_api/triqs/mc_tools/random_generator_names.rst", "documentation/cpp_api/triqs/stat.rst", "documentation/cpp_api/triqs/stat/accumulator.rst", "documentation/cpp_api/triqs/stat/accumulator/compress_linear_bins.rst", "documentation/cpp_api/triqs/stat/accumulator/constructor.rst", "documentation/cpp_api/triqs/stat/accumulator/data_input_count.rst", "documentation/cpp_api/triqs/stat/accumulator/lin_bin_capacity.rst", "documentation/cpp_api/triqs/stat/accumulator/linear_bins.rst", "documentation/cpp_api/triqs/stat/accumulator/log_bin_errors.rst", "documentation/cpp_api/triqs/stat/accumulator/log_bin_errors_all_reduce.rst", "documentation/cpp_api/triqs/stat/accumulator/n_lin_bins.rst", "documentation/cpp_api/triqs/stat/accumulator/n_lin_bins_max.rst", "documentation/cpp_api/triqs/stat/accumulator/n_log_bins.rst", "documentation/cpp_api/triqs/stat/accumulator/n_log_bins_max.rst", "documentation/cpp_api/triqs/stat/accumulator/operator<<.rst", "documentation/cpp_api/triqs/stat/cdf.rst", "documentation/cpp_api/triqs/stat/histogram.rst", "documentation/cpp_api/triqs/stat/histogram/clear.rst", "documentation/cpp_api/triqs/stat/histogram/constructor.rst", "documentation/cpp_api/triqs/stat/histogram/data.rst", "documentation/cpp_api/triqs/stat/histogram/h5_read.rst", "documentation/cpp_api/triqs/stat/histogram/h5_write.rst", "documentation/cpp_api/triqs/stat/histogram/hdf5_format.rst", "documentation/cpp_api/triqs/stat/histogram/limits.rst", "documentation/cpp_api/triqs/stat/histogram/mesh_point.rst", "documentation/cpp_api/triqs/stat/histogram/mpi_broadcast.rst", "documentation/cpp_api/triqs/stat/histogram/mpi_reduce.rst", "documentation/cpp_api/triqs/stat/histogram/n_data_pts.rst", "documentation/cpp_api/triqs/stat/histogram/n_lost_pts.rst", "documentation/cpp_api/triqs/stat/histogram/operator+.rst", "documentation/cpp_api/triqs/stat/histogram/operator<<.rst", "documentation/cpp_api/triqs/stat/histogram/operator==.rst", "documentation/cpp_api/triqs/stat/histogram/size.rst", "documentation/cpp_api/triqs/stat/jackknife.rst", "documentation/cpp_api/triqs/stat/jackknife_mpi.rst", "documentation/cpp_api/triqs/stat/mean.rst", "documentation/cpp_api/triqs/stat/mean_and_err.rst", "documentation/cpp_api/triqs/stat/mean_and_err_mpi.rst", "documentation/cpp_api/triqs/stat/mean_mpi.rst", "documentation/cpp_api/triqs/stat/pdf.rst", "documentation/cpp_api/triqs/stat/tau_estimate_from_errors.rst", "documentation/manual/contents.rst", "documentation/manual/cpp2py/cfunction.rst", "documentation/manual/cpp2py/class.rst", "documentation/manual/cpp2py/contents.rst", "documentation/manual/cpp2py/convert.rst", "documentation/manual/cpp2py/module.rst", "documentation/manual/cpp2py/principle.rst", "documentation/manual/cpp2py/reference.rst", "documentation/manual/hdf5/contents.rst", "documentation/manual/hdf5/protocol.rst", "documentation/manual/hdf5/ref.rst", "documentation/manual/mpi/contents.rst", "documentation/manual/triqs/atom_diag/contents.rst", "documentation/manual/triqs/atom_diag/functions.rst", "documentation/manual/triqs/clef/assign.rst", "documentation/manual/triqs/clef/contents.rst", "documentation/manual/triqs/clef/examples/contents.rst", "documentation/manual/triqs/clef/examples/lazy_sum.rst", "documentation/manual/triqs/clef/expressions_eval.rst", "documentation/manual/triqs/clef/expressions_form.rst", "documentation/manual/triqs/clef/function.rst", "documentation/manual/triqs/clef/introduction.rst", "documentation/manual/triqs/clef/overload.rst", "documentation/manual/triqs/conventions.rst", "documentation/manual/triqs/det_manip/contents.rst", "documentation/manual/triqs/det_manip/det_manip.rst", "documentation/manual/triqs/det_manip/implementation_notes.rst", "documentation/manual/triqs/gfs/basic_notions/contents.rst", "documentation/manual/triqs/gfs/c++/clef.rst", "documentation/manual/triqs/gfs/c++/concepts.rst", "documentation/manual/triqs/gfs/c++/contents.rst", "documentation/manual/triqs/gfs/c++/fourier.rst", "documentation/manual/triqs/gfs/c++/fourier_impl_notes.rst", "documentation/manual/triqs/gfs/c++/gf_and_view.rst", "documentation/manual/triqs/gfs/c++/gf_assign.rst", "documentation/manual/triqs/gfs/c++/gf_block.rst", "documentation/manual/triqs/gfs/c++/gf_call.rst", "documentation/manual/triqs/gfs/c++/gf_constructors.rst", "documentation/manual/triqs/gfs/c++/gf_data.rst", "documentation/manual/triqs/gfs/c++/gf_imfreq.rst", "documentation/manual/triqs/gfs/c++/gf_imtime.rst", "documentation/manual/triqs/gfs/c++/gf_legendre.rst", "documentation/manual/triqs/gfs/c++/gf_misc.rst", "documentation/manual/triqs/gfs/c++/gf_part_eval_curry.rst", "documentation/manual/triqs/gfs/c++/gf_product.rst", "documentation/manual/triqs/gfs/c++/gf_refreq.rst", "documentation/manual/triqs/gfs/c++/gf_reinterpret.rst", "documentation/manual/triqs/gfs/c++/gf_retime.rst", "documentation/manual/triqs/gfs/c++/gf_special.rst", "documentation/manual/triqs/gfs/c++/gf_subscript.rst", "documentation/manual/triqs/gfs/c++/implementation_notes.rst", "documentation/manual/triqs/gfs/c++/matsubara_freq_mesh.rst", "documentation/manual/triqs/gfs/c++/matsubara_imtime.rst", "documentation/manual/triqs/gfs/c++/tail.rst", "documentation/manual/triqs/gfs/contents.rst", "documentation/manual/triqs/gfs/py/block.rst", "documentation/manual/triqs/gfs/py/block/GfImFreq.rst", "documentation/manual/triqs/gfs/py/block/GfImTime.rst", "documentation/manual/triqs/gfs/py/block/GfLegendre.rst", "documentation/manual/triqs/gfs/py/block/GfReFreq.rst", "documentation/manual/triqs/gfs/py/block/GfReTime.rst", "documentation/manual/triqs/gfs/py/contents.rst", "documentation/manual/triqs/gfs/py/descriptors.rst", "documentation/manual/triqs/gfs/py/full.rst", "documentation/manual/triqs/gfs/py/tail.rst", "documentation/manual/triqs/gfs/py/tools.rst", "documentation/manual/triqs/gfs/py/transforms.rst", "documentation/manual/triqs/hilbert_space/contents.rst", "documentation/manual/triqs/hilbert_space/statevector_concept.rst", "documentation/manual/triqs/lattice_tools/bravais.rst", "documentation/manual/triqs/lattice_tools/contents.rst", "documentation/manual/triqs/lattice_tools/dos.rst", "documentation/manual/triqs/lattice_tools/hilbert.rst", "documentation/manual/triqs/lattice_tools/sumk.rst", "documentation/manual/triqs/lattice_tools/tightbinding.rst", "documentation/manual/triqs/lattice_tools/tightbinding_and_example.rst", "documentation/manual/triqs/mc_tools/concepts.rst", "documentation/manual/triqs/mc_tools/contents.rst", "documentation/manual/triqs/mc_tools/full_ref.rst", "documentation/manual/triqs/mc_tools/ising.rst", "documentation/manual/triqs/mc_tools/loop.rst", "documentation/manual/triqs/mc_tools/random.rst", "documentation/manual/triqs/mc_tools/tutorial.rst", "documentation/manual/triqs/operators/contents.rst", "documentation/manual/triqs/operators/operators.rst", "documentation/manual/triqs/operators/util/U_matrix.rst", "documentation/manual/triqs/operators/util/extractors.rst", "documentation/manual/triqs/operators/util/hamiltonians.rst", "documentation/manual/triqs/operators/util/observables.rst", "documentation/manual/triqs/operators/util/op_struct.rst", "documentation/manual/triqs/plotting_protocols/contents.rst", "documentation/manual/triqs/plotting_protocols/fit/fit.rst", "documentation/manual/triqs/plotting_protocols/plotting/plotting.rst", "documentation/manual/triqs/provenance/contents.rst", "documentation/manual/triqs/random_generator/contents.rst", "documentation/manual/triqs/stat/contents.rst", "documentation/manual/triqs/utilities/contents.rst", "documentation/manual/triqs/utilities/exceptions.rst", "documentation/manual/triqs/utilities/python_include_mess.rst", "documentation/manual/triqs/utilities/tupletools.rst", "documentation/python_api/triqs.atom_diag.rst", "documentation/python_api/triqs.atom_diag.AtomDiag.rst", "documentation/python_api/triqs.atom_diag.atom_diag.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.__init__.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.c_connection.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.c_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_connection.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.energies.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.flatten_subspace_index.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.fock_states.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.fops.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.full_hilbert_space_dim.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_eigenvalue.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dim.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dims.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.gs_energy.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.h_atomic.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.n_subspaces.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.quantum_numbers.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.unitary_matrices.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_state.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_subspace_index.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.__init__.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.c_connection.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.c_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.cdag_connection.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.cdag_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.energies.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.flatten_subspace_index.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.fock_states.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.fops.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.full_hilbert_space_dim.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_eigenvalue.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dim.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dims.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.gs_energy.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.h_atomic.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.n_subspaces.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.quantum_numbers.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.unitary_matrices.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_state.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_subspace_index.rst", "documentation/python_api/triqs.atom_diag.atom_diag.act.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_density_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_iw.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_l.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_tau.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_w.rst", "documentation/python_api/triqs.atom_diag.atom_diag.partition_function.rst", "documentation/python_api/triqs.atom_diag.atom_diag.quantum_number_eigenvalues.rst", "documentation/python_api/triqs.atom_diag.atom_diag.quantum_number_eigenvalues_checked.rst", "documentation/python_api/triqs.atom_diag.atom_diag.trace_rho_op.rst", "documentation/python_api/triqs.dos.rst", "documentation/python_api/triqs.dos.dos.rst", "documentation/python_api/triqs.dos.dos.DOS.rst", "documentation/python_api/triqs.dos.dos.DOS.__init__.rst", "documentation/python_api/triqs.dos.dos.DOS.copy.rst", "documentation/python_api/triqs.dos.dos.DOS.density.rst", "documentation/python_api/triqs.dos.dos.DOSFromFunction.rst", "documentation/python_api/triqs.dos.dos.DOSFromFunction.__init__.rst", "documentation/python_api/triqs.dos.dos.DOSFromFunction.copy.rst", "documentation/python_api/triqs.dos.dos.DOSFromFunction.density.rst", "documentation/python_api/triqs.dos.dos.dos_from_file.rst", "documentation/python_api/triqs.dos.hilbert_transform.rst", "documentation/python_api/triqs.dos.hilbert_transform.HilbertTransform.rst", "documentation/python_api/triqs.dos.hilbert_transform.HilbertTransform.__init__.rst", "documentation/python_api/triqs.fit.rst", "documentation/python_api/triqs.fit.fit.rst", "documentation/python_api/triqs.fit.fit.Fit.rst", "documentation/python_api/triqs.fit.fit.Fit.__init__.rst", "documentation/python_api/triqs.gf.rst", "documentation/python_api/triqs.gf.backwd_compat.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.zero.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.zero.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.zero.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.zero.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.zero.rst", "documentation/python_api/triqs.gf.block2_gf.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.__init__.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.all_indices.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy_from.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy_selected_blocks.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.imag.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices1.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices2.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.n_blocks.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.real.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.view_selected_blocks.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.zero.rst", "documentation/python_api/triqs.gf.block_gf.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.__init__.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.all_indices.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.beta.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.conjugate.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy_from.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy_selected_blocks.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.density.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.imag.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.indices.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.inverse.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.invert.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.load.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.mesh.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.n_blocks.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.real.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.save.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.total_density.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.transpose.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.view_selected_blocks.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.zero.rst", "documentation/python_api/triqs.gf.block_gf.call_factory_from_dict.rst", "documentation/python_api/triqs.gf.block_gf.fix_gf_struct_type.rst", "documentation/python_api/triqs.gf.descriptor_base.rst", "documentation/python_api/triqs.gf.descriptor_base.Base.rst", "documentation/python_api/triqs.gf.descriptor_base.Base.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.rst", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.is_block_descriptor.rst", "documentation/python_api/triqs.gf.descriptor_base.Const.rst", "documentation/python_api/triqs.gf.descriptor_base.Const.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.Function.rst", "documentation/python_api/triqs.gf.descriptor_base.Function.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.LazyCTX.rst", "documentation/python_api/triqs.gf.descriptor_base.LazyCTX.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.Omega_.rst", "documentation/python_api/triqs.gf.descriptor_base.Omega_.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.convert_scalar_to_const.rst", "documentation/python_api/triqs.gf.descriptor_base.is_lazy.rst", "documentation/python_api/triqs.gf.descriptor_base.is_scalar.rst", "documentation/python_api/triqs.gf.descriptors.rst", "documentation/python_api/triqs.gf.descriptors.Flat.rst", "documentation/python_api/triqs.gf.descriptors.Flat.__init__.rst", "documentation/python_api/triqs.gf.descriptors.Fourier.rst", "documentation/python_api/triqs.gf.descriptors.Fourier.__init__.rst", "documentation/python_api/triqs.gf.descriptors.Fourier.is_block_descriptor.rst", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.rst", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.__init__.rst", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.is_block_descriptor.rst", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.rst", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.__init__.rst", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.is_block_descriptor.rst", "documentation/python_api/triqs.gf.descriptors.OneFermionInTime.rst", "documentation/python_api/triqs.gf.descriptors.OneFermionInTime.__init__.rst", "documentation/python_api/triqs.gf.descriptors.SemiCircular.rst", "documentation/python_api/triqs.gf.descriptors.SemiCircular.__init__.rst", "documentation/python_api/triqs.gf.descriptors.Wilson.rst", "documentation/python_api/triqs.gf.descriptors.Wilson.__init__.rst", "documentation/python_api/triqs.gf.descriptors.semi.rst", "documentation/python_api/triqs.gf.dlr_crm_dyson_solver.rst", "documentation/python_api/triqs.gf.dlr_crm_dyson_solver.minimize_dyson.rst", "documentation/python_api/triqs.gf.gf.rst", "documentation/python_api/triqs.gf.gf.AddMethod.rst", "documentation/python_api/triqs.gf.gf.AddMethod.__init__.rst", "documentation/python_api/triqs.gf.gf.AddMethod.mro.rst", "documentation/python_api/triqs.gf.gf.CallProxyNone.rst", "documentation/python_api/triqs.gf.gf.CallProxyNone.__init__.rst", "documentation/python_api/triqs.gf.gf.Gf.rst", "documentation/python_api/triqs.gf.gf.Gf.__init__.rst", "documentation/python_api/triqs.gf.gf.Gf.conjugate.rst", "documentation/python_api/triqs.gf.gf.Gf.copy.rst", "documentation/python_api/triqs.gf.gf.Gf.copy_from.rst", "documentation/python_api/triqs.gf.gf.Gf.data.rst", "documentation/python_api/triqs.gf.gf.Gf.density.rst", "documentation/python_api/triqs.gf.gf.Gf.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.gf.Gf.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.gf.Gf.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.gf.Gf.fit_tail.rst", "documentation/python_api/triqs.gf.gf.Gf.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.gf.Gf.from_L_G_R.rst", "documentation/python_api/triqs.gf.gf.Gf.imag.rst", "documentation/python_api/triqs.gf.gf.Gf.indices.rst", "documentation/python_api/triqs.gf.gf.Gf.inverse.rst", "documentation/python_api/triqs.gf.gf.Gf.invert.rst", "documentation/python_api/triqs.gf.gf.Gf.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.gf.Gf.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.gf.Gf.mesh.rst", "documentation/python_api/triqs.gf.gf.Gf.rank.rst", "documentation/python_api/triqs.gf.gf.Gf.real.rst", "documentation/python_api/triqs.gf.gf.Gf.rebinning_tau.rst", "documentation/python_api/triqs.gf.gf.Gf.replace_by_tail.rst", "documentation/python_api/triqs.gf.gf.Gf.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_fourier.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_imfreq.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_imtime.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_legendre.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_pade.rst", "documentation/python_api/triqs.gf.gf.Gf.target_indices.rst", "documentation/python_api/triqs.gf.gf.Gf.target_rank.rst", "documentation/python_api/triqs.gf.gf.Gf.target_shape.rst", "documentation/python_api/triqs.gf.gf.Gf.tau_L2_norm.rst", "documentation/python_api/triqs.gf.gf.Gf.total_density.rst", "documentation/python_api/triqs.gf.gf.Gf.transpose.rst", "documentation/python_api/triqs.gf.gf.Gf.x_data_view.rst", "documentation/python_api/triqs.gf.gf.Gf.zero.rst", "documentation/python_api/triqs.gf.gf.Idx.rst", "documentation/python_api/triqs.gf.gf.Idx.__init__.rst", "documentation/python_api/triqs.gf.gf.add_method_helper.rst", "documentation/python_api/triqs.gf.gf.bckwd.rst", "documentation/python_api/triqs.gf.gf.call_factory_from_dict.rst", "documentation/python_api/triqs.gf.gf_factories.rst", "documentation/python_api/triqs.gf.gf_factories.fit_gf_dlr.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr_imfreq.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr_imtime.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_from_fourier.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_imfreq.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_imtime.rst", "documentation/python_api/triqs.gf.gf_factories.make_hermitian.rst", "documentation/python_api/triqs.gf.gf_factories.make_real_in_tau.rst", "documentation/python_api/triqs.gf.gf_fnt.rst", "documentation/python_api/triqs.gf.gf_fnt.density.rst", "documentation/python_api/triqs.gf.gf_fnt.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.gf_fnt.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.gf_fnt.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.gf_fnt.fit_tail.rst", "documentation/python_api/triqs.gf.gf_fnt.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.gf_fnt.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.gf_fnt.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.gf_fnt.rebinning_tau.rst", "documentation/python_api/triqs.gf.gf_fnt.replace_by_tail.rst", "documentation/python_api/triqs.gf.gf_fnt.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_fourier.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_imfreq.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_imtime.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_legendre.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_pade.rst", "documentation/python_api/triqs.gf.gf_fnt.tau_L2_norm.rst", "documentation/python_api/triqs.gf.lazy_expressions.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.__init__.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.copy.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.get_terminal.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.is_terminal.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.set_from.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExprTerminal.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExprTerminal.__init__.rst", "documentation/python_api/triqs.gf.lazy_expressions.all_terminals.rst", "documentation/python_api/triqs.gf.lazy_expressions.eval_expr.rst", "documentation/python_api/triqs.gf.lazy_expressions.eval_expr_with_context.rst", "documentation/python_api/triqs.gf.lazy_expressions.lazy_function.rst", "documentation/python_api/triqs.gf.lazy_expressions.make_lazy.rst", "documentation/python_api/triqs.gf.lazy_expressions.transform.rst", "documentation/python_api/triqs.gf.map_block.rst", "documentation/python_api/triqs.gf.matsubara_freq.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.__init__.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.imag.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.index.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.real.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.value.rst", "documentation/python_api/triqs.gf.mesh_point.rst", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.rst", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.__init__.rst", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.imag.rst", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.real.rst", "documentation/python_api/triqs.gf.mesh_point.MeshValueGenerator.rst", "documentation/python_api/triqs.gf.mesh_point.MeshValueGenerator.__init__.rst", "documentation/python_api/triqs.gf.mesh_product.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.__init__.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.components.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.copy.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.copy_from.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.rank.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.size_of_components.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.to_data_index.rst", "documentation/python_api/triqs.gf.mesh_product.call_factory_from_dict.rst", "documentation/python_api/triqs.gf.meshes.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.bz.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.closest_index.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.dims.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.units.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.values.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.dims.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.lattice.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.units.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.values.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.eps.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.values.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.w_max.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.eps.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.values.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.w_max.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.eps.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.values.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.w_max.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.first_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.last_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.n_iw.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.positive_only.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.set_tail_fit_parameters.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.values.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.values.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.delta.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.values.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.w_max.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.w_min.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.delta.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.t_max.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.t_min.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.values.rst", "documentation/python_api/triqs.gf.meshes.make_adjoint_mesh.rst", "documentation/python_api/triqs.gf.plot.rst", "documentation/python_api/triqs.gf.plot.bz.rst", "documentation/python_api/triqs.gf.plot.bz.dist.rst", "documentation/python_api/triqs.gf.plot.bz.generate_points.rst", "documentation/python_api/triqs.gf.plot.bz.generate_points_on_path.rst", "documentation/python_api/triqs.gf.plot.bz.length.rst", "documentation/python_api/triqs.gf.plot.bz.make_plottable.rst", "documentation/python_api/triqs.gf.plot.bz.plot.rst", "documentation/python_api/triqs.gf.plot.bz.slice_on_path.rst", "documentation/python_api/triqs.gf.plot.bz_x_x.rst", "documentation/python_api/triqs.gf.plot.bz_x_x.plot.rst", "documentation/python_api/triqs.gf.plot.bz_x_x.plottable_slice_along_path.rst", "documentation/python_api/triqs.gf.plot.dispatcher.rst", "documentation/python_api/triqs.gf.plot.one_var.rst", "documentation/python_api/triqs.gf.plot.one_var.dlr_imfreq.rst", "documentation/python_api/triqs.gf.plot.one_var.dlr_imtime.rst", "documentation/python_api/triqs.gf.plot.one_var.imfreq.rst", "documentation/python_api/triqs.gf.plot.one_var.imtime.rst", "documentation/python_api/triqs.gf.plot.one_var.legendre.rst", "documentation/python_api/triqs.gf.plot.one_var.refreq.rst", "documentation/python_api/triqs.gf.plot.one_var.retime.rst", "documentation/python_api/triqs.gf.plot.plot_base.rst", "documentation/python_api/triqs.gf.plot.plot_base.plot_base.rst", "documentation/python_api/triqs.gf.plot.select_indices.rst", "documentation/python_api/triqs.gf.plot.select_indices.closest_point_in_line.rst", "documentation/python_api/triqs.gf.plot.select_indices.closest_to.rst", "documentation/python_api/triqs.gf.plot.select_indices.dist.rst", "documentation/python_api/triqs.gf.plot.select_indices.pick_selection_vec.rst", "documentation/python_api/triqs.gf.plot.select_indices.select_path_indices.rst", "documentation/python_api/triqs.gf.tools.rst", "documentation/python_api/triqs.gf.tools.conjugate.rst", "documentation/python_api/triqs.gf.tools.delta.rst", "documentation/python_api/triqs.gf.tools.discretize_bath.rst", "documentation/python_api/triqs.gf.tools.dyson.rst", "documentation/python_api/triqs.gf.tools.fit_legendre.rst", "documentation/python_api/triqs.gf.tools.inverse.rst", "documentation/python_api/triqs.gf.tools.make_delta.rst", "documentation/python_api/triqs.gf.tools.make_zero_tail.rst", "documentation/python_api/triqs.gf.tools.read_gf_from_txt.rst", "documentation/python_api/triqs.gf.tools.transpose.rst", "documentation/python_api/triqs.gf.tools.write_gf_to_txt.rst", "documentation/python_api/triqs.gf.wrapped_aux.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.set_from_gf_data_mul_LR.rst", "documentation/python_api/triqs.lattice.rst", "documentation/python_api/triqs.lattice.bz_patch.rst", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.rst", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.__init__.rst", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.dos.rst", "documentation/python_api/triqs.lattice.lattice_tools.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.__init__.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.lattice_to_real_coordinates.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.n_orbitals.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.ndim.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.orbital_names.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.orbital_positions.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.units.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.__init__.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.lattice.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.ndim.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.units.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.__init__.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.dispersion.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.displ_vec.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.fourier.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.lattice.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.lattice_to_real_coordinates.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.overlap_mat_vec.rst", "documentation/python_api/triqs.lattice.lattice_tools.dos.rst", "documentation/python_api/triqs.lattice.lattice_tools.dos_patch.rst", "documentation/python_api/triqs.lattice.point.rst", "documentation/python_api/triqs.lattice.point.LatticePoint.rst", "documentation/python_api/triqs.lattice.point.LatticePoint.__init__.rst", "documentation/python_api/triqs.lattice.point.LatticePoint.value.rst", "documentation/python_api/triqs.lattice.super_lattice.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.__init__.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_L_to_SL.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_SL_to_L.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.cluster_sites.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.dispersion.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.fold.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.fourier.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.get_kmesh.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.get_rmesh.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.hoppings.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.lattice_to_real_coordinates.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.n_orbitals.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.ndim.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.orbital_names.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.orbital_positions.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.pack_index_site_orbital.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.units.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.unpack_index_site_orbital.rst", "documentation/python_api/triqs.lattice.tight_binding.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.__init__.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.dispersion.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.fourier.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.get_kmesh.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.get_rmesh.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.hoppings.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.lattice_to_real_coordinates.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.n_orbitals.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.ndim.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.orbital_names.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.orbital_positions.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.units.rst", "documentation/python_api/triqs.lattice.tight_binding.dos.rst", "documentation/python_api/triqs.lattice.tight_binding.dos_patch.rst", "documentation/python_api/triqs.lattice.utils.rst", "documentation/python_api/triqs.lattice.utils.TB_from_pythTB.rst", "documentation/python_api/triqs.lattice.utils.TB_from_wannier90.rst", "documentation/python_api/triqs.lattice.utils.TB_to_sympy.rst", "documentation/python_api/triqs.lattice.utils.extend_wannier90_to_spin.rst", "documentation/python_api/triqs.lattice.utils.k_space_path.rst", "documentation/python_api/triqs.lattice.utils.parse_hopping_from_wannier90_hr_dat.rst", "documentation/python_api/triqs.lattice.utils.parse_lattice_vectors_from_wannier90_wout.rst", "documentation/python_api/triqs.operators.rst", "documentation/python_api/triqs.operators.operators.rst", "documentation/python_api/triqs.operators.operators.Operator.rst", "documentation/python_api/triqs.operators.operators.Operator.__init__.rst", "documentation/python_api/triqs.operators.operators.Operator.imag.rst", "documentation/python_api/triqs.operators.operators.Operator.is_zero.rst", "documentation/python_api/triqs.operators.operators.Operator.real.rst", "documentation/python_api/triqs.operators.operators.c.rst", "documentation/python_api/triqs.operators.operators.c_dag.rst", "documentation/python_api/triqs.operators.operators.dagger.rst", "documentation/python_api/triqs.operators.operators.is_op_hermitian.rst", "documentation/python_api/triqs.operators.operators.n.rst", "documentation/python_api/triqs.operators.util.rst", "documentation/python_api/triqs.operators.util.U_matrix.rst", "documentation/python_api/triqs.operators.util.U_matrix.U_J_to_radial_integrals.rst", "documentation/python_api/triqs.operators.util.U_matrix.U_matrix_kanamori.rst", "documentation/python_api/triqs.operators.util.U_matrix.U_matrix_slater.rst", "documentation/python_api/triqs.operators.util.U_matrix.angular_matrix_element.rst", "documentation/python_api/triqs.operators.util.U_matrix.clebsch_gordan.rst", "documentation/python_api/triqs.operators.util.U_matrix.cubic_names.rst", "documentation/python_api/triqs.operators.util.U_matrix.eg_submatrix.rst", "documentation/python_api/triqs.operators.util.U_matrix.radial_integrals_to_U_J.rst", "documentation/python_api/triqs.operators.util.U_matrix.reduce_4index_to_2index.rst", "documentation/python_api/triqs.operators.util.U_matrix.spherical_to_cubic.rst", "documentation/python_api/triqs.operators.util.U_matrix.subarray.rst", "documentation/python_api/triqs.operators.util.U_matrix.t2g_submatrix.rst", "documentation/python_api/triqs.operators.util.U_matrix.three_j_symbol.rst", "documentation/python_api/triqs.operators.util.U_matrix.transform_U_matrix.rst", "documentation/python_api/triqs.operators.util.extractors.rst", "documentation/python_api/triqs.operators.util.extractors.block_matrix_from_op.rst", "documentation/python_api/triqs.operators.util.extractors.dict_to_matrix.rst", "documentation/python_api/triqs.operators.util.extractors.extract_U_dict2.rst", "documentation/python_api/triqs.operators.util.extractors.extract_U_dict4.rst", "documentation/python_api/triqs.operators.util.extractors.extract_h_dict.rst", "documentation/python_api/triqs.operators.util.extractors.op_from_block_matrix.rst", "documentation/python_api/triqs.operators.util.extractors.quadratic_terms.rst", "documentation/python_api/triqs.operators.util.extractors.quartic_terms.rst", "documentation/python_api/triqs.operators.util.hamiltonians.rst", "documentation/python_api/triqs.operators.util.hamiltonians.backward_compat.rst", "documentation/python_api/triqs.operators.util.hamiltonians.diagonal_part.rst", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_density.rst", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_kanamori.rst", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_slater.rst", "documentation/python_api/triqs.operators.util.hamiltonians.make_operator_real.rst", "documentation/python_api/triqs.operators.util.observables.rst", "documentation/python_api/triqs.operators.util.observables.L2_op.rst", "documentation/python_api/triqs.operators.util.observables.LS_op.rst", "documentation/python_api/triqs.operators.util.observables.L_op.rst", "documentation/python_api/triqs.operators.util.observables.N_op.rst", "documentation/python_api/triqs.operators.util.observables.S2_op.rst", "documentation/python_api/triqs.operators.util.observables.S_op.rst", "documentation/python_api/triqs.operators.util.observables.check_backward_compat.rst", "documentation/python_api/triqs.operators.util.op_struct.rst", "documentation/python_api/triqs.operators.util.op_struct.get_mkind.rst", "documentation/python_api/triqs.operators.util.op_struct.set_operator_structure.rst", "documentation/python_api/triqs.plot.rst", "documentation/python_api/triqs.plot.mpl_interface.rst", "documentation/python_api/triqs.plot.mpl_interface.oplot.rst", "documentation/python_api/triqs.plot.mpl_interface.oploti.rst", "documentation/python_api/triqs.plot.mpl_interface.oplotr.rst", "documentation/python_api/triqs.plot.mpl_interface.use_amsmath.rst", "documentation/python_api/triqs.plot.protocol.rst", "documentation/python_api/triqs.plot.protocol.clip_array.rst", "documentation/python_api/triqs.plot.protocol.plot_protocol_apply.rst", "documentation/python_api/triqs.random_generator.rst", "documentation/python_api/triqs.random_generator.RandomGenerator.rst", "documentation/python_api/triqs.random_generator.RandomGenerator.__init__.rst", "documentation/python_api/triqs.random_generator.random_generator.rst", "documentation/python_api/triqs.random_generator.random_generator.random_generator_names_list.rst", "documentation/python_api/triqs.stat.rst", "documentation/python_api/triqs.stat.histogram.rst", "documentation/python_api/triqs.stat.histogram.plot.rst", "documentation/python_api/triqs.stat.histograms.rst", "documentation/python_api/triqs.stat.histograms.Histogram.rst", "documentation/python_api/triqs.stat.histograms.Histogram.__init__.rst", "documentation/python_api/triqs.stat.histograms.Histogram.clear.rst", "documentation/python_api/triqs.stat.histograms.Histogram.data.rst", "documentation/python_api/triqs.stat.histograms.Histogram.limits.rst", "documentation/python_api/triqs.stat.histograms.Histogram.mesh_point.rst", "documentation/python_api/triqs.stat.histograms.Histogram.n_data_pts.rst", "documentation/python_api/triqs.stat.histograms.Histogram.n_lost_pts.rst", "documentation/python_api/triqs.stat.histograms.cdf.rst", "documentation/python_api/triqs.stat.histograms.pdf.rst", "documentation/python_api/triqs.sumk.rst", "documentation/python_api/triqs.sumk.sumk_discrete.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.GFBlocIndices.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.__init__.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.n_kpts.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.resize_arrays.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.GFBlocIndices.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.Recompute_Grid.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.__init__.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.n_kpts.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.resize_arrays.rst", "documentation/python_api/triqs.utility.rst", "documentation/python_api/triqs.utility.bound_and_bisect.rst", "documentation/python_api/triqs.utility.bound_and_bisect.bound_and_bisect.rst", "documentation/python_api/triqs.utility.bound_and_bisect.determine_bounds.rst", "documentation/python_api/triqs.utility.capture_stdout.rst", "documentation/python_api/triqs.utility.comparison_tests.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_array_close_to_scalar.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_arrays_are_close.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_block2_gfs_are_close.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_block_gfs_are_close.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_gfs_are_close.rst", "documentation/python_api/triqs.utility.dichotomy.rst", "documentation/python_api/triqs.utility.dichotomy.dichotomy.rst", "documentation/python_api/triqs.utility.dist_on_nodes.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.SleepTime.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.__init__.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.run.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.SleepTime.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.__init__.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.finished.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.result.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.run.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.treate.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.SleepTime.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.__init__.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.finished.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.result.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.run.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.the_function.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.treate.rst", "documentation/python_api/triqs.utility.h5diff.rst", "documentation/python_api/triqs.utility.h5diff.compare.rst", "documentation/python_api/triqs.utility.h5diff.h5diff.rst", "documentation/python_api/triqs.utility.mpi.rst", "documentation/python_api/triqs.utility.mpi.check_for_mpi.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.all_reduce.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.barrier.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.bcast.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.is_master_node.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.master_gets_host_names.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.myprint_err.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.myprint_out.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.recv.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.report.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.send.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_array.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_inf.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_sup.rst", "documentation/python_api/triqs.utility.mpi_nompi.rst", "documentation/python_api/triqs.utility.mpi_nompi.all_reduce.rst", "documentation/python_api/triqs.utility.mpi_nompi.barrier.rst", "documentation/python_api/triqs.utility.mpi_nompi.bcast.rst", "documentation/python_api/triqs.utility.mpi_nompi.is_master_node.rst", "documentation/python_api/triqs.utility.mpi_nompi.master_gets_host_names.rst", "documentation/python_api/triqs.utility.mpi_nompi.myprint_err.rst", "documentation/python_api/triqs.utility.mpi_nompi.myprint_out.rst", "documentation/python_api/triqs.utility.mpi_nompi.recv.rst", "documentation/python_api/triqs.utility.mpi_nompi.report.rst", "documentation/python_api/triqs.utility.mpi_nompi.send.rst", "documentation/python_api/triqs.utility.mpi_nompi.slice_array.rst", "documentation/python_api/triqs.utility.redirect.rst", "documentation/python_api/triqs.utility.redirect.T.rst", "documentation/python_api/triqs.utility.redirect.T.__init__.rst", "documentation/python_api/triqs.utility.redirect.T.daemon.rst", "documentation/python_api/triqs.utility.redirect.T.getName.rst", "documentation/python_api/triqs.utility.redirect.T.ident.rst", "documentation/python_api/triqs.utility.redirect.T.isDaemon.rst", "documentation/python_api/triqs.utility.redirect.T.is_alive.rst", "documentation/python_api/triqs.utility.redirect.T.join.rst", "documentation/python_api/triqs.utility.redirect.T.name.rst", "documentation/python_api/triqs.utility.redirect.T.native_id.rst", "documentation/python_api/triqs.utility.redirect.T.run.rst", "documentation/python_api/triqs.utility.redirect.T.setDaemon.rst", "documentation/python_api/triqs.utility.redirect.T.setName.rst", "documentation/python_api/triqs.utility.redirect.T.start.rst", "documentation/python_api/triqs.utility.redirect.T.stop.rst", "documentation/python_api/triqs.utility.redirect.start_redirect.rst", "documentation/python_api/triqs.utility.redirect.stop_redirect.rst", "faqs.rst", "index.rst", "install.rst", "installation/clang.rst", "installation/environment_vars.rst", "installation/install_options.rst", "installation/osx_install.rst", "installation/python_virtualenv.rst", "installation/requirements.rst", "installation/ubuntu.rst", "porting_to_triqs3.md", "userguide.rst", "userguide/c++/arrays/tutorial.rst", "userguide/c++/det_manip/tutorial.rst", "userguide/c++/gfs/tutorial.rst", "userguide/c++/hdf5/tutorial.rst", "userguide/c++/using_the_lib/application_structure.rst", "userguide/c++/using_the_lib/contents.rst", "userguide/c++/using_the_lib/profiling.rst", "userguide/c++/using_the_lib/triqs_library.rst", "userguide/python/basics.rst", "userguide/python/dmft_one_page.rst", "userguide/python/external_resources.rst", "userguide/python/model_dmft.rst", "userguide/python/tight_binding.rst", "userguide/python/tutorials/AbinitioDMFT/01-solid_dmft.ipynb", "userguide/python/tutorials/AbinitioDMFT/02-FermiSee.ipynb", "userguide/python/tutorials/AbinitioDMFT/03-phase-diagram-exploration.ipynb", "userguide/python/tutorials/AbinitioDMFT/04-HubbardI-comparison.ipynb", "userguide/python/tutorials/AbinitioDMFT/solutions/01s-solid_dmft.ipynb", "userguide/python/tutorials/AbinitioDMFT/solutions/02s-FermiSee.ipynb", "userguide/python/tutorials/AbinitioDMFT/solutions/03s-phase-diagram-exploration.ipynb", "userguide/python/tutorials/AbinitioDMFT/solutions/04s-HubbardI-comparison.ipynb", "userguide/python/tutorials/Basics/00a-Introducing_the_ipython_notebook.ipynb", "userguide/python/tutorials/Basics/00b-Matplotlib_Examples.ipynb", "userguide/python/tutorials/Basics/01-Greens_functions.ipynb", "userguide/python/tutorials/Basics/02-Archiving_your_data.ipynb", "userguide/python/tutorials/Basics/03-Operators.ipynb", "userguide/python/tutorials/Basics/04-Multivariable_Green_functions.ipynb", "userguide/python/tutorials/Basics/solutions/01s-Greens_functions.ipynb", "userguide/python/tutorials/ModelDMFT/01-IPT_and_DMFT.ipynb", "userguide/python/tutorials/ModelDMFT/02-Introduction_to_the_CTHYB_solver.ipynb", "userguide/python/tutorials/ModelDMFT/03-Single-orbital_Hubbard_with_CTQMC.ipynb", "userguide/python/tutorials/ModelDMFT/04-Two-orbital_Hubbard_with_CTQMC.ipynb", "userguide/python/tutorials/ModelDMFT/05-VBDMFT_Hubbard.ipynb", "userguide/python/tutorials/ModelDMFT/README.md", "userguide/python/tutorials/ModelDMFT/solutions/01s-IPT_and_DMFT.ipynb", "userguide/python/tutorials/ModelDMFT/solutions/03s-Single-orbital_Hubbard_with_CTQMC.ipynb", "userguide/python/tutorials/ModelDMFT/solutions/04s-Two-orbital_Hubbard_with_CTQMC.ipynb", "userguide/python/tutorials/ModelDMFT/solutions/05s-VBDMFT_Hubbard.ipynb", "userguide/python/tutorials/README.md", "userguide/python/tutorials/TwoParticleResponse/01-Fermi_surface_nesting.ipynb", "userguide/python/tutorials/TwoParticleResponse/02-Lindhard.ipynb", "userguide/python/tutorials/TwoParticleResponse/03-RPA.ipynb", "userguide/python/tutorials/TwoParticleResponse/04-TPSC.ipynb", "userguide/python/tutorials/TwoParticleResponse/05-TPSC_MerminWagner.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/01s-Fermi_surface_nesting.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/02s-Lindhard.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/03s-RPA.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/04s-TPSC.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/05s-TPSC_MerminWagner.ipynb", "userguide/python/two_particle_response.rst", "versions.rst"], "titles": ["Changelog", "<no title>", "<no title>", "About TRIQS", "Applications based on TRIQS", "Table of contents", "Contributing", "How to contribute to documentation?", "How to make a pull request?", "Documentation", "<no title>", "itertools", "itertools::chunk_range", "itertools::distance", "itertools::enum_iter", "itertools::enum_iter::constructor", "itertools::enum_iter::dereference", "itertools::enum_iter::increment", "itertools::enum_iter::operator==", "itertools::enumerate", "itertools::enumerated", "itertools::enumerated::begin", "itertools::enumerated::cbegin", "itertools::enumerated::cend", "itertools::enumerated::end", "itertools::enumerated::operator==", "itertools::foreach", "itertools::iterator_facade", "itertools::iterator_facade<Iter,Value,std::forward_iterator_tag,Reference,Difference>", "itertools::iterator_facade<Iter,Value,std::forward_iterator_tag,Reference,Difference>::operator*", "itertools::iterator_facade<Iter,Value,std::forward_iterator_tag,Reference,Difference>::operator++", "itertools::iterator_facade<Iter,Value,std::forward_iterator_tag,Reference,Difference>::operator->", "itertools::make_product", "itertools::make_sentinel", "itertools::make_vector_from_range", "itertools::multiplied", "itertools::multiplied::begin", "itertools::multiplied::cbegin", "itertools::multiplied::cend", "itertools::multiplied::constructor", "itertools::multiplied::end", "itertools::multiplied::operator==", "itertools::prod_iter", "itertools::prod_iter::constructor", "itertools::prod_iter::dereference", "itertools::prod_iter::increment", "itertools::prod_iter::operator==", "itertools::product", "itertools::product_range", "itertools::range", "itertools::range::begin", "itertools::range::cbegin", "itertools::range::cend", "itertools::range::constructor", "itertools::range::end", "itertools::range::first", "itertools::range::last", "itertools::range::operator+", "itertools::range::operator<<", "itertools::range::operator==", "itertools::range::size", "itertools::range::step", "itertools::sentinel_t", "itertools::slice", "itertools::sliced", "itertools::sliced::begin", "itertools::sliced::cbegin", "itertools::sliced::cend", "itertools::sliced::end", "itertools::sliced::operator==", "itertools::sliced::size", "itertools::stride", "itertools::stride_iter", "itertools::stride_iter::constructor", "itertools::stride_iter::dereference", "itertools::stride_iter::increment", "itertools::stride_iter::operator==", "itertools::strided", "itertools::strided::begin", "itertools::strided::cbegin", "itertools::strided::cend", "itertools::strided::end", "itertools::strided::operator==", "itertools::transform", "itertools::transform_iter", "itertools::transform_iter::constructor", "itertools::transform_iter::dereference", "itertools::transform_iter::increment", "itertools::transform_iter::operator=", "itertools::transform_iter::operator==", "itertools::transformed", "itertools::transformed::begin", "itertools::transformed::cbegin", "itertools::transformed::cend", "itertools::transformed::end", "itertools::zip", "itertools::zip_iter", "itertools::zip_iter::constructor", "itertools::zip_iter::dereference", "itertools::zip_iter::increment", "itertools::zip_iter::operator==", "itertools::zipped", "itertools::zipped::begin", "itertools::zipped::cbegin", "itertools::zipped::cend", "itertools::zipped::constructor", "itertools::zipped::end", "itertools::zipped::operator==", "mpi", "mpi::all_gather", "mpi::all_reduce", "mpi::all_reduce_in_place", "mpi::broadcast", "mpi::chunk", "mpi::chunk_length", "mpi::communicator", "mpi::communicator::abort", "mpi::communicator::barrier", "mpi::communicator::constructor", "mpi::communicator::get", "mpi::communicator::rank", "mpi::communicator::size", "mpi::communicator::split", "mpi::environment", "mpi::environment::constructor", "mpi::gather", "mpi::get_mpi_type", "mpi::is_initialized", "mpi::lazy", "mpi::lazy::invoke", "mpi::lazy::shape", "mpi::map_C_function", "mpi::map_add", "mpi::monitor", "mpi::monitor::constructor", "mpi::monitor::emergency_occured", "mpi::monitor::finalize_communications", "mpi::monitor::operator=", "mpi::monitor::request_emergency_stop", "mpi::monitor::root_check_nodes_and_bcast", "mpi::mpi_broadcast", "mpi::mpi_gather", "mpi::mpi_reduce", "mpi::mpi_reduce_in_place", "mpi::mpi_scatter", "mpi::mpi_type", "mpi::mpi_type<constT>", "mpi::mpi_type<std::tuple<T\u2026>>", "mpi::mpi_type_from_tie", "mpi::reduce", "mpi::reduce_in_place", "mpi::scatter", "triqs::atom_diag", "triqs::atom_diag::act", "triqs::atom_diag::atom_diag", "triqs::atom_diag::atom_diag::c_connection", "triqs::atom_diag::atom_diag::c_matrix", "triqs::atom_diag::atom_diag::cdag_connection", "triqs::atom_diag::atom_diag::cdag_matrix", "triqs::atom_diag::atom_diag::constructor", "triqs::atom_diag::atom_diag::flatten_subspace_index", "triqs::atom_diag::atom_diag::get_eigensystems", "triqs::atom_diag::atom_diag::get_eigenvalue", "triqs::atom_diag::atom_diag::get_energies", "triqs::atom_diag::atom_diag::get_fock_states", "triqs::atom_diag::atom_diag::get_fops", "triqs::atom_diag::atom_diag::get_full_hilbert_space", "triqs::atom_diag::atom_diag::get_full_hilbert_space_dim", "triqs::atom_diag::atom_diag::get_gs_energy", "triqs::atom_diag::atom_diag::get_h_atomic", "triqs::atom_diag::atom_diag::get_matrix_element_of_monomial", "triqs::atom_diag::atom_diag::get_op_mat", "triqs::atom_diag::atom_diag::get_quantum_numbers", "triqs::atom_diag::atom_diag::get_subspace_dim", "triqs::atom_diag::atom_diag::get_subspace_dims", "triqs::atom_diag::atom_diag::get_unitary_matrices", "triqs::atom_diag::atom_diag::get_unitary_matrix", "triqs::atom_diag::atom_diag::get_vacuum_state", "triqs::atom_diag::atom_diag::get_vacuum_subspace_index", "triqs::atom_diag::atom_diag::index_range_of_subspace", "triqs::atom_diag::atom_diag::n_subspaces", "triqs::atom_diag::atomic_density_matrix", "triqs::atom_diag::atomic_g_iw", "triqs::atom_diag::atomic_g_l", "triqs::atom_diag::atomic_g_lehmann", "triqs::atom_diag::atomic_g_tau", "triqs::atom_diag::atomic_g_w", "triqs::atom_diag::partition_function", "triqs::atom_diag::quantum_number_eigenvalues", "triqs::atom_diag::quantum_number_eigenvalues_checked", "triqs::atom_diag::trace_rho_op", "triqs::det_manip", "triqs::det_manip::det_manip", "triqs::det_manip::det_manip::change_col", "triqs::det_manip::det_manip::change_row", "triqs::det_manip::det_manip::clear", "triqs::det_manip::det_manip::complete_operation", "triqs::det_manip::det_manip::constructor", "triqs::det_manip::det_manip::determinant", "triqs::det_manip::det_manip::get_function", "triqs::det_manip::det_manip::get_n_operations_before_check", "triqs::det_manip::det_manip::get_precision_error", "triqs::det_manip::det_manip::get_precision_warning", "triqs::det_manip::det_manip::get_singular_threshold", "triqs::det_manip::det_manip::get_x", "triqs::det_manip::det_manip::get_x_internal_order", "triqs::det_manip::det_manip::get_y", "triqs::det_manip::det_manip::get_y_internal_order", "triqs::det_manip::det_manip::h5_read", "triqs::det_manip::det_manip::h5_write", "triqs::det_manip::det_manip::insert", "triqs::det_manip::det_manip::insert2", "triqs::det_manip::det_manip::insert2_at_end", "triqs::det_manip::det_manip::insert_at_end", "triqs::det_manip::det_manip::inverse_matrix", "triqs::det_manip::det_manip::inverse_matrix_internal_order", "triqs::det_manip::det_manip::is_singular", "triqs::det_manip::det_manip::matrix", "triqs::det_manip::det_manip::reject_last_try", "triqs::det_manip::det_manip::remove", "triqs::det_manip::det_manip::remove2", "triqs::det_manip::det_manip::remove2_at_end", "triqs::det_manip::det_manip::remove_at_end", "triqs::det_manip::det_manip::reserve", "triqs::det_manip::det_manip::roll_matrix", "triqs::det_manip::det_manip::set_n_operations_before_check", "triqs::det_manip::det_manip::set_precision_error", "triqs::det_manip::det_manip::set_precision_warning", "triqs::det_manip::det_manip::set_singular_threshold", "triqs::det_manip::det_manip::size", "triqs::det_manip::det_manip::swap_col", "triqs::det_manip::det_manip::swap_row", "triqs::det_manip::det_manip::try_change_col", "triqs::det_manip::det_manip::try_change_col_row", "triqs::det_manip::det_manip::try_change_row", "triqs::det_manip::det_manip::try_insert", "triqs::det_manip::det_manip::try_insert_k", "triqs::det_manip::det_manip::try_refill", "triqs::det_manip::det_manip::try_remove", "triqs::det_manip::det_manip::try_remove_k", "triqs::gfs", "triqs::gfs::<deduction guide for block_gf>", "triqs::gfs::block_gf", "triqs::gfs::block_gf::block_names", "triqs::gfs::block_gf::block_sizes", "triqs::gfs::block_gf::constructor", "triqs::gfs::block_gf::data", "triqs::gfs::block_gf::h5_read", "triqs::gfs::block_gf::h5_write", "triqs::gfs::block_gf::hdf5_format", "triqs::gfs::block_gf::operator()", "triqs::gfs::block_gf::operator=", "triqs::gfs::density", "triqs::gfs::fit_gf_dlr", "triqs::gfs::fit_hermitian_tail", "triqs::gfs::fit_tail", "triqs::gfs::flatten_2d", "triqs::gfs::flatten_gf_2d", "triqs::gfs::get_mesh", "triqs::gfs::gf", "triqs::gfs::gf::constructor", "triqs::gfs::gf::data", "triqs::gfs::gf::data_shape", "triqs::gfs::gf::h5_read", "triqs::gfs::gf::h5_write", "triqs::gfs::gf::hdf5_format", "triqs::gfs::gf::mesh", "triqs::gfs::gf::operator<<", "triqs::gfs::gf::operator=", "triqs::gfs::gf::target_indices", "triqs::gfs::gf::target_shape", "triqs::gfs::gf_const_view", "triqs::gfs::gf_const_view::constructor", "triqs::gfs::gf_const_view::data", "triqs::gfs::gf_const_view::data_shape", "triqs::gfs::gf_const_view::h5_read", "triqs::gfs::gf_const_view::h5_write", "triqs::gfs::gf_const_view::hdf5_format", "triqs::gfs::gf_const_view::mesh", "triqs::gfs::gf_const_view::operator<<", "triqs::gfs::gf_const_view::rebind", "triqs::gfs::gf_const_view::target_indices", "triqs::gfs::gf_const_view::target_shape", "triqs::gfs::gf_view", "triqs::gfs::gf_view::constructor", "triqs::gfs::gf_view::data", "triqs::gfs::gf_view::data_shape", "triqs::gfs::gf_view::h5_read", "triqs::gfs::gf_view::h5_write", "triqs::gfs::gf_view::hdf5_format", "triqs::gfs::gf_view::mesh", "triqs::gfs::gf_view::operator<<", "triqs::gfs::gf_view::operator=", "triqs::gfs::gf_view::rebind", "triqs::gfs::gf_view::target_indices", "triqs::gfs::gf_view::target_shape", "triqs::gfs::h5_read_gf_struct", "triqs::gfs::imag", "triqs::gfs::impl_tag", "triqs::gfs::inverse", "triqs::gfs::is_gf_hermitian", "triqs::gfs::is_gf_real", "triqs::gfs::is_gf_real_in_tau", "triqs::gfs::make_block2_gf", "triqs::gfs::make_block_gf", "triqs::gfs::make_block_gf_view", "triqs::gfs::make_gf_dlr", "triqs::gfs::make_gf_dlr_imfreq", "triqs::gfs::make_gf_dlr_imtime", "triqs::gfs::make_gf_from_fourier", "triqs::gfs::make_gf_from_inverse_fourier", "triqs::gfs::make_gf_from_real_gf", "triqs::gfs::make_gf_imfreq", "triqs::gfs::make_gf_imtime", "triqs::gfs::make_hermitian", "triqs::gfs::make_real_in_tau", "triqs::gfs::make_zero_tail", "triqs::gfs::mpi_reduce", "triqs::gfs::positive_freq_view", "triqs::gfs::real", "triqs::gfs::reinterpret_scalar_valued_gf_as_matrix_valued", "triqs::gfs::tau_L2_norm", "triqs::gfs::unflatten_2d", "triqs::gfs::unflatten_gf_2d", "triqs::hilbert_space", "triqs::hilbert_space::fundamental_operator_set", "triqs::hilbert_space::fundamental_operator_set::begin", "triqs::hilbert_space::fundamental_operator_set::cbegin", "triqs::hilbert_space::fundamental_operator_set::cend", "triqs::hilbert_space::fundamental_operator_set::constructor", "triqs::hilbert_space::fundamental_operator_set::data", "triqs::hilbert_space::fundamental_operator_set::end", "triqs::hilbert_space::fundamental_operator_set::h5_read_attribute", "triqs::hilbert_space::fundamental_operator_set::h5_write_attribute", "triqs::hilbert_space::fundamental_operator_set::has_indices", "triqs::hilbert_space::fundamental_operator_set::insert", "triqs::hilbert_space::fundamental_operator_set::insert_from_indices_t", "triqs::hilbert_space::fundamental_operator_set::operator==", "triqs::hilbert_space::fundamental_operator_set::operator[]", "triqs::hilbert_space::fundamental_operator_set::size", "triqs::hilbert_space::hilbert_space", "triqs::hilbert_space::hilbert_space::constructor", "triqs::hilbert_space::hilbert_space::get_fock_state", "triqs::hilbert_space::hilbert_space::get_state_index", "triqs::hilbert_space::hilbert_space::h5_read", "triqs::hilbert_space::hilbert_space::h5_write", "triqs::hilbert_space::hilbert_space::has_state", "triqs::hilbert_space::hilbert_space::hdf5_format", "triqs::hilbert_space::hilbert_space::operator!=", "triqs::hilbert_space::hilbert_space::operator==", "triqs::hilbert_space::hilbert_space::size", "triqs::hilbert_space::imperative_operator", "triqs::hilbert_space::imperative_operator::constructor", "triqs::hilbert_space::imperative_operator::is_empty", "triqs::hilbert_space::imperative_operator::operator()", "triqs::hilbert_space::imperative_operator::update", "triqs::hilbert_space::make_zero_state", "triqs::hilbert_space::space_partition", "triqs::hilbert_space::space_partition::constructor", "triqs::hilbert_space::space_partition::find_mappings", "triqs::hilbert_space::space_partition::foreach", "triqs::hilbert_space::space_partition::get_matrix_elements", "triqs::hilbert_space::space_partition::lookup_basis_state", "triqs::hilbert_space::space_partition::merge_subspaces", "triqs::hilbert_space::space_partition::n_subspaces", "triqs::hilbert_space::state", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::amplitudes", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::constructor", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::dot_product", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::foreach", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::get_hilbert", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::operator()", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::operator*=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::operator+=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::operator-=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::set_hilbert", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::size", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::constructor", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::dot_product", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::foreach", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::get_hilbert", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::nterms", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::operator()", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::operator*=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::operator+=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::operator-=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::set_hilbert", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::size", "triqs::hilbert_space::sub_hilbert_space", "triqs::hilbert_space::sub_hilbert_space::add_fock_state", "triqs::hilbert_space::sub_hilbert_space::constructor", "triqs::hilbert_space::sub_hilbert_space::get_all_fock_states", "triqs::hilbert_space::sub_hilbert_space::get_fock_state", "triqs::hilbert_space::sub_hilbert_space::get_index", "triqs::hilbert_space::sub_hilbert_space::get_state_index", "triqs::hilbert_space::sub_hilbert_space::h5_read", "triqs::hilbert_space::sub_hilbert_space::h5_write", "triqs::hilbert_space::sub_hilbert_space::has_state", "triqs::hilbert_space::sub_hilbert_space::hdf5_format", "triqs::hilbert_space::sub_hilbert_space::operator!=", "triqs::hilbert_space::sub_hilbert_space::operator==", "triqs::hilbert_space::sub_hilbert_space::set_index", "triqs::hilbert_space::sub_hilbert_space::size", "triqs::mc_tools", "triqs::mc_tools::mc_generic", "triqs::mc_tools::mc_generic::accumulate", "triqs::mc_tools::mc_generic::add_measure", "triqs::mc_tools::mc_generic::add_measure_aux", "triqs::mc_tools::mc_generic::add_move", "triqs::mc_tools::mc_generic::clear_measures", "triqs::mc_tools::mc_generic::collect_results", "triqs::mc_tools::mc_generic::constructor", "triqs::mc_tools::mc_generic::get_acceptance_rates", "triqs::mc_tools::mc_generic::get_accumulation_time", "triqs::mc_tools::mc_generic::get_accumulation_time_HHMMSS", "triqs::mc_tools::mc_generic::get_config_id", "triqs::mc_tools::mc_generic::get_current_cycle_number", "triqs::mc_tools::mc_generic::get_duration", "triqs::mc_tools::mc_generic::get_percent", "triqs::mc_tools::mc_generic::get_rng", "triqs::mc_tools::mc_generic::get_total_time", "triqs::mc_tools::mc_generic::get_warmup_time", "triqs::mc_tools::mc_generic::get_warmup_time_HHMMSS", "triqs::mc_tools::mc_generic::h5_read", "triqs::mc_tools::mc_generic::h5_write", "triqs::mc_tools::mc_generic::rm_measure", "triqs::mc_tools::mc_generic::run", "triqs::mc_tools::mc_generic::set_after_cycle_duty", "triqs::mc_tools::mc_generic::warmup", "triqs::mc_tools::mc_generic::warmup_and_accumulate", "triqs::mc_tools::move_set", "triqs::mc_tools::move_set::accept", "triqs::mc_tools::move_set::add", "triqs::mc_tools::move_set::attempt", "triqs::mc_tools::move_set::clear_statistics", "triqs::mc_tools::move_set::collect_statistics", "triqs::mc_tools::move_set::constructor", "triqs::mc_tools::move_set::get_acceptance_rates", "triqs::mc_tools::move_set::get_statistics", "triqs::mc_tools::move_set::reject", "triqs::mc_tools::random_generator", "triqs::mc_tools::random_generator::constructor", "triqs::mc_tools::random_generator::name", "triqs::mc_tools::random_generator::operator()", "triqs::mc_tools::random_generator::preview", "triqs::mc_tools::random_generator_names", "triqs::stat", "triqs::stat::accumulator", "triqs::stat::accumulator::compress_linear_bins", "triqs::stat::accumulator::constructor", "triqs::stat::accumulator::data_input_count", "triqs::stat::accumulator::lin_bin_capacity", "triqs::stat::accumulator::linear_bins", "triqs::stat::accumulator::log_bin_errors", "triqs::stat::accumulator::log_bin_errors_all_reduce", "triqs::stat::accumulator::n_lin_bins", "triqs::stat::accumulator::n_lin_bins_max", "triqs::stat::accumulator::n_log_bins", "triqs::stat::accumulator::n_log_bins_max", "triqs::stat::accumulator::operator<<", "triqs::stat::cdf", "triqs::stat::histogram", "triqs::stat::histogram::clear", "triqs::stat::histogram::constructor", "triqs::stat::histogram::data", "triqs::stat::histogram::h5_read", "triqs::stat::histogram::h5_write", "triqs::stat::histogram::hdf5_format", "triqs::stat::histogram::limits", "triqs::stat::histogram::mesh_point", "triqs::stat::histogram::mpi_broadcast", "triqs::stat::histogram::mpi_reduce", "triqs::stat::histogram::n_data_pts", "triqs::stat::histogram::n_lost_pts", "triqs::stat::histogram::operator+", "triqs::stat::histogram::operator<<", "triqs::stat::histogram::operator==", "triqs::stat::histogram::size", "triqs::stat::jackknife", "triqs::stat::jackknife_mpi", "triqs::stat::mean", "triqs::stat::mean_and_err", "triqs::stat::mean_and_err_mpi", "triqs::stat::mean_mpi", "triqs::stat::pdf", "triqs::stat::tau_estimate_from_errors", "<no title>", "The cfunction class", "The class_ class", "Cpp2Py: a C++/Python interfacing tool", "Convertion vs wrapping", "The module_ class", "General Principle", "Python API of the desc file", "[triqs/h5] The HDF5 format", "Solution 1. The class provides the transformation into a dict of hdf-compliant objects", "Reference documentation/manual", "triqs/MPI", "[triqs/atom_diag] Lightweight exact diagonalization solver and tools", "Utility functions for atom_diag", "Automatic assignment of containers", "[triqs/clef] Clef: Compile-time lazy expressions and functions", "More complex examples", "A lazy sum", "Evaluating CLEF expressions", "Forming CLEF expressions", "Transform CLEF expressions into functions", "Motivation: a little tour of CLEF", "Overloading functions and methods for CLEF arguments", "Notations and documentation conventions", "Manipulations of determinants", "The det_manip class", "How does it work ?", "Basic notions", "Interaction with CLEF expressions", "Concepts", "C++ documentation", "Fourier transforms", "Fourier: implementation notes", "gf and views", "Assignment", "[block_gf<T>] Block Green functions", "Operator()", "Constructors", "Data access", "[gf<imfreq>] Green function on Matsubara frequencies", "[gf<imtime>] Matsubara imaginary time", "[gf<legendre>] Legendre representation", "Misc", "Partial evaluation", "[gf<prod<X,Y,\u2026>>] Multiple variables", "[gf<refreq>] Real frequencies", "Target reinterpretation", "[gf<retime>] Real time", "Specializations", "Operator []", "Implementation notes", "mesh::imfreq", "mesh::imtime", "High-Frequency moments of the Green\u2019s function", "Green\u2019s functions", "The blocks: matrix-valued Green\u2019s functions", "[GfImFreq] Matsubara Green\u2019s function in imaginary frequencies", "[GfImTime] Matsubara Green\u2019s function in imaginary time", "[GfLegendre] Matsubara Green\u2019s function with Legendre polynomials", "[GfReFreq] Retarded Green\u2019s function in real frequencies", "[GfReTime] Retarded Green\u2019s function in real time", "Python documentation", "Descriptors", "BlockGf: The complete Green\u2019s function", "High-Frequency moments of the Green\u2019s function", "Tools for GFs", "Fourier and Legendre to Matsubara transforms", "[triqs/hilbert_space] Many-body states and Hilbert spaces", "StateVector Concept", "Bravais Lattice", "[triqs/lattice] Lattice tools", "Density of state and related tools", "Hilbert Transform", "Sums over Brillouin zone", "Free Fermions with tight binding hopping", "The BravaisLattice and TightBinding classes: definitions and example", "Concepts", "Tools for Monte Carlo", "Full documentation/manual/triqs", "Example: the Ising chain in a magnetic field", "Introduction", "Random number generator", "Tutorial", "[triqs/operators] Second-quantization operators and many-body Hamiltonians", "Second-quantization operators", "U matrix construction", "Coefficient extraction", "Hamiltonians", "Observables", "Helper functions", "Plotting protocols", "Fitting data", "Plotting TRIQS objects", "Reproducibility, provenance", "Random number generators", "[triqs/stat] Statistical Analysis", "[triqs/utility] Utilities: exceptions, tuple-tools, etc.", "1. Exceptions", "3. Python include warnings", "2. Tuple tools", "triqs.atom_diag", "triqs.atom_diag.AtomDiag", "triqs.atom_diag.atom_diag", "triqs.atom_diag.atom_diag.AtomDiagComplex", "triqs.atom_diag.atom_diag.AtomDiagComplex.__init__", "triqs.atom_diag.atom_diag.AtomDiagComplex.c_connection", "triqs.atom_diag.atom_diag.AtomDiagComplex.c_matrix", "triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_connection", "triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_matrix", "triqs.atom_diag.atom_diag.AtomDiagComplex.energies", "triqs.atom_diag.atom_diag.AtomDiagComplex.flatten_subspace_index", "triqs.atom_diag.atom_diag.AtomDiagComplex.fock_states", "triqs.atom_diag.atom_diag.AtomDiagComplex.fops", "triqs.atom_diag.atom_diag.AtomDiagComplex.full_hilbert_space_dim", "triqs.atom_diag.atom_diag.AtomDiagComplex.get_eigenvalue", "triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dim", "triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dims", "triqs.atom_diag.atom_diag.AtomDiagComplex.gs_energy", "triqs.atom_diag.atom_diag.AtomDiagComplex.h_atomic", "triqs.atom_diag.atom_diag.AtomDiagComplex.n_subspaces", "triqs.atom_diag.atom_diag.AtomDiagComplex.quantum_numbers", "triqs.atom_diag.atom_diag.AtomDiagComplex.unitary_matrices", "triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_state", "triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_subspace_index", "triqs.atom_diag.atom_diag.AtomDiagReal", "triqs.atom_diag.atom_diag.AtomDiagReal.__init__", "triqs.atom_diag.atom_diag.AtomDiagReal.c_connection", "triqs.atom_diag.atom_diag.AtomDiagReal.c_matrix", "triqs.atom_diag.atom_diag.AtomDiagReal.cdag_connection", "triqs.atom_diag.atom_diag.AtomDiagReal.cdag_matrix", "triqs.atom_diag.atom_diag.AtomDiagReal.energies", "triqs.atom_diag.atom_diag.AtomDiagReal.flatten_subspace_index", "triqs.atom_diag.atom_diag.AtomDiagReal.fock_states", "triqs.atom_diag.atom_diag.AtomDiagReal.fops", "triqs.atom_diag.atom_diag.AtomDiagReal.full_hilbert_space_dim", "triqs.atom_diag.atom_diag.AtomDiagReal.get_eigenvalue", "triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dim", "triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dims", "triqs.atom_diag.atom_diag.AtomDiagReal.gs_energy", "triqs.atom_diag.atom_diag.AtomDiagReal.h_atomic", "triqs.atom_diag.atom_diag.AtomDiagReal.n_subspaces", "triqs.atom_diag.atom_diag.AtomDiagReal.quantum_numbers", "triqs.atom_diag.atom_diag.AtomDiagReal.unitary_matrices", "triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_state", "triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_subspace_index", "triqs.atom_diag.atom_diag.act", "triqs.atom_diag.atom_diag.atomic_density_matrix", "triqs.atom_diag.atom_diag.atomic_g_iw", "triqs.atom_diag.atom_diag.atomic_g_l", "triqs.atom_diag.atom_diag.atomic_g_tau", "triqs.atom_diag.atom_diag.atomic_g_w", "triqs.atom_diag.atom_diag.partition_function", "triqs.atom_diag.atom_diag.quantum_number_eigenvalues", "triqs.atom_diag.atom_diag.quantum_number_eigenvalues_checked", "triqs.atom_diag.atom_diag.trace_rho_op", "triqs.dos", "triqs.dos.dos", "triqs.dos.dos.DOS", "triqs.dos.dos.DOS.__init__", "triqs.dos.dos.DOS.copy", "triqs.dos.dos.DOS.density", "triqs.dos.dos.DOSFromFunction", "triqs.dos.dos.DOSFromFunction.__init__", "triqs.dos.dos.DOSFromFunction.copy", "triqs.dos.dos.DOSFromFunction.density", "triqs.dos.dos.dos_from_file", "triqs.dos.hilbert_transform", "triqs.dos.hilbert_transform.HilbertTransform", "triqs.dos.hilbert_transform.HilbertTransform.__init__", "triqs.fit", "triqs.fit.fit", "triqs.fit.fit.Fit", "triqs.fit.fit.Fit.__init__", "triqs.gf", "triqs.gf.backwd_compat", "triqs.gf.backwd_compat.gf_imfreq", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.__init__", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.conjugate", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy_from", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.data", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.density", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.enforce_discontinuity", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail_on_window", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.from_L_G_R", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.imag", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.indices", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.inverse", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.invert", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_hermitian", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.mesh", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rank", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.real", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rebinning_tau", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_fourier", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imfreq", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imtime", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_legendre", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_pade", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_indices", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_rank", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_shape", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.tau_L2_norm", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.total_density", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.transpose", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.x_data_view", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.zero", "triqs.gf.backwd_compat.gf_imtime", "triqs.gf.backwd_compat.gf_imtime.GfImTime", "triqs.gf.backwd_compat.gf_imtime.GfImTime.__init__", "triqs.gf.backwd_compat.gf_imtime.GfImTime.conjugate", "triqs.gf.backwd_compat.gf_imtime.GfImTime.copy", "triqs.gf.backwd_compat.gf_imtime.GfImTime.copy_from", "triqs.gf.backwd_compat.gf_imtime.GfImTime.data", "triqs.gf.backwd_compat.gf_imtime.GfImTime.density", "triqs.gf.backwd_compat.gf_imtime.GfImTime.enforce_discontinuity", "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail", "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail_on_window", "triqs.gf.backwd_compat.gf_imtime.GfImTime.from_L_G_R", "triqs.gf.backwd_compat.gf_imtime.GfImTime.imag", "triqs.gf.backwd_compat.gf_imtime.GfImTime.indices", "triqs.gf.backwd_compat.gf_imtime.GfImTime.inverse", "triqs.gf.backwd_compat.gf_imtime.GfImTime.invert", "triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_hermitian", "triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_imtime.GfImTime.mesh", "triqs.gf.backwd_compat.gf_imtime.GfImTime.rank", "triqs.gf.backwd_compat.gf_imtime.GfImTime.real", "triqs.gf.backwd_compat.gf_imtime.GfImTime.rebinning_tau", "triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail", "triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_fourier", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imfreq", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imtime", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_legendre", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_pade", "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_indices", "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_rank", "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_shape", "triqs.gf.backwd_compat.gf_imtime.GfImTime.tau_L2_norm", "triqs.gf.backwd_compat.gf_imtime.GfImTime.total_density", "triqs.gf.backwd_compat.gf_imtime.GfImTime.transpose", "triqs.gf.backwd_compat.gf_imtime.GfImTime.x_data_view", "triqs.gf.backwd_compat.gf_imtime.GfImTime.zero", "triqs.gf.backwd_compat.gf_legendre", "triqs.gf.backwd_compat.gf_legendre.GfLegendre", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.__init__", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.conjugate", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy_from", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.data", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.density", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.enforce_discontinuity", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail_on_window", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.from_L_G_R", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.imag", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.indices", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.inverse", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.invert", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_hermitian", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.mesh", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.rank", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.real", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.rebinning_tau", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_fourier", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imfreq", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imtime", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_legendre", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_pade", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_indices", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_rank", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_shape", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.tau_L2_norm", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.total_density", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.transpose", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.x_data_view", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.zero", "triqs.gf.backwd_compat.gf_refreq", "triqs.gf.backwd_compat.gf_refreq.GfReFreq", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.__init__", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.conjugate", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy_from", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.data", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.density", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.enforce_discontinuity", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail_on_window", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.from_L_G_R", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.imag", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.indices", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.inverse", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.invert", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_hermitian", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.mesh", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.rank", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.real", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.rebinning_tau", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_fourier", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imfreq", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imtime", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_legendre", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_pade", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_indices", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_rank", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_shape", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.tau_L2_norm", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.total_density", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.transpose", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.x_data_view", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.zero", "triqs.gf.backwd_compat.gf_retime", "triqs.gf.backwd_compat.gf_retime.GfReTime", "triqs.gf.backwd_compat.gf_retime.GfReTime.__init__", "triqs.gf.backwd_compat.gf_retime.GfReTime.conjugate", "triqs.gf.backwd_compat.gf_retime.GfReTime.copy", "triqs.gf.backwd_compat.gf_retime.GfReTime.copy_from", "triqs.gf.backwd_compat.gf_retime.GfReTime.data", "triqs.gf.backwd_compat.gf_retime.GfReTime.density", "triqs.gf.backwd_compat.gf_retime.GfReTime.enforce_discontinuity", "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail", "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail_on_window", "triqs.gf.backwd_compat.gf_retime.GfReTime.from_L_G_R", "triqs.gf.backwd_compat.gf_retime.GfReTime.imag", "triqs.gf.backwd_compat.gf_retime.GfReTime.indices", "triqs.gf.backwd_compat.gf_retime.GfReTime.inverse", "triqs.gf.backwd_compat.gf_retime.GfReTime.invert", "triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_hermitian", "triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_retime.GfReTime.mesh", "triqs.gf.backwd_compat.gf_retime.GfReTime.rank", "triqs.gf.backwd_compat.gf_retime.GfReTime.real", "triqs.gf.backwd_compat.gf_retime.GfReTime.rebinning_tau", "triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail", "triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_fourier", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imfreq", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imtime", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_legendre", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_pade", "triqs.gf.backwd_compat.gf_retime.GfReTime.target_indices", "triqs.gf.backwd_compat.gf_retime.GfReTime.target_rank", "triqs.gf.backwd_compat.gf_retime.GfReTime.target_shape", "triqs.gf.backwd_compat.gf_retime.GfReTime.tau_L2_norm", "triqs.gf.backwd_compat.gf_retime.GfReTime.total_density", "triqs.gf.backwd_compat.gf_retime.GfReTime.transpose", "triqs.gf.backwd_compat.gf_retime.GfReTime.x_data_view", "triqs.gf.backwd_compat.gf_retime.GfReTime.zero", "triqs.gf.block2_gf", "triqs.gf.block2_gf.Block2Gf", "triqs.gf.block2_gf.Block2Gf.__init__", "triqs.gf.block2_gf.Block2Gf.all_indices", "triqs.gf.block2_gf.Block2Gf.copy", "triqs.gf.block2_gf.Block2Gf.copy_from", "triqs.gf.block2_gf.Block2Gf.copy_selected_blocks", "triqs.gf.block2_gf.Block2Gf.imag", "triqs.gf.block2_gf.Block2Gf.indices", "triqs.gf.block2_gf.Block2Gf.indices1", "triqs.gf.block2_gf.Block2Gf.indices2", "triqs.gf.block2_gf.Block2Gf.n_blocks", "triqs.gf.block2_gf.Block2Gf.real", "triqs.gf.block2_gf.Block2Gf.view_selected_blocks", "triqs.gf.block2_gf.Block2Gf.zero", "triqs.gf.block_gf", "triqs.gf.block_gf.BlockGf", "triqs.gf.block_gf.BlockGf.__init__", "triqs.gf.block_gf.BlockGf.all_indices", "triqs.gf.block_gf.BlockGf.beta", "triqs.gf.block_gf.BlockGf.conjugate", "triqs.gf.block_gf.BlockGf.copy", "triqs.gf.block_gf.BlockGf.copy_from", "triqs.gf.block_gf.BlockGf.copy_selected_blocks", "triqs.gf.block_gf.BlockGf.density", "triqs.gf.block_gf.BlockGf.imag", "triqs.gf.block_gf.BlockGf.indices", "triqs.gf.block_gf.BlockGf.inverse", "triqs.gf.block_gf.BlockGf.invert", "triqs.gf.block_gf.BlockGf.load", "triqs.gf.block_gf.BlockGf.mesh", "triqs.gf.block_gf.BlockGf.n_blocks", "triqs.gf.block_gf.BlockGf.real", "triqs.gf.block_gf.BlockGf.save", "triqs.gf.block_gf.BlockGf.total_density", "triqs.gf.block_gf.BlockGf.transpose", "triqs.gf.block_gf.BlockGf.view_selected_blocks", "triqs.gf.block_gf.BlockGf.zero", "triqs.gf.block_gf.call_factory_from_dict", "triqs.gf.block_gf.fix_gf_struct_type", "triqs.gf.descriptor_base", "triqs.gf.descriptor_base.Base", "triqs.gf.descriptor_base.Base.__init__", "triqs.gf.descriptor_base.BaseBlock", "triqs.gf.descriptor_base.BaseBlock.__init__", "triqs.gf.descriptor_base.BaseBlock.is_block_descriptor", "triqs.gf.descriptor_base.Const", "triqs.gf.descriptor_base.Const.__init__", "triqs.gf.descriptor_base.Function", "triqs.gf.descriptor_base.Function.__init__", "triqs.gf.descriptor_base.LazyCTX", "triqs.gf.descriptor_base.LazyCTX.__init__", "triqs.gf.descriptor_base.Omega_", "triqs.gf.descriptor_base.Omega_.__init__", "triqs.gf.descriptor_base.convert_scalar_to_const", "triqs.gf.descriptor_base.is_lazy", "triqs.gf.descriptor_base.is_scalar", "triqs.gf.descriptors", "triqs.gf.descriptors.Flat", "triqs.gf.descriptors.Flat.__init__", "triqs.gf.descriptors.Fourier", "triqs.gf.descriptors.Fourier.__init__", "triqs.gf.descriptors.Fourier.is_block_descriptor", "triqs.gf.descriptors.LegendreToMatsubara", "triqs.gf.descriptors.LegendreToMatsubara.__init__", "triqs.gf.descriptors.LegendreToMatsubara.is_block_descriptor", "triqs.gf.descriptors.MatsubaraToLegendre", "triqs.gf.descriptors.MatsubaraToLegendre.__init__", "triqs.gf.descriptors.MatsubaraToLegendre.is_block_descriptor", "triqs.gf.descriptors.OneFermionInTime", "triqs.gf.descriptors.OneFermionInTime.__init__", "triqs.gf.descriptors.SemiCircular", "triqs.gf.descriptors.SemiCircular.__init__", "triqs.gf.descriptors.Wilson", "triqs.gf.descriptors.Wilson.__init__", "triqs.gf.descriptors.semi", "triqs.gf.dlr_crm_dyson_solver", "triqs.gf.dlr_crm_dyson_solver.minimize_dyson", "triqs.gf.gf", "triqs.gf.gf.AddMethod", "triqs.gf.gf.AddMethod.__init__", "triqs.gf.gf.AddMethod.mro", "triqs.gf.gf.CallProxyNone", "triqs.gf.gf.CallProxyNone.__init__", "triqs.gf.gf.Gf", "triqs.gf.gf.Gf.__init__", "triqs.gf.gf.Gf.conjugate", "triqs.gf.gf.Gf.copy", "triqs.gf.gf.Gf.copy_from", "triqs.gf.gf.Gf.data", "triqs.gf.gf.Gf.density", "triqs.gf.gf.Gf.enforce_discontinuity", "triqs.gf.gf.Gf.fit_hermitian_tail", "triqs.gf.gf.Gf.fit_hermitian_tail_on_window", "triqs.gf.gf.Gf.fit_tail", "triqs.gf.gf.Gf.fit_tail_on_window", "triqs.gf.gf.Gf.from_L_G_R", "triqs.gf.gf.Gf.imag", "triqs.gf.gf.Gf.indices", "triqs.gf.gf.Gf.inverse", "triqs.gf.gf.Gf.invert", "triqs.gf.gf.Gf.is_gf_hermitian", "triqs.gf.gf.Gf.is_gf_real_in_tau", "triqs.gf.gf.Gf.mesh", "triqs.gf.gf.Gf.rank", "triqs.gf.gf.Gf.real", "triqs.gf.gf.Gf.rebinning_tau", "triqs.gf.gf.Gf.replace_by_tail", "triqs.gf.gf.Gf.replace_by_tail_in_fit_window", "triqs.gf.gf.Gf.set_from_fourier", "triqs.gf.gf.Gf.set_from_imfreq", "triqs.gf.gf.Gf.set_from_imtime", "triqs.gf.gf.Gf.set_from_legendre", "triqs.gf.gf.Gf.set_from_pade", "triqs.gf.gf.Gf.target_indices", "triqs.gf.gf.Gf.target_rank", "triqs.gf.gf.Gf.target_shape", "triqs.gf.gf.Gf.tau_L2_norm", "triqs.gf.gf.Gf.total_density", "triqs.gf.gf.Gf.transpose", "triqs.gf.gf.Gf.x_data_view", "triqs.gf.gf.Gf.zero", "triqs.gf.gf.Idx", "triqs.gf.gf.Idx.__init__", "triqs.gf.gf.add_method_helper", "triqs.gf.gf.bckwd", "triqs.gf.gf.call_factory_from_dict", "triqs.gf.gf_factories", "triqs.gf.gf_factories.fit_gf_dlr", "triqs.gf.gf_factories.make_gf_dlr", "triqs.gf.gf_factories.make_gf_dlr_imfreq", "triqs.gf.gf_factories.make_gf_dlr_imtime", "triqs.gf.gf_factories.make_gf_from_fourier", "triqs.gf.gf_factories.make_gf_imfreq", "triqs.gf.gf_factories.make_gf_imtime", "triqs.gf.gf_factories.make_hermitian", "triqs.gf.gf_factories.make_real_in_tau", "triqs.gf.gf_fnt", "triqs.gf.gf_fnt.density", "triqs.gf.gf_fnt.enforce_discontinuity", "triqs.gf.gf_fnt.fit_hermitian_tail", "triqs.gf.gf_fnt.fit_hermitian_tail_on_window", "triqs.gf.gf_fnt.fit_tail", "triqs.gf.gf_fnt.fit_tail_on_window", "triqs.gf.gf_fnt.is_gf_hermitian", "triqs.gf.gf_fnt.is_gf_real_in_tau", "triqs.gf.gf_fnt.rebinning_tau", "triqs.gf.gf_fnt.replace_by_tail", "triqs.gf.gf_fnt.replace_by_tail_in_fit_window", "triqs.gf.gf_fnt.set_from_fourier", "triqs.gf.gf_fnt.set_from_imfreq", "triqs.gf.gf_fnt.set_from_imtime", "triqs.gf.gf_fnt.set_from_legendre", "triqs.gf.gf_fnt.set_from_pade", "triqs.gf.gf_fnt.tau_L2_norm", "triqs.gf.lazy_expressions", "triqs.gf.lazy_expressions.LazyExpr", "triqs.gf.lazy_expressions.LazyExpr.__init__", "triqs.gf.lazy_expressions.LazyExpr.copy", "triqs.gf.lazy_expressions.LazyExpr.get_terminal", "triqs.gf.lazy_expressions.LazyExpr.is_terminal", "triqs.gf.lazy_expressions.LazyExpr.set_from", "triqs.gf.lazy_expressions.LazyExprTerminal", "triqs.gf.lazy_expressions.LazyExprTerminal.__init__", "triqs.gf.lazy_expressions.all_terminals", "triqs.gf.lazy_expressions.eval_expr", "triqs.gf.lazy_expressions.eval_expr_with_context", "triqs.gf.lazy_expressions.lazy_function", "triqs.gf.lazy_expressions.make_lazy", "triqs.gf.lazy_expressions.transform", "triqs.gf.map_block", "triqs.gf.matsubara_freq", "triqs.gf.matsubara_freq.MatsubaraFreq", "triqs.gf.matsubara_freq.MatsubaraFreq.__init__", "triqs.gf.matsubara_freq.MatsubaraFreq.imag", "triqs.gf.matsubara_freq.MatsubaraFreq.index", "triqs.gf.matsubara_freq.MatsubaraFreq.real", "triqs.gf.matsubara_freq.MatsubaraFreq.value", "triqs.gf.mesh_point", "triqs.gf.mesh_point.MeshPoint", "triqs.gf.mesh_point.MeshPoint.__init__", "triqs.gf.mesh_point.MeshPoint.imag", "triqs.gf.mesh_point.MeshPoint.real", "triqs.gf.mesh_point.MeshValueGenerator", "triqs.gf.mesh_point.MeshValueGenerator.__init__", "triqs.gf.mesh_product", "triqs.gf.mesh_product.MeshProduct", "triqs.gf.mesh_product.MeshProduct.__init__", "triqs.gf.mesh_product.MeshProduct.components", "triqs.gf.mesh_product.MeshProduct.copy", "triqs.gf.mesh_product.MeshProduct.copy_from", "triqs.gf.mesh_product.MeshProduct.rank", "triqs.gf.mesh_product.MeshProduct.size_of_components", "triqs.gf.mesh_product.MeshProduct.to_data_index", "triqs.gf.mesh_product.call_factory_from_dict", "triqs.gf.meshes", "triqs.gf.meshes.MeshBrZone", "triqs.gf.meshes.MeshBrZone.__init__", "triqs.gf.meshes.MeshBrZone.bz", "triqs.gf.meshes.MeshBrZone.closest_index", "triqs.gf.meshes.MeshBrZone.copy", "triqs.gf.meshes.MeshBrZone.copy_from", "triqs.gf.meshes.MeshBrZone.dims", "triqs.gf.meshes.MeshBrZone.mesh_hash", "triqs.gf.meshes.MeshBrZone.to_data_index", "triqs.gf.meshes.MeshBrZone.to_index", "triqs.gf.meshes.MeshBrZone.to_value", "triqs.gf.meshes.MeshBrZone.units", "triqs.gf.meshes.MeshBrZone.values", "triqs.gf.meshes.MeshCycLat", "triqs.gf.meshes.MeshCycLat.__init__", "triqs.gf.meshes.MeshCycLat.copy", "triqs.gf.meshes.MeshCycLat.copy_from", "triqs.gf.meshes.MeshCycLat.dims", "triqs.gf.meshes.MeshCycLat.lattice", "triqs.gf.meshes.MeshCycLat.mesh_hash", "triqs.gf.meshes.MeshCycLat.to_data_index", "triqs.gf.meshes.MeshCycLat.to_index", "triqs.gf.meshes.MeshCycLat.to_value", "triqs.gf.meshes.MeshCycLat.units", "triqs.gf.meshes.MeshCycLat.values", "triqs.gf.meshes.MeshDLR", "triqs.gf.meshes.MeshDLR.__init__", "triqs.gf.meshes.MeshDLR.beta", "triqs.gf.meshes.MeshDLR.copy", "triqs.gf.meshes.MeshDLR.copy_from", "triqs.gf.meshes.MeshDLR.eps", "triqs.gf.meshes.MeshDLR.mesh_hash", "triqs.gf.meshes.MeshDLR.statistic", "triqs.gf.meshes.MeshDLR.to_data_index", "triqs.gf.meshes.MeshDLR.to_index", "triqs.gf.meshes.MeshDLR.to_value", "triqs.gf.meshes.MeshDLR.values", "triqs.gf.meshes.MeshDLR.w_max", "triqs.gf.meshes.MeshDLRImFreq", "triqs.gf.meshes.MeshDLRImFreq.__init__", "triqs.gf.meshes.MeshDLRImFreq.beta", "triqs.gf.meshes.MeshDLRImFreq.copy", "triqs.gf.meshes.MeshDLRImFreq.copy_from", "triqs.gf.meshes.MeshDLRImFreq.eps", "triqs.gf.meshes.MeshDLRImFreq.mesh_hash", "triqs.gf.meshes.MeshDLRImFreq.statistic", "triqs.gf.meshes.MeshDLRImFreq.to_data_index", "triqs.gf.meshes.MeshDLRImFreq.to_index", "triqs.gf.meshes.MeshDLRImFreq.to_value", "triqs.gf.meshes.MeshDLRImFreq.values", "triqs.gf.meshes.MeshDLRImFreq.w_max", "triqs.gf.meshes.MeshDLRImTime", "triqs.gf.meshes.MeshDLRImTime.__init__", "triqs.gf.meshes.MeshDLRImTime.beta", "triqs.gf.meshes.MeshDLRImTime.copy", "triqs.gf.meshes.MeshDLRImTime.copy_from", "triqs.gf.meshes.MeshDLRImTime.eps", "triqs.gf.meshes.MeshDLRImTime.mesh_hash", "triqs.gf.meshes.MeshDLRImTime.statistic", "triqs.gf.meshes.MeshDLRImTime.to_data_index", "triqs.gf.meshes.MeshDLRImTime.to_index", "triqs.gf.meshes.MeshDLRImTime.to_value", "triqs.gf.meshes.MeshDLRImTime.values", "triqs.gf.meshes.MeshDLRImTime.w_max", "triqs.gf.meshes.MeshImFreq", "triqs.gf.meshes.MeshImFreq.__init__", "triqs.gf.meshes.MeshImFreq.beta", "triqs.gf.meshes.MeshImFreq.copy", "triqs.gf.meshes.MeshImFreq.copy_from", "triqs.gf.meshes.MeshImFreq.first_index", "triqs.gf.meshes.MeshImFreq.last_index", "triqs.gf.meshes.MeshImFreq.mesh_hash", "triqs.gf.meshes.MeshImFreq.n_iw", "triqs.gf.meshes.MeshImFreq.positive_only", "triqs.gf.meshes.MeshImFreq.set_tail_fit_parameters", "triqs.gf.meshes.MeshImFreq.statistic", "triqs.gf.meshes.MeshImFreq.to_data_index", "triqs.gf.meshes.MeshImFreq.to_index", "triqs.gf.meshes.MeshImFreq.to_value", "triqs.gf.meshes.MeshImFreq.values", "triqs.gf.meshes.MeshImTime", "triqs.gf.meshes.MeshImTime.__init__", "triqs.gf.meshes.MeshImTime.beta", "triqs.gf.meshes.MeshImTime.copy", "triqs.gf.meshes.MeshImTime.copy_from", "triqs.gf.meshes.MeshImTime.mesh_hash", "triqs.gf.meshes.MeshImTime.statistic", "triqs.gf.meshes.MeshImTime.to_data_index", "triqs.gf.meshes.MeshImTime.to_index", "triqs.gf.meshes.MeshImTime.to_value", "triqs.gf.meshes.MeshImTime.values", "triqs.gf.meshes.MeshLegendre", "triqs.gf.meshes.MeshLegendre.__init__", "triqs.gf.meshes.MeshLegendre.beta", "triqs.gf.meshes.MeshLegendre.copy", "triqs.gf.meshes.MeshLegendre.copy_from", "triqs.gf.meshes.MeshLegendre.mesh_hash", "triqs.gf.meshes.MeshLegendre.statistic", "triqs.gf.meshes.MeshLegendre.to_data_index", "triqs.gf.meshes.MeshLegendre.to_index", "triqs.gf.meshes.MeshReFreq", "triqs.gf.meshes.MeshReFreq.__init__", "triqs.gf.meshes.MeshReFreq.copy", "triqs.gf.meshes.MeshReFreq.copy_from", "triqs.gf.meshes.MeshReFreq.delta", "triqs.gf.meshes.MeshReFreq.mesh_hash", "triqs.gf.meshes.MeshReFreq.to_data_index", "triqs.gf.meshes.MeshReFreq.to_index", "triqs.gf.meshes.MeshReFreq.to_value", "triqs.gf.meshes.MeshReFreq.values", "triqs.gf.meshes.MeshReFreq.w_max", "triqs.gf.meshes.MeshReFreq.w_min", "triqs.gf.meshes.MeshReTime", "triqs.gf.meshes.MeshReTime.__init__", "triqs.gf.meshes.MeshReTime.copy", "triqs.gf.meshes.MeshReTime.copy_from", "triqs.gf.meshes.MeshReTime.delta", "triqs.gf.meshes.MeshReTime.mesh_hash", "triqs.gf.meshes.MeshReTime.t_max", "triqs.gf.meshes.MeshReTime.t_min", "triqs.gf.meshes.MeshReTime.to_data_index", "triqs.gf.meshes.MeshReTime.to_index", "triqs.gf.meshes.MeshReTime.to_value", "triqs.gf.meshes.MeshReTime.values", "triqs.gf.meshes.make_adjoint_mesh", "triqs.gf.plot", "triqs.gf.plot.bz", "triqs.gf.plot.bz.dist", "triqs.gf.plot.bz.generate_points", "triqs.gf.plot.bz.generate_points_on_path", "triqs.gf.plot.bz.length", "triqs.gf.plot.bz.make_plottable", "triqs.gf.plot.bz.plot", "triqs.gf.plot.bz.slice_on_path", "triqs.gf.plot.bz_x_x", "triqs.gf.plot.bz_x_x.plot", "triqs.gf.plot.bz_x_x.plottable_slice_along_path", "triqs.gf.plot.dispatcher", "triqs.gf.plot.one_var", "triqs.gf.plot.one_var.dlr_imfreq", "triqs.gf.plot.one_var.dlr_imtime", "triqs.gf.plot.one_var.imfreq", "triqs.gf.plot.one_var.imtime", "triqs.gf.plot.one_var.legendre", "triqs.gf.plot.one_var.refreq", "triqs.gf.plot.one_var.retime", "triqs.gf.plot.plot_base", "triqs.gf.plot.plot_base.plot_base", "triqs.gf.plot.select_indices", "triqs.gf.plot.select_indices.closest_point_in_line", "triqs.gf.plot.select_indices.closest_to", "triqs.gf.plot.select_indices.dist", "triqs.gf.plot.select_indices.pick_selection_vec", "triqs.gf.plot.select_indices.select_path_indices", "triqs.gf.tools", "triqs.gf.tools.conjugate", "triqs.gf.tools.delta", "triqs.gf.tools.discretize_bath", "triqs.gf.tools.dyson", "triqs.gf.tools.fit_legendre", "triqs.gf.tools.inverse", "triqs.gf.tools.make_delta", "triqs.gf.tools.make_zero_tail", "triqs.gf.tools.read_gf_from_txt", "triqs.gf.tools.transpose", "triqs.gf.tools.write_gf_to_txt", "triqs.gf.wrapped_aux", "triqs.gf.wrapped_aux.CallProxyBrZone_0", "triqs.gf.wrapped_aux.CallProxyBrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_1", "triqs.gf.wrapped_aux.CallProxyBrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_2", "triqs.gf.wrapped_aux.CallProxyBrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_3", "triqs.gf.wrapped_aux.CallProxyBrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_4", "triqs.gf.wrapped_aux.CallProxyBrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_0", "triqs.gf.wrapped_aux.CallProxyCycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_1", "triqs.gf.wrapped_aux.CallProxyCycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_2", "triqs.gf.wrapped_aux.CallProxyCycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_3", "triqs.gf.wrapped_aux.CallProxyCycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_4", "triqs.gf.wrapped_aux.CallProxyCycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_0", "triqs.gf.wrapped_aux.CallProxyDLR_0.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_1", "triqs.gf.wrapped_aux.CallProxyDLR_1.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_2", "triqs.gf.wrapped_aux.CallProxyDLR_2.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_3", "triqs.gf.wrapped_aux.CallProxyDLR_3.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_4", "triqs.gf.wrapped_aux.CallProxyDLR_4.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_0", "triqs.gf.wrapped_aux.CallProxyImFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_1", "triqs.gf.wrapped_aux.CallProxyImFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_2", "triqs.gf.wrapped_aux.CallProxyImFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_3", "triqs.gf.wrapped_aux.CallProxyImFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_4", "triqs.gf.wrapped_aux.CallProxyImFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_0", "triqs.gf.wrapped_aux.CallProxyImTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_0_R", "triqs.gf.wrapped_aux.CallProxyImTime_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_1", "triqs.gf.wrapped_aux.CallProxyImTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_1_R", "triqs.gf.wrapped_aux.CallProxyImTime_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_2", "triqs.gf.wrapped_aux.CallProxyImTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_2_R", "triqs.gf.wrapped_aux.CallProxyImTime_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_3", "triqs.gf.wrapped_aux.CallProxyImTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_3_R", "triqs.gf.wrapped_aux.CallProxyImTime_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_4", "triqs.gf.wrapped_aux.CallProxyImTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_4_R", "triqs.gf.wrapped_aux.CallProxyImTime_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_0", "triqs.gf.wrapped_aux.CallProxyLegendre_0.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_1", "triqs.gf.wrapped_aux.CallProxyLegendre_1.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_2", "triqs.gf.wrapped_aux.CallProxyLegendre_2.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_3", "triqs.gf.wrapped_aux.CallProxyLegendre_3.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_4", "triqs.gf.wrapped_aux.CallProxyLegendre_4.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_0", "triqs.gf.wrapped_aux.CallProxyReFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_1", "triqs.gf.wrapped_aux.CallProxyReFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_2", "triqs.gf.wrapped_aux.CallProxyReFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_3", "triqs.gf.wrapped_aux.CallProxyReFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_4", "triqs.gf.wrapped_aux.CallProxyReFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_0", "triqs.gf.wrapped_aux.CallProxyReTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_1", "triqs.gf.wrapped_aux.CallProxyReTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_2", "triqs.gf.wrapped_aux.CallProxyReTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_3", "triqs.gf.wrapped_aux.CallProxyReTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_4", "triqs.gf.wrapped_aux.CallProxyReTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.set_from_gf_data_mul_LR", "triqs.lattice", "triqs.lattice.bz_patch", "triqs.lattice.bz_patch.BZPatch", "triqs.lattice.bz_patch.BZPatch.__init__", "triqs.lattice.bz_patch.BZPatch.dos", "triqs.lattice.lattice_tools", "triqs.lattice.lattice_tools.BravaisLattice", "triqs.lattice.lattice_tools.BravaisLattice.__init__", "triqs.lattice.lattice_tools.BravaisLattice.lattice_to_real_coordinates", "triqs.lattice.lattice_tools.BravaisLattice.n_orbitals", "triqs.lattice.lattice_tools.BravaisLattice.ndim", "triqs.lattice.lattice_tools.BravaisLattice.orbital_names", "triqs.lattice.lattice_tools.BravaisLattice.orbital_positions", "triqs.lattice.lattice_tools.BravaisLattice.units", "triqs.lattice.lattice_tools.BrillouinZone", "triqs.lattice.lattice_tools.BrillouinZone.__init__", "triqs.lattice.lattice_tools.BrillouinZone.lattice", "triqs.lattice.lattice_tools.BrillouinZone.ndim", "triqs.lattice.lattice_tools.BrillouinZone.units", "triqs.lattice.lattice_tools.TightBinding", "triqs.lattice.lattice_tools.TightBinding.__init__", "triqs.lattice.lattice_tools.TightBinding.dispersion", "triqs.lattice.lattice_tools.TightBinding.displ_vec", "triqs.lattice.lattice_tools.TightBinding.fourier", "triqs.lattice.lattice_tools.TightBinding.lattice", "triqs.lattice.lattice_tools.TightBinding.lattice_to_real_coordinates", "triqs.lattice.lattice_tools.TightBinding.overlap_mat_vec", "triqs.lattice.lattice_tools.dos", "triqs.lattice.lattice_tools.dos_patch", "triqs.lattice.point", "triqs.lattice.point.LatticePoint", "triqs.lattice.point.LatticePoint.__init__", "triqs.lattice.point.LatticePoint.value", "triqs.lattice.super_lattice", "triqs.lattice.super_lattice.TBSuperLattice", "triqs.lattice.super_lattice.TBSuperLattice.__init__", "triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_L_to_SL", "triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_SL_to_L", "triqs.lattice.super_lattice.TBSuperLattice.cluster_sites", "triqs.lattice.super_lattice.TBSuperLattice.dispersion", "triqs.lattice.super_lattice.TBSuperLattice.fold", "triqs.lattice.super_lattice.TBSuperLattice.fourier", "triqs.lattice.super_lattice.TBSuperLattice.get_kmesh", "triqs.lattice.super_lattice.TBSuperLattice.get_rmesh", "triqs.lattice.super_lattice.TBSuperLattice.hoppings", "triqs.lattice.super_lattice.TBSuperLattice.lattice_to_real_coordinates", "triqs.lattice.super_lattice.TBSuperLattice.n_orbitals", "triqs.lattice.super_lattice.TBSuperLattice.ndim", "triqs.lattice.super_lattice.TBSuperLattice.orbital_names", "triqs.lattice.super_lattice.TBSuperLattice.orbital_positions", "triqs.lattice.super_lattice.TBSuperLattice.pack_index_site_orbital", "triqs.lattice.super_lattice.TBSuperLattice.units", "triqs.lattice.super_lattice.TBSuperLattice.unpack_index_site_orbital", "triqs.lattice.tight_binding", "triqs.lattice.tight_binding.TBLattice", "triqs.lattice.tight_binding.TBLattice.__init__", "triqs.lattice.tight_binding.TBLattice.dispersion", "triqs.lattice.tight_binding.TBLattice.fourier", "triqs.lattice.tight_binding.TBLattice.get_kmesh", "triqs.lattice.tight_binding.TBLattice.get_rmesh", "triqs.lattice.tight_binding.TBLattice.hoppings", "triqs.lattice.tight_binding.TBLattice.lattice_to_real_coordinates", "triqs.lattice.tight_binding.TBLattice.n_orbitals", "triqs.lattice.tight_binding.TBLattice.ndim", "triqs.lattice.tight_binding.TBLattice.orbital_names", "triqs.lattice.tight_binding.TBLattice.orbital_positions", "triqs.lattice.tight_binding.TBLattice.units", "triqs.lattice.tight_binding.dos", "triqs.lattice.tight_binding.dos_patch", "triqs.lattice.utils", "triqs.lattice.utils.TB_from_pythTB", "triqs.lattice.utils.TB_from_wannier90", "triqs.lattice.utils.TB_to_sympy", "triqs.lattice.utils.extend_wannier90_to_spin", "triqs.lattice.utils.k_space_path", "triqs.lattice.utils.parse_hopping_from_wannier90_hr_dat", "triqs.lattice.utils.parse_lattice_vectors_from_wannier90_wout", "triqs.operators", "triqs.operators.operators", "triqs.operators.operators.Operator", "triqs.operators.operators.Operator.__init__", "triqs.operators.operators.Operator.imag", "triqs.operators.operators.Operator.is_zero", "triqs.operators.operators.Operator.real", "triqs.operators.operators.c", "triqs.operators.operators.c_dag", "triqs.operators.operators.dagger", "triqs.operators.operators.is_op_hermitian", "triqs.operators.operators.n", "triqs.operators.util", "triqs.operators.util.U_matrix", "triqs.operators.util.U_matrix.U_J_to_radial_integrals", "triqs.operators.util.U_matrix.U_matrix_kanamori", "triqs.operators.util.U_matrix.U_matrix_slater", "triqs.operators.util.U_matrix.angular_matrix_element", "triqs.operators.util.U_matrix.clebsch_gordan", "triqs.operators.util.U_matrix.cubic_names", "triqs.operators.util.U_matrix.eg_submatrix", "triqs.operators.util.U_matrix.radial_integrals_to_U_J", "triqs.operators.util.U_matrix.reduce_4index_to_2index", "triqs.operators.util.U_matrix.spherical_to_cubic", "triqs.operators.util.U_matrix.subarray", "triqs.operators.util.U_matrix.t2g_submatrix", "triqs.operators.util.U_matrix.three_j_symbol", "triqs.operators.util.U_matrix.transform_U_matrix", "triqs.operators.util.extractors", "triqs.operators.util.extractors.block_matrix_from_op", "triqs.operators.util.extractors.dict_to_matrix", "triqs.operators.util.extractors.extract_U_dict2", "triqs.operators.util.extractors.extract_U_dict4", "triqs.operators.util.extractors.extract_h_dict", "triqs.operators.util.extractors.op_from_block_matrix", "triqs.operators.util.extractors.quadratic_terms", "triqs.operators.util.extractors.quartic_terms", "triqs.operators.util.hamiltonians", "triqs.operators.util.hamiltonians.backward_compat", "triqs.operators.util.hamiltonians.diagonal_part", "triqs.operators.util.hamiltonians.h_int_density", "triqs.operators.util.hamiltonians.h_int_kanamori", "triqs.operators.util.hamiltonians.h_int_slater", "triqs.operators.util.hamiltonians.make_operator_real", "triqs.operators.util.observables", "triqs.operators.util.observables.L2_op", "triqs.operators.util.observables.LS_op", "triqs.operators.util.observables.L_op", "triqs.operators.util.observables.N_op", "triqs.operators.util.observables.S2_op", "triqs.operators.util.observables.S_op", "triqs.operators.util.observables.check_backward_compat", "triqs.operators.util.op_struct", "triqs.operators.util.op_struct.get_mkind", "triqs.operators.util.op_struct.set_operator_structure", "triqs.plot", "triqs.plot.mpl_interface", "triqs.plot.mpl_interface.oplot", "triqs.plot.mpl_interface.oploti", "triqs.plot.mpl_interface.oplotr", "triqs.plot.mpl_interface.use_amsmath", "triqs.plot.protocol", "triqs.plot.protocol.clip_array", "triqs.plot.protocol.plot_protocol_apply", "triqs.random_generator", "triqs.random_generator.RandomGenerator", "triqs.random_generator.RandomGenerator.__init__", "triqs.random_generator.random_generator", "triqs.random_generator.random_generator.random_generator_names_list", "triqs.stat", "triqs.stat.histogram", "triqs.stat.histogram.plot", "triqs.stat.histograms", "triqs.stat.histograms.Histogram", "triqs.stat.histograms.Histogram.__init__", "triqs.stat.histograms.Histogram.clear", "triqs.stat.histograms.Histogram.data", "triqs.stat.histograms.Histogram.limits", "triqs.stat.histograms.Histogram.mesh_point", "triqs.stat.histograms.Histogram.n_data_pts", "triqs.stat.histograms.Histogram.n_lost_pts", "triqs.stat.histograms.cdf", "triqs.stat.histograms.pdf", "triqs.sumk", "triqs.sumk.sumk_discrete", "triqs.sumk.sumk_discrete.SumkDiscrete", "triqs.sumk.sumk_discrete.SumkDiscrete.GFBlocIndices", "triqs.sumk.sumk_discrete.SumkDiscrete.__init__", "triqs.sumk.sumk_discrete.SumkDiscrete.n_kpts", "triqs.sumk.sumk_discrete.SumkDiscrete.resize_arrays", "triqs.sumk.sumk_discrete_from_lattice", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.GFBlocIndices", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.Recompute_Grid", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.__init__", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.n_kpts", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.resize_arrays", "triqs.utility", "triqs.utility.bound_and_bisect", "triqs.utility.bound_and_bisect.bound_and_bisect", "triqs.utility.bound_and_bisect.determine_bounds", "triqs.utility.capture_stdout", "triqs.utility.comparison_tests", "triqs.utility.comparison_tests.assert_array_close_to_scalar", "triqs.utility.comparison_tests.assert_arrays_are_close", "triqs.utility.comparison_tests.assert_block2_gfs_are_close", "triqs.utility.comparison_tests.assert_block_gfs_are_close", "triqs.utility.comparison_tests.assert_gfs_are_close", "triqs.utility.dichotomy", "triqs.utility.dichotomy.dichotomy", "triqs.utility.dist_on_nodes", "triqs.utility.dist_on_nodes.DistributionOnNodes", "triqs.utility.dist_on_nodes.DistributionOnNodes.SleepTime", "triqs.utility.dist_on_nodes.DistributionOnNodes.__init__", "triqs.utility.dist_on_nodes.DistributionOnNodes.run", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.SleepTime", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.__init__", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.finished", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.result", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.run", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.treate", "triqs.utility.dist_on_nodes.DistributionOnNodesTest", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.SleepTime", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.__init__", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.finished", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.result", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.run", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.the_function", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.treate", "triqs.utility.h5diff", "triqs.utility.h5diff.compare", "triqs.utility.h5diff.h5diff", "triqs.utility.mpi", "triqs.utility.mpi.check_for_mpi", "triqs.utility.mpi_mpi4py", "triqs.utility.mpi_mpi4py.all_reduce", "triqs.utility.mpi_mpi4py.barrier", "triqs.utility.mpi_mpi4py.bcast", "triqs.utility.mpi_mpi4py.is_master_node", "triqs.utility.mpi_mpi4py.master_gets_host_names", "triqs.utility.mpi_mpi4py.myprint_err", "triqs.utility.mpi_mpi4py.myprint_out", "triqs.utility.mpi_mpi4py.recv", "triqs.utility.mpi_mpi4py.report", "triqs.utility.mpi_mpi4py.send", "triqs.utility.mpi_mpi4py.slice_array", "triqs.utility.mpi_mpi4py.slice_inf", "triqs.utility.mpi_mpi4py.slice_sup", "triqs.utility.mpi_nompi", "triqs.utility.mpi_nompi.all_reduce", "triqs.utility.mpi_nompi.barrier", "triqs.utility.mpi_nompi.bcast", "triqs.utility.mpi_nompi.is_master_node", "triqs.utility.mpi_nompi.master_gets_host_names", "triqs.utility.mpi_nompi.myprint_err", "triqs.utility.mpi_nompi.myprint_out", "triqs.utility.mpi_nompi.recv", "triqs.utility.mpi_nompi.report", "triqs.utility.mpi_nompi.send", "triqs.utility.mpi_nompi.slice_array", "triqs.utility.redirect", "triqs.utility.redirect.T", "triqs.utility.redirect.T.__init__", "triqs.utility.redirect.T.daemon", "triqs.utility.redirect.T.getName", "triqs.utility.redirect.T.ident", "triqs.utility.redirect.T.isDaemon", "triqs.utility.redirect.T.is_alive", "triqs.utility.redirect.T.join", "triqs.utility.redirect.T.name", "triqs.utility.redirect.T.native_id", "triqs.utility.redirect.T.run", "triqs.utility.redirect.T.setDaemon", "triqs.utility.redirect.T.setName", "triqs.utility.redirect.T.start", "triqs.utility.redirect.T.stop", "triqs.utility.redirect.start_redirect", "triqs.utility.redirect.stop_redirect", "Frequently-asked questions", "Welcome", "Installation", "Using the clang compiler", "Unix environment variables", "Customizing your installation", "Prerequisites for the TRIQS Compilation on Mac OS X", "Python Virtual Environments", "A complete list of requirements", "Installing required libraries on Ubuntu", "Guide for porting your application to TRIQS 3.0 and Python 3", "User guide", "Multidimensional arrays", "det_manip: Determinant manipulations for CTQMC", "Green\u2019s functions", "Green\u2019s function and HDF5 files", "Conventions for TRIQS applications", "Using TRIQS in your own C++ project", "Profiling in C++ and Python", "Writing you own C++ code with TRIQS", "Basics", "Dynamical mean-field theory on a Bethe lattice", "Learn more about Python, ipython and the notebook", "Model DMFT", "A tight-binding model on a square lattice", "TRIQS / solid_dmft tutorial", "FermiSee", "Phase diagram exploration", "Comparison to Hubbard-I solution", "TRIQS / solid_dmft tutorial", "FermiSee", "Phase diagram exploration", "Comparison to Hubbard-I solution", "Introducing python and the ipython notebook", "Matplotlib Examples", "TRIQS Green\u2019s functions", "HDF5 Archives", "Manipulating fermionic operators", "Introduction to multivariable Green\u2019s functions", "TRIQS Green\u2019s functions", "A first DMFT calculation", "General reminder: Anderson impurity model and CTHYB solver", "Single-orbital Hubbard model", "Two-orbital Hubbard model", "Valence-Bond DMFT solution of the Hubbard model", "Tutorials", "A first DMFT calculation", "Single-orbital Hubbard model", "Two-orbital Hubbard model", "Valence-Bond DMFT solution of the Hubbard model", "Tutorial repository", "Fermions on the square lattice & perfect nesting", "Susceptibility \\(\\chi_0\\) of non-interacting fermions", "The random phase approximation (RPA)", "Two-particle self consistency (TPSC)", "Finite temperature antiferromagnetism in two dimensional systems", "Fermions on the square lattice & perfect nesting", "Susceptibility \\(\\chi_0\\) of non-interacting fermions", "The random phase approximation (RPA)", "Two-particle self consistency (TPSC)", "Finite temperature antiferromagnetism in two dimensional systems", "Two-particle Response", "Version compatibility"], "terms": {"thi": [0, 3, 4, 6, 7, 8, 130, 154, 159, 177, 189, 197, 204, 206, 214, 217, 224, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 250, 292, 311, 325, 326, 331, 333, 334, 339, 342, 343, 346, 348, 349, 350, 351, 354, 360, 365, 373, 374, 375, 378, 385, 386, 387, 392, 393, 395, 396, 399, 403, 404, 414, 442, 449, 451, 453, 461, 463, 476, 490, 491, 492, 493, 494, 497, 498, 499, 500, 502, 503, 506, 507, 508, 510, 511, 512, 513, 514, 515, 517, 520, 521, 522, 523, 524, 527, 528, 529, 533, 535, 536, 537, 541, 543, 551, 553, 556, 558, 564, 567, 568, 569, 572, 574, 580, 581, 583, 586, 587, 661, 662, 935, 1092, 1105, 1201, 1210, 1211, 1742, 1780, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1840, 1841, 1842, 1843, 1844, 1848, 1849, 1850, 1852, 1854, 1855, 1856, 1858, 1859, 1860, 1861, 1862, 1867, 1868, 1869, 1871, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909], "describ": [0, 317, 351, 498, 499, 507, 520, 521, 525, 536, 541, 543, 550, 551, 567, 568, 569, 570, 580, 935, 1627, 1646, 1647, 1850, 1853, 1873, 1876, 1877, 1880, 1882, 1889, 1902, 1903, 1907, 1908], "main": [0, 19, 95, 254, 255, 260, 316, 450, 454, 457, 459, 461, 482, 483, 484, 485, 491, 496, 499, 500, 502, 506, 507, 508, 509, 510, 513, 516, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 555, 569, 570, 585, 587, 1833, 1849, 1859, 1860, 1861, 1862, 1863, 1867, 1873, 1877, 1879, 1890, 1895], "i": [0, 3, 5, 6, 7, 8, 18, 40, 46, 48, 86, 89, 100, 114, 115, 117, 120, 121, 122, 154, 155, 156, 157, 158, 160, 162, 163, 168, 172, 177, 182, 189, 194, 197, 203, 204, 206, 210, 214, 215, 216, 217, 219, 224, 228, 230, 231, 233, 234, 235, 236, 238, 239, 250, 252, 254, 256, 257, 292, 300, 301, 302, 311, 314, 315, 317, 325, 329, 332, 334, 342, 348, 349, 351, 353, 358, 365, 368, 372, 379, 384, 394, 403, 407, 408, 410, 428, 430, 431, 432, 433, 434, 435, 442, 445, 449, 450, 451, 453, 455, 456, 457, 459, 461, 473, 476, 480, 481, 482, 485, 490, 491, 492, 493, 494, 496, 497, 498, 499, 500, 502, 503, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 531, 532, 533, 535, 537, 539, 541, 543, 544, 545, 546, 547, 548, 550, 551, 552, 553, 555, 556, 558, 559, 560, 562, 563, 564, 565, 567, 568, 569, 570, 571, 572, 573, 575, 576, 578, 579, 580, 581, 582, 583, 585, 586, 587, 594, 596, 598, 602, 605, 615, 617, 619, 623, 626, 641, 645, 646, 653, 655, 659, 660, 661, 662, 664, 669, 700, 703, 708, 739, 742, 747, 778, 781, 786, 817, 820, 825, 856, 862, 879, 891, 906, 929, 935, 942, 947, 978, 1017, 1018, 1023, 1054, 1079, 1092, 1105, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1210, 1211, 1213, 1215, 1611, 1626, 1632, 1664, 1666, 1674, 1679, 1684, 1685, 1696, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1719, 1727, 1731, 1756, 1768, 1778, 1780, 1806, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1842, 1843, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1858, 1859, 1860, 1861, 1864, 1865, 1866, 1867, 1869, 1870, 1873, 1874, 1875, 1877, 1878, 1879, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908, 1910], "patch": [0, 561, 1594, 1596, 1760, 1762, 1763, 1892, 1897, 1910], "releas": [0, 6, 490, 493, 581, 1848, 1849, 1850, 1867, 1910], "introduc": [0, 543, 580, 1858, 1859, 1868, 1873, 1876, 1877, 1880, 1883, 1886, 1887, 1889, 1902, 1907], "minor": [0, 1910], "restor": [0, 490, 493], "compat": [0, 5, 296, 551, 572, 665, 704, 743, 782, 821, 888, 897, 1858, 1873, 1877, 1879, 1889], "against": [0, 1850, 1855, 1858, 1883, 1887], "recent": [0, 1850, 1851, 1854, 1858], "numpi": [0, 497, 500, 543, 544, 545, 546, 547, 548, 550, 557, 563, 573, 576, 578, 580, 650, 660, 664, 700, 703, 739, 742, 778, 781, 817, 820, 856, 935, 942, 978, 1054, 1066, 1067, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1598, 1622, 1627, 1632, 1647, 1663, 1664, 1666, 1667, 1684, 1685, 1689, 1691, 1692, 1694, 1696, 1699, 1714, 1715, 1716, 1731, 1732, 1848, 1854, 1856, 1857, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "we": [0, 3, 6, 7, 181, 182, 183, 184, 185, 186, 187, 230, 231, 354, 358, 363, 459, 480, 481, 496, 498, 499, 500, 507, 508, 509, 510, 511, 512, 514, 517, 519, 520, 521, 527, 529, 531, 533, 535, 536, 541, 543, 544, 551, 553, 558, 563, 564, 567, 568, 570, 575, 576, 577, 579, 580, 581, 583, 585, 587, 1216, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1848, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1857, 1858, 1859, 1861, 1862, 1863, 1864, 1865, 1867, 1870, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "thank": [0, 8], "all": [0, 3, 4, 8, 42, 44, 98, 99, 125, 141, 142, 143, 149, 150, 159, 161, 163, 168, 172, 174, 188, 189, 190, 204, 206, 218, 251, 257, 268, 300, 302, 317, 340, 352, 356, 359, 360, 370, 393, 410, 411, 414, 434, 439, 450, 451, 456, 463, 464, 473, 481, 484, 485, 490, 496, 497, 498, 499, 506, 513, 517, 519, 522, 523, 527, 528, 533, 535, 539, 543, 551, 553, 556, 568, 569, 570, 572, 575, 578, 580, 581, 586, 587, 589, 591, 597, 604, 605, 608, 612, 618, 625, 626, 629, 640, 641, 661, 662, 701, 740, 779, 818, 857, 886, 979, 1022, 1053, 1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1211, 1217, 1626, 1700, 1701, 1702, 1708, 1744, 1806, 1809, 1823, 1833, 1850, 1852, 1856, 1858, 1859, 1860, 1866, 1867, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "contributor": [0, 5], "nil": 0, "wentzel": [0, 3, 4], "find": [0, 3, 343, 359, 362, 396, 490, 500, 543, 567, 570, 1778, 1809, 1823, 1858, 1868, 1871, 1873, 1874, 1875, 1877, 1878, 1879, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1902, 1907, 1909], "below": [0, 203, 228, 300, 302, 438, 480, 481, 496, 498, 502, 508, 517, 521, 551, 568, 570, 575, 580, 585, 1712, 1853, 1855, 1856, 1858, 1864, 1867, 1873, 1874, 1877, 1878, 1881, 1882, 1883, 1886, 1887, 1891, 1892, 1895, 1896, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "an": [0, 4, 6, 9, 11, 33, 81, 113, 130, 135, 148, 159, 160, 245, 256, 302, 325, 329, 332, 333, 342, 344, 345, 351, 354, 358, 363, 390, 392, 397, 398, 408, 410, 413, 421, 451, 457, 459, 461, 477, 480, 481, 482, 483, 490, 493, 494, 496, 497, 498, 499, 500, 503, 506, 508, 510, 511, 513, 514, 516, 517, 519, 520, 523, 525, 527, 528, 531, 532, 533, 535, 537, 539, 541, 543, 545, 547, 550, 551, 552, 553, 554, 555, 556, 559, 560, 563, 568, 569, 570, 572, 574, 575, 576, 579, 580, 585, 589, 598, 619, 653, 659, 861, 876, 906, 935, 1022, 1062, 1063, 1074, 1075, 1079, 1087, 1088, 1092, 1100, 1101, 1105, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175, 1211, 1626, 1666, 1700, 1701, 1702, 1708, 1711, 1717, 1732, 1815, 1829, 1838, 1849, 1850, 1852, 1859, 1862, 1866, 1868, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1901, 1903, 1904, 1906, 1908, 1910], "item": [0, 496, 498, 1873, 1877], "list": [0, 3, 4, 164, 182, 183, 184, 185, 186, 190, 245, 365, 447, 449, 490, 492, 493, 497, 508, 513, 523, 544, 545, 546, 547, 548, 551, 553, 557, 559, 562, 563, 572, 573, 575, 576, 577, 580, 582, 589, 591, 599, 604, 612, 620, 625, 635, 636, 637, 638, 640, 641, 664, 703, 742, 781, 820, 860, 875, 935, 942, 1044, 1046, 1187, 1201, 1203, 1204, 1211, 1215, 1217, 1598, 1603, 1604, 1614, 1618, 1627, 1640, 1641, 1647, 1656, 1657, 1659, 1666, 1668, 1683, 1685, 1690, 1693, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1737, 1740, 1780, 1832, 1850, 1852, 1873, 1877, 1883, 1884, 1885, 1886, 1887, 1889], "backward": [0, 296, 665, 704, 743, 782, 821, 888, 897], "read": [0, 208, 247, 263, 275, 287, 332, 344, 397, 463, 466, 467, 490, 496, 497, 498, 539, 553, 556, 558, 572, 581, 653, 1217, 1663, 1745, 1848, 1860, 1863, 1873, 1877, 1879, 1890, 1891, 1895, 1896, 1899, 1900, 1901, 1904, 1905, 1906, 1910], "call": [0, 12, 30, 113, 115, 117, 123, 125, 127, 130, 149, 151, 159, 196, 218, 407, 428, 429, 430, 431, 435, 441, 442, 449, 490, 492, 493, 496, 497, 498, 499, 502, 506, 507, 508, 509, 510, 513, 516, 517, 519, 537, 541, 550, 564, 565, 568, 569, 570, 572, 579, 582, 587, 896, 984, 1780, 1803, 1832, 1833, 1838, 1844, 1850, 1855, 1858, 1861, 1862, 1867, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1887, 1888, 1890, 1894, 1895, 1896, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "dlr_imfreq": [0, 988, 1100, 1101, 1102], "dlr_imtim": [0, 987, 989, 1113, 1114, 1115], "946": 0, "alias": [0, 10, 523, 572], "complex_": 0, "float_": 0, "slack": [0, 6, 7, 1849], "workspac": [0, 6, 7, 1849], "signup": 0, "url": 0, "symmetr": [0, 314, 315, 573, 993, 994, 1079, 1092, 1105, 1664, 1685, 1869, 1890, 1891, 1895, 1896], "other": [0, 3, 5, 6, 18, 46, 76, 88, 89, 100, 205, 256, 257, 482, 483, 484, 485, 496, 497, 500, 503, 507, 511, 515, 518, 524, 559, 564, 570, 573, 576, 580, 581, 586, 589, 591, 612, 653, 942, 1059, 1070, 1083, 1096, 1109, 1122, 1138, 1149, 1157, 1169, 1685, 1696, 1714, 1715, 1716, 1849, 1850, 1855, 1860, 1861, 1867, 1873, 1874, 1877, 1878, 1881, 1883, 1885, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1903, 1904, 1905, 1908, 1910], "lehmann": [0, 182, 183, 184, 185, 186, 500, 1849, 1883, 1887], "represent": [0, 170, 171, 182, 183, 184, 185, 186, 253, 306, 307, 308, 489, 490, 493, 500, 517, 518, 521, 536, 539, 540, 542, 572, 574, 580, 636, 660, 935, 986, 987, 988, 989, 1079, 1092, 1105, 1849, 1876, 1880, 1883, 1886, 1887, 1903, 1908], "type": [0, 8, 9, 10, 11, 13, 14, 18, 19, 26, 32, 33, 34, 39, 42, 46, 47, 48, 62, 63, 71, 72, 83, 84, 89, 95, 96, 100, 105, 112, 113, 125, 126, 129, 131, 132, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 251, 254, 255, 260, 268, 272, 284, 296, 297, 300, 301, 302, 314, 315, 316, 319, 351, 354, 355, 356, 360, 365, 369, 370, 373, 374, 375, 380, 381, 385, 386, 387, 410, 442, 445, 451, 454, 455, 456, 461, 480, 481, 482, 483, 484, 485, 487, 490, 492, 493, 496, 497, 506, 507, 508, 510, 511, 517, 518, 526, 527, 528, 531, 533, 535, 542, 543, 544, 545, 546, 547, 548, 551, 553, 554, 555, 556, 559, 560, 570, 571, 573, 574, 575, 576, 577, 583, 587, 589, 646, 650, 653, 666, 667, 669, 670, 677, 679, 683, 684, 685, 694, 695, 696, 698, 699, 700, 705, 706, 708, 709, 716, 718, 722, 723, 724, 733, 734, 735, 737, 738, 739, 744, 745, 747, 748, 755, 757, 761, 762, 763, 772, 773, 774, 776, 777, 778, 783, 784, 786, 787, 794, 796, 800, 801, 802, 811, 812, 813, 815, 816, 817, 822, 823, 825, 826, 833, 835, 839, 840, 841, 850, 851, 852, 854, 855, 856, 876, 888, 897, 939, 942, 944, 945, 947, 948, 955, 957, 961, 962, 963, 972, 973, 974, 976, 977, 978, 1030, 1201, 1210, 1213, 1215, 1217, 1622, 1634, 1635, 1646, 1650, 1651, 1659, 1662, 1663, 1664, 1668, 1683, 1685, 1686, 1687, 1688, 1689, 1692, 1693, 1694, 1695, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1740, 1747, 1750, 1751, 1778, 1806, 1850, 1861, 1877, 1879, 1881, 1883, 1885, 1886, 1887, 1888, 1894, 1910], "extend": [0, 532, 572, 1663, 1890, 1892, 1895, 1897], "convers": [0, 554, 574], "routin": [0, 224, 232, 233, 234, 235, 236, 237, 238, 239, 499, 541, 583, 1873, 1877, 1886, 1899, 1900, 1902, 1904, 1905, 1907], "between": [0, 4, 11, 13, 53, 61, 223, 351, 357, 359, 363, 491, 498, 500, 511, 515, 518, 524, 528, 541, 555, 562, 563, 568, 1205, 1611, 1666, 1849, 1861, 1873, 1876, 1877, 1880, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1901, 1902, 1904, 1906, 1907, 1910], "exist": [0, 493, 498, 499, 1873, 1877, 1883, 1884, 1887, 1891, 1896, 1903, 1908], "add": [0, 7, 8, 235, 374, 375, 386, 387, 391, 432, 457, 476, 490, 493, 498, 500, 507, 509, 512, 520, 564, 567, 570, 581, 1626, 1663, 1848, 1850, 1852, 1854, 1855, 1864, 1876, 1880, 1881, 1882, 1885, 1895], "constrain": [0, 1849, 1901, 1906], "residu": [0, 935, 1849], "minim": [0, 553, 572, 660, 935, 1211, 1849, 1892, 1897], "crm": 0, "dyson": [0, 543, 551, 553, 935, 1849, 1876, 1880, 1883, 1887, 1888, 1894, 1895, 1899, 1904], "solver": [0, 5, 9, 154, 488, 571, 589, 590, 591, 612, 935, 1849, 1850, 1859, 1869, 1871, 1873, 1876, 1877, 1880, 1885, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1902, 1904, 1907], "intel": [0, 1851, 1852], "base": [0, 5, 11, 356, 365, 366, 378, 499, 541, 568, 571, 572, 661, 662, 937, 938, 1626, 1664, 1832, 1850, 1856, 1858, 1870, 1883, 1887, 1892, 1897, 1900, 1905, 1910], "our": [0, 3, 6, 7, 500, 503, 517, 570, 583, 1848, 1849, 1854, 1856, 1858, 1859, 1867, 1873, 1875, 1877, 1879, 1884, 1886, 1889, 1901, 1902, 1903, 1906, 1907, 1908], "continu": [0, 5, 459, 463, 547, 1742, 1850, 1854, 1859, 1876, 1879, 1880, 1888, 1890, 1895, 1900, 1903, 1905, 1908], "integr": [0, 462, 563, 573, 1667, 1683, 1685, 1690, 1750, 1840, 1850, 1870, 1875, 1876, 1879, 1880, 1903, 1908], "variou": [0, 3, 4, 11, 496, 505, 518, 521, 536, 543, 551, 559, 563, 572, 581, 587, 653, 1849, 1850, 1859, 1865, 1887, 1909], "sever": [0, 4, 191, 409, 496, 499, 512, 516, 523, 564, 570, 571, 581, 583, 875, 1850, 1854, 1856, 1883, 1887, 1890, 1891, 1895, 1896, 1903, 1908], "thoma": 0, "hahn": [0, 3], "alexand": 0, "hampel": [0, 3, 4], "dominik": 0, "kies": [0, 3], "h": [0, 3, 159, 344, 345, 348, 349, 358, 368, 379, 397, 398, 401, 402, 462, 467, 468, 472, 473, 477, 478, 486, 497, 498, 500, 507, 514, 555, 560, 570, 572, 573, 575, 586, 589, 591, 612, 1685, 1698, 1700, 1701, 1702, 1704, 1705, 1708, 1709, 1710, 1711, 1712, 1750, 1751, 1857, 1873, 1877, 1879, 1880, 1885, 1889, 1892, 1897, 1899, 1904], "l": [0, 3, 251, 260, 268, 284, 292, 300, 314, 355, 360, 370, 381, 503, 515, 520, 547, 556, 568, 572, 573, 575, 576, 582, 587, 676, 715, 754, 793, 832, 927, 928, 954, 1052, 1067, 1187, 1203, 1204, 1591, 1683, 1685, 1686, 1688, 1690, 1692, 1701, 1711, 1714, 1715, 1716, 1731, 1850, 1873, 1877, 1881, 1882, 1883, 1884, 1887, 1891, 1896], "nours": 0, "dylan": 0, "simon": [0, 3], "init_from_representative_data": 0, "get_representative_data": 0, "sym_grp": 0, "enabl": [0, 490, 493, 499, 510, 511, 586, 1849, 1850], "most": [0, 4, 491, 496, 498, 499, 515, 517, 551, 570, 572, 1844, 1850, 1851, 1854, 1873, 1877, 1883, 1887, 1903, 1908, 1910], "warn": [0, 9, 202, 204, 206, 214, 217, 227, 490, 510, 511, 513, 584, 1875, 1877, 1879, 1880, 1889, 1891, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "wpedant": 0, "wextra": 0, "wall": 0, "wfloat": 0, "wshadow": 0, "support": [0, 3, 4, 9, 473, 496, 498, 502, 543, 551, 553, 572, 586, 1217, 1732, 1856, 1857, 1870], "spherical_to_cub": [0, 573], "redund": 0, "make_matrix": 0, "unittest": 0, "assertequ": 0, "miss": [0, 1699, 1855, 1874, 1878, 1892, 1897], "cstdint": 0, "includ": [0, 3, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 493, 499, 500, 502, 506, 507, 508, 509, 510, 511, 513, 516, 517, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 555, 567, 569, 570, 583, 584, 585, 587, 1134, 1154, 1166, 1666, 1850, 1852, 1855, 1856, 1857, 1860, 1861, 1862, 1863, 1864, 1865, 1867, 1870, 1883, 1887, 1903, 1908, 1910], "see": [0, 4, 7, 8, 48, 207, 215, 325, 342, 357, 435, 438, 449, 499, 502, 507, 517, 532, 539, 551, 553, 568, 570, 572, 574, 580, 585, 935, 1213, 1835, 1837, 1840, 1850, 1861, 1862, 1866, 1867, 1870, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1882, 1883, 1884, 1885, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "915": 0, "replac": [0, 354, 498, 506, 514, 687, 688, 726, 727, 765, 766, 804, 805, 843, 844, 965, 966, 1005, 1006, 1850, 1851, 1858, 1859, 1876, 1883, 1887], "getargspec": 0, "getfullargspec": 0, "911": [0, 1896], "reproduc": [0, 9, 488, 544, 545, 546, 547, 548, 580, 1850, 1890, 1892, 1895, 1897, 1902, 1903, 1907, 1908], "failur": 0, "issue913": 0, "bug": [0, 3, 6, 8, 500, 1890, 1895, 1910], "gf_base_op": 0, "debug": [0, 5, 1853], "get_matrix_element_of_monomi": [0, 154], "llvm": [0, 1851, 1854, 1856], "18": [0, 254, 1877, 1887, 1896, 1899, 1904], "relat": [0, 514, 541, 558, 562, 563, 572, 573, 1613, 1631, 1648, 1685, 1696, 1849, 1867, 1870, 1883, 1885, 1886, 1887, 1888, 1892, 1894, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "26": [0, 1877, 1887, 1896], "unnam": 0, "placehold": [0, 254, 255, 502, 503, 506, 508, 509, 510, 516, 519, 523, 527, 528, 531, 532, 541, 1860, 1863], "_": [0, 1, 2, 480, 481, 494, 514, 515, 531, 563, 573, 576, 583, 1685, 1716, 1719, 1868, 1869, 1871, 1873, 1877, 1879, 1880, 1883, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908, 1909], "insuffici": 0, "reserv": [0, 192, 197, 525, 1832], "memori": [0, 223, 449, 498, 500, 516, 539, 1850, 1873, 1877, 1880, 1886, 1905], "try_insert": [0, 192, 210, 213, 513, 1861], "make_gf_": 0, "dlr_": 0, "imtim": [0, 185, 518, 519, 521, 531, 532, 536, 542, 544, 545, 547, 548, 637, 686, 689, 691, 725, 728, 730, 764, 767, 769, 803, 806, 808, 842, 845, 847, 964, 967, 969, 986, 990, 992, 1004, 1007, 1009, 1141, 1142, 1143, 1862], "imfreq": [0, 182, 252, 254, 255, 260, 311, 316, 511, 516, 518, 519, 521, 523, 525, 536, 537, 541, 542, 544, 545, 547, 548, 635, 672, 673, 674, 675, 681, 682, 687, 688, 689, 690, 692, 693, 711, 712, 713, 714, 720, 721, 726, 727, 728, 729, 731, 732, 750, 751, 752, 753, 759, 760, 765, 766, 767, 768, 770, 771, 789, 790, 791, 792, 798, 799, 804, 805, 806, 807, 809, 810, 828, 829, 830, 831, 837, 838, 843, 844, 845, 846, 848, 849, 950, 951, 952, 953, 959, 960, 965, 966, 967, 968, 970, 971, 990, 991, 993, 994, 996, 998, 999, 1000, 1001, 1002, 1003, 1005, 1006, 1007, 1008, 1010, 1011, 1130, 1131, 1132, 1862, 1863, 1887], "too": [0, 197, 378, 564, 581, 1875, 1877, 1879, 1890, 1895, 1903, 1908], "allow": [0, 4, 154, 351, 390, 490, 493, 496, 499, 500, 507, 517, 532, 541, 543, 553, 554, 555, 558, 565, 568, 569, 570, 571, 572, 574, 580, 583, 1079, 1092, 1105, 1211, 1726, 1849, 1850, 1852, 1858, 1859, 1860, 1861, 1863, 1870, 1873, 1877, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1892, 1897, 1902, 1903, 1907, 1908], "relev": [0, 1849, 1883, 1884, 1886, 1887, 1890, 1895], "input": [0, 4, 449, 461, 491, 520, 583, 935, 1632, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1885, 1888, 1889, 1894], "option": [0, 351, 354, 357, 428, 430, 431, 496, 499, 541, 542, 544, 545, 546, 547, 548, 549, 551, 553, 557, 571, 572, 573, 576, 581, 589, 591, 612, 664, 670, 700, 703, 709, 739, 742, 748, 778, 781, 787, 817, 820, 826, 856, 935, 942, 948, 978, 1128, 1211, 1212, 1598, 1666, 1684, 1685, 1689, 1692, 1694, 1696, 1714, 1715, 1716, 1726, 1727, 1728, 1778, 1838, 1850, 1855, 1866, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1883, 1885, 1887, 1890, 1895], "expos": [0, 492, 494, 523, 572, 582, 1646, 1849, 1865, 1883, 1887], "densiti": [0, 4, 181, 190, 240, 448, 486, 500, 541, 543, 544, 546, 550, 552, 558, 560, 568, 575, 580, 582, 634, 645, 698, 737, 776, 815, 854, 892, 916, 929, 930, 976, 1700, 1708, 1709, 1710, 1751, 1869, 1872, 1873, 1877, 1882, 1886, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "dlrimfreq": [0, 935], "dlrimtim": [0, 935], "bind": [0, 272, 558, 560, 563, 1611, 1626, 1646, 1662, 1663, 1664, 1851, 1856, 1873, 1877, 1879, 1880, 1899, 1904], "constructor": [0, 14, 35, 42, 49, 72, 84, 96, 101, 115, 123, 154, 192, 242, 259, 271, 283, 317, 325, 340, 351, 357, 366, 378, 390, 406, 432, 442, 449, 463, 490, 493, 498, 510, 513, 516, 517, 521, 539, 540, 551, 567, 570, 572, 875, 1832, 1839, 1841, 1881, 1887], "from": [0, 4, 5, 7, 8, 9, 11, 21, 32, 35, 88, 92, 101, 102, 131, 159, 170, 175, 176, 182, 183, 185, 186, 205, 208, 238, 245, 247, 260, 263, 275, 287, 303, 305, 329, 332, 340, 341, 344, 351, 352, 354, 365, 397, 449, 454, 455, 456, 467, 482, 483, 484, 485, 490, 491, 493, 494, 496, 497, 498, 499, 500, 508, 515, 517, 519, 520, 523, 525, 532, 539, 540, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 554, 558, 560, 561, 563, 564, 567, 568, 570, 572, 573, 574, 575, 576, 577, 579, 580, 582, 583, 585, 586, 587, 609, 630, 649, 650, 653, 655, 661, 662, 664, 703, 742, 781, 820, 860, 863, 875, 880, 921, 924, 935, 990, 996, 1210, 1215, 1217, 1663, 1664, 1683, 1690, 1693, 1697, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1762, 1778, 1780, 1833, 1841, 1848, 1849, 1851, 1852, 1854, 1858, 1860, 1862, 1863, 1867, 1869, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907, 1910], "basic": [0, 4, 9, 496, 497, 498, 503, 507, 517, 519, 542, 543, 565, 570, 578, 581, 1855, 1859, 1860, 1861, 1862, 1867, 1870, 1873, 1877, 1879, 1889, 1899, 1903, 1904, 1908], "algebra": [0, 513, 572, 1870, 1873, 1877, 1881], "meshlegendr": [0, 546, 742], "n_iw": [0, 182, 254, 255, 312, 316, 500, 519, 523, 635, 991, 1118, 1178, 1862, 1877, 1880, 1883, 1886, 1887, 1894, 1895, 1903, 1904, 1908], "meshimfreq": [0, 544, 553, 664, 935, 1178, 1195, 1211, 1215, 1883, 1886, 1887, 1894, 1895, 1899, 1903, 1904, 1908], "oplot": [0, 544, 545, 546, 547, 548, 554, 558, 579, 580, 1201, 1727, 1728, 1740, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "data": [0, 5, 9, 242, 251, 257, 259, 260, 262, 268, 271, 272, 274, 283, 284, 286, 292, 325, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 459, 463, 464, 467, 468, 474, 475, 480, 481, 482, 483, 484, 485, 492, 496, 497, 499, 512, 513, 520, 521, 522, 525, 531, 534, 537, 541, 542, 549, 551, 553, 572, 578, 664, 668, 686, 700, 703, 707, 725, 739, 742, 746, 764, 778, 781, 785, 803, 817, 820, 824, 842, 856, 865, 870, 883, 890, 942, 946, 964, 978, 1004, 1062, 1063, 1074, 1075, 1087, 1088, 1100, 1101, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175, 1206, 1211, 1213, 1217, 1744, 1748, 1749, 1860, 1870, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1886, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "access": [0, 28, 246, 266, 278, 290, 361, 367, 372, 384, 421, 463, 466, 517, 521, 537, 539, 542, 549, 556, 570, 1608, 1745, 1850, 1852, 1873, 1874, 1877, 1878, 1881, 1882, 1883, 1887, 1889, 1890, 1895], "matsubarafreq": 0, "code": [0, 4, 5, 7, 9, 115, 116, 262, 274, 286, 490, 491, 494, 498, 499, 502, 503, 523, 551, 564, 565, 568, 572, 574, 583, 585, 1849, 1850, 1851, 1856, 1859, 1863, 1864, 1865, 1866, 1873, 1875, 1876, 1877, 1880, 1881, 1888, 1890, 1891, 1895, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907], "simplif": 0, "In": [0, 3, 6, 7, 251, 268, 365, 373, 374, 375, 385, 386, 387, 449, 496, 498, 499, 506, 507, 508, 511, 513, 515, 517, 519, 520, 522, 523, 532, 536, 543, 551, 552, 564, 568, 569, 570, 571, 574, 580, 581, 583, 585, 586, 1780, 1850, 1851, 1852, 1854, 1855, 1862, 1866, 1867, 1869, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "gf_dlr": 0, "do": [0, 5, 6, 7, 8, 85, 181, 184, 185, 186, 187, 223, 490, 498, 499, 506, 507, 508, 510, 513, 520, 523, 528, 531, 543, 547, 555, 558, 560, 567, 568, 570, 575, 576, 577, 580, 581, 940, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1813, 1832, 1838, 1850, 1854, 1855, 1866, 1867, 1869, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1883, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1901, 1903, 1904, 1906, 1908, 1910], "compar": [0, 18, 46, 76, 89, 100, 478, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1887, 1890, 1892, 1894, 1895, 1897, 1901, 1902, 1906, 1907, 1908], "valu": [0, 9, 11, 12, 16, 27, 34, 44, 48, 51, 52, 53, 55, 56, 74, 84, 85, 86, 88, 89, 98, 141, 144, 172, 181, 184, 185, 186, 187, 188, 189, 204, 206, 237, 257, 315, 354, 369, 380, 427, 445, 449, 451, 463, 464, 480, 481, 490, 491, 493, 496, 497, 498, 500, 506, 507, 512, 513, 515, 517, 520, 521, 523, 524, 526, 527, 528, 529, 531, 532, 533, 535, 541, 542, 544, 545, 546, 547, 548, 549, 551, 553, 555, 556, 559, 563, 564, 572, 573, 574, 575, 576, 580, 640, 641, 646, 653, 664, 676, 699, 701, 703, 715, 738, 740, 742, 754, 777, 779, 781, 793, 816, 818, 820, 832, 855, 857, 940, 942, 954, 977, 979, 1037, 1038, 1064, 1076, 1089, 1102, 1115, 1132, 1143, 1154, 1162, 1166, 1176, 1201, 1211, 1213, 1627, 1647, 1664, 1667, 1683, 1684, 1685, 1689, 1690, 1692, 1694, 1711, 1714, 1715, 1716, 1731, 1742, 1744, 1768, 1778, 1833, 1852, 1861, 1873, 1875, 1876, 1877, 1879, 1880, 1886, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "coeffici": [0, 9, 183, 253, 306, 307, 308, 351, 354, 355, 515, 517, 541, 546, 552, 553, 554, 556, 571, 572, 573, 575, 671, 710, 749, 788, 827, 949, 986, 987, 988, 989, 997, 1079, 1216, 1673, 1675, 1687, 1697, 1702, 1712, 1861, 1883, 1887], "block_gf": [0, 182, 183, 185, 186, 240, 254, 255, 299, 304, 309, 310, 316, 317, 320, 518, 536, 542, 635, 636, 637, 638, 1887], "block": [0, 1, 2, 4, 156, 158, 159, 171, 182, 183, 184, 185, 186, 188, 189, 190, 245, 254, 255, 499, 500, 512, 515, 518, 521, 536, 542, 544, 545, 546, 547, 548, 549, 553, 554, 561, 575, 576, 577, 589, 591, 594, 596, 612, 615, 617, 697, 736, 775, 814, 853, 859, 860, 861, 862, 864, 866, 867, 868, 869, 871, 874, 875, 876, 879, 881, 882, 884, 886, 889, 894, 975, 1012, 1211, 1215, 1217, 1219, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1754, 1755, 1760, 1761, 1838, 1849, 1873, 1876, 1877, 1879, 1880, 1881, 1885, 1889, 1897], "size": [0, 49, 61, 64, 115, 154, 192, 195, 197, 223, 235, 236, 292, 303, 325, 329, 340, 341, 366, 378, 390, 449, 451, 459, 463, 480, 481, 484, 485, 500, 502, 513, 514, 515, 517, 520, 525, 539, 543, 555, 556, 560, 561, 580, 587, 700, 739, 778, 817, 856, 875, 978, 1050, 1754, 1760, 1861, 1862, 1879, 1883, 1885, 1887, 1889], "revert": 0, "order": [0, 4, 6, 7, 205, 207, 215, 256, 257, 325, 342, 365, 390, 453, 498, 499, 506, 508, 509, 516, 517, 519, 520, 524, 527, 528, 531, 533, 535, 541, 551, 553, 569, 570, 571, 572, 573, 574, 583, 587, 864, 871, 881, 894, 939, 1213, 1689, 1692, 1694, 1731, 1850, 1851, 1852, 1854, 1856, 1867, 1873, 1877, 1879, 1881, 1882, 1883, 1887, 1888, 1889, 1890, 1894, 1895, 1896, 1901, 1902, 1903, 1906, 1907, 1908, 1910], "hyb": [0, 159, 358, 1859, 1889], "fop": [0, 159, 337, 341, 342, 352, 500, 555, 589, 591, 612, 1885], "atomdiag": [0, 500, 1885], "ar": [0, 3, 4, 6, 7, 8, 76, 159, 182, 183, 237, 256, 260, 305, 325, 348, 349, 354, 365, 378, 401, 402, 407, 431, 449, 451, 453, 459, 476, 478, 481, 483, 484, 491, 492, 493, 494, 496, 497, 498, 499, 500, 503, 506, 507, 508, 509, 511, 513, 514, 515, 516, 518, 520, 521, 523, 525, 527, 532, 537, 540, 541, 543, 544, 545, 546, 547, 548, 550, 551, 552, 553, 554, 555, 556, 559, 563, 568, 569, 570, 572, 573, 574, 575, 576, 577, 578, 581, 582, 583, 587, 653, 861, 875, 876, 1054, 1134, 1154, 1166, 1204, 1211, 1215, 1217, 1626, 1667, 1685, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1726, 1832, 1833, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1866, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1910], "real": [0, 186, 240, 297, 301, 311, 315, 451, 455, 456, 463, 500, 517, 518, 521, 523, 528, 536, 539, 541, 542, 543, 544, 545, 546, 549, 550, 553, 554, 557, 562, 570, 572, 573, 575, 576, 580, 589, 612, 638, 664, 670, 698, 703, 709, 737, 742, 748, 776, 781, 787, 815, 820, 826, 854, 942, 948, 976, 994, 1154, 1166, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1216, 1217, 1219, 1600, 1617, 1627, 1637, 1647, 1653, 1663, 1667, 1668, 1673, 1685, 1692, 1696, 1712, 1714, 1715, 1716, 1742, 1768, 1778, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "forc": [0, 1903, 1908], "unit": [0, 557, 558, 560, 562, 563, 1054, 1598, 1601, 1611, 1613, 1615, 1626, 1627, 1631, 1633, 1638, 1646, 1647, 1648, 1649, 1654, 1666, 1667, 1872, 1886, 1892, 1897, 1899, 1903, 1904, 1908], "merg": [0, 363], "both": [0, 8, 428, 449, 478, 514, 520, 522, 524, 531, 537, 539, 541, 543, 551, 583, 1079, 1134, 1154, 1166, 1664, 1768, 1850, 1858, 1859, 1873, 1875, 1877, 1879, 1880, 1883, 1887, 1888, 1890, 1892, 1894, 1895, 1897, 1898, 1899, 1902, 1904, 1907], "updat": [0, 6, 8, 351, 417, 496, 498, 512, 513, 514, 564, 567, 568, 580, 1850, 1861, 1869, 1873, 1877, 1892, 1897], "land": 0, "page": [0, 6, 7, 8, 499, 516, 521, 525, 537, 581, 1848, 1849, 1850, 1851, 1859, 1862, 1874, 1878], "public": [0, 3, 4, 1849, 1850], "corelib": 0, "numer": [0, 3, 4, 5, 572, 581, 1664, 1873, 1876, 1877, 1880, 1883, 1884, 1887, 1890, 1895, 1896, 1900, 1901, 1903, 1905, 1906, 1908], "algorithm": [0, 3, 4, 5, 9, 159, 357, 358, 363, 509, 512, 513, 514, 555, 564, 565, 568, 587, 589, 591, 612, 1883, 1885, 1887, 1889, 1890, 1895, 1896, 1902, 1907], "convert": [0, 9, 148, 355, 448, 490, 491, 493, 572, 573, 574, 575, 897, 1062, 1063, 1074, 1075, 1087, 1088, 1100, 1101, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175, 1662, 1663, 1685, 1699, 1712, 1858, 1873, 1877, 1883, 1887], "readm": 0, "markdown": 0, "conda": [0, 1850], "badg": 0, "openmp": [0, 4, 1856, 1899, 1904], "build": [0, 4, 272, 284, 325, 493, 497, 500, 507, 517, 523, 527, 528, 860, 875, 1626, 1849, 1850, 1851, 1853, 1855, 1857, 1858, 1865, 1867, 1873, 1877, 1887, 1892, 1897], "ubuntu": [0, 1851, 1854, 1855, 1866], "24": [0, 254, 1850, 1862, 1877, 1887, 1896], "04": [0, 1850, 1857, 1873, 1877, 1889, 1892, 1896, 1897, 1905], "nobl": [0, 1850], "distribut": [0, 445, 446, 448, 462, 494, 569, 1134, 1154, 1166, 1750, 1780, 1784, 1849, 1850, 1851, 1854, 1855, 1887, 1899, 1904], "googl": [0, 1849, 1851, 1866], "group": [0, 4, 163, 172, 208, 209, 247, 248, 263, 264, 275, 276, 287, 288, 296, 344, 345, 397, 398, 425, 426, 449, 467, 468, 496, 498, 551, 597, 608, 618, 629, 1832, 1849, 1873, 1877, 1884], "advertis": 0, "instead": [0, 413, 551, 561, 572, 573, 1684, 1762, 1834, 1836, 1842, 1843, 1850, 1873, 1877, 1883, 1886, 1887, 1895], "instruct": [0, 7, 581, 1850, 1851, 1854, 1855, 1876, 1880, 1890, 1895], "osx": [0, 1850], "venv": [0, 1855], "custom": [0, 499, 1850], "environ": [0, 494, 499, 567, 570, 1803, 1851, 1853, 1854, 1857, 1866, 1875, 1877, 1879, 1880, 1889, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "command": [0, 7, 8, 124, 491, 496, 554, 661, 662, 1850, 1852, 1854, 1855, 1858, 1866, 1873, 1877, 1881, 1882, 1884, 1890, 1895, 1910], "note": [0, 3, 449, 498, 506, 507, 510, 511, 514, 517, 518, 519, 537, 541, 542, 544, 545, 546, 547, 548, 551, 553, 570, 575, 579, 580, 586, 670, 676, 698, 699, 709, 715, 737, 738, 748, 754, 776, 777, 787, 793, 815, 816, 826, 832, 854, 855, 935, 942, 948, 954, 976, 977, 1217, 1850, 1851, 1865, 1870, 1873, 1877, 1881, 1882, 1883, 1884, 1887, 1888, 1891, 1894, 1895, 1896, 1901, 1903, 1906, 1908], "develop": [0, 3, 4, 6, 8, 494, 585, 1849, 1850, 1851, 1858, 1865, 1874, 1878, 1890, 1895], "duplic": [0, 1854], "941": 0, "nevanlinna": 0, "applic": [0, 3, 5, 1850, 1851, 1854, 1859, 1865, 1869, 1873, 1877, 1886, 1898], "section": [0, 7, 245, 260, 357, 507, 514, 517, 525, 536, 543, 567, 568, 570, 580, 587, 1849, 1873, 1874, 1876, 1877, 1878, 1880, 1889], "defin": [0, 155, 156, 157, 158, 365, 449, 450, 451, 454, 455, 456, 457, 459, 461, 480, 481, 483, 484, 485, 487, 490, 493, 498, 507, 510, 512, 514, 515, 517, 524, 540, 550, 551, 554, 555, 558, 560, 563, 567, 568, 570, 572, 573, 574, 580, 585, 586, 906, 935, 942, 1187, 1632, 1666, 1685, 1696, 1850, 1856, 1862, 1867, 1872, 1873, 1877, 1883, 1885, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "latex": [0, 511], "docstr": [0, 1856, 1885, 1886, 1887], "raw": [0, 583, 669, 708, 747, 786, 825, 947, 1858, 1873, 1877, 1879, 1889], "avoid": [0, 453, 490, 499, 510, 1850, 1873, 1877, 1883, 1887, 1890, 1895, 1903, 1908], "invalid": [0, 251, 268, 522, 1905], "escap": [0, 1, 2], "sequenc": [0, 325, 326, 327, 329, 334, 335, 336, 338, 342, 352, 520, 572, 574], "build_triq": [0, 1850, 1864], "sh": [0, 1850], "work": [0, 3, 7, 8, 9, 223, 260, 378, 494, 499, 509, 512, 544, 546, 550, 558, 581, 670, 709, 748, 787, 826, 916, 929, 948, 1850, 1852, 1854, 1855, 1858, 1860, 1873, 1877, 1882, 1883, 1887, 1890, 1891, 1895, 1896], "zsh": 0, "maco": 0, "k_space_path": [0, 1873, 1875, 1876, 1877, 1879, 1880, 1899, 1904, 1905, 1906], "layout": [0, 259, 260, 268, 271, 272, 283, 284, 292, 311], "html": [0, 7, 1873, 1877, 1899, 1904], "912": 0, "gpg": [0, 1850], "agent": [0, 1850], "numpydoc": [0, 1856], "sourc": [0, 3, 5, 7, 8, 352, 449, 489, 490, 493, 494, 498, 511, 544, 545, 546, 547, 548, 550, 551, 553, 559, 560, 561, 573, 575, 576, 577, 579, 581, 589, 645, 646, 647, 648, 649, 650, 653, 655, 656, 659, 660, 664, 665, 703, 704, 742, 743, 781, 782, 820, 821, 859, 860, 862, 863, 864, 871, 872, 874, 875, 878, 879, 880, 881, 882, 885, 886, 887, 891, 892, 893, 894, 895, 896, 897, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 912, 913, 914, 916, 917, 918, 919, 921, 922, 924, 925, 927, 928, 929, 930, 933, 935, 937, 938, 940, 941, 942, 943, 944, 945, 946, 948, 954, 957, 958, 976, 977, 978, 979, 980, 981, 982, 983, 984, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1022, 1023, 1024, 1025, 1026, 1027, 1030, 1031, 1037, 1038, 1041, 1042, 1044, 1045, 1047, 1048, 1050, 1051, 1052, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1189, 1190, 1191, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1203, 1204, 1205, 1206, 1207, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1594, 1595, 1596, 1622, 1623, 1626, 1627, 1628, 1629, 1630, 1632, 1642, 1644, 1646, 1647, 1648, 1649, 1650, 1651, 1653, 1659, 1660, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1707, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1722, 1723, 1726, 1727, 1728, 1729, 1731, 1732, 1740, 1754, 1756, 1757, 1758, 1760, 1762, 1763, 1768, 1769, 1772, 1773, 1774, 1775, 1776, 1778, 1780, 1783, 1784, 1786, 1787, 1788, 1789, 1790, 1791, 1797, 1800, 1801, 1803, 1805, 1806, 1807, 1808, 1809, 1812, 1813, 1814, 1815, 1816, 1817, 1819, 1820, 1821, 1822, 1823, 1826, 1827, 1828, 1829, 1831, 1832, 1841, 1845, 1846, 1847, 1851, 1854, 1865, 1867], "fail": [0, 498, 1778, 1888, 1894], "git": [0, 8, 581, 1850, 1857, 1858, 1877], "clone": [0, 490, 525, 1058, 1069, 1082, 1095, 1108, 1121, 1137, 1148, 1156, 1168, 1850], "attempt": [0, 407, 428, 430, 431, 432, 433, 438, 564, 567, 570, 1838, 1854, 1879], "when": [0, 6, 7, 8, 71, 317, 351, 407, 413, 428, 430, 431, 449, 451, 453, 457, 459, 490, 493, 498, 506, 510, 512, 513, 515, 519, 527, 528, 531, 533, 535, 537, 543, 551, 560, 569, 570, 585, 1666, 1700, 1701, 1702, 1784, 1832, 1833, 1835, 1838, 1849, 1852, 1858, 1864, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1884, 1887, 1888, 1889, 1890, 1894, 1895, 1900, 1901, 1903, 1905, 1906, 1908], "userguid": [0, 6], "tutori": [0, 5, 7, 9, 565, 580, 935, 1849, 1868, 1870, 1871, 1874, 1876, 1878, 1880, 1881, 1883, 1887, 1890, 1895, 1896, 1899, 1904, 1909], "directori": [0, 8, 498, 1850, 1852, 1853, 1855, 1857, 1858, 1867, 1873, 1874, 1877, 1878, 1890, 1895, 1896], "alreadi": [0, 493, 498, 510, 543, 568, 570, 1850, 1854, 1856, 1870, 1873, 1876, 1877, 1880, 1881, 1891, 1892, 1896, 1897], "present": [0, 494, 508, 543, 544, 545, 546, 547, 548, 551, 664, 703, 742, 781, 820, 1838, 1855, 1856, 1859], "bump": 0, "number": [0, 3, 5, 9, 11, 12, 13, 32, 48, 53, 60, 70, 71, 114, 124, 155, 156, 157, 158, 159, 172, 180, 182, 183, 185, 186, 188, 189, 200, 203, 225, 228, 303, 316, 339, 350, 364, 383, 404, 407, 417, 418, 421, 428, 430, 431, 442, 449, 450, 451, 452, 453, 457, 458, 459, 460, 463, 465, 474, 475, 476, 479, 488, 497, 498, 500, 507, 517, 520, 523, 528, 533, 541, 547, 553, 555, 556, 557, 559, 561, 564, 565, 567, 568, 570, 571, 572, 573, 575, 576, 577, 581, 583, 589, 591, 607, 608, 612, 628, 629, 640, 641, 649, 650, 684, 723, 762, 801, 840, 869, 889, 962, 1054, 1067, 1092, 1105, 1118, 1126, 1134, 1154, 1166, 1185, 1187, 1211, 1601, 1602, 1609, 1629, 1638, 1639, 1643, 1654, 1655, 1658, 1659, 1664, 1666, 1667, 1680, 1684, 1685, 1708, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1742, 1748, 1749, 1757, 1758, 1762, 1763, 1764, 1765, 1768, 1778, 1832, 1838, 1849, 1850, 1852, 1854, 1858, 1861, 1862, 1867, 1869, 1870, 1873, 1877, 1880, 1881, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1904, 1905], "gnuinstalldir": 0, "obtain": [0, 253, 354, 449, 494, 514, 520, 531, 553, 582, 583, 935, 986, 1211, 1849, 1862, 1873, 1877, 1885, 1886, 1888, 1889, 1894, 1895, 1902, 1907], "proper": [0, 3, 537, 541, 553, 1214, 1850, 1855, 1858, 1865], "libdir": 0, "locat": [0, 586, 1850, 1867], "boost": [0, 442, 443, 564, 572, 582, 1854, 1856], "import": [0, 493, 494, 497, 498, 500, 515, 543, 544, 545, 546, 547, 548, 550, 551, 554, 558, 560, 563, 572, 579, 580, 581, 582, 661, 662, 1848, 1849, 1850, 1852, 1864, 1869, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1884, 1885, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "target": [0, 8, 128, 129, 130, 241, 242, 245, 251, 257, 259, 260, 268, 269, 270, 271, 272, 280, 281, 282, 283, 284, 292, 293, 294, 295, 297, 300, 314, 319, 344, 397, 517, 521, 523, 525, 527, 528, 529, 531, 533, 535, 544, 545, 546, 547, 548, 664, 676, 694, 695, 696, 697, 703, 715, 733, 734, 735, 736, 742, 754, 772, 773, 774, 775, 781, 793, 811, 812, 813, 814, 820, 832, 850, 851, 852, 853, 875, 942, 954, 972, 973, 974, 975, 1012, 1778, 1832, 1841, 1849, 1873, 1877, 1887], "70": [0, 1856, 1873, 1877, 1896], "project": [0, 3, 4, 7, 365, 555, 1849, 1858, 1859, 1886], "languag": [0, 491, 496, 519, 525, 1849, 1851, 1856, 1858, 1870, 1881], "benchmark": 0, "branch": [0, 7, 8, 496, 1850, 1858], "unstabl": [0, 7, 8, 1850, 1858, 1873, 1877, 1883, 1887, 1899, 1900, 1904, 1905], "fmt": 0, "copi": [0, 8, 85, 88, 137, 197, 204, 206, 214, 245, 260, 272, 284, 292, 303, 356, 358, 408, 410, 451, 490, 493, 507, 510, 513, 522, 523, 525, 537, 542, 545, 547, 548, 549, 556, 559, 572, 581, 587, 666, 668, 679, 699, 705, 707, 718, 738, 744, 746, 757, 777, 783, 785, 796, 816, 822, 824, 835, 855, 860, 863, 864, 875, 880, 881, 944, 946, 957, 977, 1048, 1850, 1864, 1873, 1874, 1875, 1877, 1878, 1879, 1886, 1887, 1892, 1894, 1895, 1897], "desc": [0, 9, 491], "file": [0, 4, 5, 7, 8, 9, 268, 491, 493, 494, 496, 498, 523, 532, 543, 551, 553, 558, 567, 570, 575, 581, 585, 586, 653, 1217, 1663, 1667, 1668, 1709, 1710, 1711, 1850, 1852, 1856, 1857, 1859, 1860, 1865, 1866, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1884, 1885, 1886, 1887, 1899, 1900, 1904, 1905, 1910], "macro": [0, 510, 585], "triqs_arrays_enforce_boundcheck": 0, "nda_debug": 0, "cpp2py_python_xxx": 0, "variabl": [0, 139, 463, 490, 499, 507, 508, 509, 514, 516, 517, 518, 521, 523, 524, 531, 534, 536, 542, 559, 570, 649, 669, 700, 708, 739, 747, 778, 786, 817, 825, 856, 947, 978, 1742, 1768, 1778, 1803, 1850, 1853, 1857, 1866, 1867, 1881, 1891, 1896], "python_xxx": 0, "relwithdebinfo": 0, "set": [0, 4, 9, 15, 21, 51, 52, 117, 155, 156, 157, 158, 159, 165, 225, 226, 227, 228, 325, 326, 329, 331, 332, 333, 334, 337, 339, 340, 341, 342, 356, 357, 368, 379, 390, 401, 402, 403, 407, 413, 428, 429, 430, 431, 451, 493, 498, 499, 500, 512, 516, 517, 519, 528, 537, 541, 543, 544, 545, 546, 547, 548, 554, 555, 556, 569, 570, 572, 574, 575, 577, 580, 581, 600, 621, 664, 676, 697, 701, 703, 715, 736, 740, 742, 754, 775, 779, 781, 793, 814, 818, 820, 832, 853, 857, 935, 942, 954, 975, 979, 1012, 1673, 1675, 1722, 1723, 1803, 1833, 1839, 1842, 1843, 1849, 1850, 1852, 1853, 1854, 1855, 1859, 1866, 1867, 1870, 1872, 1873, 1877, 1879, 1880, 1881, 1883, 1886, 1887, 1888, 1891, 1892, 1894, 1895, 1896, 1897, 1898], "polici": 0, "114": 0, "rpath": 0, "triqsconfig": [0, 1867], "docker": 0, "imag": [0, 240, 548, 572, 579, 580, 1848, 1850, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1892, 1894, 1895, 1896, 1897, 1904, 1905, 1907], "openblas_num_thread": [0, 1852], "mkl_num_thread": [0, 1852], "oneapi": 0, "2024": 0, "consist": [0, 4, 16, 126, 235, 236, 492, 493, 1859, 1869, 1873, 1877, 1879, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1901, 1903, 1906, 1908, 1909, 1910], "openbla": [0, 1852, 1854], "over": [0, 190, 456, 465, 476, 481, 484, 485, 498, 505, 517, 531, 537, 539, 543, 551, 555, 556, 558, 564, 570, 571, 583, 1780, 1815, 1829, 1858, 1862, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "liblapack": 0, "dockerfil": 0, "jenkinsfil": 0, "more": [0, 8, 9, 461, 480, 481, 492, 496, 499, 503, 506, 509, 510, 516, 517, 520, 524, 525, 527, 528, 532, 543, 551, 568, 570, 572, 579, 580, 581, 1844, 1848, 1849, 1850, 1851, 1854, 1855, 1859, 1861, 1862, 1866, 1872, 1873, 1874, 1877, 1878, 1883, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1899, 1903, 1904, 1908], "For": [0, 4, 348, 349, 357, 442, 449, 490, 492, 493, 498, 499, 506, 507, 508, 510, 511, 514, 515, 517, 520, 523, 524, 532, 541, 543, 544, 545, 546, 547, 548, 551, 564, 569, 570, 571, 572, 583, 585, 664, 703, 742, 781, 820, 897, 935, 1079, 1092, 1105, 1848, 1849, 1850, 1855, 1856, 1857, 1858, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1885, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "mode": [0, 543, 547, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1727, 1728, 1740, 1850, 1853, 1905], "sure": [0, 8, 1832, 1848, 1850, 1854, 1855, 1857, 1858, 1873, 1877, 1903, 1908], "run": [0, 7, 8, 329, 406, 407, 410, 419, 422, 430, 431, 434, 517, 567, 570, 581, 1663, 1806, 1832, 1837, 1844, 1849, 1850, 1852, 1854, 1855, 1858, 1859, 1866, 1871, 1875, 1879, 1881, 1882, 1884, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1904, 1905, 1906, 1908, 1910], "suffici": [0, 1850, 1883, 1887, 1901, 1906], "share": [0, 4, 1849, 1850], "arg": [0, 354, 490, 493, 544, 545, 546, 547, 548, 551, 589, 592, 613, 670, 671, 672, 673, 674, 675, 681, 682, 686, 687, 688, 689, 690, 691, 692, 693, 697, 698, 709, 710, 711, 712, 713, 714, 720, 721, 725, 726, 727, 728, 729, 730, 731, 732, 736, 737, 748, 749, 750, 751, 752, 753, 759, 760, 764, 765, 766, 767, 768, 769, 770, 771, 775, 776, 787, 788, 789, 790, 791, 792, 798, 799, 803, 804, 805, 806, 807, 808, 809, 810, 814, 815, 826, 827, 828, 829, 830, 831, 837, 838, 842, 843, 844, 845, 846, 847, 848, 849, 853, 854, 862, 879, 882, 892, 901, 902, 918, 919, 940, 941, 948, 949, 950, 951, 952, 953, 959, 960, 964, 965, 966, 967, 968, 969, 970, 971, 975, 976, 1014, 1015, 1055, 1068, 1080, 1093, 1106, 1119, 1135, 1146, 1155, 1167, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1599, 1607, 1612, 1631, 1633, 1648, 1649, 1672, 1735, 1743, 1832, 1841, 1885, 1886, 1887, 1903, 1907, 1908], "ncore": [0, 1850], "dockerbuild": 0, "builduid": 0, "configur": [0, 417, 430, 431, 449, 568, 570, 581, 1850, 1851, 1858, 1865, 1867, 1873, 1877], "error": [0, 9, 115, 116, 201, 226, 254, 255, 448, 449, 455, 456, 461, 480, 481, 483, 484, 487, 499, 502, 506, 541, 564, 575, 580, 585, 1711, 1838, 1851, 1857, 1873, 1877, 1889, 1895], "recommend": [0, 543, 551, 585, 1848, 1849, 1850, 1851, 1854, 1859, 1870, 1873, 1877, 1881, 1890, 1895], "virtualenv": 0, "synchron": [0, 115, 1806], "three": [0, 459, 480, 481, 499, 557, 563, 567, 570, 572, 573, 575, 1598, 1627, 1634, 1635, 1647, 1650, 1651, 1666, 1668, 1695, 1859, 1910], "symmetri": [0, 171, 254, 300, 515, 521, 525, 544, 551, 563, 1883, 1887, 1890, 1895, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "initi": [0, 153, 155, 156, 157, 158, 170, 316, 317, 354, 430, 431, 451, 519, 525, 541, 543, 546, 550, 553, 554, 561, 567, 568, 593, 594, 595, 596, 614, 615, 616, 617, 906, 1211, 1216, 1666, 1756, 1758, 1765, 1768, 1778, 1833, 1839, 1849, 1861, 1862, 1884, 1888, 1889, 1892, 1894, 1895, 1897, 1903, 1907, 1908], "overload": [0, 9, 21, 24, 32, 36, 40, 65, 68, 78, 81, 102, 106, 251, 489, 490, 493, 502, 503, 507, 508, 516, 517, 524, 571, 587], "wrap": [0, 9, 119, 122, 490, 491, 493, 494, 985, 995, 1220, 1851, 1864, 1873, 1877], "evalu": [0, 9, 217, 502, 503, 507, 508, 509, 510, 513, 517, 521, 525, 532, 540, 543, 562, 587, 687, 688, 726, 727, 765, 766, 804, 805, 843, 844, 965, 966, 1005, 1006, 1023, 1079, 1092, 1105, 1613, 1615, 1631, 1633, 1648, 1649, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1899, 1900, 1903, 1904, 1905, 1908], "concept": [0, 9, 251, 268, 365, 408, 410, 435, 510, 511, 513, 518, 519, 522, 527, 528, 533, 535, 542, 565, 570], "rais": [0, 498, 1700, 1701, 1702, 1833, 1838, 1844], "clang15": 0, "gcc12": 0, "john": 0, "bonini": 0, "kacper": 0, "cybi\u0144ski": 0, "philipp": 0, "dumitrescu": [0, 3], "olivi": 0, "gingra": 0, "collin": 0, "kariuki": 0, "igor": 0, "krivenko": [0, 3, 4], "harri": 0, "labollita": 0, "r\u00e9mi": 0, "lacroix": 0, "henri": 0, "menk": [0, 3], "parcollet": [0, 3], "hugo": [0, 553, 1213], "u": [0, 4, 6, 9, 39, 105, 461, 496, 497, 498, 499, 500, 502, 514, 515, 543, 553, 555, 560, 568, 571, 574, 575, 579, 1054, 1213, 1684, 1685, 1689, 1691, 1694, 1700, 1701, 1709, 1710, 1711, 1858, 1860, 1864, 1869, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1897, 1901, 1903, 1906, 1908], "r": [0, 19, 20, 25, 32, 34, 35, 41, 47, 63, 64, 69, 71, 77, 82, 83, 90, 95, 101, 107, 113, 435, 438, 498, 506, 513, 521, 541, 543, 553, 562, 563, 564, 579, 580, 582, 587, 676, 715, 754, 793, 832, 954, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1213, 1591, 1611, 1628, 1629, 1632, 1728, 1849, 1858, 1863, 1873, 1876, 1877, 1879, 1880, 1882, 1883, 1884, 1886, 1887, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1906, 1907, 1908], "strand": [0, 3, 553, 1213], "jie": 0, "xiong": 0, "interfac": [0, 9, 425, 426, 488, 496, 498, 499, 500, 543, 551, 572, 578, 1646, 1666, 1849, 1856, 1859, 1868, 1873, 1874, 1877, 1878, 1881, 1882, 1883, 1884, 1887], "summar": [0, 1858, 1873, 1877, 1882], "adjust": [0, 546, 559, 579, 649, 659, 671, 710, 749, 788, 827, 949, 997, 1858, 1889, 1903, 1907, 1908, 1910], "conveni": [0, 498, 523, 532, 541, 572, 579, 1858, 1883, 1887, 1890, 1895], "have": [0, 4, 6, 7, 8, 181, 184, 185, 186, 187, 218, 262, 274, 286, 401, 402, 451, 459, 480, 481, 483, 484, 496, 498, 499, 506, 507, 509, 510, 514, 515, 517, 522, 523, 524, 527, 531, 535, 541, 543, 551, 567, 568, 569, 570, 572, 575, 576, 577, 578, 579, 580, 581, 583, 863, 880, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1849, 1850, 1851, 1852, 1856, 1858, 1859, 1860, 1862, 1863, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1910], "you": [0, 3, 4, 6, 7, 8, 496, 508, 509, 515, 543, 551, 554, 565, 568, 569, 570, 581, 582, 1838, 1841, 1848, 1849, 1850, 1852, 1854, 1855, 1856, 1857, 1858, 1859, 1862, 1864, 1865, 1866, 1868, 1870, 1871, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910], "can": [0, 3, 4, 6, 7, 8, 11, 197, 251, 268, 325, 365, 378, 449, 451, 458, 460, 461, 490, 491, 493, 496, 497, 498, 499, 500, 502, 506, 507, 508, 510, 512, 515, 516, 517, 519, 521, 522, 524, 527, 528, 529, 531, 533, 535, 537, 539, 541, 543, 547, 550, 551, 554, 559, 560, 561, 564, 565, 567, 568, 569, 570, 571, 572, 573, 575, 579, 580, 581, 582, 583, 585, 586, 587, 649, 650, 653, 659, 665, 704, 743, 782, 821, 860, 935, 1023, 1079, 1092, 1105, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1632, 1664, 1685, 1754, 1760, 1762, 1803, 1838, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1862, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910], "download": [0, 1856, 1858, 1874, 1878], "top": [0, 8, 272, 284, 580, 1626, 1646, 1850, 1858, 1873, 1874, 1877, 1878, 1889], "level": [0, 413, 449, 499, 500, 570, 579, 1778, 1800, 1849, 1858, 1859, 1862, 1873, 1877, 1878, 1880, 1883, 1887, 1889, 1899, 1904], "your": [0, 4, 6, 7, 565, 569, 581, 1848, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1857, 1859, 1864, 1866, 1867, 1870, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1882, 1889, 1890, 1891, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "repositori": [0, 1850, 1858, 1859], "previous": [0, 433, 441, 1874, 1878, 1880], "gfindic": 0, "domain": [0, 259, 271, 283, 505, 518, 519, 521, 524, 539, 542, 650, 919, 922, 925, 1883, 1887, 1903, 1908], "directli": [0, 4, 6, 480, 481, 490, 493, 523, 541, 573, 935, 1685, 1849, 1850, 1866, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1884, 1886, 1887, 1890, 1892, 1895, 1897, 1899, 1900, 1904, 1905], "paramet": [0, 9, 453, 490, 493, 497, 498, 499, 501, 517, 518, 519, 520, 527, 528, 529, 533, 535, 542, 551, 553, 555, 557, 559, 560, 562, 564, 567, 570, 571, 573, 575, 576, 577, 579, 581, 587, 591, 612, 646, 650, 653, 656, 659, 660, 670, 676, 700, 709, 715, 739, 748, 754, 778, 787, 793, 817, 826, 832, 856, 907, 917, 919, 922, 925, 930, 932, 935, 942, 948, 954, 978, 1030, 1044, 1079, 1092, 1105, 1118, 1134, 1145, 1185, 1187, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1210, 1211, 1212, 1213, 1215, 1216, 1217, 1219, 1598, 1606, 1611, 1622, 1626, 1627, 1634, 1635, 1647, 1650, 1651, 1659, 1662, 1663, 1664, 1666, 1667, 1668, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1740, 1747, 1750, 1751, 1763, 1778, 1861, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1885, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897], "alwai": [0, 449, 457, 459, 507, 543, 570, 1832, 1838, 1854, 1873, 1877, 1880, 1902, 1907], "return": [0, 8, 9, 84, 160, 177, 178, 179, 199, 204, 205, 206, 207, 214, 215, 224, 232, 233, 234, 235, 236, 237, 238, 239, 251, 268, 292, 297, 311, 319, 354, 427, 433, 435, 445, 446, 447, 449, 490, 492, 493, 497, 498, 500, 501, 502, 506, 508, 509, 510, 513, 517, 519, 524, 527, 528, 533, 534, 535, 539, 541, 543, 544, 545, 546, 547, 548, 551, 553, 555, 556, 557, 559, 560, 561, 563, 564, 567, 570, 572, 573, 574, 575, 576, 577, 580, 585, 587, 589, 593, 595, 598, 610, 611, 614, 616, 619, 631, 632, 653, 666, 667, 670, 679, 698, 699, 700, 705, 706, 709, 718, 737, 738, 739, 744, 745, 748, 757, 776, 777, 778, 783, 784, 787, 796, 815, 816, 817, 822, 823, 826, 835, 854, 855, 856, 860, 862, 864, 871, 878, 879, 881, 882, 885, 893, 894, 935, 939, 944, 945, 948, 957, 976, 977, 978, 1017, 1018, 1023, 1185, 1187, 1201, 1203, 1204, 1205, 1209, 1210, 1211, 1213, 1214, 1215, 1216, 1217, 1218, 1603, 1604, 1628, 1634, 1635, 1650, 1651, 1659, 1662, 1663, 1664, 1666, 1667, 1668, 1673, 1675, 1678, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1731, 1740, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1755, 1757, 1761, 1764, 1768, 1778, 1780, 1815, 1829, 1834, 1836, 1837, 1838, 1855, 1860, 1861, 1862, 1881, 1886, 1888, 1894, 1902, 1903, 1907, 1908], "tick": [0, 1666, 1905, 1906], "third": [0, 553, 570, 1212, 1854, 1882], "argument": [0, 9, 124, 335, 354, 355, 360, 370, 381, 490, 492, 493, 499, 503, 505, 506, 508, 513, 524, 531, 541, 553, 561, 569, 570, 572, 573, 580, 587, 875, 942, 1214, 1688, 1755, 1761, 1768, 1780, 1832, 1838, 1841, 1873, 1877, 1881, 1882, 1883, 1887, 1889, 1903, 1908], "member": [0, 490, 514, 518, 536, 542, 550, 552, 555, 556, 570, 571, 1873, 1877, 1881, 1888, 1889, 1894, 1900, 1905], "block2gf": [0, 297, 319], "extract_mesh": 0, "get_mesh": [0, 240], "hamiltonian": [0, 9, 153, 154, 159, 169, 171, 177, 181, 184, 185, 186, 187, 357, 358, 361, 488, 500, 555, 562, 570, 572, 573, 589, 591, 606, 612, 627, 1611, 1646, 1663, 1664, 1685, 1700, 1701, 1702, 1869, 1874, 1876, 1878, 1879, 1880, 1885, 1889, 1891, 1892, 1895, 1896, 1897, 1899, 1904], "factori": [0, 571], "now": [0, 7, 8, 459, 500, 514, 517, 519, 543, 567, 569, 570, 1854, 1858, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1883, 1884, 1887, 1888, 1892, 1894, 1895, 1896, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "take": [0, 3, 4, 7, 297, 311, 319, 355, 360, 370, 381, 449, 480, 481, 499, 515, 521, 527, 528, 529, 533, 535, 541, 545, 547, 548, 558, 560, 565, 568, 570, 572, 573, 576, 580, 581, 699, 738, 777, 816, 855, 860, 977, 1201, 1626, 1664, 1685, 1688, 1689, 1692, 1694, 1714, 1715, 1716, 1778, 1848, 1860, 1869, 1873, 1876, 1877, 1880, 1882, 1888, 1889, 1891, 1894, 1895, 1896, 1900, 1902, 1905, 1907], "n_orb": [0, 500, 563, 573, 575, 576, 577, 1684, 1707, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1723, 1873, 1875, 1876, 1877, 1879, 1880, 1895], "orb_nam": [0, 500, 575, 576, 1707, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1720], "brzone": [0, 1062, 1063, 1064], "cyclat": [0, 1074, 1075, 1076], "dim": [0, 573, 700, 739, 778, 817, 856, 978, 1054, 1067, 1693, 1754, 1756, 1815, 1829, 1873, 1877, 1879, 1880], "period": [0, 528, 540, 567, 1054, 1067, 1635, 1651], "matrix": [0, 9, 156, 158, 170, 171, 175, 176, 181, 182, 183, 190, 191, 192, 197, 198, 214, 215, 223, 229, 235, 236, 238, 252, 358, 361, 363, 500, 502, 509, 512, 513, 514, 515, 517, 521, 525, 527, 528, 529, 533, 535, 542, 544, 545, 546, 547, 548, 549, 551, 553, 557, 560, 561, 562, 563, 571, 572, 574, 575, 576, 594, 596, 615, 617, 634, 670, 676, 679, 699, 709, 715, 718, 738, 748, 754, 757, 777, 787, 793, 796, 816, 826, 832, 835, 855, 948, 954, 957, 977, 996, 1054, 1065, 1077, 1213, 1215, 1591, 1598, 1605, 1610, 1611, 1615, 1633, 1649, 1684, 1685, 1686, 1689, 1691, 1692, 1693, 1694, 1696, 1700, 1701, 1709, 1710, 1711, 1714, 1715, 1716, 1754, 1760, 1860, 1861, 1862, 1873, 1877, 1886, 1890, 1895, 1899, 1904], "u_matrix": [0, 573, 575, 1711], "u_matrix_slat": [0, 573], "symbol": [0, 573, 1695, 1870, 1881, 1882], "print": [0, 440, 454, 500, 510, 551, 555, 563, 570, 572, 582, 1778, 1813, 1850, 1852, 1863, 1869, 1873, 1876, 1877, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1890, 1891, 1895, 1896, 1899, 1903, 1904, 1907, 1908], "sympi": [0, 1870], "express": [0, 9, 251, 262, 268, 274, 286, 368, 379, 488, 502, 505, 509, 510, 517, 518, 542, 549, 550, 551, 553, 572, 587, 918, 921, 924, 1017, 1018, 1022, 1027, 1214, 1851, 1858, 1870, 1883, 1885, 1887, 1892, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "898": 0, "invers": [0, 4, 181, 182, 183, 184, 185, 186, 187, 214, 215, 240, 322, 323, 500, 513, 514, 515, 520, 543, 547, 550, 551, 553, 567, 570, 579, 580, 877, 886, 935, 1030, 1079, 1092, 1105, 1118, 1134, 1145, 1644, 1848, 1860, 1861, 1862, 1863, 1869, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1891, 1894, 1895, 1896, 1897, 1899, 1901, 1903, 1904, 1906, 1908], "lazi": [0, 9, 11, 245, 251, 260, 268, 292, 317, 488, 499, 504, 507, 508, 510, 519, 542, 549, 553, 587, 918, 921, 924, 1214], "complex_t": 0, "optim": [0, 351, 516, 520, 553, 935, 1211, 1850, 1851, 1873, 1877, 1879, 1883, 1887, 1902, 1903, 1907, 1908], "interpolate_on_seg": 0, "onli": [0, 3, 7, 223, 260, 351, 352, 354, 357, 359, 363, 365, 449, 451, 453, 456, 463, 466, 473, 481, 490, 491, 493, 498, 500, 507, 509, 510, 511, 513, 514, 520, 523, 524, 531, 536, 539, 550, 553, 556, 559, 560, 561, 568, 570, 572, 573, 576, 580, 653, 670, 676, 698, 699, 709, 715, 737, 738, 748, 754, 776, 777, 787, 793, 815, 816, 826, 832, 854, 855, 865, 870, 875, 883, 888, 890, 916, 929, 935, 948, 954, 976, 977, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1213, 1632, 1684, 1714, 1715, 1716, 1745, 1755, 1761, 1778, 1833, 1834, 1839, 1852, 1856, 1860, 1873, 1876, 1877, 1880, 1883, 1886, 1887, 1888, 1889, 1894, 1895, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "boundari": [0, 463, 470, 1626, 1746], "free": [0, 7, 365, 506, 517, 518, 541, 543, 552, 556, 558, 559, 570, 571, 648, 652, 1849, 1872, 1873, 1874, 1877, 1878, 1903, 1908], "is_op_hermitian": 0, "hermit": [0, 541, 553, 993, 1213], "c2py": 0, "oplotr": 0, "oploti": 0, "477": 0, "obsolet": 0, "serial": [0, 543, 551, 571, 1850, 1857, 1875, 1877, 1879, 1880, 1889, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "global": [0, 1852], "count": [0, 463, 464, 491, 499, 1742, 1744, 1873, 1876, 1877, 1879, 1880], "accumul": [0, 406, 415, 428, 431, 448, 463, 464, 474, 476, 480, 481, 564, 567, 570, 583, 585, 891, 1744, 1748, 1889, 1896], "gfinterpol": 0, "closestmeshpoint": 0, "easybuild": [0, 5], "sha256": 0, "tarbal": 0, "cleanup": [0, 1854], "regener": 0, "gpl": [0, 3, 1849], "copyright": 0, "header": [0, 7, 9, 493, 494, 507, 569, 570, 586, 1852, 1856, 1865, 1867, 1907], "gcc": [0, 585, 586, 1851, 1856, 1857], "clang": [0, 494, 585, 1850, 1854, 1856, 1857], "format": [0, 3, 9, 463, 469, 488, 497, 498, 543, 544, 545, 546, 547, 548, 551, 553, 559, 580, 653, 1217, 1219, 1856, 1873, 1877, 1883, 1887, 1892, 1897], "gf_sym_grp": 0, "parallel": [0, 498, 564, 573, 1684, 1691, 1850, 1856, 1873, 1877, 1886, 1899, 1904], "valid": [0, 473, 511, 514, 524, 537, 572, 574, 576, 580, 587, 1714, 1715, 1716, 1861, 1903, 1908], "meshproduct": [0, 1873, 1877, 1879, 1886, 1899, 1904], "combin": [0, 550, 589, 591, 612, 916, 929, 1870, 1873, 1877, 1879, 1883, 1885, 1887, 1900, 1902, 1905, 1907], "k": [0, 300, 314, 498, 520, 531, 559, 561, 562, 563, 573, 575, 587, 1054, 1185, 1187, 1613, 1615, 1631, 1633, 1648, 1649, 1659, 1664, 1666, 1685, 1686, 1701, 1711, 1754, 1757, 1758, 1760, 1762, 1763, 1764, 1765, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "iw": [0, 537, 543, 553, 993, 994, 1178, 1210, 1219, 1883, 1886, 1887], "etc": [0, 4, 8, 9, 484, 485, 488, 496, 512, 581, 586, 1632, 1850, 1873, 1877, 1881, 1882, 1883, 1886, 1887], "idx": [0, 543, 1883, 1887, 1903, 1907, 1908], "tau": [0, 185, 252, 300, 311, 314, 321, 449, 487, 513, 515, 520, 528, 539, 545, 553, 576, 583, 700, 739, 778, 817, 856, 978, 994, 1079, 1105, 1211, 1215, 1719, 1873, 1875, 1877, 1879, 1883, 1887, 1888, 1894, 1900, 1902, 1905, 1907], "legendr": [0, 183, 500, 517, 518, 521, 536, 542, 543, 544, 545, 549, 553, 561, 636, 670, 671, 690, 691, 692, 698, 709, 710, 729, 730, 731, 737, 748, 749, 768, 769, 770, 776, 787, 788, 807, 808, 809, 815, 826, 827, 846, 847, 848, 854, 921, 922, 924, 948, 949, 968, 969, 970, 976, 997, 1008, 1009, 1010, 1145, 1152, 1153, 1213, 1754, 1760], "gf_view": [0, 240, 255, 260, 272, 280, 316, 518, 521, 523, 524, 525, 534, 537, 543, 544, 545, 546, 547, 548, 551, 671, 672, 674, 686, 687, 688, 689, 690, 691, 692, 693, 697, 710, 711, 713, 725, 726, 727, 728, 729, 730, 731, 732, 736, 749, 750, 752, 764, 765, 766, 767, 768, 769, 770, 771, 775, 788, 789, 791, 803, 804, 805, 806, 807, 808, 809, 810, 814, 827, 828, 830, 842, 843, 844, 845, 846, 847, 848, 849, 853, 949, 950, 952, 964, 965, 966, 967, 968, 969, 970, 971, 975, 990, 993, 994, 996, 997, 998, 1000, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012], "make_gf_from_fouri": [0, 240, 519, 1883, 1887], "time": [0, 4, 7, 9, 185, 253, 302, 306, 307, 308, 313, 315, 316, 407, 415, 416, 422, 423, 424, 428, 430, 431, 448, 449, 487, 488, 492, 500, 507, 509, 512, 514, 517, 518, 519, 521, 524, 536, 540, 542, 543, 544, 549, 553, 563, 568, 570, 572, 581, 583, 585, 637, 697, 736, 775, 814, 853, 919, 935, 975, 986, 987, 988, 989, 992, 1012, 1079, 1092, 1105, 1134, 1166, 1211, 1213, 1216, 1769, 1780, 1806, 1838, 1849, 1857, 1859, 1870, 1873, 1877, 1882, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1902, 1905, 1907], "transform": [0, 9, 11, 85, 86, 175, 176, 306, 307, 308, 312, 313, 314, 315, 496, 498, 503, 518, 520, 541, 542, 544, 545, 547, 548, 549, 550, 552, 557, 558, 559, 562, 572, 573, 576, 609, 630, 649, 655, 676, 689, 690, 691, 692, 715, 728, 729, 730, 731, 754, 767, 768, 769, 770, 793, 806, 807, 808, 809, 832, 845, 846, 847, 848, 916, 918, 919, 921, 922, 924, 925, 929, 954, 967, 968, 969, 970, 987, 988, 989, 990, 991, 992, 1007, 1008, 1009, 1010, 1600, 1615, 1617, 1633, 1637, 1649, 1653, 1685, 1692, 1696, 1714, 1715, 1716, 1856, 1886, 1889, 1897], "gf_expr": 0, "gf_unary_m_expr": 0, "regular_t": [0, 142], "set_from_pad": [0, 547, 1883, 1887, 1894, 1895, 1900, 1905], "scalar_valu": [0, 519, 521, 527, 528, 529, 531, 532, 533, 534, 535, 541, 544, 545, 547, 548, 681, 682, 689, 690, 691, 692, 693, 697, 720, 721, 728, 729, 730, 731, 732, 736, 759, 760, 767, 768, 769, 770, 771, 775, 798, 799, 806, 807, 808, 809, 810, 814, 837, 838, 845, 846, 847, 848, 849, 853, 959, 960, 967, 968, 969, 970, 971, 975, 986, 987, 988, 989, 990, 991, 992, 993, 994, 1002, 1003, 1007, 1008, 1009, 1010, 1011, 1012, 1862], "tensor_valu": [0, 257, 521, 532, 1862], "memorygf": [0, 323], "index_t": [0, 517, 537, 539, 1062, 1063, 1064, 1074, 1075, 1076, 1087, 1088, 1089, 1100, 1101, 1102, 1113, 1114, 1115, 1130, 1131, 1132, 1141, 1142, 1143, 1152, 1153, 1160, 1161, 1162, 1174, 1175, 1176], "product": [0, 4, 11, 32, 35, 36, 48, 170, 254, 255, 342, 369, 380, 500, 517, 518, 521, 532, 556, 572, 575, 578, 1044, 1708, 1851, 1862, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1886, 1890, 1895, 1900, 1905], "ad": [0, 235, 236, 410, 434, 451, 459, 461, 476, 496, 498, 500, 502, 512, 513, 514, 560, 570, 580, 581, 1778, 1850, 1861, 1869, 1873, 1877, 1881, 1882, 1883, 1885, 1887, 1900, 1903, 1905, 1908], "array_prior": 0, "so": [0, 223, 230, 231, 357, 449, 451, 494, 496, 506, 513, 532, 543, 551, 553, 564, 565, 568, 570, 579, 580, 581, 587, 659, 1213, 1838, 1864, 1866, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "rmul": 0, "prioriti": [0, 508], "ndarrai": [0, 544, 546, 553, 557, 669, 670, 676, 708, 709, 715, 747, 748, 754, 786, 787, 793, 825, 826, 832, 935, 947, 948, 954, 1054, 1067, 1211, 1598, 1626, 1627, 1647, 1666, 1667], "mul": 0, "multipl": [0, 335, 373, 385, 451, 480, 481, 483, 484, 485, 487, 516, 518, 524, 536, 542, 553, 556, 572, 578, 1217, 1627, 1647, 1667, 1839, 1856, 1873, 1877, 1883, 1887, 1892, 1897], "linear": [0, 155, 156, 157, 158, 450, 451, 453, 454, 457, 458, 461, 480, 481, 484, 485, 517, 528, 532, 533, 535, 539, 579, 583, 875, 935, 1060, 1185, 1187, 1634, 1650, 1849, 1873, 1877, 1878, 1881, 1883, 1886, 1887, 1899, 1900, 1901, 1904, 1905, 1906], "interpol": [0, 524, 527, 528, 533, 535, 540, 1187, 1873, 1877, 1886, 1899, 1900, 1904, 1905], "gtau": [0, 551, 1883, 1885, 1887], "store": [0, 18, 89, 99, 329, 358, 361, 363, 365, 449, 454, 480, 481, 496, 497, 498, 500, 507, 508, 515, 518, 520, 521, 526, 543, 544, 550, 551, 559, 572, 581, 583, 587, 645, 906, 1780, 1848, 1866, 1873, 1877, 1883, 1887, 1890, 1891, 1895, 1896, 1900, 1905, 1907], "diagon": [0, 9, 153, 154, 159, 171, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 359, 488, 515, 553, 575, 576, 577, 589, 590, 591, 612, 1210, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1876, 1880, 1883, 1887, 1891, 1896], "implement": [0, 4, 6, 242, 245, 298, 356, 357, 365, 366, 378, 497, 498, 502, 510, 511, 512, 515, 517, 518, 519, 528, 539, 542, 545, 547, 548, 555, 559, 565, 568, 569, 570, 572, 575, 580, 583, 587, 645, 676, 698, 699, 715, 737, 738, 754, 776, 777, 793, 815, 816, 832, 854, 855, 954, 976, 977, 1030, 1622, 1832, 1849, 1869, 1873, 1877, 1883, 1887, 1888, 1894, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "gfimfreq": [0, 542, 543, 545, 546, 547, 549, 551, 553, 554, 560, 579, 580, 1210, 1216, 1219, 1848, 1887], "gfimtim": [0, 542, 543, 549, 553, 554, 686, 764, 803, 842, 964, 1004, 1216, 1887], "yield": [0, 197, 553, 1212, 1883, 1887, 1888, 1889, 1894], "same": [0, 50, 54, 91, 94, 245, 260, 292, 401, 402, 461, 476, 477, 497, 498, 499, 506, 507, 508, 514, 517, 519, 523, 527, 528, 534, 541, 543, 551, 553, 554, 560, 568, 570, 572, 573, 575, 587, 665, 704, 743, 782, 821, 863, 864, 871, 880, 881, 894, 1079, 1092, 1105, 1217, 1689, 1692, 1694, 1709, 1710, 1726, 1727, 1728, 1780, 1838, 1839, 1844, 1864, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1883, 1887, 1890, 1891, 1895, 1896, 1899, 1900, 1904, 1905, 1910], "repr": [0, 544, 545, 546, 547, 548, 551, 1883, 1887], "g": [0, 5, 208, 209, 245, 247, 248, 252, 253, 254, 255, 257, 258, 260, 262, 263, 264, 272, 274, 275, 276, 280, 284, 286, 287, 288, 293, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 323, 425, 426, 443, 451, 467, 468, 490, 491, 492, 493, 496, 498, 499, 502, 503, 507, 511, 514, 515, 516, 517, 518, 519, 520, 521, 523, 524, 525, 527, 528, 529, 531, 532, 533, 535, 537, 539, 541, 543, 544, 545, 546, 547, 548, 550, 551, 552, 553, 560, 561, 563, 570, 575, 576, 577, 578, 579, 580, 581, 585, 659, 666, 667, 672, 673, 674, 675, 676, 679, 681, 682, 686, 687, 688, 697, 699, 705, 706, 711, 712, 713, 714, 715, 718, 720, 721, 725, 726, 727, 736, 738, 744, 745, 750, 751, 752, 753, 754, 757, 759, 760, 764, 765, 766, 775, 777, 783, 784, 789, 790, 791, 792, 793, 796, 798, 799, 803, 804, 805, 814, 816, 822, 823, 828, 829, 830, 831, 832, 835, 837, 838, 842, 843, 844, 853, 855, 860, 875, 892, 901, 902, 908, 909, 916, 918, 919, 921, 922, 924, 925, 929, 935, 944, 945, 950, 951, 952, 953, 954, 957, 959, 960, 964, 965, 966, 975, 977, 993, 994, 996, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1012, 1038, 1191, 1210, 1216, 1217, 1219, 1626, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1732, 1754, 1755, 1760, 1761, 1850, 1852, 1854, 1855, 1856, 1857, 1858, 1863, 1864, 1866, 1867, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908, 1910], "name": [0, 182, 183, 184, 185, 186, 245, 249, 265, 277, 289, 296, 332, 333, 344, 345, 347, 397, 398, 400, 408, 410, 413, 425, 426, 434, 439, 442, 443, 447, 463, 467, 468, 469, 490, 493, 496, 497, 498, 507, 513, 515, 543, 544, 545, 546, 547, 548, 550, 551, 553, 557, 558, 559, 560, 563, 570, 573, 575, 576, 577, 579, 580, 582, 585, 645, 646, 649, 650, 653, 660, 664, 703, 742, 781, 820, 860, 875, 896, 937, 938, 942, 984, 1025, 1052, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1215, 1217, 1594, 1595, 1598, 1603, 1627, 1640, 1647, 1656, 1659, 1660, 1663, 1688, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1737, 1768, 1778, 1800, 1809, 1823, 1832, 1834, 1843, 1858, 1864, 1869, 1872, 1873, 1876, 1877, 1880, 1883, 1884, 1885, 1887, 1889, 1891, 1894, 1895, 1896, 1899, 1904], "correspond": [0, 100, 170, 232, 233, 234, 370, 381, 497, 498, 499, 513, 517, 521, 525, 531, 532, 539, 541, 543, 550, 551, 559, 563, 572, 574, 646, 653, 669, 700, 708, 739, 747, 778, 786, 817, 825, 856, 930, 947, 978, 1850, 1852, 1873, 1877, 1883, 1887, 1888, 1892, 1894, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "beta": [0, 181, 182, 183, 184, 185, 186, 187, 254, 255, 260, 316, 500, 513, 515, 516, 517, 519, 520, 523, 525, 527, 528, 531, 532, 539, 540, 541, 543, 544, 545, 546, 547, 548, 551, 553, 554, 560, 567, 570, 579, 580, 634, 635, 636, 637, 638, 639, 664, 670, 697, 703, 709, 736, 742, 748, 775, 781, 787, 814, 820, 826, 853, 948, 975, 1012, 1030, 1031, 1079, 1092, 1105, 1118, 1134, 1145, 1211, 1215, 1848, 1862, 1863, 1869, 1873, 1877, 1879, 1880, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "statist": [0, 9, 412, 448, 449, 480, 481, 488, 517, 520, 523, 544, 545, 546, 547, 548, 570, 664, 703, 742, 781, 820, 1030, 1031, 1079, 1092, 1105, 1118, 1134, 1145, 1742, 1877, 1883, 1886, 1887, 1889, 1904], "through": [0, 6, 8, 11, 514, 515, 520, 537, 541, 552, 556, 570, 572, 579, 1079, 1092, 1105, 1838, 1849, 1850, 1854, 1859, 1883, 1886, 1887, 1899, 1900, 1903, 1904, 1905, 1908], "meshpoint": [0, 518, 542, 543, 1079, 1092, 1105], "meshwithvalu": 0, "execut": [0, 128, 581, 1850, 1852, 1854, 1858, 1866, 1867, 1881], "index": [0, 15, 16, 17, 21, 63, 114, 155, 156, 157, 158, 160, 162, 170, 173, 179, 182, 183, 184, 185, 186, 326, 327, 329, 334, 335, 336, 338, 342, 343, 352, 360, 362, 370, 372, 381, 384, 390, 392, 394, 395, 396, 401, 402, 403, 471, 499, 517, 531, 532, 539, 543, 544, 545, 546, 547, 548, 555, 556, 563, 572, 573, 574, 575, 577, 594, 596, 598, 615, 617, 619, 859, 1030, 1037, 1038, 1051, 1057, 1062, 1063, 1064, 1074, 1075, 1076, 1079, 1087, 1088, 1089, 1092, 1100, 1101, 1102, 1105, 1113, 1114, 1115, 1130, 1131, 1132, 1141, 1142, 1143, 1152, 1153, 1160, 1161, 1162, 1174, 1175, 1176, 1203, 1622, 1623, 1644, 1684, 1685, 1689, 1691, 1694, 1696, 1699, 1700, 1701, 1702, 1711, 1722, 1747, 1873, 1877, 1883, 1885, 1887, 1889, 1899, 1904], "modulo": 0, "out": [0, 267, 279, 291, 322, 510, 523, 553, 1219, 1747, 1750, 1751, 1838, 1873, 1877, 1883, 1887, 1888, 1894], "mesh_hash": [0, 1037, 1038], "default": [0, 15, 25, 41, 43, 49, 59, 69, 73, 82, 85, 88, 97, 107, 122, 182, 183, 185, 186, 254, 255, 300, 302, 316, 317, 428, 465, 490, 493, 499, 521, 523, 527, 528, 529, 533, 535, 541, 551, 553, 557, 560, 561, 570, 572, 573, 580, 586, 635, 636, 637, 638, 660, 875, 935, 940, 1079, 1092, 1105, 1118, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1211, 1216, 1598, 1663, 1664, 1666, 1679, 1684, 1740, 1756, 1762, 1763, 1778, 1806, 1832, 1833, 1851, 1854, 1855, 1858, 1860, 1883, 1887, 1890, 1895], "construct": [0, 9, 15, 21, 35, 92, 101, 102, 118, 122, 123, 159, 165, 169, 182, 183, 185, 186, 245, 329, 341, 342, 351, 352, 368, 379, 392, 428, 442, 465, 490, 497, 498, 500, 508, 519, 521, 523, 525, 526, 544, 545, 546, 547, 548, 551, 553, 559, 560, 561, 563, 567, 568, 569, 571, 575, 579, 582, 583, 600, 606, 621, 627, 649, 650, 659, 664, 703, 742, 781, 820, 875, 1054, 1211, 1217, 1682, 1756, 1758, 1762, 1765, 1832, 1861, 1865, 1869, 1873, 1877, 1879, 1883, 1885, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1904, 1905], "zero": [0, 15, 21, 316, 341, 352, 451, 456, 457, 459, 551, 553, 556, 560, 563, 572, 1216, 1673, 1675, 1699, 1769, 1877, 1883, 1887, 1890, 1895, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "accessor": [0, 542, 549, 572], "micro": 0, "closest_mesh_pt": 0, "cluster_mesh": 0, "pass": [0, 116, 354, 451, 457, 459, 461, 480, 481, 498, 499, 500, 541, 569, 575, 580, 587, 1201, 1666, 1711, 1740, 1841, 1849, 1850, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1888, 1889, 1890, 1895, 1902], "window": [0, 186, 500, 539, 547, 548, 550, 579, 580, 673, 675, 700, 712, 714, 739, 751, 753, 778, 790, 792, 817, 829, 831, 856, 951, 953, 978, 999, 1001, 1154, 1166, 1873, 1876, 1877, 1879, 1880, 1883, 1884, 1887, 1894, 1895], "pair": [0, 12, 170, 182, 183, 184, 185, 186, 254, 255, 329, 363, 470, 483, 484, 499, 541, 556, 574, 575, 635, 636, 637, 638, 672, 673, 674, 675, 711, 712, 713, 714, 750, 751, 752, 753, 789, 790, 791, 792, 828, 829, 830, 831, 875, 950, 951, 952, 953, 998, 999, 1000, 1001, 1154, 1166, 1619, 1620, 1666, 1710, 1746, 1883, 1887, 1891, 1896, 1900, 1901, 1905, 1906], "float": [0, 497, 499, 544, 546, 547, 553, 557, 560, 573, 575, 582, 602, 623, 634, 635, 636, 637, 638, 639, 640, 641, 670, 681, 682, 693, 698, 709, 720, 721, 732, 737, 748, 759, 760, 771, 776, 787, 798, 799, 810, 815, 826, 837, 838, 849, 854, 935, 948, 959, 960, 971, 976, 986, 1002, 1003, 1011, 1079, 1092, 1105, 1118, 1128, 1134, 1145, 1154, 1166, 1211, 1215, 1598, 1627, 1647, 1664, 1666, 1668, 1679, 1684, 1685, 1689, 1691, 1694, 1696, 1700, 1701, 1702, 1712, 1740, 1747, 1806, 1838, 1858, 1883, 1886, 1887, 1905], "refreq": [0, 186, 518, 519, 521, 536, 542, 547, 638, 693, 732, 771, 810, 849, 971, 1011, 1160, 1161, 1162], "meshrefreq": [0, 544, 546, 547, 670, 709, 748, 781, 787, 826, 948, 1883, 1884, 1887, 1894, 1900, 1905], "n_l": [0, 183, 500, 636, 1892, 1897], "n_k": [0, 1054, 1634, 1650, 1873, 1875, 1876, 1877, 1879, 1880, 1886, 1899, 1903, 1904, 1908], "n_pt": [0, 559, 563, 649, 650, 1187], "ostream": [0, 49, 58, 267, 279, 291, 477, 510, 587], "retim": [0, 518, 519, 521, 531, 532, 536, 542, 1174, 1175, 1176, 1862], "t_min": [0, 1166], "t_max": [0, 1166], "omega_min": [0, 1873, 1877, 1879], "meshdlr": [0, 1092, 1105], "meshdlrimtim": [0, 1079, 1883, 1887], "meshdlrimfreq": [0, 1079, 1193, 1883, 1887], "plot": [0, 5, 9, 488, 542, 544, 545, 546, 547, 548, 549, 554, 558, 559, 563, 579, 582, 645, 659, 664, 703, 742, 781, 820, 942, 1666, 1856, 1870, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "protocol": [0, 9, 488, 498, 559, 645, 1186, 1189, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1726, 1740], "descriptor": [0, 498, 543, 547, 549, 580, 1864, 1873, 1875, 1876, 1877, 1879, 1880], "flatironinstitut": [0, 1850, 1874, 1878], "cppdlr": [0, 1849], "superlattic": [0, 1626, 1628, 1632], "after": [0, 30, 407, 417, 428, 429, 430, 431, 490, 493, 513, 526, 568, 569, 570, 572, 1835, 1837, 1838, 1849, 1850, 1854, 1858, 1859, 1861, 1866, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1885, 1889, 1890, 1894, 1895], "latticepoint": 0, "bravais_lattic": [0, 563, 1072], "point_t": [0, 517, 524], "euclidean": 0, "distanc": [0, 11, 1205, 1666], "fals": [0, 125, 127, 135, 139, 141, 142, 143, 149, 150, 317, 324, 346, 348, 349, 359, 399, 401, 402, 408, 413, 473, 478, 489, 490, 493, 498, 500, 523, 551, 553, 555, 567, 572, 573, 575, 585, 615, 617, 633, 634, 642, 700, 739, 778, 817, 856, 860, 875, 887, 891, 978, 1079, 1092, 1105, 1201, 1204, 1207, 1211, 1626, 1627, 1632, 1663, 1664, 1684, 1698, 1700, 1701, 1702, 1711, 1833, 1873, 1877, 1880, 1886, 1887, 1897, 1899, 1903, 1904, 1908], "posit": [0, 254, 255, 311, 316, 318, 338, 463, 471, 539, 541, 557, 1118, 1126, 1598, 1604, 1626, 1627, 1629, 1630, 1641, 1647, 1657, 1747, 1861, 1900, 1902, 1905, 1907], "complete_refil": 0, "address": [0, 570, 583, 1849], "868": 0, "ksi": [0, 513], "should": [0, 3, 6, 8, 125, 141, 142, 143, 149, 150, 358, 363, 368, 379, 449, 451, 461, 493, 496, 498, 514, 515, 517, 525, 541, 553, 564, 567, 568, 570, 572, 573, 575, 576, 581, 1210, 1211, 1685, 1709, 1710, 1711, 1714, 1715, 1716, 1832, 1838, 1848, 1850, 1851, 1852, 1854, 1855, 1858, 1859, 1864, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1885, 1888, 1890, 1894, 1895, 1902, 1903, 1907, 1908], "current": [0, 3, 16, 45, 51, 52, 198, 229, 235, 236, 417, 418, 420, 451, 453, 457, 459, 496, 499, 512, 513, 515, 521, 570, 581, 676, 715, 754, 793, 832, 954, 1838, 1851, 1852, 1859, 1873, 1875, 1877, 1879, 1883, 1887], "insert": [0, 192, 235, 236, 325, 336, 463, 477, 500, 513, 555, 572, 1861, 1877, 1889, 1896, 1901, 1906], "iter": [0, 11, 13, 14, 15, 16, 17, 18, 21, 24, 27, 33, 36, 40, 42, 43, 44, 45, 46, 51, 52, 62, 65, 68, 72, 73, 74, 75, 76, 78, 81, 84, 85, 86, 87, 88, 89, 93, 96, 97, 98, 99, 100, 102, 106, 326, 327, 328, 331, 482, 483, 484, 485, 490, 498, 517, 539, 542, 549, 555, 556, 571, 861, 876, 1768, 1858, 1869, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1890, 1891, 1895, 1896], "rank": [0, 12, 112, 115, 125, 140, 141, 142, 143, 144, 149, 150, 151, 270, 282, 295, 300, 314, 472, 473, 484, 485, 499, 519, 521, 541, 544, 545, 546, 547, 548, 553, 567, 570, 664, 695, 703, 734, 742, 773, 781, 812, 820, 851, 875, 942, 973, 1079, 1092, 1105, 1217, 1806, 1850, 1852, 1873, 1877, 1887, 1889, 1896, 1901, 1906], "swap_row": [0, 192], "swap_coli": 0, "higher": [0, 4, 499, 532, 1856, 1873, 1877], "review": [0, 8, 1849, 1858, 1894, 1902, 1907], "pr": 0, "report": [0, 6, 412, 1768, 1840], "measur": [0, 407, 408, 409, 411, 412, 427, 428, 431, 449, 451, 453, 461, 487, 571, 583, 1201, 1873, 1875, 1876, 1877, 1879, 1880, 1889, 1890, 1892, 1895, 1896, 1897], "eta": [0, 547, 560, 655, 1873, 1874, 1876, 1877, 1878, 1880, 1883, 1887, 1889, 1896], "statu": [0, 1806], "messag": [0, 8, 202, 227, 585, 1849, 1851, 1857, 1858], "impl_tool": 0, "hpp": [0, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 493, 494, 499, 500, 502, 506, 507, 508, 509, 510, 511, 513, 516, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 555, 567, 569, 570, 574, 585, 586, 587, 1860, 1861, 1862, 1863, 1864, 1867, 1910], "its": [0, 3, 46, 51, 52, 97, 354, 363, 434, 442, 492, 496, 500, 507, 508, 514, 517, 518, 520, 521, 524, 525, 539, 543, 550, 551, 553, 556, 563, 570, 571, 572, 575, 587, 875, 993, 994, 1214, 1628, 1629, 1712, 1849, 1850, 1851, 1854, 1859, 1864, 1865, 1872, 1873, 1874, 1877, 1878, 1882, 1883, 1886, 1887, 1889, 1890, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "templat": [0, 6, 9, 11, 27, 109, 110, 111, 153, 188, 189, 190, 192, 237, 241, 242, 245, 253, 258, 299, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 317, 318, 320, 321, 322, 323, 329, 335, 366, 406, 408, 409, 432, 434, 445, 449, 501, 502, 507, 510, 513, 518, 522, 523, 527, 528, 529, 533, 535, 542, 555, 570, 571, 574, 587, 1856], "neg": [0, 407, 428, 431, 539, 541, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1840], "n_cycl": [0, 428, 567, 568, 569, 570, 1869, 1889, 1891, 1892, 1895, 1896, 1897], "until": [0, 407, 428, 430, 431, 453, 560, 568, 1778, 1837, 1838, 1888, 1889, 1894], "callback": [0, 407, 428, 430, 431, 567, 570], "signal": [0, 407, 428, 430, 431, 490, 493], "stop": [0, 135, 407, 428, 430, 431, 570, 1778, 1854], "679": 0, "dure": [0, 449, 490, 493, 496, 498, 506, 568, 583, 1806, 1850, 1858, 1873, 1877, 1890, 1895], "poll": [0, 117], "barrier": [0, 115], "reduc": [0, 142, 143, 150, 159, 251, 260, 268, 292, 317, 412, 456, 463, 473, 481, 484, 485, 497, 499, 543, 551, 567, 570, 573, 580, 587, 1664, 1691, 1874, 1878, 1889, 1895], "cpu": [0, 1806, 1850], "845": 0, "crai": 0, "mpich": 0, "layer": [0, 4, 296, 578, 581, 1726, 1849, 1873, 1877], "unrecogn": 0, "mpi_init": [0, 123, 127], "force_mpi_init": 0, "envvar": 0, "util": [0, 9, 488, 500, 543, 551, 567, 570, 572, 573, 574, 575, 576, 577, 585, 586, 587, 1850, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1892, 1897, 1905], "all_reduc": [0, 1879], "name_block_gener": [0, 551, 875, 1887], "620": 0, "callproxynon": 0, "throw": [0, 171, 196, 201, 226, 413, 476, 502, 585, 1862], "except": [0, 2, 9, 188, 189, 413, 488, 491, 498, 499, 507, 513, 1700, 1701, 1702, 1838, 1862, 1876, 1880], "846": 0, "assert": [0, 1886], "dimens": [0, 167, 173, 174, 256, 257, 348, 349, 377, 389, 451, 496, 499, 520, 532, 544, 545, 546, 547, 548, 557, 559, 563, 573, 601, 603, 604, 622, 624, 625, 664, 703, 742, 781, 820, 860, 942, 1054, 1060, 1067, 1071, 1602, 1609, 1626, 1634, 1635, 1639, 1643, 1650, 1651, 1655, 1658, 1659, 1693, 1756, 1877, 1883, 1886, 1887, 1899, 1901, 1903, 1904, 1906, 1908], "sigma": [0, 543, 551, 560, 561, 570, 573, 575, 576, 583, 655, 1684, 1685, 1696, 1709, 1710, 1711, 1716, 1717, 1719, 1754, 1755, 1760, 1761, 1869, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1882, 1883, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1903, 1908], "match": [0, 543, 1850, 1858, 1873, 1877], "hop": [0, 500, 553, 555, 558, 560, 561, 563, 575, 1211, 1215, 1611, 1626, 1627, 1646, 1647, 1663, 1664, 1667, 1710, 1754, 1760, 1872, 1877, 1886, 1891, 1896, 1900, 1902, 1903, 1905, 1907, 1908], "859": 0, "wannier90": [0, 573, 1663, 1667, 1668, 1689, 1692, 1694, 1873, 1877], "qe": [0, 573, 1689, 1692, 1694, 1873, 1877], "vasp": [0, 4, 573, 1689, 1692, 1694], "basi": [0, 171, 183, 342, 360, 362, 365, 368, 370, 379, 381, 390, 391, 393, 394, 401, 402, 500, 517, 555, 556, 557, 562, 563, 572, 573, 576, 1065, 1077, 1605, 1610, 1611, 1626, 1627, 1647, 1684, 1685, 1689, 1692, 1694, 1696, 1714, 1715, 1716, 1877, 1883, 1886, 1887, 1892, 1897, 1899, 1903, 1904, 1908], "860": 0, "result": [0, 3, 4, 29, 31, 86, 120, 121, 125, 128, 141, 142, 143, 144, 149, 150, 151, 163, 172, 412, 473, 490, 492, 493, 498, 502, 506, 508, 509, 517, 520, 531, 541, 551, 552, 559, 560, 564, 567, 572, 581, 587, 650, 1659, 1699, 1780, 1848, 1854, 1866, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1886, 1887, 1888, 1890, 1894, 1895, 1896, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "trace_rho_op": [0, 152, 500, 501], "rho": [0, 559, 560, 570, 645, 646, 650, 655, 656, 1883, 1887, 1894, 1895, 1897, 1899, 1904], "hermitian": [0, 357, 363, 541, 572, 673, 712, 751, 790, 829, 951, 999, 1679], "871": 0, "is_convert": 0, "block2_gf": [0, 303], "872": 0, "881": [0, 1887], "exampl": [0, 7, 8, 9, 268, 492, 496, 498, 502, 503, 506, 507, 509, 510, 511, 515, 516, 517, 518, 524, 525, 531, 542, 543, 549, 550, 554, 560, 565, 568, 569, 570, 571, 572, 573, 578, 581, 585, 587, 935, 1693, 1780, 1848, 1849, 1850, 1852, 1855, 1858, 1859, 1860, 1861, 1862, 1867, 1868, 1869, 1870, 1874, 1878, 1881, 1883, 1885, 1886, 1887, 1889, 1899, 1901, 1904, 1906], "907": 0, "arithmet": [0, 482, 483, 484, 485, 490, 507, 517, 543, 551, 572, 1030, 1622, 1856], "inplac": [0, 886], "propag": [0, 315, 1901, 1906], "figur": [0, 9, 568, 578, 1882, 1883, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "histogram": [0, 448, 462, 486, 583, 1892, 1897], "via": [0, 6, 483, 484, 500, 543, 935, 1850, 1851, 1853, 1855, 1858, 1864, 1873, 1874, 1876, 1877, 1878, 1880], "shape": [0, 128, 260, 262, 270, 274, 282, 286, 295, 461, 497, 521, 525, 541, 544, 545, 546, 547, 548, 553, 557, 664, 670, 696, 703, 709, 735, 742, 748, 774, 781, 787, 813, 820, 826, 852, 942, 948, 974, 1054, 1067, 1211, 1215, 1598, 1663, 1666, 1731, 1848, 1862, 1876, 1880, 1887, 1899, 1904], "fit_hermitian": 0, "signatur": [0, 489, 490, 493, 499, 508, 544, 545, 546, 547, 548, 557, 562, 582, 587, 593, 594, 595, 596, 598, 602, 603, 604, 614, 615, 616, 617, 619, 623, 624, 625, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 671, 672, 673, 674, 675, 681, 682, 686, 687, 688, 689, 690, 691, 692, 693, 697, 710, 711, 712, 713, 714, 720, 721, 725, 726, 727, 728, 729, 730, 731, 732, 736, 749, 750, 751, 752, 753, 759, 760, 764, 765, 766, 767, 768, 769, 770, 771, 775, 788, 789, 790, 791, 792, 798, 799, 803, 804, 805, 806, 807, 808, 809, 810, 814, 827, 828, 829, 830, 831, 837, 838, 842, 843, 844, 845, 846, 847, 848, 849, 853, 949, 950, 951, 952, 953, 959, 960, 964, 965, 966, 967, 968, 969, 970, 971, 975, 986, 987, 988, 989, 990, 991, 992, 993, 994, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1057, 1058, 1059, 1062, 1063, 1064, 1066, 1069, 1070, 1074, 1075, 1076, 1078, 1082, 1083, 1087, 1088, 1089, 1090, 1095, 1096, 1100, 1101, 1102, 1103, 1108, 1109, 1113, 1114, 1115, 1116, 1121, 1122, 1123, 1124, 1127, 1128, 1130, 1131, 1132, 1133, 1137, 1138, 1141, 1142, 1143, 1144, 1148, 1149, 1152, 1153, 1156, 1157, 1160, 1161, 1162, 1163, 1168, 1169, 1174, 1175, 1176, 1177, 1178, 1591, 1600, 1613, 1615, 1617, 1619, 1620, 1631, 1633, 1637, 1648, 1649, 1653, 1674, 1676, 1677, 1678, 1679, 1680, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1737, 1744, 1747, 1750, 1751, 1879, 1885, 1886, 1887, 1899, 1901, 1904, 1905, 1906], "fit_hermitian_tail": [0, 240, 541, 935], "tb_from_pythtb": 0, "super": 0, "orbital_nam": [0, 557, 1627, 1646, 1647], "being": [0, 329, 354, 434, 451, 499, 512, 572, 573, 581, 1627, 1647, 1683, 1685, 1688, 1690, 1692, 1859, 1895], "where": [0, 5, 8, 34, 63, 235, 236, 449, 455, 456, 480, 481, 496, 506, 508, 513, 514, 515, 519, 526, 531, 532, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 558, 560, 563, 573, 580, 585, 660, 669, 708, 747, 786, 825, 861, 876, 916, 929, 947, 1054, 1211, 1215, 1667, 1685, 1768, 1832, 1848, 1854, 1858, 1859, 1864, 1867, 1872, 1873, 1877, 1883, 1886, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "scalar_wrap": 0, "captur": [0, 507, 1873, 1875, 1876, 1877, 1878, 1879, 1880, 1892, 1897], "refer": [0, 3, 4, 8, 9, 11, 27, 58, 332, 344, 352, 355, 367, 371, 372, 373, 374, 375, 376, 382, 384, 385, 386, 387, 388, 397, 466, 477, 490, 496, 537, 542, 543, 549, 568, 578, 583, 1745, 1850, 1855, 1859, 1860, 1861, 1862, 1864, 1873, 1877, 1892, 1897, 1899, 1904, 1910], "many_body_operator_r": [0, 572], "brillouin_zon": [0, 1056, 1666, 1899, 1904], "np": [0, 500, 547, 553, 1211, 1215, 1217, 1848, 1850, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1886, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "int": [0, 19, 30, 48, 95, 112, 114, 116, 120, 121, 122, 124, 125, 140, 141, 142, 143, 144, 149, 150, 151, 155, 156, 157, 158, 159, 160, 162, 164, 167, 170, 173, 174, 176, 179, 180, 182, 183, 185, 186, 214, 215, 224, 242, 244, 245, 253, 254, 255, 256, 257, 258, 260, 299, 303, 304, 306, 307, 308, 309, 310, 312, 313, 316, 317, 320, 322, 323, 329, 330, 335, 338, 339, 342, 343, 350, 372, 377, 383, 389, 392, 394, 395, 396, 403, 404, 407, 413, 417, 418, 428, 430, 431, 450, 451, 453, 454, 457, 458, 459, 460, 461, 465, 471, 472, 473, 482, 483, 484, 485, 492, 496, 497, 499, 500, 502, 506, 507, 508, 509, 510, 513, 516, 517, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 544, 545, 546, 547, 548, 550, 553, 555, 556, 563, 567, 569, 570, 572, 575, 576, 577, 585, 587, 589, 591, 593, 594, 595, 596, 598, 602, 603, 604, 612, 614, 615, 616, 617, 619, 623, 624, 625, 635, 636, 637, 638, 664, 673, 675, 684, 687, 693, 694, 695, 696, 703, 712, 714, 723, 726, 732, 733, 734, 735, 742, 751, 753, 762, 765, 771, 772, 773, 774, 781, 790, 792, 801, 804, 810, 811, 812, 813, 820, 829, 831, 840, 843, 849, 850, 851, 852, 875, 897, 916, 929, 942, 951, 953, 962, 965, 971, 972, 973, 974, 991, 992, 999, 1001, 1005, 1011, 1030, 1054, 1067, 1118, 1123, 1124, 1128, 1134, 1145, 1154, 1166, 1178, 1211, 1213, 1619, 1620, 1622, 1634, 1635, 1650, 1651, 1666, 1667, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1747, 1860, 1861, 1862, 1863, 1867, 1873, 1876, 1877, 1879, 1880, 1882, 1885, 1887, 1889, 1892, 1897, 1903, 1908], "h_int_kanamori": [0, 500, 575], "correct": [0, 480, 481, 502, 506, 507, 519, 523, 543, 570, 578, 1864, 1873, 1874, 1875, 1877, 1878, 1879], "static": [0, 4, 490, 569, 572, 1875, 1879, 1901, 1906], "pyref": 0, "lifetim": 0, "mai": [0, 496, 498, 500, 524, 537, 543, 551, 572, 580, 581, 587, 1835, 1839, 1841, 1850, 1854, 1855, 1883, 1887, 1907, 1910], "beyond": [0, 81, 496, 572, 1875, 1879], "interpret": [0, 1856, 1870, 1873, 1877, 1881], "mesh_point": [0, 463], "perfect": [0, 1854, 1859, 1909], "forward": [0, 354, 587, 1849], "properli": [0, 498, 510, 1632, 1858, 1873, 1877], "matsubara": [0, 182, 302, 306, 307, 308, 312, 315, 500, 517, 518, 521, 535, 536, 537, 539, 541, 542, 543, 547, 549, 550, 551, 553, 635, 670, 698, 709, 737, 748, 776, 787, 815, 826, 854, 921, 924, 925, 948, 976, 987, 988, 989, 991, 996, 1030, 1079, 1092, 1118, 1126, 1211, 1873, 1877, 1883, 1886, 1887, 1890, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "frequenc": [0, 182, 186, 254, 255, 307, 312, 316, 318, 500, 517, 518, 519, 521, 528, 535, 536, 539, 542, 543, 546, 549, 550, 551, 553, 638, 670, 698, 709, 737, 748, 776, 787, 815, 826, 854, 916, 929, 935, 948, 976, 988, 991, 1030, 1079, 1092, 1118, 1126, 1154, 1216, 1217, 1219, 1863, 1873, 1875, 1876, 1877, 1879, 1880, 1886, 1888, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "protect": [0, 1892, 1897], "mesh_point_t": [0, 517, 537, 539], "race": 0, "condit": [0, 480, 481, 482, 483, 484, 485, 507, 551, 572, 585, 1869, 1873, 1877, 1879, 1880, 1883, 1887, 1890, 1892, 1895, 1897, 1903, 1908], "logo": [0, 5], "keyword": [0, 511, 875, 1832, 1841, 1885, 1887, 1889, 1900, 1905], "simpl": [0, 3, 4, 7, 117, 154, 230, 231, 450, 457, 459, 461, 496, 498, 499, 500, 503, 507, 510, 511, 517, 543, 550, 551, 554, 558, 564, 565, 567, 570, 578, 580, 581, 582, 587, 659, 1803, 1850, 1854, 1855, 1856, 1861, 1865, 1869, 1873, 1877, 1883, 1886, 1887, 1888, 1891, 1894, 1896, 1900, 1901, 1905, 1906], "app": [0, 1874, 1878], "891": 0, "singular": [0, 201, 202, 226, 227, 260, 521, 525, 527, 531, 537, 1903, 1908], "apptain": 0, "minimum": 0, "gmp": [0, 1854, 1856], "prerequisit": 0, "also": [0, 3, 4, 6, 7, 432, 476, 490, 493, 496, 499, 502, 506, 509, 517, 518, 523, 531, 532, 543, 551, 555, 561, 568, 570, 571, 572, 573, 1688, 1754, 1760, 1837, 1838, 1848, 1849, 1850, 1859, 1860, 1870, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "python3": [0, 1850, 1855, 1857, 1885, 1886, 1887], "simplifi": [0, 498, 499, 508, 523, 543, 551, 1873, 1877, 1885, 1899, 1904], "brew": [0, 1854], "intelllvm": [0, 1856], "2023": [0, 1856, 1875, 1877, 1879, 1880, 1889, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "lattice_tool": [0, 1886], "direct": [0, 246, 367, 480, 481, 500, 517, 521, 542, 549, 561, 563, 570, 1054, 1067, 1762, 1763, 1850, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "sphinxext": 0, "plot_direct": 0, "account": [0, 8, 520, 1664, 1877, 1879, 1880, 1901, 1906], "prefix": [0, 1854], "slightli": [0, 1851, 1852, 1883, 1887, 1890, 1895], "descript": [0, 4, 357, 494, 511, 513, 1594, 1852, 1856, 1883, 1887], "som": 0, "seri": [0, 463, 480, 481, 516, 517, 1664, 1742, 1859, 1868, 1871, 1899, 1904, 1909], "previou": [0, 218, 507, 514, 517, 543, 580, 586, 1848, 1858, 1869, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1889, 1891, 1896, 1900, 1901, 1902, 1905, 1906, 1907], "sampl": [0, 4, 358, 449, 459, 463, 465, 474, 475, 480, 481, 583, 1742, 1748, 1749, 1873, 1877, 1882, 1890, 1895], "22": [0, 508, 1850, 1857, 1877, 1883, 1887, 1896], "mention": [0, 300, 551, 568], "toctre": 0, "openmpi": [0, 1850, 1855, 1856, 1857], "dir": [0, 1663, 1850], "path": [0, 496, 497, 498, 563, 1183, 1184, 1187, 1190, 1207, 1663, 1666, 1852, 1854, 1855, 1864, 1873, 1874, 1877, 1878, 1879, 1880, 1891, 1896, 1899, 1900, 1901, 1904, 1905, 1906], "rst": [0, 7, 511, 1864], "filenam": [0, 493, 559, 653, 887, 891, 1667, 1668, 1848], "literalinclud": 0, "manual": [0, 5, 453, 491, 494, 496, 507, 523, 543, 547, 551, 563, 565, 568, 570, 572, 585, 1803, 1850, 1873, 1874, 1877, 1878, 1899, 1904, 1907], "latest": [0, 8, 1850, 1851, 1854, 1855, 1856, 1858, 1899, 1904], "findsanit": 0, "tsan": 0, "msan": 0, "disabl": [0, 510], "repo": 0, "9": [0, 245, 254, 255, 260, 510, 513, 567, 1856, 1858, 1861, 1877, 1879, 1880, 1881, 1882, 1886, 1887, 1892, 1895, 1896, 1897, 1904, 1907, 1908], "extract_flag": 0, "flag": [0, 7, 1850, 1852, 1853, 1866, 1875, 1876, 1879, 1880, 1884], "bench": 0, "dbuild_bench": 0, "ON": [0, 7, 1853], "linux": [0, 586, 1850, 1854], "pandoc": 0, "sphinx": [0, 7, 1856], "6": [0, 245, 254, 260, 268, 459, 484, 485, 509, 519, 547, 564, 587, 1664, 1856, 1861, 1875, 1876, 1879, 1880, 1881, 1882, 1883, 1886, 1887, 1890, 1894, 1896, 1897, 1899, 1900, 1904, 1905, 1907, 1908], "specifi": [0, 8, 12, 508, 551, 570, 573, 583, 1664, 1684, 1685, 1838, 1852, 1853, 1857, 1873, 1876, 1877, 1879, 1880, 1883, 1887], "lapack_root": 0, "13": [0, 19, 95, 301, 1877, 1879, 1886, 1887, 1891, 1896], "timeout": [0, 1838], "limit": [0, 4, 407, 428, 430, 431, 463, 516, 520, 524, 1856, 1873, 1875, 1877, 1879, 1900, 1901, 1903, 1905, 1906, 1908], "hour": [0, 416, 424, 570], "cc": [0, 1851, 1852, 1854], "cxx": [0, 1851, 1852, 1853, 1854, 1857, 1858, 1867], "atomdiagr": [0, 589, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642], "atomdiagcomplex": [0, 589], "small": [0, 7, 519, 555, 1832, 1850, 1851, 1858, 1859, 1873, 1875, 1877, 1879, 1880, 1883, 1885, 1887, 1890, 1895], "some": [0, 7, 205, 298, 363, 412, 490, 491, 494, 497, 499, 500, 502, 503, 506, 508, 509, 513, 515, 523, 524, 543, 551, 556, 568, 570, 571, 572, 581, 586, 1023, 1850, 1851, 1852, 1854, 1855, 1859, 1867, 1870, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1885, 1887, 1889, 1890, 1895, 1901, 1906, 1907], "a7a4cd": 0, "cplus_include_path": [0, 1850, 1852, 1857], "library_path": [0, 1852, 1854], "still": [0, 4, 503, 506, 511, 1838, 1851, 1854, 1873, 1877, 1882, 1891, 1895, 1896], "runtim": [0, 507, 572, 585, 1850], "clang13": 0, "n_tau": [0, 185, 313, 500, 519, 637, 992, 1134, 1877, 1880, 1883, 1885, 1887, 1889, 1894, 1895], "matsubara_domain": [0, 527], "field": [0, 9, 496, 556, 560, 565, 570, 572, 580, 655, 1859, 1873, 1877, 1879, 1880, 1883, 1887, 1892, 1897, 1900, 1903, 1905, 1908], "separ": [0, 365, 447, 551, 553, 564, 1213, 1844, 1852, 1855, 1873, 1877, 1883, 1887, 1901, 1902, 1903, 1906, 1907, 1908], "restructur": 0, "compon": [0, 500, 531, 532, 553, 573, 576, 1210, 1664, 1689, 1694, 1716, 1719, 1849, 1873, 1877, 1879, 1883, 1887, 1890, 1895, 1902, 1903, 1907, 1908], "peopl": 0, "who": 0, "contribut": [0, 5, 8, 1849, 1851, 1873, 1877, 1879, 1901, 1903, 1906, 1908], "sophi": 0, "beck": 0, "maxim": [0, 553, 1213, 1883, 1887], "charleboi": 0, "jonathan": 0, "karp": 0, "marku": 0, "richter": 0, "andrea": 0, "weh": 0, "rok": 0, "\u017eitko": 0, "respositori": [0, 1858], "wget": [0, 1858], "http": [0, 4, 8, 520, 935, 1848, 1850, 1858, 1868, 1871, 1881, 1899, 1904, 1909], "githubusercont": [0, 1858], "com": [0, 4, 8, 1848, 1850, 1858, 1868, 1871, 1873, 1877, 1909], "porting_tool": [0, 1858], "port_to_triqs3": [0, 1858], "chmod": [0, 1858], "x": [0, 19, 95, 109, 110, 111, 112, 125, 140, 142, 143, 149, 150, 151, 194, 197, 204, 210, 213, 233, 234, 235, 236, 237, 245, 260, 272, 280, 284, 303, 373, 385, 445, 450, 451, 454, 461, 498, 499, 502, 506, 508, 509, 510, 511, 512, 513, 515, 518, 520, 522, 531, 536, 537, 542, 547, 553, 556, 557, 562, 564, 570, 572, 573, 576, 579, 580, 583, 587, 659, 660, 669, 700, 708, 739, 747, 778, 786, 817, 825, 856, 914, 933, 947, 978, 980, 981, 1026, 1027, 1185, 1187, 1201, 1203, 1205, 1209, 1211, 1214, 1215, 1218, 1600, 1617, 1628, 1637, 1653, 1663, 1689, 1692, 1694, 1716, 1719, 1768, 1772, 1778, 1790, 1797, 1798, 1805, 1807, 1810, 1811, 1813, 1819, 1821, 1824, 1825, 1827, 1849, 1850, 1856, 1858, 1861, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1886, 1887, 1892, 1895, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1907, 1908], "befor": [0, 8, 197, 200, 225, 251, 410, 434, 451, 515, 527, 528, 551, 570, 572, 586, 1832, 1833, 1837, 1838, 1850, 1851, 1854, 1855, 1859, 1861, 1873, 1874, 1877, 1878, 1883, 1885, 1887, 1888, 1889, 1890, 1895], "commit": [0, 8, 581, 1858], "them": [0, 8, 251, 268, 390, 413, 496, 502, 503, 506, 508, 515, 520, 523, 543, 551, 555, 561, 564, 572, 578, 581, 1756, 1758, 1765, 1849, 1858, 1859, 1873, 1874, 1877, 1878, 1881, 1882, 1883, 1887, 1889, 1890, 1894, 1895], "If": [0, 3, 4, 7, 8, 115, 117, 122, 203, 292, 351, 407, 408, 410, 428, 431, 449, 490, 493, 497, 498, 499, 502, 508, 509, 514, 517, 527, 528, 531, 533, 535, 543, 544, 545, 546, 547, 548, 550, 551, 553, 559, 560, 564, 568, 569, 570, 572, 573, 575, 576, 577, 653, 660, 664, 700, 703, 739, 742, 778, 781, 817, 820, 856, 875, 906, 935, 942, 978, 1023, 1211, 1626, 1666, 1684, 1700, 1701, 1702, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1768, 1780, 1832, 1849, 1850, 1852, 1854, 1855, 1856, 1857, 1858, 1859, 1862, 1864, 1866, 1867, 1873, 1874, 1877, 1878, 1883, 1884, 1887, 1888, 1889, 1891, 1894, 1895, 1896, 1903, 1908], "problem": [0, 4, 6, 9, 153, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 491, 498, 500, 515, 551, 567, 571, 583, 935, 1849, 1854, 1859, 1869, 1873, 1875, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1901, 1903, 1906, 1908], "feel": [0, 7, 1873, 1874, 1877, 1878], "contact": [0, 4, 6, 496, 1850], "open": [0, 6, 499, 543, 551, 580, 581, 1848, 1850, 1851, 1854, 1858, 1860, 1873, 1875, 1877, 1879, 1884, 1890, 1895], "discuss": [0, 4, 5, 517, 1849, 1873, 1877, 1888, 1890, 1894, 1895, 1903, 1908], "github": [0, 3, 4, 5, 7, 8, 1848, 1849, 1850, 1859, 1868, 1871, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1899, 1904, 1909], "wa": [0, 196, 449, 459, 461, 527, 585, 587, 1884, 1889, 1896, 1899, 1904], "possibl": [0, 3, 11, 292, 451, 490, 492, 493, 508, 509, 510, 513, 515, 541, 543, 564, 572, 875, 1856, 1886, 1887, 1899, 1900, 1902, 1904, 1905, 1907, 1910], "structur": [0, 4, 182, 183, 184, 185, 186, 329, 496, 498, 500, 507, 513, 515, 551, 560, 562, 570, 572, 575, 577, 863, 875, 880, 1611, 1699, 1723, 1849, 1865, 1867, 1873, 1877, 1880, 1883, 1885, 1886, 1887, 1889, 1890, 1895, 1900, 1905], "gfrefreq": [0, 542, 543, 548, 549, 550, 553, 1198, 1216, 1217, 1219, 1887, 1895], "d": [0, 3, 245, 457, 459, 490, 497, 498, 513, 514, 515, 543, 550, 551, 557, 558, 559, 560, 563, 569, 573, 645, 655, 676, 715, 754, 793, 832, 916, 917, 929, 930, 932, 954, 1598, 1683, 1685, 1689, 1690, 1692, 1694, 1699, 1860, 1861, 1872, 1873, 1877, 1879, 1881, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1895, 1897, 1900, 1903, 1905, 1908], "omega": [0, 182, 186, 254, 300, 302, 314, 315, 515, 520, 531, 541, 543, 549, 550, 552, 553, 560, 561, 579, 580, 655, 700, 739, 778, 817, 856, 907, 910, 916, 929, 978, 1211, 1754, 1760, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1888, 1890, 1892, 1894, 1895, 1897, 1899, 1903, 1904, 1906, 1908], "v": [0, 8, 9, 19, 140, 141, 142, 143, 144, 245, 256, 303, 304, 317, 329, 330, 455, 456, 482, 483, 484, 485, 491, 502, 507, 509, 510, 514, 519, 523, 553, 556, 563, 580, 1057, 1211, 1215, 1860, 1866, 1881, 1883, 1887, 1889, 1901, 1906], "featur": [0, 4, 5, 354, 491, 494, 503, 570, 586, 1850, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1886, 1890, 1895, 1899, 1900, 1904, 1905, 1910], "due": [0, 496, 551, 586, 1873, 1877, 1879, 1883, 1887, 1889], "lack": [0, 449, 1873, 1877], "complex": [0, 9, 153, 154, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 351, 356, 365, 378, 483, 484, 497, 499, 500, 503, 509, 510, 517, 520, 521, 527, 528, 529, 533, 535, 539, 544, 546, 547, 548, 553, 564, 570, 572, 573, 575, 576, 579, 580, 581, 591, 1030, 1211, 1685, 1692, 1696, 1711, 1714, 1715, 1716, 1873, 1877, 1881, 1883, 1887, 1889, 1901, 1902, 1903, 1906, 1907, 1908], "integ": [0, 11, 48, 49, 53, 114, 325, 329, 390, 445, 450, 492, 541, 543, 559, 569, 570, 573, 576, 582, 589, 591, 612, 653, 694, 733, 772, 811, 850, 972, 1054, 1067, 1626, 1627, 1647, 1664, 1683, 1684, 1685, 1686, 1687, 1688, 1690, 1692, 1695, 1714, 1715, 1716, 1778, 1835, 1840, 1858, 1885, 1886], "target_shap": [0, 259, 271, 283, 541, 544, 545, 546, 547, 548, 664, 670, 676, 703, 709, 715, 742, 748, 754, 781, 787, 793, 820, 826, 832, 942, 948, 954, 1873, 1877, 1879, 1880, 1883, 1884, 1886, 1887, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "The": [0, 3, 9, 50, 54, 91, 94, 116, 117, 120, 121, 125, 142, 149, 151, 155, 156, 157, 158, 159, 164, 165, 166, 169, 171, 173, 181, 182, 183, 184, 185, 186, 187, 188, 189, 197, 223, 235, 236, 251, 254, 255, 259, 260, 268, 271, 280, 283, 292, 293, 300, 302, 314, 315, 316, 317, 325, 330, 332, 333, 354, 355, 360, 365, 368, 370, 379, 381, 408, 410, 414, 415, 416, 417, 418, 419, 420, 422, 423, 424, 427, 428, 429, 430, 431, 435, 442, 443, 449, 451, 453, 455, 456, 461, 463, 473, 480, 481, 488, 491, 492, 494, 495, 498, 499, 502, 503, 506, 507, 508, 510, 511, 512, 515, 516, 517, 518, 519, 521, 522, 523, 524, 525, 527, 528, 529, 530, 532, 533, 535, 537, 539, 540, 541, 542, 544, 545, 546, 547, 548, 549, 550, 552, 553, 554, 556, 557, 558, 561, 562, 565, 569, 571, 572, 573, 575, 576, 577, 579, 580, 581, 582, 583, 585, 587, 599, 600, 603, 606, 620, 621, 624, 627, 634, 635, 636, 637, 638, 639, 645, 646, 649, 650, 659, 664, 679, 683, 684, 695, 696, 699, 700, 703, 718, 722, 723, 734, 735, 738, 739, 742, 757, 761, 762, 773, 774, 777, 778, 781, 796, 800, 801, 812, 813, 816, 817, 820, 835, 839, 840, 851, 852, 855, 856, 875, 910, 916, 918, 921, 924, 935, 942, 957, 961, 962, 973, 974, 977, 978, 1030, 1044, 1054, 1056, 1067, 1072, 1079, 1092, 1105, 1154, 1166, 1201, 1210, 1211, 1216, 1217, 1219, 1598, 1606, 1611, 1616, 1622, 1626, 1634, 1635, 1640, 1641, 1646, 1650, 1651, 1656, 1657, 1664, 1684, 1685, 1689, 1691, 1692, 1694, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1740, 1742, 1754, 1760, 1763, 1833, 1835, 1839, 1841, 1849, 1850, 1851, 1852, 1853, 1854, 1856, 1858, 1859, 1860, 1861, 1862, 1863, 1865, 1870, 1871, 1874, 1876, 1878, 1879, 1880, 1882, 1883, 1884, 1885, 1886, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1909, 1910], "aforement": 0, "deprect": 0, "goe": [0, 556, 570, 1873, 1874, 1877, 1878, 1895], "along": [0, 494, 515, 563, 581, 1666, 1867, 1873, 1877, 1899, 1900, 1901, 1904, 1905, 1906], "often": [0, 197, 461, 583, 586, 1883, 1886, 1887, 1910], "kind": [0, 3, 245, 520, 532, 581, 1876, 1880], "up": [0, 224, 300, 301, 334, 338, 407, 428, 430, 431, 435, 449, 450, 451, 457, 476, 499, 500, 516, 551, 555, 560, 567, 575, 576, 577, 860, 875, 1191, 1679, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1806, 1849, 1850, 1855, 1859, 1869, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1885, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1908], "dn": [0, 500], "word": [0, 500, 515, 564, 1883, 1887, 1900, 1905, 1910], "ask": [0, 5, 7, 1849, 1850, 1858], "provid": [0, 3, 4, 6, 7, 154, 159, 171, 316, 351, 357, 365, 428, 449, 496, 498, 499, 502, 506, 518, 519, 520, 523, 524, 532, 537, 541, 552, 555, 556, 560, 565, 570, 571, 572, 573, 575, 576, 577, 579, 581, 583, 585, 875, 935, 1666, 1685, 1696, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1849, 1850, 1851, 1854, 1858, 1859, 1870, 1873, 1877, 1881, 1883, 1885, 1886, 1887, 1889, 1890, 1892, 1893, 1895, 1897, 1900, 1905], "each": [0, 26, 164, 254, 329, 354, 355, 359, 407, 413, 417, 428, 429, 430, 431, 450, 463, 482, 483, 484, 485, 492, 498, 499, 513, 517, 521, 525, 537, 551, 553, 555, 559, 561, 564, 572, 573, 574, 580, 581, 587, 599, 620, 697, 736, 775, 814, 853, 875, 975, 1012, 1054, 1067, 1071, 1187, 1215, 1627, 1635, 1647, 1651, 1659, 1666, 1693, 1742, 1762, 1763, 1769, 1780, 1850, 1852, 1858, 1873, 1877, 1879, 1883, 1886, 1887, 1889, 1890, 1892, 1895, 1897, 1899, 1900, 1904, 1905], "correspondingli": [0, 541], "gf_struct_t": [0, 182, 183, 184, 185, 186, 245, 296, 329, 500, 635, 636, 637, 638, 1698, 1699, 1703], "ha": [0, 3, 73, 127, 135, 139, 196, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 302, 351, 407, 428, 430, 431, 449, 451, 457, 459, 491, 492, 496, 497, 498, 499, 502, 506, 507, 513, 514, 515, 516, 517, 520, 532, 536, 537, 543, 551, 553, 560, 567, 569, 570, 580, 1213, 1646, 1784, 1803, 1835, 1838, 1839, 1840, 1848, 1849, 1851, 1854, 1857, 1858, 1866, 1870, 1873, 1875, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "std": [0, 11, 12, 13, 19, 27, 32, 34, 40, 43, 46, 48, 49, 58, 63, 70, 71, 73, 84, 95, 97, 115, 126, 140, 141, 142, 143, 144, 159, 161, 163, 164, 170, 172, 174, 175, 186, 188, 189, 197, 204, 205, 206, 207, 208, 209, 216, 223, 236, 239, 241, 244, 245, 247, 248, 249, 254, 255, 263, 264, 265, 267, 270, 275, 276, 277, 279, 282, 287, 288, 289, 291, 295, 296, 304, 318, 329, 332, 333, 335, 342, 344, 345, 347, 351, 352, 356, 363, 365, 378, 393, 397, 398, 400, 407, 408, 409, 410, 413, 414, 425, 426, 428, 429, 430, 431, 434, 439, 440, 443, 444, 445, 447, 450, 454, 455, 456, 457, 459, 467, 468, 469, 470, 477, 480, 481, 482, 483, 484, 485, 490, 491, 499, 502, 506, 507, 508, 509, 510, 513, 517, 523, 527, 528, 531, 541, 555, 564, 567, 569, 570, 572, 574, 585, 587, 635, 636, 637, 638, 672, 673, 674, 675, 711, 712, 713, 714, 750, 751, 752, 753, 789, 790, 791, 792, 828, 829, 830, 831, 950, 951, 952, 953, 998, 999, 1000, 1001, 1057, 1128, 1619, 1620, 1860, 1861, 1862, 1863, 1867], "vector": [0, 11, 19, 34, 95, 140, 141, 142, 143, 144, 153, 159, 161, 163, 164, 172, 174, 175, 177, 188, 189, 195, 197, 204, 205, 206, 207, 223, 236, 239, 241, 244, 245, 254, 255, 304, 328, 329, 330, 331, 352, 365, 366, 367, 393, 432, 454, 455, 456, 466, 480, 481, 482, 483, 484, 485, 499, 502, 507, 509, 512, 513, 514, 523, 555, 556, 557, 562, 563, 567, 572, 576, 589, 591, 597, 608, 610, 612, 618, 629, 631, 1054, 1057, 1065, 1077, 1598, 1605, 1610, 1611, 1613, 1614, 1615, 1626, 1627, 1631, 1633, 1647, 1648, 1649, 1663, 1664, 1666, 1667, 1668, 1716, 1719, 1861, 1877, 1881, 1885, 1886, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "variant": [0, 328, 331, 541, 572], "long": [0, 12, 53, 55, 56, 57, 60, 61, 114, 117, 155, 157, 178, 193, 194, 197, 204, 206, 210, 211, 219, 220, 223, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 270, 282, 295, 312, 313, 325, 328, 331, 378, 465, 474, 475, 490, 493, 496, 499, 500, 517, 537, 570, 572, 585, 1057, 1855, 1873, 1877, 1891, 1896, 1903, 1908], "effect": [0, 480, 481, 513, 517, 544, 545, 546, 547, 548, 551, 664, 703, 742, 781, 820, 1873, 1875, 1877, 1879, 1883, 1887, 1889, 1892, 1897, 1900, 1905], "particular": [0, 3, 164, 251, 268, 496, 499, 511, 513, 551, 574, 583, 587, 1850, 1852, 1855, 1858, 1864, 1892, 1897, 1903, 1908], "cthyb": [0, 4, 935, 1850, 1859, 1869, 1871, 1873, 1876, 1877, 1880, 1890, 1895], "tprf": [0, 1886, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907], "dft_tool": [0, 4, 1873, 1877], "gf_mesh": [0, 537, 683, 722, 761, 800, 839, 961], "were": [0, 4, 452, 1873, 1877, 1884, 1899, 1904], "further": [0, 449, 451, 459, 537, 543, 1854, 1857, 1873, 1877, 1888, 1892, 1894, 1897], "regroup": [0, 512], "cyclic_lattic": 0, "cartesian_product": 0, "prod": [0, 518, 521, 531, 536, 537, 542, 1862, 1873, 1877, 1879, 1880], "kept": [0, 435, 451, 564, 1902, 1907], "mean": [0, 448, 449, 480, 481, 483, 484, 485, 499, 511, 521, 524, 527, 528, 529, 533, 535, 537, 541, 543, 544, 545, 546, 547, 548, 551, 567, 568, 570, 572, 581, 583, 1832, 1859, 1867, 1873, 1877, 1879, 1880, 1881, 1883, 1884, 1886, 1887, 1892, 1897, 1903, 1908], "auto": [0, 16, 19, 23, 24, 29, 31, 32, 34, 38, 40, 44, 48, 74, 83, 86, 93, 94, 95, 98, 104, 106, 109, 110, 113, 125, 130, 149, 151, 159, 253, 254, 255, 256, 257, 258, 260, 262, 269, 274, 281, 286, 294, 299, 306, 307, 308, 309, 310, 312, 313, 316, 320, 321, 322, 323, 354, 416, 424, 448, 449, 450, 452, 454, 455, 456, 480, 481, 482, 483, 484, 485, 487, 490, 493, 496, 500, 502, 506, 507, 508, 509, 516, 517, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 537, 541, 555, 572, 587, 589, 591, 612, 697, 736, 775, 814, 853, 975, 1012, 1858, 1860, 1862, 1863, 1885, 1889, 1896, 1897, 1907], "m": [0, 3, 198, 214, 245, 259, 260, 268, 271, 272, 280, 283, 284, 292, 293, 299, 309, 310, 320, 408, 410, 427, 433, 434, 451, 512, 513, 514, 517, 519, 520, 525, 563, 567, 570, 573, 1041, 1042, 1079, 1092, 1105, 1178, 1684, 1855, 1862, 1877, 1882, 1883, 1887, 1899, 1900, 1901, 1904, 1905, 1906], "brillouin": [0, 517, 558, 1054, 1606, 1634, 1646, 1650, 1666, 1760, 1886, 1888, 1892, 1894, 1897, 1899, 1900, 1901, 1904, 1905, 1906], "zone": [0, 517, 558, 1054, 1606, 1634, 1646, 1650, 1666, 1760, 1886, 1888, 1892, 1894, 1897, 1899, 1900, 1901, 1904, 1905, 1906], "tag": [0, 27, 245, 251, 260, 268, 292, 298, 317, 496, 497, 498, 507, 527, 528, 529, 531, 533, 535, 1027], "associ": [0, 302, 315, 370, 371, 376, 377, 381, 382, 388, 389, 498, 537, 562, 1079, 1092, 1105, 1606, 1611, 1646, 1868, 1870, 1871, 1883, 1886, 1887, 1892, 1897, 1909], "those": [0, 3, 498, 499, 575, 1708, 1849, 1855, 1881, 1886, 1889], "occurr": 0, "latter": [0, 1851, 1873, 1875, 1877, 1879], "appli": [0, 11, 26, 83, 86, 354, 355, 360, 370, 381, 480, 481, 499, 556, 572, 1201, 1732, 1864, 1901, 1906], "short": [0, 541, 552, 570, 1859, 1868, 1891, 1896], "repres": [0, 11, 36, 325, 493, 517, 523, 572, 574, 580, 1145, 1840, 1841, 1862, 1877, 1883, 1887, 1892, 1897], "help": [0, 3, 8, 564, 578, 581, 1664, 1854, 1858, 1859, 1902, 1907], "t": [0, 3, 34, 109, 110, 111, 112, 125, 126, 129, 131, 132, 140, 141, 142, 143, 144, 145, 146, 148, 149, 150, 151, 299, 303, 304, 309, 310, 311, 317, 320, 334, 338, 445, 449, 451, 454, 455, 456, 461, 480, 481, 487, 492, 497, 499, 510, 514, 515, 518, 519, 520, 524, 536, 542, 543, 550, 555, 558, 560, 561, 562, 563, 568, 570, 573, 574, 576, 580, 587, 697, 700, 736, 739, 775, 778, 814, 817, 853, 856, 975, 978, 1012, 1611, 1685, 1692, 1696, 1714, 1715, 1716, 1762, 1763, 1849, 1869, 1872, 1873, 1877, 1882, 1883, 1886, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "abov": [0, 3, 497, 510, 541, 543, 551, 563, 568, 570, 578, 1726, 1873, 1877, 1879, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "doe": [0, 9, 171, 224, 232, 233, 234, 235, 236, 237, 238, 239, 410, 434, 494, 496, 506, 507, 508, 512, 513, 517, 519, 543, 551, 568, 570, 581, 1092, 1105, 1858, 1859, 1873, 1875, 1876, 1877, 1878, 1879, 1880, 1883, 1886, 1887, 1888, 1890, 1891, 1894, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "ani": [0, 3, 7, 8, 232, 233, 234, 235, 236, 237, 238, 239, 260, 297, 301, 312, 313, 319, 368, 379, 449, 496, 497, 498, 499, 502, 506, 507, 508, 510, 511, 514, 517, 524, 551, 565, 570, 572, 575, 580, 581, 585, 991, 992, 1731, 1841, 1849, 1850, 1855, 1862, 1867, 1873, 1877, 1879, 1883, 1884, 1886, 1887, 1900, 1905], "avail": [0, 4, 447, 451, 519, 543, 569, 572, 582, 935, 1737, 1835, 1850, 1851, 1852, 1854, 1859, 1899, 1904], "op": [0, 110, 111, 142, 143, 149, 150, 153, 171, 188, 189, 190, 317, 352, 354, 359, 473, 499, 513, 572, 633, 640, 641, 642, 1678, 1679, 1805, 1819, 1879], "write": [0, 5, 9, 49, 128, 209, 248, 264, 276, 288, 333, 345, 398, 463, 468, 494, 496, 497, 498, 499, 507, 513, 514, 517, 521, 532, 539, 551, 553, 556, 564, 565, 567, 572, 1219, 1859, 1860, 1865, 1868, 1873, 1877, 1879, 1883, 1886, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "linalg": [0, 1860, 1886], "part": [0, 3, 7, 297, 302, 318, 319, 390, 409, 449, 451, 457, 458, 459, 460, 461, 499, 506, 513, 517, 543, 558, 564, 570, 572, 575, 673, 675, 677, 685, 712, 714, 716, 724, 751, 753, 755, 763, 790, 792, 794, 802, 829, 831, 833, 841, 865, 870, 883, 890, 935, 951, 953, 955, 963, 999, 1001, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1646, 1673, 1675, 1700, 1701, 1702, 1708, 1712, 1848, 1854, 1859, 1860, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1882, 1883, 1887, 1890, 1892, 1895, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "modul": [0, 2, 492, 493, 494, 498, 543, 551, 558, 572, 573, 574, 575, 581, 582, 588, 643, 657, 661, 662, 1179, 1592, 1669, 1681, 1724, 1733, 1738, 1752, 1766, 1780, 1837, 1850, 1852, 1858, 1864, 1873, 1877, 1884, 1885, 1886], "simul": [0, 449, 496, 568, 583, 1889, 1896], "serv": [0, 449, 463, 1742], "dual": [0, 449], "purpos": [0, 5, 449, 499, 512, 517, 525, 531, 556, 564, 572, 587, 1834, 1839, 1883, 1887, 1891, 1896, 1899, 1900, 1904, 1905], "perform": [0, 197, 205, 253, 268, 292, 314, 315, 317, 358, 363, 442, 449, 476, 481, 508, 509, 514, 519, 553, 570, 583, 986, 1211, 1849, 1850, 1861, 1883, 1885, 1887, 1888, 1891, 1894, 1896, 1900, 1905], "logarithm": [0, 451, 459, 460, 461, 1883, 1887, 1903, 1908], "bin": [0, 448, 450, 451, 453, 454, 455, 456, 457, 458, 459, 460, 461, 463, 465, 471, 476, 479, 480, 481, 487, 553, 559, 583, 1213, 1659, 1740, 1742, 1747, 1852, 1854, 1855, 1889, 1892, 1897], "which": [0, 6, 131, 203, 205, 228, 245, 351, 390, 432, 449, 450, 451, 454, 473, 480, 481, 487, 490, 492, 494, 497, 498, 499, 500, 506, 507, 511, 513, 517, 519, 523, 539, 541, 543, 551, 556, 561, 565, 567, 568, 569, 570, 572, 573, 574, 575, 576, 580, 581, 583, 587, 650, 660, 700, 739, 778, 817, 856, 875, 942, 978, 1685, 1708, 1709, 1710, 1711, 1714, 1715, 1716, 1762, 1778, 1780, 1850, 1855, 1856, 1857, 1858, 1860, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1886, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1910], "estim": [0, 449, 480, 481, 487, 583, 1873, 1877, 1895, 1903, 1908], "correl": [0, 9, 448, 449, 487, 1849, 1859, 1873, 1877, 1889, 1890, 1895, 1896, 1900, 1903, 1905, 1908], "b": [0, 4, 170, 245, 304, 445, 457, 459, 465, 470, 471, 490, 493, 498, 511, 514, 523, 540, 572, 573, 579, 580, 676, 715, 754, 793, 832, 954, 1181, 1182, 1204, 1591, 1685, 1696, 1746, 1747, 1769, 1773, 1774, 1775, 1776, 1800, 1849, 1860, 1867, 1881, 1882, 1884, 1892, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "compress": [0, 449, 450, 451, 453, 496], "process": [0, 8, 9, 12, 112, 113, 115, 125, 139, 140, 141, 142, 143, 144, 149, 150, 151, 499, 1850, 1856, 1879, 1881], "design": [0, 449, 513, 570, 1859, 1901, 1906], "flexibl": [0, 449, 491, 1849], "either": [0, 218, 365, 449, 453, 496, 500, 520, 539, 553, 554, 568, 569, 570, 572, 573, 582, 1211, 1215, 1664, 1685, 1838, 1849, 1851, 1853, 1859, 1873, 1877, 1881, 1891, 1896, 1910], "log": [0, 448, 459, 487, 547, 581, 1848, 1850, 1873, 1877], "lin": 0, "turn": [0, 4, 33, 449, 451, 457, 459, 461, 1853, 1883, 1887, 1902, 1907], "off": [0, 451, 457, 459, 461, 515, 550, 575, 576, 577, 916, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1853, 1873, 1877, 1882, 1907], "differ": [0, 11, 27, 205, 365, 449, 455, 456, 484, 485, 491, 492, 514, 551, 554, 564, 567, 568, 570, 572, 587, 1849, 1851, 1852, 1859, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1887, 1888, 1889, 1891, 1894, 1895, 1896, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907], "case": [0, 171, 254, 255, 261, 273, 285, 351, 491, 499, 506, 508, 510, 517, 519, 522, 524, 531, 543, 563, 570, 1850, 1855, 1858, 1865, 1869, 1873, 1877, 1880, 1883, 1886, 1887, 1888, 1889, 1891, 1892, 1894, 1896, 1897, 1901, 1902, 1906, 1907], "purposefulli": [0, 449], "fulli": [0, 315, 573, 575, 1684, 1711, 1873, 1877], "automat": [0, 9, 197, 357, 358, 363, 410, 434, 451, 453, 491, 492, 500, 503, 509, 516, 524, 527, 532, 541, 543, 551, 555, 564, 569, 570, 581, 585, 587, 1626, 1850, 1852, 1867, 1873, 1877, 1889], "user": [0, 5, 6, 7, 205, 351, 449, 461, 498, 500, 507, 513, 523, 541, 555, 564, 572, 573, 583, 1664, 1685, 1849, 1850, 1851, 1852, 1854, 1858, 1870, 1881, 1888, 1889, 1894, 1895], "choic": [0, 568, 1664, 1854, 1873, 1877, 1881], "calcul": [0, 11, 64, 237, 369, 380, 448, 449, 480, 481, 482, 483, 484, 485, 509, 520, 527, 541, 543, 544, 546, 552, 555, 559, 564, 570, 572, 573, 581, 583, 648, 652, 670, 697, 709, 736, 748, 775, 787, 814, 826, 853, 935, 948, 975, 1012, 1666, 1684, 1685, 1686, 1687, 1695, 1780, 1849, 1850, 1859, 1861, 1871, 1874, 1875, 1878, 1879, 1883, 1884, 1885, 1886, 1887, 1889, 1891, 1892, 1896, 1897, 1901, 1902, 1906, 1907, 1909], "standard": [0, 9, 191, 448, 449, 455, 456, 480, 481, 483, 484, 487, 496, 499, 508, 512, 517, 522, 543, 551, 572, 575, 578, 580, 581, 587, 1841, 1850, 1851, 1856, 1870, 1873, 1877, 1889, 1899, 1904], "singl": [0, 257, 451, 453, 500, 532, 544, 545, 546, 547, 548, 553, 556, 570, 670, 676, 698, 699, 709, 715, 737, 738, 748, 754, 776, 777, 787, 793, 815, 816, 826, 832, 854, 855, 948, 954, 976, 977, 1217, 1219, 1859, 1869, 1871, 1873, 1877, 1880, 1882, 1883, 1887, 1889, 1891, 1892, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "thread": [0, 456, 484, 485, 1832, 1833, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1852, 1889, 1896], "well": [0, 3, 378, 449, 463, 492, 496, 499, 507, 556, 563, 564, 568, 570, 572, 583, 1726, 1742, 1850, 1870, 1873, 1877, 1888, 1894, 1899, 1904], "jackknif": [0, 448, 481, 583], "throughout": 0, "care": [0, 515, 564, 565, 568, 570, 1858, 1873, 1877, 1895, 1903, 1908], "been": [0, 3, 4, 127, 135, 196, 407, 428, 430, 431, 457, 459, 461, 506, 514, 516, 532, 570, 572, 580, 1803, 1835, 1838, 1840, 1848, 1849, 1857, 1858, 1866, 1890, 1891, 1895, 1896, 1900, 1905], "taken": [0, 497, 498, 515, 520, 570, 1841, 1858], "stabl": [0, 512, 1850, 1851, 1854], "especi": [0, 7, 1851, 1867], "comput": [0, 4, 128, 188, 189, 190, 252, 357, 407, 428, 430, 431, 433, 449, 476, 487, 499, 500, 506, 507, 512, 517, 520, 527, 531, 543, 544, 546, 550, 551, 553, 558, 560, 561, 564, 567, 568, 570, 573, 576, 581, 583, 585, 640, 641, 642, 655, 670, 679, 698, 709, 718, 737, 748, 757, 776, 787, 796, 815, 826, 835, 854, 948, 957, 976, 996, 1210, 1596, 1626, 1629, 1685, 1714, 1715, 1716, 1754, 1760, 1762, 1780, 1784, 1849, 1850, 1854, 1855, 1856, 1859, 1870, 1872, 1873, 1877, 1883, 1887, 1890, 1895, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "varianc": 0, "mostli": [0, 1873, 1877, 1879, 1880], "two": [0, 11, 13, 14, 42, 53, 61, 72, 84, 96, 230, 231, 236, 256, 348, 349, 360, 369, 370, 380, 381, 401, 402, 449, 450, 455, 456, 476, 491, 494, 496, 498, 508, 511, 512, 513, 514, 519, 520, 528, 543, 547, 551, 553, 555, 556, 563, 567, 570, 572, 573, 587, 660, 859, 860, 1027, 1212, 1666, 1684, 1689, 1691, 1694, 1800, 1849, 1850, 1858, 1859, 1866, 1871, 1873, 1876, 1877, 1879, 1880, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1904, 1905, 1906, 1910], "welford": 0, "binned_seri": 0, "ts_observ": 0, "observ": [0, 9, 188, 189, 480, 481, 500, 555, 571, 572, 583, 1873, 1875, 1876, 1877, 1879, 1880, 1892, 1895, 1897, 1899, 1904], "unchang": [0, 531, 1023, 1861, 1888, 1894], "found": [0, 3, 4, 268, 362, 497, 502, 506, 510, 572, 1778, 1849, 1860, 1872, 1873, 1874, 1877, 1878, 1879, 1889, 1890, 1894, 1895, 1896], "io": [0, 4, 267, 279, 291, 1850, 1873, 1876, 1877, 1880, 1881, 1899, 1904], "content": [0, 498, 516, 1864, 1877, 1880, 1884, 1889, 1910], "To": [0, 3, 205, 496, 498, 504, 514, 520, 543, 551, 560, 581, 1660, 1803, 1849, 1850, 1852, 1854, 1855, 1858, 1870, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1883, 1884, 1886, 1887, 1889, 1890, 1895, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "fit": [0, 9, 253, 254, 255, 520, 527, 552, 553, 578, 580, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 935, 951, 953, 986, 999, 1001, 1213, 1873, 1874, 1877, 1878], "given": [0, 4, 11, 35, 49, 83, 101, 115, 132, 159, 160, 176, 188, 189, 205, 256, 257, 316, 334, 335, 336, 338, 340, 341, 342, 343, 346, 356, 357, 359, 360, 362, 363, 396, 399, 442, 449, 463, 465, 480, 481, 490, 493, 498, 500, 508, 510, 512, 517, 534, 541, 543, 551, 553, 555, 557, 559, 560, 561, 563, 572, 573, 574, 575, 576, 577, 579, 587, 598, 619, 640, 641, 648, 652, 659, 896, 984, 1027, 1079, 1092, 1105, 1191, 1211, 1212, 1215, 1216, 1598, 1606, 1628, 1629, 1632, 1634, 1635, 1650, 1651, 1679, 1684, 1685, 1699, 1712, 1714, 1715, 1716, 1722, 1723, 1731, 1732, 1742, 1762, 1768, 1780, 1784, 1815, 1829, 1839, 1851, 1858, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1896, 1897, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907, 1910], "hybrid": [0, 500, 553, 575, 1210, 1211, 1215, 1859, 1873, 1877, 1880, 1883, 1887, 1889], "imaginari": [0, 185, 186, 253, 302, 306, 307, 308, 313, 315, 500, 518, 521, 523, 527, 535, 536, 540, 542, 543, 547, 549, 553, 554, 572, 575, 637, 677, 697, 716, 736, 755, 775, 794, 814, 833, 853, 935, 955, 975, 986, 987, 988, 989, 992, 1012, 1092, 1105, 1134, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1211, 1213, 1216, 1219, 1675, 1712, 1848, 1849, 1873, 1876, 1877, 1879, 1880, 1886, 1890, 1892, 1894, 1895, 1897, 1900, 1904, 1905], "discretize_bath": [0, 553], "delta_in": [0, 553, 1211], "site": [0, 553, 563, 567, 1211, 1629, 1630, 1850, 1874, 1878, 1885, 1886, 1887, 1889, 1892, 1897, 1903, 1908], "nb": [0, 197, 224, 230, 231, 260, 262, 274, 286, 410, 434, 510, 517, 524, 553, 1211, 1215, 1780], "energi": [0, 163, 168, 186, 500, 553, 559, 563, 567, 605, 626, 935, 1079, 1092, 1105, 1211, 1212, 1215, 1659, 1848, 1874, 1875, 1876, 1878, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1903, 1908], "scipi": [0, 553, 578, 579, 935, 1211, 1854, 1856, 1857, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1902, 1903, 1907, 1908], "bfg": [0, 553, 1211], "basin": 0, "nelder": [0, 553, 1211], "mead": [0, 553, 1211], "inform": [0, 499, 519, 521, 525, 527, 528, 541, 570, 581, 1848, 1849, 1850, 1855, 1866, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1887, 1888, 1889, 1894, 1900, 1905], "make_delta": [0, 553], "axi": [0, 540, 545, 546, 554, 580, 1201, 1873, 1876, 1877, 1880, 1882, 1883, 1887, 1888, 1889, 1890, 1894, 1895, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "arbitrari": [0, 517, 520, 541, 572, 1079, 1092, 1105], "gradient": [0, 4], "guess": [0, 553, 579, 659, 660, 1211, 1768, 1769, 1778, 1869, 1891, 1892, 1895, 1896, 1897], "complet": [0, 3, 9, 193, 194, 210, 211, 212, 213, 219, 220, 221, 222, 224, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 502, 503, 508, 510, 513, 523, 524, 529, 542, 549, 570, 585, 1849, 1850, 1854, 1860, 1861, 1869, 1883, 1887, 1895, 1902, 1907], "first": [0, 6, 7, 8, 11, 12, 13, 40, 46, 49, 51, 53, 63, 224, 256, 326, 327, 369, 380, 457, 476, 482, 483, 484, 485, 494, 498, 499, 511, 517, 519, 520, 527, 528, 531, 532, 539, 541, 551, 555, 558, 559, 560, 564, 568, 569, 570, 572, 580, 586, 653, 860, 867, 935, 1778, 1815, 1829, 1848, 1849, 1850, 1855, 1859, 1860, 1866, 1869, 1871, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1890, 1891, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "lim_": [0, 553, 1211, 1895], "inf": 0, "delta": [0, 480, 481, 514, 520, 553, 559, 583, 645, 1211, 1215, 1778, 1889, 1892, 1897, 1899, 1904], "ci": 0, "setup": [0, 1855, 1873, 1877], "adresssanit": 0, "undefinedbehaviorsanit": 0, "catch": [0, 585], "e": [0, 3, 4, 5, 40, 46, 86, 155, 156, 157, 158, 168, 216, 252, 254, 255, 260, 262, 274, 286, 300, 301, 302, 443, 451, 490, 491, 492, 493, 496, 497, 498, 499, 502, 503, 507, 509, 511, 512, 515, 517, 518, 519, 520, 521, 523, 524, 528, 537, 541, 543, 544, 545, 546, 547, 548, 550, 551, 552, 553, 560, 563, 570, 572, 575, 576, 577, 578, 579, 580, 581, 585, 605, 626, 659, 681, 682, 720, 721, 759, 760, 798, 799, 837, 838, 860, 862, 875, 879, 929, 935, 959, 960, 1002, 1003, 1201, 1217, 1626, 1666, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1732, 1850, 1851, 1852, 1854, 1855, 1856, 1858, 1860, 1864, 1866, 1867, 1873, 1877, 1879, 1880, 1882, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1896, 1899, 1900, 1901, 1904, 1905, 1906, 1910], "bound": [0, 201, 202, 226, 227, 509, 650, 1768, 1769, 1778], "undefin": [0, 292, 490, 493], "behavior": [0, 515, 1849, 1852, 1858, 1875, 1879, 1895, 1903, 1908], "danger": [0, 587], "earli": 0, "navig": [0, 1873, 1877], "done": [0, 196, 200, 225, 407, 410, 420, 428, 431, 434, 450, 500, 513, 551, 568, 570, 579, 659, 1858, 1873, 1876, 1877, 1880, 1882, 1883, 1887, 1890, 1895, 1903, 1908], "vertic": [0, 1902, 1907], "sidebar": 0, "left": [0, 224, 465, 480, 481, 487, 502, 553, 567, 676, 715, 754, 793, 832, 954, 1211, 1833, 1873, 1877, 1883, 1887, 1890, 1895, 1899, 1902, 1903, 1904, 1907, 1908], "addition": [0, 480, 481, 570, 1883, 1887], "broken": [0, 1901, 1903, 1906, 1908], "could": [0, 7, 506, 519, 551, 568, 1875, 1877, 1879, 1880, 1889, 1890, 1895, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "deploi": 0, "pleas": [0, 4, 6, 8, 496, 537, 1848, 1849, 1850, 1855, 1857, 1858, 1903, 1908], "tight": [0, 558, 560, 563, 1611, 1626, 1646, 1662, 1663, 1664, 1873, 1877, 1879, 1880, 1899, 1904], "tight_bind": [0, 557, 558, 560, 562, 563, 1872, 1899, 1903, 1904, 1908], "dispers": [0, 562, 1877, 1879, 1886, 1892, 1897, 1899, 1900, 1904, 1905], "spectrum": [0, 186, 1874, 1878], "point": [0, 185, 186, 300, 302, 449, 451, 452, 464, 474, 475, 476, 480, 481, 517, 520, 521, 524, 526, 527, 528, 531, 532, 533, 535, 539, 540, 541, 542, 549, 550, 559, 560, 561, 563, 570, 572, 580, 585, 586, 649, 650, 660, 906, 935, 1038, 1054, 1066, 1067, 1078, 1079, 1090, 1103, 1105, 1116, 1133, 1134, 1144, 1163, 1166, 1177, 1185, 1187, 1203, 1204, 1626, 1628, 1629, 1659, 1664, 1666, 1744, 1748, 1749, 1754, 1757, 1758, 1760, 1762, 1763, 1764, 1765, 1780, 1784, 1838, 1858, 1869, 1870, 1873, 1875, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1889, 1892, 1897, 1899, 1900, 1901, 1904, 1905, 1906], "even": [0, 4, 457, 459, 496, 499, 508, 516, 559, 570, 581, 653, 1079, 1092, 1105, 1835, 1850, 1851, 1879, 1880, 1881, 1883, 1887, 1892, 1895, 1897, 1901, 1903, 1906, 1908], "equival": [0, 327, 328, 348, 349, 473, 491, 496, 498, 520, 524, 543, 551, 563, 587, 1862, 1886], "confus": 0, "addit": [0, 132, 374, 386, 451, 463, 496, 499, 511, 532, 537, 541, 556, 572, 585, 1850, 1852, 1853, 1856, 1873, 1877, 1882, 1890, 1895, 1900, 1905], "tb_from_wannier90": [0, 1873, 1875, 1876, 1877, 1879, 1880], "creat": [0, 4, 8, 11, 131, 204, 206, 214, 217, 256, 257, 316, 345, 351, 398, 451, 459, 480, 481, 492, 497, 498, 499, 513, 519, 543, 545, 546, 550, 553, 554, 572, 575, 576, 587, 589, 990, 1023, 1178, 1215, 1216, 1666, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1833, 1835, 1849, 1850, 1854, 1855, 1858, 1862, 1867, 1879, 1880, 1882, 1883, 1886, 1887, 1890, 1892, 1895, 1897], "output": [0, 7, 19, 95, 254, 255, 450, 454, 457, 459, 463, 477, 482, 483, 484, 485, 520, 570, 572, 583, 1632, 1663, 1664, 1850, 1873, 1874, 1877, 1878, 1889, 1890, 1895, 1897], "pythtb": [0, 1662], "tb_model": [0, 1662], "modern": [0, 1850, 1851, 1856], "icx": [0, 1856], "2021": [0, 4], "major": [0, 6, 1850, 1910], "One": [0, 496, 507, 551, 572, 942, 1666, 1852, 1860, 1866, 1873, 1876, 1877, 1880, 1883, 1887, 1888, 1892, 1894, 1895, 1897, 1901, 1906], "delta_tau": 0, "delta_iw": [0, 553, 1210], "802": 0, "filter_op": 0, "quadratic_term": 0, "quartic_term": 0, "block_matrix_from_op": 0, "op_from_block_matrix": 0, "local": [0, 4, 8, 543, 551, 560, 571, 575, 586, 1663, 1849, 1852, 1853, 1855, 1856, 1859, 1864, 1869, 1873, 1874, 1876, 1877, 1878, 1880, 1889, 1891, 1892, 1895, 1896, 1897, 1901, 1902, 1903, 1906, 1907, 1908], "mpi_boost": 0, "kroneck": 0, "ref": [0, 451, 453, 482, 483, 484, 485, 507, 517, 537, 587, 1864, 1873, 1877, 1883, 1887, 1892, 1897, 1899, 1904], "pade": [0, 547, 1888, 1890, 1894, 1895], "n_point": [0, 543, 544, 545, 546, 547, 548, 550, 551, 554, 561, 579, 580, 664, 693, 703, 732, 742, 771, 781, 810, 820, 849, 971, 1011, 1182, 1183, 1760, 1762, 1763, 1848, 1900, 1905], "table_import": 0, "init": [0, 498, 523, 579, 659, 660, 1803, 1860, 1886, 1887], "cxxflag": [0, 1852], "ldflag": [0, 1852], "wrapper": [0, 493, 543, 572], "833": 0, "incorrect": [0, 3, 1862], "eigenbasi": [0, 153, 177, 189], "get_op_mat": [0, 154], "825": 0, "quantum_number_eigenvalu": [0, 152, 189, 501], "particl": [0, 500, 544, 546, 572, 576, 589, 591, 612, 670, 709, 748, 787, 826, 948, 1030, 1717, 1859, 1883, 1885, 1886, 1887, 1899, 1900, 1901, 1904, 1905, 1906], "subspac": [0, 9, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 168, 170, 172, 173, 174, 176, 178, 179, 180, 182, 183, 184, 185, 186, 190, 351, 352, 357, 358, 359, 360, 362, 363, 364, 365, 390, 392, 393, 395, 396, 397, 398, 399, 401, 402, 403, 404, 500, 555, 589, 591, 593, 594, 595, 596, 597, 598, 599, 602, 603, 604, 605, 607, 608, 611, 612, 614, 615, 616, 617, 618, 619, 620, 623, 624, 625, 626, 628, 629, 632, 1873, 1877, 1885, 1889, 1896], "fock_stat": 0, "unitari": [0, 175, 176, 563, 609, 630], "without": [0, 3, 292, 297, 319, 487, 498, 513, 517, 527, 528, 543, 561, 581, 1756, 1758, 1765, 1803, 1858, 1873, 1877, 1880, 1884], "autopartit": [0, 9, 555, 1889, 1896], "term": [0, 500, 520, 572, 1626, 1663, 1667, 1700, 1701, 1702, 1881, 1888, 1889, 1891, 1894, 1896, 1899, 1903, 1904, 1908], "convent": [0, 7, 9, 488, 573, 575, 576, 577, 580, 583, 669, 708, 747, 786, 825, 947, 1689, 1692, 1694, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1852, 1865, 1888, 1894], "eigenel": 0, "get_subspace_dim": [0, 154], "broadcast": [0, 140, 317, 463, 472, 498, 499, 543, 551], "eigensystem_t": [0, 161], "smaller": [0, 1883, 1887, 1890, 1895, 1903, 1908], "12": [0, 19, 95, 245, 254, 300, 302, 483, 484, 510, 580, 681, 682, 720, 721, 759, 760, 798, 799, 837, 838, 959, 960, 1002, 1003, 1856, 1857, 1867, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1884, 1886, 1887, 1891, 1892, 1894, 1896, 1897, 1908], "target_compile_featur": 0, "cxx_std_20": 0, "guarante": [0, 551, 572, 1850], "triqsvar": [0, 1850], "switch": [0, 1858, 1874, 1876, 1878, 1880], "build_dep": 0, "ifnotfound": 0, "accordingli": [0, 531, 1910], "start": [0, 5, 8, 45, 63, 410, 434, 451, 453, 509, 515, 541, 544, 545, 551, 559, 560, 563, 567, 568, 653, 1642, 1778, 1833, 1835, 1837, 1838, 1840, 1850, 1858, 1864, 1867, 1870, 1873, 1875, 1877, 1879, 1880, 1881, 1882, 1883, 1887, 1888, 1889, 1891, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "usr": [0, 586, 1850, 1852, 1857, 1866], "dpythonsupport": 0, "config": [0, 564, 567, 569, 570, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "findmathjax": 0, "findsphinx": 0, "live": [0, 8, 507], "head": 0, "linktim": 0, "ipo": 0, "cmakelist": [0, 1858, 1864, 1867], "txt": [0, 1858, 1867], "treat": [0, 6, 500, 573, 1683, 1685, 1688, 1690, 1692, 1780, 1852, 1883, 1887, 1903, 1908], "subdirectori": [0, 1868, 1871, 1895, 1896, 1909], "build_document": 0, "AND": 0, "NOT": [0, 223, 232, 233, 234, 235, 236, 237, 238, 239, 493, 498, 508, 510, 513, 517, 543], "pythonsupport": 0, "inspect": [0, 581, 1873, 1877, 1890, 1895], "interface_compile_featur": 0, "find_xxx": 0, "hint": [0, 1873, 1877, 1883, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "priorit": 0, "system": [0, 3, 154, 181, 496, 500, 555, 567, 568, 572, 1849, 1850, 1852, 1854, 1855, 1856, 1858, 1859, 1873, 1876, 1877, 1880, 1883, 1885, 1887, 1889, 1890, 1895, 1899, 1900, 1901, 1904, 1905, 1906, 1909], "py_convert": [0, 493, 1864], "vice": [0, 572], "versa": [0, 572], "rtd": 0, "autosummari": 0, "796": 0, "old": [0, 296, 500, 514, 524, 568, 573, 897, 1685, 1696, 1855, 1861, 1879], "mpi4pi": [0, 1805, 1806, 1854, 1855, 1856, 1857], "pip3": 0, "first_mesh": 0, "ttf": 0, "woff2": 0, "eot": 0, "h5_read_gf_struct": [0, 240], "multivar": [0, 531], "829": 0, "helper": [0, 9, 64, 537, 571, 700, 739, 778, 817, 856, 978, 1883, 1887, 1899, 1900, 1904, 1905], "block_siz": [0, 242], "block_gf_view": [0, 245, 254, 255, 299, 305, 309, 310, 317, 320, 523], "scalar": [0, 369, 373, 380, 385, 450, 457, 459, 461, 496, 497, 514, 517, 521, 527, 528, 529, 531, 532, 533, 535, 551, 556, 572, 573, 575, 679, 718, 757, 796, 835, 957, 1683, 1685, 1686, 1687, 1690, 1695, 1710, 1862, 1883, 1884, 1886, 1887, 1901, 1906], "nondiagon": 0, "make_real_in_tau": [0, 240], "is_gf_real_in_tau": [0, 240, 527], "matrix_valu": [0, 521, 525, 527, 528, 529, 532, 533, 534, 535, 546, 671, 672, 673, 674, 675, 686, 687, 688, 710, 711, 712, 713, 714, 725, 726, 727, 749, 750, 751, 752, 753, 764, 765, 766, 788, 789, 790, 791, 792, 803, 804, 805, 827, 828, 829, 830, 831, 842, 843, 844, 949, 950, 951, 952, 953, 964, 965, 966, 996, 997, 998, 999, 1000, 1001, 1004, 1005, 1006, 1862], "comparison": [0, 337, 478, 490, 547, 1873, 1877, 1903, 1908], "transpos": [0, 545, 547, 548, 553], "self": [0, 4, 493, 497, 544, 545, 547, 548, 551, 553, 559, 579, 580, 649, 659, 667, 668, 669, 689, 690, 691, 692, 706, 707, 708, 728, 729, 730, 731, 745, 746, 747, 767, 768, 769, 770, 784, 785, 786, 806, 807, 808, 809, 823, 824, 825, 845, 846, 847, 848, 862, 864, 871, 879, 881, 894, 935, 945, 946, 947, 967, 968, 969, 970, 1007, 1008, 1009, 1010, 1019, 1058, 1069, 1082, 1095, 1108, 1121, 1137, 1148, 1156, 1168, 1185, 1186, 1187, 1189, 1190, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1212, 1740, 1848, 1859, 1869, 1874, 1875, 1878, 1879, 1881, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908, 1909], "conj_r": 0, "conj": [0, 300, 302, 314, 315, 483, 484, 520, 553, 572, 697, 736, 775, 814, 853, 975, 1012, 1210], "mako": [0, 1854, 1856, 1857], "bugfix": 0, "getitem": 0, "setitem": 0, "rank1": 0, "set_operator_structur": [0, 577], "gf_base": 0, "cover": [0, 568, 1883, 1887, 1892, 1897], "slice": [0, 11, 113, 499, 531, 542, 545, 548, 549, 700, 739, 778, 817, 856, 978, 1731, 1815, 1829], "fix_gf_struct_typ": 0, "bionic": 0, "cento": 0, "11": [0, 19, 95, 245, 255, 508, 510, 517, 1849, 1856, 1875, 1877, 1879, 1880, 1881, 1883, 1885, 1886, 1887, 1896, 1903, 1904, 1905, 1906, 1907, 1908], "trigger": 0, "increas": [0, 449, 450, 453, 1859, 1873, 1874, 1875, 1877, 1878, 1879, 1889, 1896, 1903, 1908], "j4": 0, "nbsphinx": [0, 1879, 1889, 1899, 1900, 1902, 1904, 1905, 1907], "apt": [0, 1850, 1855, 1857], "libomp": 0, "ignor": [0, 451, 453, 498, 1700, 1701, 1702, 1780], "dockerignor": 0, "zlib": 0, "libhdf5": [0, 1857], "msan_opt": 0, "libcxx": 0, "libcxxabi": 0, "libev": 0, "libgfortran5": [0, 1857], "libgfortran4": 0, "21": [0, 1877, 1883, 1887, 1896, 1899], "resolv": [0, 1850, 1854], "comp": [0, 3], "alloc_dealloc_mismatch": 0, "libc": 0, "libunwind": 0, "dev": [0, 1850, 1857, 1866], "ambigu": [0, 510], "focal": 0, "omp_num_thread": [0, 1852], "explicit": [0, 498, 527, 528, 1850], "node": [0, 413, 481, 498, 499, 570, 585, 1780, 1790, 1798, 1809, 1813, 1815, 1823, 1829, 1850, 1883, 1887], "alloc": [0, 328, 331], "ansicolor": 0, "orthogon": [0, 561, 1754, 1760, 1849], "clean": [0, 510, 512, 564, 572, 1855, 1858], "h_k": 0, "eigenvalu": [0, 162, 188, 189, 602, 623, 1879, 1895], "tighbind": 0, "displ_vec": [0, 562], "overlap_mat_vec": [0, 562], "h5read": 0, "writeabl": 0, "printabl": 0, "parser": [0, 1667, 1668], "get_kmesh": [0, 1873, 1877, 1879, 1880, 1899, 1903, 1904, 1908], "get_rmesh": 0, "inconsist": 0, "tbsuperlattic": 0, "__repr__funct": 0, "lattice_util": [0, 1899, 1900, 1903, 1904, 1905, 1906, 1908], "eigvalsh": 0, "periodization_matrix": 0, "properti": [0, 300, 302, 314, 490, 520, 521, 536, 541, 543, 551, 553, 561, 669, 677, 678, 683, 684, 685, 694, 695, 696, 708, 716, 717, 722, 723, 724, 733, 734, 735, 747, 755, 756, 761, 762, 763, 772, 773, 774, 786, 794, 795, 800, 801, 802, 811, 812, 813, 825, 833, 834, 839, 840, 841, 850, 851, 852, 861, 865, 866, 867, 868, 869, 870, 876, 877, 883, 884, 888, 889, 890, 947, 955, 956, 961, 962, 963, 972, 973, 974, 1032, 1033, 1034, 1035, 1039, 1040, 1046, 1049, 1210, 1624, 1636, 1638, 1639, 1640, 1641, 1643, 1652, 1654, 1655, 1656, 1657, 1658, 1755, 1761, 1833, 1835, 1839, 1840, 1842, 1850, 1873, 1874, 1877, 1878, 1899, 1900, 1904, 1905], "extens": [0, 4, 6, 365, 1832, 1849, 1856, 1859, 1881, 1892, 1897], "cross": [0, 1874, 1878], "ndim": [0, 557], "get": [0, 6, 8, 40, 46, 55, 56, 60, 61, 115, 161, 162, 170, 171, 174, 200, 201, 202, 203, 448, 449, 451, 462, 463, 469, 470, 471, 474, 475, 479, 486, 514, 531, 567, 570, 573, 582, 587, 602, 604, 623, 625, 700, 739, 778, 817, 856, 978, 1688, 1692, 1737, 1747, 1748, 1749, 1750, 1751, 1849, 1850, 1855, 1857, 1873, 1877, 1879, 1883, 1887, 1888, 1890, 1892, 1894, 1895, 1897, 1900, 1905], "meshbrzon": [0, 1634, 1650, 1886], "meshcyclat": [0, 1635, 1651], "sumk": [0, 561], "monitor": [0, 1873, 1877], "select": [0, 8, 433, 441, 551, 555, 569, 574, 864, 871, 881, 894, 1854, 1860, 1882, 1892, 1897, 1900, 1905], "logic": [0, 524, 1859], "flow": 0, "stream": [0, 463, 477, 521, 572], "clear": [0, 8, 192, 411, 463, 513, 1851], "begin": [0, 20, 22, 35, 37, 43, 49, 64, 66, 77, 79, 81, 90, 92, 101, 103, 325, 490, 514, 517, 520, 568, 570, 572, 573, 942, 1686, 1687, 1695, 1873, 1877, 1883, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "clear_statist": [0, 432], "move_set": [0, 405], "recurs": [0, 496, 497, 1027, 1888, 1894], "del": [0, 498, 1848], "abbrevi": 0, "b_zone": 0, "get_interpol": 0, "rewrit": [0, 490, 493, 502, 519], "one": [0, 4, 6, 100, 139, 159, 205, 245, 300, 314, 325, 351, 355, 356, 357, 363, 365, 378, 407, 413, 428, 430, 431, 435, 449, 457, 459, 461, 480, 481, 489, 492, 497, 498, 499, 506, 507, 508, 510, 511, 512, 513, 514, 515, 517, 520, 524, 527, 543, 553, 554, 555, 559, 567, 568, 569, 570, 572, 575, 576, 577, 579, 580, 581, 583, 585, 587, 589, 591, 612, 653, 860, 935, 1211, 1217, 1659, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1778, 1784, 1851, 1854, 1859, 1867, 1869, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "matsubara_mesh_opt": 0, "size_of_compon": 0, "foreach": [0, 11, 357, 366, 378, 517, 555, 556], "root": [0, 112, 125, 139, 140, 141, 142, 143, 144, 149, 150, 151, 317, 472, 473, 497, 498, 499, 1807, 1821, 1901, 1902, 1906, 1907], "has_env": [0, 115, 120, 121, 122], "built": [0, 499, 532, 1849, 1855, 1856, 1886], "minivec": 0, "make_regular": [0, 528], "range_al": 0, "all_t": [0, 531], "occur": [0, 413, 449, 461, 481, 496, 585, 1838, 1901, 1903, 1906, 1908], "_ph": 0, "placeholder_prim": 0, "detail": [0, 4, 49, 298, 357, 496, 498, 502, 517, 519, 565, 567, 568, 570, 581, 583, 1858, 1870, 1873, 1877, 1883, 1887, 1903, 1908], "matric": [0, 175, 223, 514, 541, 562, 573, 609, 630, 673, 676, 712, 715, 751, 754, 790, 793, 829, 832, 951, 954, 999, 1611, 1618, 1627, 1647, 1691, 1861, 1881, 1886], "underli": [0, 562, 1054, 1067, 1608, 1611, 1616, 1622, 1763, 1860, 1873, 1877, 1886], "squar": [0, 170, 253, 254, 255, 512, 520, 527, 541, 552, 553, 558, 560, 563, 576, 579, 659, 986, 1217, 1714, 1718, 1859, 1873, 1877, 1883, 1886, 1887, 1892, 1897, 1900, 1901, 1902, 1905, 1906, 1907, 1909], "collect": [0, 499, 564, 567, 570, 1856, 1889, 1893, 1896], "abc": [0, 494], "result_of": [0, 517], "invoke_result": 0, "crucial": [0, 580, 1873, 1877], "certain": [0, 1850, 1852, 1867, 1883, 1887, 1889], "fundamental_operator_set": [0, 9, 159, 165, 324, 341, 342, 352, 500, 555, 572, 574], "would": [0, 4, 507, 513, 524, 551, 570, 572, 1838, 1850, 1855, 1883, 1885, 1887, 1895], "eigenenergi": 0, "mechan": [0, 499, 565, 568, 570], "detect": [0, 572, 1858], "model": [0, 4, 245, 251, 260, 268, 357, 365, 408, 410, 511, 513, 517, 522, 527, 528, 533, 535, 555, 560, 563, 564, 567, 570, 1662, 1664, 1849, 1859, 1869, 1873, 1874, 1875, 1877, 1878, 1879, 1888, 1894, 1899, 1902, 1904, 1907], "affect": [0, 506, 1780], "By": [0, 498, 499, 520, 570, 1832, 1873, 1877, 1883, 1887, 1889, 1890, 1891, 1895, 1896, 1908], "check_issue819": 0, "export": [0, 490, 1850, 1851, 1852, 1854, 1857], "pull": [0, 6, 7, 1850], "request": [0, 3, 5, 7, 135, 338, 372, 384, 700, 739, 778, 817, 856, 978, 1850], "820": 0, "block_matrix": 0, "tabl": [0, 230, 231, 521, 1907], "variant_extens": 0, "pragma": [0, 567], "onc": [0, 449, 499, 509, 531, 567, 568, 570, 1844, 1850, 1858, 1876, 1880, 1890, 1895, 1900, 1905], "toler": [0, 300, 301, 302, 553, 575, 681, 682, 720, 721, 759, 760, 798, 799, 837, 838, 959, 960, 1002, 1003, 1211, 1679, 1712], "test_delta_infti": 0, "method": [0, 1, 9, 435, 441, 489, 490, 503, 507, 512, 524, 547, 553, 561, 565, 567, 569, 570, 571, 579, 580, 583, 585, 591, 612, 645, 649, 655, 659, 664, 700, 703, 739, 742, 778, 781, 817, 820, 856, 859, 874, 899, 901, 904, 906, 908, 910, 916, 918, 921, 924, 927, 929, 931, 935, 937, 939, 940, 942, 978, 980, 1014, 1020, 1030, 1037, 1041, 1044, 1054, 1067, 1079, 1092, 1105, 1118, 1134, 1145, 1154, 1166, 1185, 1187, 1190, 1211, 1213, 1221, 1223, 1225, 1227, 1229, 1231, 1233, 1235, 1237, 1239, 1241, 1243, 1245, 1247, 1249, 1251, 1253, 1255, 1257, 1259, 1261, 1263, 1265, 1267, 1269, 1271, 1273, 1275, 1277, 1279, 1281, 1283, 1285, 1287, 1289, 1291, 1293, 1295, 1297, 1299, 1301, 1303, 1305, 1307, 1309, 1311, 1313, 1315, 1317, 1319, 1321, 1323, 1325, 1327, 1329, 1331, 1333, 1335, 1337, 1339, 1341, 1343, 1345, 1347, 1349, 1351, 1353, 1355, 1357, 1359, 1361, 1363, 1365, 1367, 1369, 1371, 1373, 1375, 1377, 1379, 1381, 1383, 1385, 1387, 1389, 1391, 1393, 1395, 1397, 1399, 1401, 1403, 1405, 1407, 1409, 1411, 1413, 1415, 1417, 1419, 1421, 1423, 1425, 1427, 1429, 1431, 1433, 1435, 1437, 1439, 1441, 1443, 1445, 1447, 1449, 1451, 1453, 1455, 1457, 1459, 1461, 1463, 1465, 1467, 1469, 1471, 1473, 1475, 1477, 1479, 1481, 1483, 1485, 1487, 1489, 1491, 1493, 1495, 1497, 1499, 1501, 1503, 1505, 1507, 1509, 1511, 1513, 1515, 1517, 1519, 1521, 1523, 1525, 1527, 1529, 1531, 1533, 1535, 1537, 1539, 1541, 1543, 1545, 1547, 1549, 1551, 1553, 1555, 1557, 1559, 1561, 1563, 1565, 1567, 1569, 1571, 1573, 1575, 1577, 1579, 1581, 1583, 1585, 1587, 1589, 1594, 1598, 1606, 1611, 1622, 1626, 1646, 1671, 1734, 1742, 1754, 1760, 1762, 1763, 1780, 1784, 1791, 1831, 1832, 1834, 1836, 1837, 1838, 1841, 1842, 1843, 1844, 1873, 1877, 1882, 1883, 1886, 1887, 1889, 1895, 1899, 1903, 1904, 1908], "better": [0, 524, 1873, 1875, 1877, 1879, 1890, 1895], "fall": [0, 463, 1742, 1889, 1903, 1908], "back": [0, 492, 499, 568, 570, 573, 1685, 1873, 1877, 1883, 1887, 1890, 1895, 1900, 1905], "solut": [0, 4, 496, 498, 500, 570, 581, 586, 1854, 1855, 1859, 1871, 1873, 1875, 1877, 1879, 1887, 1889, 1890, 1891, 1902, 1906, 1907], "793": 0, "proxi": [0, 572], "link": [0, 511, 521, 570, 1866, 1867, 1870, 1881], "triqs_pi": 0, "nopython": 0, "remain": [0, 508, 514, 568, 1867, 1892, 1897, 1903, 1908], "ri": 0, "derweh": 0, "A": [0, 3, 4, 5, 11, 19, 32, 47, 63, 71, 83, 95, 128, 163, 170, 172, 254, 255, 256, 260, 299, 309, 310, 320, 340, 428, 430, 431, 432, 451, 457, 459, 480, 481, 492, 497, 499, 500, 502, 503, 504, 507, 509, 511, 514, 517, 523, 532, 541, 542, 545, 546, 547, 549, 550, 553, 554, 556, 559, 562, 563, 567, 568, 569, 571, 572, 575, 578, 581, 582, 597, 608, 618, 629, 649, 659, 677, 685, 694, 716, 724, 733, 755, 763, 772, 794, 802, 811, 833, 841, 850, 865, 866, 867, 868, 870, 883, 884, 890, 916, 929, 955, 963, 972, 1046, 1050, 1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1181, 1182, 1204, 1217, 1611, 1614, 1618, 1726, 1768, 1784, 1815, 1829, 1833, 1838, 1839, 1848, 1849, 1850, 1858, 1860, 1865, 1868, 1869, 1870, 1871, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1883, 1884, 1886, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "guid": [0, 5, 7, 8, 240, 1849, 1850], "how": [0, 5, 6, 9, 496, 507, 512, 519, 547, 560, 570, 582, 1850, 1851, 1854, 1858, 1871, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "here": [0, 3, 4, 7, 8, 490, 492, 499, 505, 507, 511, 514, 515, 517, 519, 539, 543, 551, 554, 558, 560, 564, 567, 568, 569, 570, 572, 574, 580, 581, 582, 587, 935, 1850, 1854, 1858, 1859, 1860, 1861, 1862, 1866, 1867, 1869, 1870, 1872, 1873, 1874, 1875, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "malt": 0, "schueler": 0, "hiroshi": 0, "shinaoka": 0, "manuel": 0, "zingl": [0, 3], "made": [0, 197, 451, 507, 513, 543, 551, 568, 570, 587, 1626, 1838, 1873, 1877, 1889], "necessari": [0, 4, 491, 492, 539, 1850, 1855, 1857, 1873, 1876, 1877, 1880], "decid": [0, 527, 568, 570, 1838, 1856, 1858, 1881, 1883, 1887, 1890, 1895], "These": [0, 4, 499, 537, 551, 570, 580, 1858, 1859, 1877, 1883, 1887, 1910], "autom": [0, 1850], "interdepend": 0, "per": [0, 553, 563, 572, 1211, 1667, 1844, 1873, 1874, 1876, 1877, 1878, 1879, 1880], "togeth": [0, 4, 11, 205, 363, 451, 1850, 1854, 1879, 1883, 1884, 1887], "unless": [0, 461, 506, 520, 570, 583], "thei": [0, 325, 401, 402, 499, 507, 516, 520, 527, 543, 550, 551, 570, 571, 572, 580, 585, 1849, 1850, 1852, 1854, 1855, 1881, 1882, 1883, 1884, 1885, 1887, 1892, 1893, 1895, 1897, 1903, 1908], "alter": [0, 543], "dbuild_dep": 0, "try": [0, 230, 231, 435, 513, 551, 570, 585, 1850, 1861, 1874, 1876, 1878, 1880, 1889, 1890, 1895], "never": [0, 498, 507, 1881], "step": [0, 7, 49, 53, 494, 500, 513, 553, 568, 583, 1211, 1806, 1849, 1851, 1854, 1855, 1873, 1877, 1888, 1889, 1894, 1903, 1908], "glad": 0, "earlier": [0, 543, 570, 1854, 1857, 1890, 1895], "inversefouri": 0, "set_from_inverse_fouri": 0, "make_gf_from_inverse_fouri": [0, 240], "xxx": [0, 519, 525, 1876], "n1": [0, 669, 708, 747, 786, 825, 861, 876, 947], "n2": [0, 669, 708, 747, 786, 825, 861, 876, 947], "indicesl": [0, 544, 545, 546, 547, 548], "indicesr": [0, 544, 545, 546, 547, 548], "get_gf_data_shap": 0, "get_target_shap": 0, "syntax": [0, 502, 510, 511, 524, 543, 1853, 1883, 1887], "split": [0, 115, 500, 555, 1883, 1887, 1889], "libpython": 0, "libtriq": 0, "seper": 0, "libtriqs_pi": 0, "boost_seri": 0, "complex_liter": 0, "operatori": 0, "operator_j": 0, "conflict": [0, 508, 1850, 1854], "stacktrac": 0, "mac": [0, 1850, 1851, 1852], "o": [0, 3, 58, 477, 480, 481, 544, 546, 547, 548, 554, 558, 563, 572, 579, 580, 587, 1850, 1851, 1852, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1889, 1891, 1892, 1895, 1896, 1897, 1899, 1904, 1907, 1908], "osx10": 0, "15": [0, 245, 255, 553, 1211, 1856, 1877, 1882, 1883, 1887], "catalina": 0, "simultan": 0, "cpp2pyinfo": 0, "serializ": [0, 490, 517], "cplx": 0, "h5_read": [0, 192, 242, 259, 271, 283, 296, 340, 390, 406, 463, 539, 1863], "h5_write": [0, 192, 242, 259, 271, 283, 340, 390, 406, 463, 523, 532, 539, 1863], "fill_first_eigenstate_of_subspac": 0, "external_depend": 0, "extern": [0, 568, 570, 1859, 1900, 1905], "gtest": 0, "add_external_depend": 0, "dep": 0, "extract": [0, 9, 490, 493, 571, 572, 573, 575, 1689, 1693, 1694, 1697, 1700, 1701, 1702, 1708, 1873, 1874, 1877, 1878, 1879, 1888, 1890, 1894, 1895, 1897], "lib": [0, 525, 579, 586, 1854, 1864, 1866, 1867, 1885, 1886, 1887], "about": [0, 5, 8, 509, 519, 567, 568, 570, 1849, 1859, 1873, 1877, 1881, 1883, 1885, 1887, 1890, 1895, 1900, 1901, 1905, 1906], "comma": 0, "subscript": 0, "specif": [0, 6, 251, 521, 536, 565, 580, 1850, 1873, 1876, 1877, 1880, 1883, 1887, 1888, 1889, 1894], "build_interfac": 0, "permiss": 0, "og": 0, "fconcept": 0, "17": [0, 255, 1877, 1887, 1889, 1896, 1897, 1903, 1908], "suppress": [0, 1873, 1875, 1876, 1877, 1879, 1880], "project_sourc": 0, "binary_dir": 0, "cmake_xxx_dir": 0, "cmake_polici": 0, "find_depend": 0, "refactor": 0, "explicitli": [0, 572, 935, 1858], "cmp0057": 0, "cmp0074": 0, "add_python_test": 0, "mpi_numproc": 0, "python_execut": 0, "python_interpret": 0, "pybind": 0, "h5_use_110_api": 0, "consid": [0, 8, 203, 228, 232, 233, 234, 238, 360, 401, 402, 449, 497, 541, 551, 570, 583, 1850, 1854, 1872, 1883, 1886, 1887, 1890, 1891, 1892, 1895, 1896, 1897], "pkg_root": 0, "pkg_base": 0, "env": [0, 499, 567, 570, 1803], "nfft": 0, "fftw": [0, 1854, 1856], "mathjax_path": 0, "fallback": 0, "gmpxx": 0, "add_mpi_test": 0, "cpp2py_xxx": 0, "bare": [0, 561, 1762, 1901, 1902, 1903, 1906, 1907, 1908], "ones": [0, 500, 570, 573, 580, 1685, 1696, 1852, 1901, 1902, 1903, 1906, 1907, 1908], "preinstal": 0, "findgit": 0, "det": [0, 191, 198, 200, 203, 216, 224, 225, 228, 232, 233, 234, 235, 236, 237, 238, 239, 512, 513, 514, 1860], "porting_to_triqs3": 0, "md": 0, "nrgljubjana_interfac": 0, "impur": [0, 5, 500, 571, 935, 1849, 1850, 1859, 1869, 1871, 1875, 1876, 1879, 1880, 1883, 1885, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897], "hubbardi": [0, 4, 1876, 1880], "green_retim": 0, "mathjax": 0, "7": [0, 245, 260, 459, 484, 485, 500, 506, 508, 510, 547, 564, 585, 586, 1861, 1864, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1890, 1894, 1895, 1896, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "8": [0, 245, 255, 260, 272, 284, 449, 459, 461, 484, 485, 499, 502, 507, 510, 561, 580, 586, 587, 1760, 1763, 1850, 1856, 1867, 1873, 1877, 1879, 1880, 1881, 1882, 1885, 1886, 1887, 1888, 1890, 1892, 1894, 1895, 1896, 1897, 1904, 1905, 1907, 1908], "advic": 0, "anaconda": [0, 1854], "w": [0, 498, 502, 509, 517, 520, 523, 531, 532, 551, 553, 562, 568, 581, 1217, 1219, 1611, 1858, 1860, 1862, 1863, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1881, 1884, 1886, 1899, 1904, 1905], "h5f_acc_trunc": 0, "pip": [0, 7, 1851, 1854, 1855, 1858], "binari": [0, 131, 496, 507, 1855], "actual": [0, 506, 513, 543, 570, 575, 581, 583, 1899, 1904], "introduct": [0, 9, 551, 565, 570, 1859, 1865, 1868, 1873, 1877, 1883, 1887], "tailfit": 0, "rh": [0, 197, 251, 268, 292, 317, 438, 502, 513, 519, 522, 543, 551], "773": 0, "is_gf_hermitian": [0, 240], "block_nam": [0, 242, 245, 523, 553, 1215, 1217], "assert_block": 0, "_gfs_are_clos": 0, "improp": [0, 3], "pattern": [0, 490, 493, 1858], "spot": 0, "defint": 0, "gf_const_view": [0, 240, 252, 255, 260, 268, 284, 292, 311, 518, 519, 521, 523, 525, 534, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 986, 987, 988, 989, 991, 992, 999, 1001], "gl": [0, 544, 545, 546, 554, 671, 690, 691, 692, 710, 729, 730, 731, 749, 768, 769, 770, 788, 807, 808, 809, 827, 846, 847, 848, 949, 968, 969, 970, 997, 1008, 1009, 1010], "lshift": 0, "assign": [0, 9, 12, 88, 113, 137, 251, 268, 490, 503, 508, 516, 519, 521, 524, 532, 542, 549, 572, 1059, 1070, 1083, 1096, 1109, 1122, 1138, 1149, 1157, 1169, 1860, 1886], "gf_indic": 0, "deduct": [0, 11, 240, 499, 523], "statement": [0, 493, 502], "make_hermitian": [0, 240], "make_adjoint_mesh": [0, 519, 548], "1e": [0, 254, 255, 300, 302, 553, 935, 1211, 1772, 1773, 1774, 1775, 1776, 1801, 1873, 1877, 1883, 1886, 1887, 1903, 1907, 1908], "positive_freq_view": [0, 240], "764": 0, "str": [0, 544, 545, 546, 547, 548, 553, 557, 563, 582, 664, 703, 742, 781, 820, 875, 897, 935, 942, 1030, 1079, 1092, 1105, 1118, 1134, 1145, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1215, 1217, 1598, 1663, 1667, 1668, 1737, 1887], "nparrai": 0, "align": [0, 1889], "skeleton": 0, "lldb": 0, "debugg": 0, "build_id": 0, "cach": 0, "pythonpath": [0, 1852], "workaround": [0, 510], "buggi": 0, "mark": [0, 11, 1873, 1877, 1881], "upstream": 0, "vim": [0, 1858], "analysi": [0, 9, 449, 488, 494, 578, 1881, 1890, 1891, 1895, 1896, 1903, 1908], "many_body_operator_gener": [0, 352, 572, 574], "const": [0, 16, 18, 21, 22, 23, 24, 25, 26, 29, 31, 32, 34, 36, 37, 38, 40, 41, 44, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 65, 66, 67, 68, 69, 70, 74, 76, 78, 79, 80, 81, 82, 85, 86, 88, 89, 91, 92, 93, 94, 98, 100, 102, 103, 104, 106, 107, 119, 120, 121, 122, 129, 130, 137, 141, 142, 144, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 193, 194, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 209, 210, 211, 212, 213, 214, 215, 216, 217, 229, 232, 233, 234, 235, 237, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 255, 256, 257, 258, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 278, 279, 280, 281, 282, 284, 285, 286, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 299, 300, 301, 302, 303, 304, 306, 307, 308, 309, 310, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 348, 349, 350, 352, 353, 354, 356, 357, 358, 359, 361, 363, 364, 367, 368, 369, 370, 371, 372, 374, 375, 376, 377, 379, 380, 381, 382, 383, 384, 386, 387, 388, 389, 393, 394, 395, 396, 397, 398, 399, 401, 402, 404, 412, 414, 415, 416, 417, 418, 419, 420, 422, 423, 424, 425, 426, 427, 437, 438, 439, 440, 443, 444, 447, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 466, 467, 468, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 499, 500, 510, 511, 513, 517, 522, 523, 524, 525, 526, 534, 537, 555, 556, 564, 572, 585, 587, 1861, 1862], "debian": [0, 1854], "usabl": 0, "conjunct": [0, 1850], "put": [0, 195, 449, 452, 490, 506, 510, 511, 513, 519, 551, 570, 581, 1864, 1881, 1882, 1884, 1903, 1908], "Be": [0, 8, 510, 1858], "lpath_to_instal": 0, "filter": 0, "agsinst": 0, "supress": 0, "rvalu": [0, 261, 273, 285, 408, 410, 507], "lvalu": [0, 507], "usag": [0, 6, 9, 498, 519, 537, 563, 1854, 1873, 1877], "ox": 0, "newli": 0, "wai": [0, 3, 497, 509, 513, 516, 517, 520, 537, 551, 554, 560, 570, 1852, 1854, 1862, 1881, 1882, 1883, 1884, 1887, 1888, 1890, 1894, 1895, 1899, 1903, 1904, 1908], "place": [0, 373, 374, 375, 385, 386, 387, 570, 587, 680, 719, 758, 797, 836, 958, 1858, 1883, 1887], "ld": 0, "It": [0, 3, 4, 232, 233, 234, 235, 236, 237, 238, 239, 351, 368, 379, 407, 428, 430, 431, 449, 463, 490, 493, 496, 498, 500, 502, 506, 507, 508, 509, 510, 512, 514, 515, 516, 517, 520, 524, 543, 551, 558, 561, 568, 570, 572, 581, 586, 661, 662, 1664, 1742, 1754, 1760, 1778, 1838, 1839, 1844, 1851, 1854, 1856, 1858, 1859, 1866, 1870, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1903, 1908], "older": 0, "On": [0, 1778, 1855, 1903, 1908], "rather": [0, 552, 570, 1886, 1892, 1897, 1900, 1905], "than": [0, 480, 481, 507, 516, 517, 570, 1844, 1849, 1873, 1876, 1877, 1880, 1883, 1886, 1887, 1890, 1895, 1896, 1899, 1900, 1903, 1904, 1905, 1908], "homebrew": [0, 1854], "python2": [0, 586, 1864], "substanti": [0, 1883, 1887, 1895], "adapt": [0, 4, 442, 514, 559, 579, 587, 649, 1849, 1873, 1877], "enumer": [0, 11, 1837, 1873, 1877, 1903, 1907, 1908], "resid": 0, "folder": [0, 7, 1864, 1873, 1877, 1891, 1896, 1905], "commun": [0, 3, 4, 5, 109, 110, 111, 112, 113, 125, 134, 140, 141, 142, 143, 144, 149, 150, 151, 317, 357, 407, 412, 428, 430, 431, 437, 456, 472, 473, 481, 484, 485, 498, 499, 539, 564, 567, 570], "gather": [0, 141, 268, 292, 499, 551, 1889], "basic_typ": 0, "accord": [0, 520, 568, 577, 581, 1723, 1873, 1877, 1892, 1897], "within": [0, 160, 162, 325, 343, 392, 395, 396, 403, 449, 515, 557, 572, 1598, 1849, 1850, 1852, 1873, 1877, 1885, 1889, 1890, 1895], "prior": 0, "array_view": [0, 255, 672, 674, 711, 713, 750, 752, 789, 791, 828, 830, 950, 952, 996, 998, 1000, 1591, 1860], "aliv": [0, 1837, 1838], "itself": [0, 359, 432, 494, 496, 510, 521, 523, 525, 567, 579, 580, 581, 1850, 1854, 1870, 1873, 1877, 1900, 1903, 1905, 1908], "destroi": [0, 543, 1884, 1892, 1897], "achiev": [0, 581, 1858, 1883, 1887, 1889, 1892, 1897], "lead": [0, 498, 499, 508, 580, 581, 1877, 1892, 1897, 1903, 1908], "penalti": [0, 197, 508], "keep": [0, 8, 251, 257, 463, 507, 551, 581, 1742, 1856, 1888, 1894], "thu": [0, 520, 568, 1850, 1892, 1897], "let": [0, 497, 498, 515, 543, 551, 560, 568, 570, 579, 581, 1864, 1867, 1872, 1873, 1877, 1881, 1883, 1884, 1886, 1887, 1889, 1890, 1895, 1900, 1902, 1903, 1905, 1907, 1908], "illustr": [0, 494, 509, 510, 543, 563, 569, 580, 1854, 1882, 1891, 1896], "f": [0, 26, 83, 84, 85, 88, 89, 90, 131, 197, 199, 235, 236, 237, 332, 333, 343, 346, 391, 396, 399, 429, 480, 481, 498, 502, 503, 505, 506, 508, 510, 511, 512, 513, 514, 517, 531, 543, 550, 573, 579, 580, 583, 585, 587, 659, 660, 906, 1025, 1632, 1683, 1685, 1690, 1692, 1768, 1769, 1778, 1860, 1861, 1873, 1877, 1880, 1882, 1899, 1900, 1904, 1905], "immedi": [0, 543], "end": [0, 11, 20, 23, 35, 38, 42, 43, 49, 63, 64, 67, 77, 80, 90, 93, 101, 104, 114, 235, 325, 328, 407, 428, 430, 431, 449, 465, 490, 493, 513, 514, 517, 520, 563, 568, 572, 573, 1686, 1687, 1695, 1854, 1861, 1883, 1884, 1886, 1887, 1889, 1890, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "temporari": [0, 223, 507], "av": [0, 482, 483, 484, 485], "arr": [0, 32, 1699], "unnecessari": 0, "shown": [0, 568, 1873, 1875, 1877, 1879, 1899, 1902, 1904, 1907], "practic": [0, 517, 531, 570, 581, 1852, 1865, 1873, 1877, 1883, 1886, 1887, 1888, 1894], "rare": [0, 490], "howev": [0, 7, 498, 500, 508, 513, 517, 519, 524, 537, 543, 572, 1850, 1851, 1858, 1873, 1877, 1888, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "follow": [0, 3, 4, 7, 8, 300, 302, 314, 315, 491, 497, 498, 499, 507, 511, 514, 519, 520, 521, 523, 527, 528, 529, 533, 535, 540, 541, 543, 544, 545, 546, 547, 548, 551, 553, 560, 563, 568, 570, 572, 573, 574, 580, 581, 585, 587, 1210, 1626, 1685, 1850, 1854, 1856, 1857, 1858, 1862, 1863, 1864, 1866, 1867, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1910], "need": [0, 7, 8, 224, 262, 274, 286, 410, 434, 438, 449, 496, 499, 512, 514, 517, 520, 522, 525, 553, 564, 568, 570, 571, 572, 573, 580, 581, 1217, 1693, 1850, 1855, 1857, 1862, 1866, 1873, 1874, 1877, 1878, 1881, 1883, 1885, 1887, 1888, 1889, 1894, 1903, 1908, 1910], "dasan": 0, "dubsan": 0, "offici": [0, 3, 4, 1855], "easili": [0, 4, 517, 570, 580, 581, 585, 1850, 1859, 1860, 1861, 1862, 1866, 1873, 1877, 1882, 1883, 1887, 1892, 1897, 1910], "borrow": 0, "array_expr": 0, "regular": [0, 451, 487, 497, 508, 521, 543, 561, 580, 587, 1754, 1760, 1858, 1883, 1887, 1903, 1908], "calloc": 0, "delet": [0, 137, 510], "rebind": [0, 271, 283], "cf": [0, 228, 245, 260, 407, 413, 428, 430, 431, 490, 496, 508, 514, 516, 517, 519, 521, 524, 537, 579, 585, 586, 587, 1849, 1870], "ld_preload": [0, 1866], "project_source_dir": 0, "project_binary_dir": 0, "cmake_xxx": 0, "add_cpp2py_modul": 0, "boostconfig": 0, "find_packag": [0, 1858, 1867], "gsl": 0, "prepend": [0, 1852], "py_": 0, "extra": [0, 354, 500, 1866, 1873, 1876, 1877, 1880, 1881, 1901, 1906], "info": [0, 1867], "blas_lapack": 0, "findtest": 0, "parse_commit": 0, "pars": [0, 1667, 1668], "is_gf_v": 0, "is_block_gf_v": 0, "is_instantiation_of_v": 0, "tmpl": 0, "signbit": 0, "real_or_complex": [0, 572, 1699, 1700, 1701, 1702], "729": 0, "forceinlin": 0, "termin": [0, 1017, 1018, 1022, 1837, 1838, 1854, 1873, 1877, 1890, 1895], "expect": [0, 449, 500, 502, 555, 568, 570, 1862, 1877, 1881, 1883, 1887, 1900, 1905], "ensur": [0, 363, 461, 551, 993, 994, 1850, 1873, 1877, 1889], "licens": [0, 5, 1849], "cpp2y": 0, "apach": 0, "c14": 0, "c17": 0, "fundament": [0, 4, 9, 155, 156, 157, 158, 159, 165, 300, 314, 332, 333, 337, 340, 341, 342, 500, 555, 574, 593, 594, 595, 596, 600, 614, 615, 616, 617, 621, 1889], "respect": [0, 7, 171, 532, 537, 552, 556, 563, 572, 860, 1841, 1850, 1891, 1896, 1899, 1900, 1904, 1905], "342": 0, "overhaul": 0, "fit_legendr": [0, 553], "cheat": 0, "sheet": 0, "issue_templ": 0, "make_zero_tail": [0, 240, 541, 553], "fit_tail": [0, 240, 541, 552], "greenfunct": [0, 268], "brief": [0, 406, 1852, 1856, 1881], "contain": [0, 4, 7, 9, 24, 34, 40, 42, 43, 44, 48, 78, 81, 93, 97, 98, 106, 141, 144, 159, 178, 197, 254, 255, 257, 259, 283, 352, 367, 455, 456, 482, 483, 484, 485, 490, 493, 498, 499, 503, 507, 509, 512, 514, 516, 517, 518, 519, 521, 522, 524, 536, 537, 541, 543, 553, 555, 556, 557, 561, 562, 572, 577, 581, 587, 589, 591, 611, 612, 632, 942, 1065, 1077, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1216, 1217, 1605, 1610, 1614, 1618, 1666, 1723, 1754, 1760, 1850, 1852, 1859, 1862, 1864, 1866, 1873, 1877, 1883, 1885, 1887, 1888, 1889, 1892, 1894, 1897, 1898, 1901, 1903, 1906, 1908], "dichotomi": 0, "load": [0, 496, 498, 1850, 1855, 1863, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1891, 1895, 1896, 1902, 1907], "weblink": 0, "css": 0, "2rst": 0, "docs_cpp2rst": [0, 7], "formula": [0, 520, 1900, 1901, 1905, 1906], "less": [0, 499, 570, 1866, 1873, 1877], "rigid": 0, "is_within_boundari": [0, 539], "index_to_linear": [0, 517, 539], "index_to_point": [0, 517, 539], "725": 0, "slice_t": 0, "value_t": [0, 1064, 1076, 1089, 1102, 1115, 1132, 1143, 1162, 1176], "partial": [0, 449, 503, 508, 509, 510, 532, 551, 1596, 1873, 1877, 1884, 1890, 1892, 1895, 1897, 1900, 1905], "stride": [0, 11, 73, 75, 1206], "chunk_rang": [0, 11], "omp_chunk": 0, "omp": 0, "mpi_chunk": 0, "exclud": [0, 12, 48, 52, 53, 56, 63, 182, 183, 184, 185, 186, 635, 636, 637, 638], "larg": [0, 4, 496, 500, 515, 520, 558, 1849, 1854, 1870, 1873, 1877, 1879, 1883, 1887, 1889, 1895, 1899, 1900, 1903, 1904, 1905, 1908], "pack": [0, 354], "mkl": [0, 1852], "warmup": [0, 406, 416, 423, 424, 428, 431, 568, 570, 1869, 1889, 1891, 1892, 1895, 1896, 1897], "chunk": [0, 11, 12, 442], "encapsul": [0, 499], "slice_rang": 0, "length": [0, 114, 465, 490, 499, 567, 568, 570, 587, 860, 1869, 1873, 1877, 1889, 1892, 1897, 1903, 1908], "n": [0, 3, 4, 11, 19, 32, 48, 114, 225, 235, 236, 245, 252, 253, 254, 255, 256, 257, 258, 303, 304, 306, 307, 308, 312, 313, 316, 322, 323, 455, 456, 471, 480, 481, 483, 493, 500, 502, 512, 514, 515, 517, 520, 523, 527, 539, 540, 541, 544, 545, 546, 547, 548, 552, 553, 555, 558, 563, 567, 568, 572, 573, 576, 582, 583, 585, 587, 687, 688, 726, 727, 765, 766, 804, 805, 843, 844, 965, 966, 1005, 1006, 1030, 1031, 1054, 1079, 1092, 1105, 1211, 1693, 1717, 1747, 1832, 1850, 1858, 1862, 1869, 1872, 1873, 1876, 1883, 1885, 1886, 1887, 1889, 1890, 1891, 1895, 1896, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "mpi_reduce_in_plac": 0, "mpi_reduc": [0, 149, 240, 463, 499], "slice_length": 0, "chunk_length": 0, "orbit": [0, 500, 557, 559, 563, 573, 575, 576, 577, 646, 653, 1598, 1601, 1603, 1604, 1627, 1638, 1640, 1641, 1647, 1654, 1656, 1657, 1684, 1688, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1849, 1859, 1871, 1873, 1877, 1879, 1883, 1887, 1889, 1900, 1901, 1905, 1906], "724": 0, "brillouinzon": [0, 1054, 1646, 1886], "is_almost_zero": 0, "precis": [0, 494, 496, 514, 520, 559, 570, 572, 649, 1664, 1772, 1773, 1774, 1775, 1776, 1800, 1801, 1856, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1886, 1887], "many_body_oper": [0, 325, 351, 352, 555, 572, 633, 640, 641, 642, 1698, 1700, 1701, 1702, 1703, 1704, 1705], "745": 0, "reduction_t": 0, "data_t": [0, 245, 246, 254, 255, 260, 261, 272, 273, 284, 285, 329, 330, 521, 525, 526, 527, 528, 533, 535], "mat": 0, "map_block": 0, "lambda": [0, 83, 85, 502, 510, 572, 577, 579, 580, 587, 1027, 1079, 1092, 1105, 1201, 1722, 1819, 1883, 1887, 1899, 1904, 1905, 1906], "capture_stdout": 0, "im": [0, 543, 553, 1217, 1219, 1848, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1890, 1895, 1899, 1900, 1904, 1905, 1907], "re": [0, 8, 217, 497, 513, 553, 561, 570, 587, 1217, 1219, 1762, 1867, 1873, 1876, 1877, 1879, 1880, 1896, 1899, 1900, 1904, 1905], "bcast": [0, 498], "recv": 0, "neglig": 0, "framework": [0, 4, 565, 581, 1850, 1892, 1897], "binder": [0, 1849, 1859], "easyconfig": 0, "varieti": [0, 541, 1850, 1896], "stabil": [0, 1854], "treatment": 0, "high": [0, 3, 254, 255, 316, 518, 519, 520, 527, 528, 533, 535, 542, 543, 549, 550, 551, 553, 563, 935, 1216, 1849, 1873, 1877, 1883, 1887, 1895, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "upgrad": [0, 1854, 1855], "deb": [0, 1850], "target_spac": [0, 669, 708, 747, 786, 825, 947], "density_zero_t": 0, "608": 0, "substack": 0, "vstack": 0, "safeti": [0, 1858, 1874, 1878], "counter": [0, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1894], "475": 0, "enfor": 0, "sub": [0, 1873, 1877], "findnfft": 0, "alp": 0, "findlapack": 0, "modulefil": [0, 1850], "git_execut": 0, "fortran": [0, 1881], "gesvd": 0, "gelss": 0, "least": [0, 139, 159, 253, 254, 255, 457, 459, 520, 527, 531, 541, 552, 556, 579, 587, 589, 591, 612, 659, 986, 1879, 1885, 1890, 1895], "normal": [0, 351, 356, 363, 365, 378, 410, 434, 462, 486, 510, 525, 537, 543, 559, 572, 645, 935, 1702, 1838, 1873, 1877, 1892, 1897], "assymetri": 0, "replace_by_tail": 0, "enforc": [0, 541, 1079, 1092, 1105, 1727, 1728, 1803, 1890, 1895], "j": [0, 193, 206, 210, 214, 215, 219, 230, 231, 232, 233, 235, 236, 238, 239, 254, 300, 314, 329, 480, 481, 512, 513, 514, 541, 551, 553, 567, 573, 575, 1210, 1211, 1215, 1684, 1685, 1695, 1696, 1700, 1701, 1702, 1709, 1710, 1711, 1850, 1861, 1877, 1880, 1887, 1891, 1902, 1903, 1907, 1908], "tail_issu": 0, "moment": [0, 252, 254, 255, 316, 518, 520, 527, 528, 535, 542, 549, 570, 673, 712, 751, 790, 829, 935, 951, 999, 1903, 1908], "maximum": [0, 4, 197, 449, 450, 451, 453, 457, 458, 460, 541, 553, 1211, 1768, 1778, 1861, 1900, 1903, 1905, 1908], "largest": [0, 451, 541, 1145, 1154, 1166, 1900, 1903, 1905, 1908], "known_moment": [0, 254, 255, 519, 541, 552, 672, 673, 674, 675, 711, 712, 713, 714, 750, 751, 752, 753, 789, 790, 791, 792, 828, 829, 830, 831, 950, 951, 952, 953, 996, 998, 999, 1000, 1001], "try_change_col_row": [0, 192], "incorpor": 0, "empti": [0, 245, 260, 272, 329, 353, 392, 498, 507, 521, 523, 525, 557, 570, 1598, 1885, 1886, 1889, 1892, 1897], "n_min": [0, 159, 541, 589, 591, 612, 673, 675, 687, 688, 712, 714, 726, 727, 751, 753, 765, 766, 790, 792, 804, 805, 829, 831, 843, 844, 951, 953, 965, 966, 999, 1001, 1005, 1006, 1885], "n_max": [0, 159, 541, 589, 591, 612, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1885, 1899, 1904], "f_shell": 0, "regist": [0, 408, 409, 410, 411, 497, 498, 564], "663": 0, "collect_result": [0, 406, 564, 567, 570], "wait": [0, 1780, 1838, 1873, 1877, 1889, 1896], "timer": 0, "650": 0, "inclus": 0, "master": [0, 498, 499, 570, 1780, 1813, 1876, 1880], "fit_": 0, "hermitian_": 0, "cleanin": 0, "time_pt": 0, "style": [0, 499, 1882], "constraint": [0, 4, 935], "roud": 0, "margin": 0, "668": 0, "hdfarchiveinert": [0, 496], "671": 0, "557": 0, "mesh_brillouin_zon": 0, "product_rang": [0, 11], "cpp": [0, 268, 519, 525, 585, 1864, 1867], "kei": [0, 122, 496, 497, 498, 563, 1627, 1647, 1667, 1800, 1850, 1873, 1877], "center": [0, 463, 471, 563, 930, 1747, 1874, 1878, 1892, 1897, 1899, 1904], "semicircular": [0, 543, 544, 545, 546, 547, 548, 550, 554, 1869, 1883, 1884, 1887, 1888, 1891, 1894, 1895, 1896], "649": 0, "638": 0, "624": 0, "581": 0, "594": 0, "known": [0, 254, 255, 449, 541, 1887, 1902, 1907], "calulcul": 0, "gf_multivar": 0, "mesh1": 0, "mesh2": 0, "gt": [0, 519, 532, 545, 548, 554, 691, 730, 769, 808, 847, 969, 1009, 1882, 1886, 1887, 1905], "106": 0, "flat": [0, 445, 446, 543, 550, 931, 1889], "assum": [0, 496, 553, 1210, 1699, 1850, 1867, 1903, 1908], "vanish": [0, 358, 363, 365, 378, 381, 383, 1883, 1887, 1903, 1908], "0th": 0, "msg": 0, "h5write": 0, "array_stack": 0, "swap_index_view": 0, "wip": 0, "grab": 0, "annot": 0, "ipython": [0, 1854, 1859, 1868, 1882, 1893, 1898], "notebook": [0, 491, 1849, 1850, 1857, 1859, 1868, 1871, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1882, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1892, 1893, 1894, 1895, 1897, 1900, 1901, 1902, 1905, 1906, 1907, 1909], "oparcollet": 0, "tail_studi": 0, "dont": 0, "set_from_fouri": [0, 544, 545, 547, 548], "verbos": [0, 413, 527, 528, 567, 569, 570, 1204, 1207, 1768, 1778, 1903, 1908], "tail_fitt": 0, "tail_fit_on_window": 0, "exposet": 0, "n_tail_max": [0, 541, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1128], "fit_and_replac": 0, "compatibl": 0, "restricted_view": 0, "mpi_gath": [0, 125, 499, 539], "scatter": [0, 128, 144, 268, 292, 499, 539, 1873, 1877, 1880], "flatten2d": 0, "nonborrow": 0, "around": [0, 4, 1092, 1105, 1849, 1873, 1874, 1877, 1878, 1879, 1886, 1903, 1908], "deriv": [0, 28, 29, 30, 31, 448, 583, 585, 1780, 1890, 1895, 1900, 1905], "updaat": 0, "multivari": [0, 524, 531, 1859, 1868], "get_tail": 0, "rule": [0, 1902, 1903, 1907, 1908, 1910], "map": [0, 131, 159, 351, 352, 356, 365, 378, 414, 439, 498, 562, 574, 575, 576, 577, 589, 591, 612, 1611, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1873, 1877, 1885, 1886, 1899, 1900, 1904, 1905], "initializi": 0, "set_tail_paramet": 0, "reenabl": 0, "indec": 0, "procedur": [0, 159, 254, 255, 497, 520, 527, 541, 552, 568, 1850], "push": [0, 8], "vandermond": 0, "reus": [0, 500, 581, 1900, 1903, 1905, 1908], "make_product": [0, 11], "gelss_cach": 0, "ll": [0, 520, 1882], "draft": 0, "complex_freq": 0, "boson": [0, 515, 517, 527, 528, 530, 539, 540, 1030, 1079, 1092, 1105, 1118, 1134, 1145, 1883, 1887, 1900, 1905], "bz": [0, 561, 1054, 1594, 1646, 1666, 1760, 1762, 1763, 1873, 1877, 1886, 1892, 1897, 1899, 1904, 1905, 1906], "om": [0, 580], "experiment": [0, 409, 1079, 1092, 1105, 1875, 1879], "sign": [0, 224, 430, 431, 433, 435, 502, 511, 543, 564, 567, 570, 1852, 1889, 1896, 1899, 1904], "statistic_enum": [0, 530], "linear_dim": 0, "creation": [0, 157, 158, 159, 342, 363, 572, 573, 589, 591, 612, 1677, 1685, 1696, 1858, 1882, 1885, 1892, 1897], "n_moment": [0, 316, 553, 1216], "everi": [0, 7, 11, 325, 449, 506, 507, 536, 555, 568, 570, 1873, 1877, 1888, 1894, 1903, 1908], "element": [0, 11, 13, 26, 34, 48, 53, 60, 61, 63, 70, 71, 81, 126, 147, 182, 183, 325, 326, 328, 331, 339, 342, 358, 361, 363, 365, 394, 451, 455, 456, 480, 481, 482, 483, 484, 485, 487, 496, 499, 500, 511, 513, 515, 517, 525, 544, 545, 546, 547, 548, 551, 556, 564, 572, 573, 575, 576, 577, 587, 1023, 1666, 1686, 1699, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1881, 1883, 1885, 1886, 1887, 1901, 1906], "typo": 0, "gf_densiti": 0, "infti": [0, 515, 517, 520, 553, 559, 560, 645, 655, 1211, 1879, 1883, 1887, 1900, 1901, 1903, 1905, 1906, 1908], "cancel": 0, "checkfor": 0, "gf_fourier": 0, "block2": 0, "best": [0, 509, 516, 1852, 1858, 1873, 1874, 1877, 1878, 1908], "look": [0, 334, 338, 499, 560, 570, 579, 1023, 1848, 1849, 1854, 1859, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1887, 1889, 1890, 1892, 1895, 1896, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "ctint": 0, "techniqu": [0, 499, 543, 551], "simpli": [0, 230, 231, 235, 492, 502, 517, 543, 551, 570, 575, 579, 580, 581, 582, 1848, 1850, 1862, 1883, 1886, 1887, 1889, 1910], "triqs_cxx_definit": 0, "triqs_include_al": 0, "co": [0, 502, 507, 509, 510, 520, 580, 1881, 1882, 1886, 1892, 1897, 1899, 1900, 1904, 1905], "triqstest": 0, "build_pytriq": 0, "explain": [0, 8, 531, 532, 1874, 1878, 1889, 1902, 1903, 1907, 1908], "maintain": [0, 3, 4, 325, 496, 1856], "doxygen": [0, 511], "simpler": [0, 499, 516], "2doc": 0, "line": [0, 4, 7, 124, 204, 214, 230, 231, 499, 512, 513, 543, 563, 570, 585, 1204, 1740, 1850, 1854, 1855, 1860, 1864, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1889, 1895, 1899, 1904], "boost_vers": 0, "link_librari": 0, "boost_librari": 0, "14": [0, 19, 95, 510, 1854, 1877, 1879, 1887, 1889, 1897], "_desc": 0, "full_nam": [0, 493, 1864], "module_nam": 0, "app_nam": [0, 493, 1864], "application_a": [0, 1864], "use_modul": [0, 1864], "add_includ": [0, 493, 1864], "rel": [0, 499, 1864, 1873, 1877, 1895], "solver_cor": 0, "include_directori": 0, "python_destin": 0, "triqs_python_extens": 0, "triqs_python_extension_and_instal": 0, "second": [0, 9, 256, 369, 380, 415, 416, 419, 422, 423, 424, 476, 488, 494, 511, 520, 527, 528, 555, 558, 560, 569, 570, 860, 868, 935, 1778, 1838, 1872, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1882, 1883, 1885, 1887, 1888, 1889, 1894, 1896, 1900, 1902, 1905, 1907], "destin": [0, 543, 551], "triqs_python_lib_dest": 0, "python_lib_dest_root": 0, "everywher": 0, "using_the_lib": 0, "application_structur": 0, "polymorph": [0, 508, 572], "handl": [0, 498, 513, 518, 540, 1901, 1906], "full": [0, 4, 9, 153, 160, 166, 167, 177, 348, 349, 360, 390, 392, 395, 403, 449, 457, 459, 500, 543, 551, 555, 565, 568, 570, 573, 598, 601, 610, 619, 622, 631, 935, 1684, 1685, 1689, 1694, 1849, 1850, 1857, 1859, 1860, 1861, 1862, 1864, 1873, 1877, 1879, 1883, 1887, 1889], "break": [0, 1901, 1906, 1910], "As": [0, 3, 7, 496, 507, 509, 514, 517, 520, 551, 568, 570, 580, 1838, 1854, 1855, 1867, 1873, 1875, 1877, 1879, 1881, 1883, 1886, 1887, 1890, 1895, 1899, 1900, 1901, 1904, 1905, 1906], "consequ": [0, 507, 1902, 1903, 1907, 1908], "twice": [0, 506], "big": [0, 1873, 1877, 1888, 1890, 1894, 1895, 1900, 1905], "smallest": [0, 450, 1154, 1166], "th": [0, 114, 162, 204, 206, 256, 257, 342, 368, 379, 394, 480, 481, 513, 527, 528, 533, 535, 563, 602, 623, 1882], "retriev": [0, 498, 581], "independ": [0, 4, 449, 551, 570, 583, 862, 879, 1883, 1887, 1902, 1907], "storag": [0, 205, 207, 215, 365, 367, 463, 466, 496, 503, 513, 539, 555, 572, 669, 708, 747, 786, 825, 947, 1745, 1856, 1873, 1877], "written": [0, 4, 153, 177, 345, 398, 468, 492, 494, 496, 504, 511, 512, 516, 523, 524, 529, 553, 567, 575, 581, 1219, 1595, 1660, 1670, 1709, 1710, 1711, 1856, 1867, 1870, 1873, 1877, 1881, 1890, 1895, 1903, 1908], "gain": 0, "space": [0, 9, 153, 159, 160, 166, 167, 177, 269, 281, 294, 340, 341, 342, 343, 344, 345, 346, 348, 349, 350, 351, 356, 357, 358, 360, 365, 368, 370, 371, 376, 377, 378, 379, 381, 382, 388, 389, 390, 391, 392, 395, 397, 398, 403, 404, 488, 500, 517, 520, 521, 527, 528, 544, 545, 546, 547, 548, 556, 572, 589, 591, 598, 601, 610, 612, 619, 622, 631, 664, 676, 694, 695, 696, 703, 715, 733, 734, 735, 742, 754, 772, 773, 774, 781, 793, 811, 812, 813, 820, 832, 850, 851, 852, 875, 942, 954, 972, 973, 974, 1627, 1647, 1663, 1664, 1667, 1668, 1873, 1877, 1883, 1885, 1886, 1887, 1889, 1892, 1896, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "otherwis": [0, 115, 120, 121, 122, 127, 135, 139, 224, 346, 348, 349, 399, 401, 402, 408, 410, 490, 493, 497, 498, 507, 508, 541, 543, 552, 553, 570, 572, 575, 576, 577, 580, 1023, 1211, 1700, 1701, 1702, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1806, 1833, 1850, 1903, 1908], "save": [0, 5, 9, 490, 493, 496, 500, 523, 532, 570, 1858, 1869, 1884, 1890, 1891, 1895, 1896, 1899, 1900, 1904, 1905], "reorgan": 0, "test_tool": 0, "There": [0, 351, 498, 507, 520, 525, 543, 555, 564, 572, 875, 1866, 1887, 1890, 1895, 1902, 1903, 1907, 1908], "just": [0, 230, 231, 490, 507, 509, 510, 517, 522, 537, 543, 561, 564, 567, 568, 569, 570, 581, 1038, 1756, 1758, 1765, 1784, 1837, 1850, 1855, 1867, 1873, 1875, 1877, 1879, 1881, 1883, 1884, 1887, 1888, 1890, 1891, 1894, 1895, 1896, 1900, 1902, 1905, 1907], "add_cpp_test": 0, "testnam": 0, "triqs_add_cpp_test": 0, "triqs_add_python_test": 0, "program": [0, 3, 4, 496, 1833, 1852, 1869, 1873, 1877], "h5diff": [0, 496], "had": [0, 1854, 1885, 1890, 1895], "comparison_test": 0, "easi": [0, 515, 564, 574, 578, 1850, 1854, 1858, 1860, 1867, 1870, 1873, 1877, 1884], "parti": [0, 1854], "under": [0, 3, 357, 515, 543, 555, 581, 1849, 1850, 1865, 1867], "cmake_install_prefix": [0, 1850], "inherit": [0, 570, 1833], "visual": [0, 1870, 1873, 1874, 1875, 1877, 1878, 1879, 1899, 1901, 1904, 1906], "sphinxcontrib": 0, "doxylink": 0, "anymor": 0, "g0_iw": [0, 553, 935, 1210, 1212, 1869, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897], "solv": [0, 4, 153, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 553, 571, 581, 935, 1212, 1768, 1778, 1848, 1849, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1901, 1902, 1903, 1906, 1907, 1908], "equat": [0, 4, 543, 551, 553, 935, 1212, 1873, 1876, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1892, 1894, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "g_iw": [0, 500, 537, 541, 543, 553, 935, 1212, 1869, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897], "sigma_iw": [0, 553, 1212, 1848, 1869, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897], "tail_fit": 0, "read_gf_from_txt": [0, 553], "write_gf_to_txt": [0, 553], "text": [0, 5, 496, 515, 553, 558, 560, 580, 655, 1217, 1866, 1870, 1873, 1877, 1886, 1887, 1890, 1895, 1899, 1904], "organ": [0, 581, 1849, 1859, 1873, 1877], "commonli": [0, 4, 571, 576, 1713, 1851, 1892, 1897], "slater": [0, 573, 575, 1683, 1685, 1690, 1711], "kanamori": [0, 500, 573, 575, 1684, 1710, 1877, 1880, 1891, 1896], "interact": [0, 3, 4, 497, 518, 542, 553, 573, 574, 575, 576, 935, 1210, 1212, 1683, 1684, 1685, 1689, 1690, 1691, 1694, 1696, 1700, 1701, 1710, 1711, 1714, 1715, 1716, 1849, 1850, 1859, 1870, 1873, 1874, 1875, 1877, 1878, 1879, 1883, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1901, 1902, 1903, 1906, 1907, 1908, 1909], "s_z": [0, 576, 1715, 1718, 1903, 1908], "l_z": [0, 576, 1714, 1715], "op_struct": [0, 577], "auxiliari": [0, 500], "spin": [0, 3, 500, 555, 567, 570, 573, 575, 576, 577, 1663, 1684, 1691, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1849, 1873, 1876, 1877, 1879, 1880, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907], "exit": [0, 1833, 1835], "receiv": [0, 6, 125, 141, 142, 143, 149, 150, 407, 428, 430, 431, 572], "stop_callback": [0, 407, 428, 430, 431], "insert2": [0, 192, 513], "remove2": [0, 192, 513], "change_row": [0, 192], "change_col": [0, 192, 513], "try_": 0, "complete_oper": [0, 192, 218, 223, 232, 233, 234, 235, 236, 237, 238, 239, 513, 1861], "insert2_at_end": [0, 192, 1861], "remove_at_end": [0, 192, 1861], "remove2_at_end": [0, 192, 1861], "change_one_row_and_one_col": [0, 1861], "unsign": [0, 474, 475, 499], "tupl": [0, 9, 16, 42, 43, 44, 48, 97, 98, 99, 106, 126, 480, 481, 488, 490, 493, 497, 498, 517, 551, 559, 573, 574, 577, 579, 589, 591, 612, 653, 659, 660, 694, 700, 733, 739, 772, 778, 811, 817, 850, 856, 972, 978, 1050, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1627, 1634, 1635, 1647, 1650, 1651, 1668, 1687, 1688, 1693, 1695, 1722, 1768, 1832, 1885, 1886], "hdf_archiv": 0, "00000000": 0, "00000001": 0, "0000002": 0, "0000003": 0, "subgroup": [0, 115, 344, 345, 397, 398, 496, 497, 498, 581, 1877, 1880, 1884], "doubl": [0, 162, 163, 168, 181, 182, 183, 184, 185, 186, 187, 200, 201, 202, 203, 226, 227, 228, 236, 239, 253, 254, 255, 300, 301, 302, 316, 351, 356, 365, 378, 410, 414, 415, 419, 422, 423, 434, 435, 439, 445, 446, 450, 454, 457, 459, 461, 465, 466, 470, 471, 482, 483, 484, 485, 496, 499, 500, 502, 507, 508, 509, 510, 511, 513, 516, 517, 519, 521, 523, 527, 528, 529, 531, 532, 533, 535, 541, 545, 546, 555, 562, 564, 567, 569, 570, 572, 587, 638, 671, 672, 673, 674, 675, 710, 711, 712, 713, 714, 749, 750, 751, 752, 753, 788, 789, 790, 791, 792, 827, 828, 829, 830, 831, 949, 950, 951, 952, 953, 997, 998, 999, 1000, 1001, 1030, 1057, 1591, 1613, 1619, 1620, 1622, 1631, 1648, 1778, 1858, 1860, 1861, 1862, 1863, 1867, 1873, 1876, 1877, 1879, 1880, 1886, 1900, 1902, 1903, 1905, 1907, 1908], "rich": [0, 1870], "attribut": [0, 1, 2, 332, 333, 496, 497, 498, 591, 612, 664, 703, 742, 781, 820, 859, 874, 942, 1030, 1037, 1044, 1054, 1067, 1079, 1092, 1105, 1118, 1134, 1145, 1154, 1166, 1598, 1606, 1611, 1622, 1626, 1646, 1671, 1742, 1754, 1760, 1780, 1784, 1791, 1831, 1834, 1836, 1843, 1873, 1877, 1888, 1894], "ignore_in_python": 0, "prevent": 0, "special": [0, 125, 149, 151, 365, 378, 515, 518, 521, 524, 525, 537, 542, 570, 572, 585, 1784, 1861, 1873, 1877, 1899, 1904], "overrid": [0, 1832, 1841], "adopt": 0, "physic": [0, 357, 1859, 1873, 1877, 1883, 1886, 1887, 1892, 1897], "paper": [0, 3, 4, 1849, 1873, 1877, 1908], "random": [0, 4, 9, 413, 421, 435, 442, 443, 444, 463, 488, 556, 564, 565, 567, 570, 1737, 1742, 1859, 1860, 1882, 1899, 1904, 1909], "glue": 0, "cython": 0, "gone": [0, 1903, 1908], "like": [0, 4, 7, 195, 197, 223, 224, 480, 481, 496, 500, 502, 507, 508, 511, 513, 517, 519, 532, 537, 543, 551, 564, 565, 570, 572, 573, 580, 581, 585, 586, 587, 1693, 1850, 1852, 1854, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1901, 1902, 1903, 1906, 1907, 1908], "conjug": [0, 363, 483, 484, 545, 547, 548, 553, 572], "alon": [0, 1849], "must": [0, 3, 159, 260, 268, 352, 355, 357, 360, 370, 381, 408, 410, 427, 473, 482, 483, 484, 485, 490, 493, 498, 502, 507, 510, 523, 543, 544, 545, 546, 547, 548, 551, 553, 556, 570, 571, 572, 573, 576, 580, 586, 587, 589, 591, 612, 664, 703, 742, 781, 820, 860, 863, 880, 919, 922, 925, 942, 1201, 1217, 1642, 1685, 1696, 1714, 1715, 1716, 1778, 1832, 1833, 1838, 1844, 1860, 1881, 1885, 1887, 1895, 1903, 1908], "25": [0, 510, 563, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1887, 1888, 1892, 1894, 1896, 1897, 1903, 1907, 1908], "unifi": 0, "pep": 0, "www": [0, 520], "org": [0, 4, 520, 935, 1850, 1873, 1874, 1875, 1877, 1878, 1879, 1881], "0008": 0, "lowercas": 0, "underscor": 0, "capword": 0, "update_arch": 0, "veri": [0, 4, 7, 230, 231, 511, 543, 568, 570, 578, 579, 581, 586, 1854, 1858, 1859, 1868, 1870, 1873, 1877, 1882, 1883, 1887, 1890, 1895], "old_arch": 0, "new_arch": 0, "encount": [0, 1848, 1850, 1857, 1905], "post": [0, 1848, 1849, 1881], "fullnam": [1, 2], "underlin": [1, 2], "rubric": [1, 2], "endif": [1, 2], "endblock": [1, 2], "function": [2, 7, 9, 10, 29, 30, 31, 131, 153, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 197, 199, 205, 217, 245, 251, 253, 254, 255, 257, 260, 268, 296, 300, 301, 302, 306, 307, 308, 311, 312, 313, 314, 315, 316, 317, 318, 321, 365, 407, 428, 429, 430, 431, 462, 480, 481, 486, 488, 489, 490, 491, 492, 493, 494, 496, 498, 500, 502, 505, 506, 507, 509, 511, 512, 517, 518, 519, 524, 525, 526, 528, 529, 531, 533, 534, 535, 536, 537, 549, 550, 553, 554, 555, 556, 558, 560, 561, 563, 570, 571, 573, 574, 575, 579, 580, 581, 583, 585, 587, 588, 590, 635, 636, 637, 638, 639, 644, 649, 650, 659, 660, 661, 662, 664, 666, 667, 668, 669, 670, 676, 677, 679, 680, 683, 685, 687, 688, 697, 698, 699, 700, 703, 705, 706, 707, 708, 709, 715, 716, 718, 719, 722, 724, 726, 727, 736, 737, 738, 739, 742, 744, 745, 746, 747, 748, 754, 755, 757, 758, 761, 763, 765, 766, 775, 776, 777, 778, 781, 783, 784, 785, 786, 787, 793, 794, 796, 797, 800, 802, 804, 805, 814, 815, 816, 817, 820, 822, 823, 824, 825, 826, 832, 833, 835, 836, 839, 841, 843, 844, 853, 854, 855, 856, 859, 860, 863, 873, 874, 875, 880, 891, 898, 910, 915, 916, 919, 922, 925, 929, 934, 935, 936, 942, 944, 945, 946, 947, 948, 954, 955, 957, 958, 961, 963, 965, 966, 975, 976, 977, 978, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 1005, 1006, 1012, 1013, 1027, 1043, 1053, 1062, 1063, 1074, 1075, 1079, 1087, 1088, 1092, 1100, 1101, 1105, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175, 1179, 1180, 1188, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1208, 1209, 1210, 1211, 1212, 1213, 1215, 1216, 1217, 1218, 1219, 1220, 1597, 1632, 1645, 1661, 1667, 1670, 1682, 1685, 1697, 1699, 1706, 1713, 1721, 1722, 1723, 1725, 1726, 1730, 1736, 1739, 1741, 1750, 1751, 1754, 1755, 1756, 1760, 1761, 1767, 1768, 1769, 1771, 1777, 1778, 1780, 1799, 1802, 1803, 1804, 1818, 1819, 1830, 1835, 1837, 1840, 1848, 1849, 1850, 1857, 1859, 1860, 1861, 1864, 1868, 1869, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1882, 1884, 1885, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1901, 1902, 1905, 1906, 1907], "class": [2, 8, 9, 10, 14, 20, 27, 28, 35, 42, 49, 62, 64, 72, 77, 84, 90, 96, 101, 115, 123, 128, 133, 145, 146, 147, 148, 154, 166, 192, 197, 242, 245, 259, 271, 283, 298, 325, 340, 351, 357, 365, 366, 378, 390, 406, 432, 442, 449, 463, 491, 494, 495, 496, 500, 508, 510, 511, 512, 514, 516, 521, 539, 540, 543, 544, 545, 546, 547, 548, 550, 551, 557, 558, 559, 560, 561, 562, 564, 565, 567, 568, 570, 571, 572, 574, 579, 580, 581, 582, 583, 590, 591, 612, 644, 645, 649, 654, 655, 658, 659, 663, 664, 702, 703, 741, 742, 780, 781, 819, 820, 858, 859, 873, 874, 896, 898, 899, 901, 904, 906, 908, 910, 915, 916, 918, 921, 924, 927, 929, 936, 937, 940, 942, 980, 984, 1013, 1014, 1020, 1029, 1030, 1036, 1037, 1041, 1043, 1044, 1053, 1054, 1067, 1079, 1092, 1105, 1118, 1134, 1145, 1154, 1166, 1220, 1221, 1223, 1225, 1227, 1229, 1231, 1233, 1235, 1237, 1239, 1241, 1243, 1245, 1247, 1249, 1251, 1253, 1255, 1257, 1259, 1261, 1263, 1265, 1267, 1269, 1271, 1273, 1275, 1277, 1279, 1281, 1283, 1285, 1287, 1289, 1291, 1293, 1295, 1297, 1299, 1301, 1303, 1305, 1307, 1309, 1311, 1313, 1315, 1317, 1319, 1321, 1323, 1325, 1327, 1329, 1331, 1333, 1335, 1337, 1339, 1341, 1343, 1345, 1347, 1349, 1351, 1353, 1355, 1357, 1359, 1361, 1363, 1365, 1367, 1369, 1371, 1373, 1375, 1377, 1379, 1381, 1383, 1385, 1387, 1389, 1391, 1393, 1395, 1397, 1399, 1401, 1403, 1405, 1407, 1409, 1411, 1413, 1415, 1417, 1419, 1421, 1423, 1425, 1427, 1429, 1431, 1433, 1435, 1437, 1439, 1441, 1443, 1445, 1447, 1449, 1451, 1453, 1455, 1457, 1459, 1461, 1463, 1465, 1467, 1469, 1471, 1473, 1475, 1477, 1479, 1481, 1483, 1485, 1487, 1489, 1491, 1493, 1495, 1497, 1499, 1501, 1503, 1505, 1507, 1509, 1511, 1513, 1515, 1517, 1519, 1521, 1523, 1525, 1527, 1529, 1531, 1533, 1535, 1537, 1539, 1541, 1543, 1545, 1547, 1549, 1551, 1553, 1555, 1557, 1559, 1561, 1563, 1565, 1567, 1569, 1571, 1573, 1575, 1577, 1579, 1581, 1583, 1585, 1587, 1589, 1593, 1594, 1597, 1598, 1606, 1611, 1621, 1622, 1625, 1626, 1645, 1646, 1670, 1671, 1733, 1734, 1741, 1742, 1753, 1754, 1759, 1760, 1779, 1780, 1784, 1791, 1830, 1831, 1832, 1849, 1859, 1860, 1862, 1864, 1872, 1886, 1887, 1888, 1894, 1895, 1899, 1904], "librari": [3, 4, 5, 499, 502, 503, 509, 512, 516, 518, 519, 524, 541, 552, 565, 578, 581, 583, 585, 586, 1850, 1851, 1852, 1854, 1855, 1859, 1860, 1861, 1865, 1866, 1867, 1870, 1873, 1877, 1882, 1883, 1887, 1889, 1892, 1897], "orgin": 3, "ipht": [3, 1849], "cea": 3, "saclai": [3, 1849], "ferrero": 3, "cpht": 3, "ecol": [3, 1849], "polytechiqu": 3, "flatiron": [3, 1874, 1878], "institut": [3, 1874, 1878], "ccq": [3, 1850], "reciev": 3, "erc": 3, "grant": 3, "278472": 3, "divis": [3, 487, 556, 572, 575], "foundat": 3, "ayral": 3, "p": [3, 245, 303, 409, 492, 517, 1848, 1850, 1873, 1877, 1889], "hafermann": 3, "messio": 3, "seth": 3, "scientif": [3, 496, 578, 581, 1849, 1850, 1854, 1856, 1870, 1881], "kindli": 3, "us": [3, 5, 6, 7, 8, 9, 11, 47, 117, 132, 142, 143, 149, 150, 159, 165, 169, 171, 182, 183, 185, 186, 191, 205, 207, 215, 223, 252, 254, 255, 260, 311, 316, 317, 325, 342, 351, 356, 358, 365, 368, 379, 407, 413, 428, 430, 431, 448, 449, 450, 451, 454, 457, 459, 461, 480, 481, 482, 483, 484, 485, 487, 490, 491, 493, 494, 496, 497, 498, 499, 502, 503, 506, 507, 508, 509, 510, 511, 512, 514, 515, 516, 517, 519, 523, 524, 525, 527, 528, 529, 531, 532, 533, 535, 541, 543, 544, 546, 547, 550, 551, 553, 554, 556, 559, 560, 561, 563, 568, 570, 571, 572, 573, 574, 575, 576, 580, 581, 582, 583, 585, 586, 587, 589, 591, 600, 606, 612, 621, 627, 660, 670, 676, 709, 715, 748, 754, 787, 793, 826, 832, 875, 935, 948, 954, 1038, 1092, 1105, 1211, 1215, 1626, 1659, 1666, 1684, 1685, 1710, 1711, 1713, 1740, 1754, 1762, 1768, 1769, 1778, 1806, 1834, 1836, 1839, 1842, 1843, 1849, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1860, 1861, 1862, 1863, 1864, 1866, 1867, 1869, 1870, 1871, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "toolbox": [3, 555, 1899, 1904], "research": [3, 1849], "quantum": [3, 159, 172, 188, 189, 500, 571, 589, 591, 608, 612, 629, 640, 641, 1849, 1876, 1880, 1883, 1885, 1887, 1888, 1890, 1894, 1895], "phy": [3, 4, 1849, 1892, 1897, 1902, 1903, 1907, 1908], "comm": [3, 4, 499, 1805, 1819, 1879], "196": [3, 1849], "398": [3, 1849], "415": 3, "2015": 3, "facilit": [3, 564, 1849], "bibtex": 3, "give": [3, 4, 351, 514, 527, 528, 570, 573, 660, 1693, 1861, 1865, 1873, 1877, 1881, 1883, 1885, 1887, 1888, 1892, 1894, 1897, 1900, 1901, 1903, 1905, 1906, 1908], "inde": [3, 7, 492, 517, 581, 641, 1875, 1879, 1883, 1885, 1887, 1902, 1907], "convinc": 3, "fund": 3, "publish": [3, 581, 1892, 1897], "gnu": [3, 586, 1856, 1873, 1877], "gener": [3, 4, 7, 9, 11, 132, 171, 251, 262, 269, 274, 281, 286, 294, 329, 340, 341, 342, 351, 352, 357, 359, 363, 406, 413, 421, 428, 442, 443, 444, 447, 461, 480, 481, 488, 490, 491, 492, 493, 496, 498, 507, 511, 512, 513, 514, 515, 517, 518, 522, 532, 536, 541, 551, 553, 555, 561, 564, 565, 568, 570, 572, 573, 579, 583, 659, 694, 733, 772, 811, 850, 859, 866, 867, 868, 874, 875, 884, 972, 1022, 1213, 1630, 1666, 1731, 1737, 1754, 1760, 1849, 1850, 1851, 1854, 1858, 1859, 1866, 1871, 1873, 1877, 1880, 1887, 1890, 1891, 1895, 1896, 1899, 1900, 1901, 1904, 1905, 1906], "version": [3, 5, 8, 9, 22, 23, 37, 38, 66, 67, 79, 80, 103, 104, 246, 351, 448, 449, 500, 506, 523, 543, 551, 555, 564, 569, 572, 583, 1848, 1849, 1851, 1854, 1855, 1856, 1857, 1858, 1867, 1870, 1874, 1878, 1883, 1887, 1888, 1892, 1897, 1902, 1903, 1907, 1908], "3": [3, 5, 19, 85, 95, 245, 251, 252, 255, 261, 268, 272, 273, 285, 292, 329, 368, 379, 445, 450, 454, 457, 459, 461, 465, 482, 483, 484, 485, 496, 497, 499, 500, 502, 507, 508, 509, 510, 513, 523, 527, 528, 531, 532, 539, 541, 543, 547, 550, 551, 553, 557, 563, 570, 572, 573, 579, 580, 585, 587, 672, 673, 674, 675, 687, 688, 711, 712, 713, 714, 726, 727, 750, 751, 752, 753, 765, 766, 789, 790, 791, 792, 804, 805, 828, 829, 830, 831, 843, 844, 950, 951, 952, 953, 965, 966, 996, 998, 999, 1000, 1001, 1005, 1006, 1054, 1057, 1067, 1211, 1591, 1598, 1666, 1683, 1685, 1690, 1692, 1693, 1850, 1854, 1855, 1856, 1857, 1860, 1861, 1862, 1867, 1875, 1876, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "impli": [3, 351, 507, 551], "state": [3, 9, 153, 159, 160, 162, 164, 168, 175, 176, 177, 178, 182, 183, 185, 186, 198, 324, 325, 340, 342, 343, 346, 350, 351, 354, 356, 357, 358, 360, 362, 390, 391, 393, 394, 396, 399, 401, 402, 404, 488, 514, 543, 550, 558, 560, 568, 580, 589, 591, 598, 599, 605, 609, 610, 611, 612, 619, 620, 626, 630, 631, 632, 633, 635, 636, 637, 638, 645, 916, 929, 930, 1869, 1872, 1873, 1877, 1885, 1890, 1892, 1895, 1897, 1901, 1902, 1903, 1906, 1907, 1908], "warranti": 3, "respons": [3, 449, 1859, 1899, 1900, 1901, 1904, 1905, 1906], "white": [3, 1904], "color": [3, 122, 580, 1873, 1877, 1879, 1880, 1882, 1889, 1899, 1900, 1904, 1905], "background": 3, "resolut": [3, 939], "svg": [3, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "pdf": [3, 448], "icon": [3, 1873, 1877], "studi": [4, 1849, 1859, 1891, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "categori": 4, "readili": [4, 515, 1901, 1906], "collabor": [4, 1849], "reli": [4, 1850], "thin": [4, 578, 1726], "mainten": [4, 564], "embed": [4, 1883, 1887, 1892, 1897], "conduct": [4, 1883, 1887, 1889], "bath": [4, 553, 1211, 1215, 1869, 1873, 1876, 1877, 1880, 1883, 1887, 1889, 1892, 1897], "mont": [4, 9, 406, 428, 430, 431, 449, 488, 513, 567, 583, 1873, 1876, 1877, 1880, 1883, 1887, 1889, 1890, 1895], "carlo": [4, 9, 406, 428, 430, 431, 449, 488, 513, 567, 583, 1873, 1876, 1877, 1880, 1883, 1887, 1889, 1890, 1895], "diagram": [4, 1889, 1901, 1906], "partit": [4, 9, 159, 187, 357, 358, 360, 363, 364, 500, 555, 570, 589, 591, 612, 639, 1885, 1889, 1896], "produc": [4, 492, 494, 496, 558, 569, 581, 583, 1851, 1873, 1877, 1881, 1895], "cite": [4, 1849], "200": [4, 357, 500, 1869, 1892, 1897], "274": [4, 357], "2016": [4, 357], "homepag": [4, 1849], "atom": [4, 9, 153, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 500, 555, 557, 562, 563, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 1598, 1611, 1873, 1876, 1877, 1880, 1883, 1885, 1886, 1887], "approxim": [4, 520, 547, 553, 935, 1211, 1859, 1876, 1878, 1880, 1883, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1909], "quick": [4, 5, 230, 231, 496, 516], "answer": [4, 6, 456, 481, 484, 485, 567, 1849, 1874, 1876, 1878, 1880, 1903, 1908], "multiband": 4, "lattic": [4, 9, 488, 559, 560, 561, 562, 563, 1067, 1760, 1763, 1859, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908, 1909], "descent": 4, "fix": [4, 8, 300, 302, 500, 528, 531, 541, 553, 556, 1213, 1873, 1877, 1883, 1886, 1887, 1900, 1902, 1905, 1907, 1910], "chemic": [4, 500, 555, 559, 648, 652, 930, 1873, 1876, 1877, 1879, 1880, 1886, 1888, 1891, 1894, 1895, 1896, 1899, 1904], "potenti": [4, 500, 555, 559, 648, 652, 930, 1852, 1854, 1858, 1873, 1876, 1877, 1879, 1880, 1886, 1888, 1891, 1894, 1895, 1896, 1899, 1904], "hartree_fock": 4, "fermion": [4, 154, 254, 255, 260, 316, 340, 350, 404, 500, 515, 516, 517, 519, 523, 525, 527, 528, 530, 531, 532, 539, 540, 541, 543, 555, 558, 559, 572, 579, 645, 648, 652, 1030, 1031, 1079, 1092, 1105, 1118, 1134, 1145, 1849, 1859, 1862, 1863, 1868, 1872, 1877, 1883, 1886, 1887, 1894, 1895, 1902, 1903, 1907, 1908, 1909], "mani": [4, 9, 171, 357, 358, 365, 378, 488, 496, 510, 515, 543, 560, 572, 1697, 1838, 1849, 1852, 1870, 1873, 1877, 1881, 1883, 1887, 1889, 1890, 1895, 1899, 1900, 1904, 1905], "bodi": [4, 9, 171, 357, 358, 365, 488, 515, 572, 1697, 1849, 1883, 1887, 1890, 1895], "imagianari": 4, "hugostrand": 4, "10": [4, 19, 95, 245, 254, 255, 260, 316, 499, 500, 502, 508, 509, 510, 513, 516, 525, 527, 528, 531, 533, 535, 541, 544, 553, 570, 580, 582, 1213, 1216, 1848, 1849, 1854, 1860, 1862, 1863, 1867, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1900, 1904, 1905, 1906, 1907], "5281": 4, "zenodo": 4, "592291": 4, "pomerol2triq": 4, "softwar": [4, 1849, 1850, 1856, 1870], "packag": [4, 5, 499, 1851, 1852, 1854, 1856, 1857, 1864, 1866, 1870, 1873, 1877, 1885, 1886, 1887, 1895], "235": 4, "388": 4, "2019": 4, "w2dynamics_interfac": 4, "renorm": [4, 1873, 1877, 1903, 1908], "rev": [4, 1849, 1892, 1897, 1903, 1908], "79": 4, "085106": 4, "2009": [4, 1892, 1897], "nrgljubljana_interfac": 4, "dfttool": 4, "wien2k": [4, 573, 1689, 1692, 1694], "band": [4, 500, 551, 559, 1659, 1869, 1873, 1874, 1877, 1878, 1879, 1888, 1891, 1892, 1894, 1896, 1897], "fledg": 4, "few": [4, 509, 523, 935, 1855, 1873, 1874, 1877, 1878, 1883, 1887, 1890, 1895, 1901, 1906], "204": 4, "shot": [4, 1876, 1880], "charg": [4, 524, 537, 543, 1901, 1902, 1906, 1907], "csc": 4, "h5": [4, 9, 208, 209, 247, 248, 263, 264, 275, 276, 287, 288, 296, 332, 333, 344, 345, 397, 398, 425, 426, 467, 468, 488, 497, 498, 500, 517, 523, 527, 528, 529, 532, 533, 535, 581, 1848, 1849, 1860, 1863, 1864, 1869, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1884, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1906, 1907], "archiv": [4, 9, 496, 498, 1859, 1863, 1868, 1869, 1873, 1877, 1879, 1890, 1891, 1895, 1896], "espresso": 4, "advantag": [4, 496, 515, 516, 564, 1881, 1888, 1894], "postprocess": [4, 1873, 1875, 1876, 1877, 1879, 1880], "script": [4, 5, 9, 578, 1850, 1858, 1859, 1866, 1870, 1873, 1877, 1879, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1904], "spectral": [4, 543, 547, 1198, 1201, 1874, 1875, 1876, 1878, 1879, 1880, 1883, 1887, 1888, 1890, 1894, 1895, 1899, 1903, 1904, 1908], "modular": [4, 1873, 1877], "entropi": 4, "1": [4, 5, 13, 15, 19, 43, 73, 85, 88, 95, 97, 117, 118, 121, 159, 164, 182, 183, 185, 186, 204, 206, 214, 215, 223, 224, 235, 236, 241, 245, 246, 250, 251, 252, 254, 255, 257, 260, 261, 272, 273, 280, 284, 285, 292, 300, 301, 302, 305, 314, 315, 316, 317, 329, 341, 342, 352, 358, 360, 367, 368, 369, 370, 372, 373, 374, 375, 379, 380, 381, 384, 385, 386, 387, 392, 407, 410, 428, 430, 431, 438, 443, 445, 446, 450, 451, 453, 454, 457, 459, 461, 465, 471, 480, 481, 482, 483, 484, 485, 487, 496, 498, 499, 500, 502, 506, 507, 508, 509, 510, 512, 513, 514, 515, 516, 517, 519, 520, 522, 523, 525, 527, 528, 531, 532, 539, 540, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 554, 555, 557, 558, 559, 560, 561, 562, 563, 564, 567, 569, 570, 572, 573, 575, 576, 579, 580, 582, 583, 586, 587, 645, 653, 655, 681, 682, 697, 700, 720, 721, 736, 739, 759, 760, 775, 778, 798, 799, 814, 817, 837, 838, 853, 856, 875, 935, 959, 960, 975, 978, 1002, 1003, 1012, 1178, 1210, 1211, 1215, 1598, 1613, 1619, 1620, 1626, 1631, 1648, 1666, 1685, 1686, 1687, 1693, 1700, 1701, 1709, 1710, 1711, 1716, 1719, 1747, 1754, 1760, 1768, 1778, 1781, 1785, 1792, 1806, 1820, 1848, 1849, 1850, 1852, 1856, 1858, 1860, 1861, 1862, 1863, 1867, 1869, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "caratheodori": 4, "2": [4, 5, 13, 19, 21, 24, 32, 36, 40, 65, 68, 78, 81, 95, 102, 106, 159, 164, 182, 183, 185, 186, 197, 204, 206, 214, 215, 245, 246, 250, 251, 252, 254, 255, 261, 272, 273, 280, 284, 285, 300, 305, 314, 315, 316, 317, 329, 341, 342, 352, 357, 358, 360, 367, 368, 370, 372, 379, 381, 384, 407, 428, 430, 431, 445, 449, 450, 451, 454, 455, 456, 457, 459, 461, 465, 480, 481, 482, 483, 484, 485, 487, 490, 493, 496, 497, 499, 500, 502, 506, 507, 508, 509, 510, 513, 515, 516, 517, 520, 521, 522, 523, 527, 528, 529, 532, 533, 535, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 555, 558, 560, 563, 567, 570, 572, 573, 575, 576, 579, 580, 583, 585, 586, 587, 875, 891, 916, 929, 1105, 1211, 1217, 1619, 1620, 1683, 1684, 1685, 1686, 1687, 1689, 1690, 1692, 1693, 1694, 1699, 1700, 1701, 1702, 1709, 1710, 1711, 1714, 1716, 1718, 1719, 1849, 1850, 1856, 1857, 1858, 1860, 1861, 1862, 1863, 1867, 1869, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "": [4, 7, 9, 11, 18, 29, 30, 31, 46, 89, 100, 140, 182, 183, 184, 185, 186, 253, 306, 307, 308, 312, 313, 321, 329, 351, 430, 431, 463, 471, 488, 496, 497, 499, 500, 513, 517, 518, 525, 528, 535, 549, 550, 553, 554, 555, 560, 569, 570, 573, 575, 576, 577, 580, 581, 582, 587, 635, 636, 637, 638, 661, 662, 697, 736, 775, 814, 853, 859, 860, 863, 874, 875, 880, 906, 916, 929, 935, 939, 975, 986, 987, 988, 989, 991, 992, 1012, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1209, 1210, 1211, 1212, 1213, 1215, 1216, 1217, 1218, 1219, 1634, 1650, 1664, 1683, 1684, 1685, 1690, 1699, 1712, 1715, 1718, 1719, 1723, 1747, 1841, 1844, 1849, 1850, 1855, 1858, 1859, 1867, 1868, 1869, 1875, 1876, 1879, 1880, 1881, 1884, 1885, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "iskakov": 4, "jiani": 4, "fei": 4, "chia": 4, "nan": [4, 1900, 1905], "yeh": 4, "emanuel": 4, "gull": 4, "lett": [4, 1849, 1892, 1897, 1903, 1908], "126": 4, "056402": 4, "doi": [4, 1873, 1875, 1877, 1879], "1103": [4, 1873, 1875, 1877, 1879], "physrevlett": 4, "dominika": 4, "zgid": 4, "104": 4, "165111": 4, "physrevb": [4, 1873, 1875, 1877, 1879], "propos": [4, 410, 434, 564, 568, 570, 1888, 1894], "andrei": 4, "mishchenko": 4, "olga": 4, "goulko": 4, "et": [4, 1883, 1887, 1894, 1896], "al": [4, 1883, 1887, 1894], "95": 4, "014102": 4, "2017": 4, "239": 4, "166": 4, "94": [4, 1883, 1887], "023303": 4, "omegamaxent_interfac": 4, "effici": [4, 507, 516, 555, 581, 1849, 1886], "c": [4, 5, 7, 109, 110, 111, 112, 113, 118, 125, 134, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 155, 156, 157, 158, 299, 309, 310, 317, 320, 363, 407, 412, 428, 430, 431, 437, 456, 457, 459, 472, 473, 481, 484, 485, 488, 489, 490, 493, 494, 496, 499, 502, 503, 510, 514, 515, 516, 517, 520, 523, 524, 527, 528, 533, 535, 539, 542, 543, 552, 555, 564, 567, 571, 572, 579, 582, 583, 585, 586, 587, 595, 596, 616, 617, 676, 715, 754, 793, 832, 904, 905, 954, 985, 995, 1220, 1701, 1702, 1849, 1850, 1851, 1852, 1855, 1857, 1858, 1860, 1862, 1864, 1873, 1876, 1877, 1879, 1880, 1881, 1883, 1885, 1886, 1887, 1889, 1892, 1896, 1897, 1898, 1899, 1900, 1903, 1904, 1905, 1908], "mpi": [4, 9, 10, 245, 251, 260, 268, 292, 317, 407, 428, 430, 431, 448, 449, 456, 463, 472, 473, 481, 484, 485, 488, 498, 543, 551, 564, 567, 572, 583, 1805, 1806, 1848, 1849, 1850, 1852, 1854, 1856, 1857, 1869, 1873, 1875, 1877, 1879, 1880, 1889, 1892, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "oper": [4, 9, 14, 20, 28, 35, 42, 49, 64, 72, 77, 84, 96, 101, 128, 131, 141, 144, 153, 155, 156, 157, 158, 159, 165, 170, 171, 188, 189, 190, 196, 200, 225, 230, 231, 235, 236, 239, 242, 259, 260, 271, 283, 317, 325, 340, 341, 342, 351, 352, 353, 355, 357, 358, 359, 363, 366, 378, 390, 442, 449, 451, 463, 472, 473, 488, 490, 496, 498, 499, 500, 502, 503, 507, 511, 512, 513, 514, 517, 521, 539, 542, 549, 555, 556, 570, 573, 574, 575, 576, 577, 587, 589, 591, 593, 594, 595, 596, 600, 612, 614, 615, 616, 617, 621, 633, 661, 662, 1030, 1622, 1838, 1850, 1859, 1861, 1868, 1869, 1873, 1877, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1900, 1903, 1905, 1908], "phase": [4, 358, 363, 1859, 1877, 1899, 1903, 1904, 1908, 1909], "beth": [4, 1859, 1890, 1891, 1895, 1896, 1901, 1906], "salpet": [4, 1901, 1906], "2638058": 4, "systemat": [4, 449, 1889], "test": [4, 201, 202, 203, 226, 227, 300, 302, 497, 508, 511, 547, 551, 1780, 1848, 1850, 1853, 1857, 1858, 1864, 1865], "cmake": [4, 7, 1850, 1851, 1854, 1856, 1857, 1858, 1865, 1867], "own": [4, 8, 499, 1855, 1859, 1860, 1864, 1873, 1877, 1881], "standalon": [4, 491], "welcom": [5, 1854, 1859], "triq": [5, 6, 7, 8, 9, 10, 488, 501, 502, 507, 510, 515, 516, 518, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 557, 559, 560, 561, 562, 563, 565, 567, 568, 569, 570, 572, 573, 574, 575, 576, 577, 578, 579, 585, 586, 587, 1851, 1853, 1855, 1857, 1860, 1861, 1862, 1863, 1866, 1868, 1869, 1870, 1871, 1872, 1875, 1876, 1879, 1880, 1881, 1882, 1884, 1885, 1886, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909], "core": [5, 1850, 1852, 1873, 1877, 1881, 1892, 1897], "instal": [5, 7, 493, 586, 1849, 1852, 1855, 1856, 1858, 1865, 1866, 1867], "compil": [5, 9, 488, 490, 494, 502, 506, 507, 517, 581, 586, 1849, 1852, 1853, 1857, 1866, 1867, 1873, 1877], "advanc": [5, 73, 75, 205, 207, 215, 491, 494, 503, 517, 521, 525, 570, 578, 1849, 1873, 1877, 1889], "document": [5, 8, 15, 18, 21, 24, 30, 32, 36, 40, 43, 46, 48, 53, 65, 68, 73, 78, 81, 85, 88, 89, 97, 100, 102, 106, 118, 140, 142, 143, 159, 164, 182, 183, 185, 186, 197, 204, 206, 214, 215, 245, 246, 250, 251, 254, 255, 260, 261, 268, 272, 273, 280, 284, 285, 292, 299, 304, 309, 310, 317, 320, 329, 341, 342, 352, 358, 365, 367, 368, 372, 379, 384, 438, 443, 445, 451, 465, 488, 490, 491, 496, 503, 507, 512, 520, 523, 528, 537, 543, 544, 545, 546, 547, 548, 551, 563, 565, 568, 570, 585, 586, 1849, 1850, 1853, 1855, 1859, 1861, 1862, 1864, 1865, 1866, 1873, 1877, 1883, 1887, 1889, 1890, 1895, 1899, 1904], "api": [5, 409, 490, 491, 493, 494, 499, 518, 542, 549, 583, 1850, 1910], "python": [5, 11, 488, 490, 493, 494, 496, 498, 542, 543, 544, 545, 546, 547, 548, 550, 551, 571, 575, 578, 580, 581, 582, 584, 587, 906, 1833, 1849, 1850, 1851, 1852, 1854, 1856, 1864, 1865, 1868, 1869, 1883, 1884, 1886, 1887, 1888, 1889, 1894], "why": [5, 224, 526, 551, 570, 1873, 1874, 1876, 1877, 1878, 1880, 1883, 1887, 1896, 1900, 1903, 1905, 1908], "tour": [5, 9, 503], "ab": [5, 203, 216, 228, 502, 507, 564, 676, 715, 754, 793, 832, 935, 954, 1778, 1873, 1877, 1883, 1887, 1892, 1897], "initio": [5, 1873, 1877], "tool": [5, 9, 154, 488, 494, 542, 549, 563, 573, 578, 581, 583, 1597, 1849, 1850, 1851, 1854, 1857, 1858, 1859, 1864, 1870, 1872, 1881, 1883, 1887, 1905], "analyt": [5, 547, 1664, 1876, 1880, 1886, 1888, 1890, 1895, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "determin": [5, 9, 192, 224, 237, 488, 492, 499, 513, 514, 520, 527, 541, 551, 552, 570, 572, 573, 1683, 1690, 1769, 1859, 1860, 1873, 1877, 1879, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "changelog": [5, 1849, 1858, 1910], "0": [5, 19, 40, 46, 73, 95, 112, 114, 117, 120, 122, 125, 140, 141, 142, 143, 144, 149, 150, 151, 186, 195, 203, 216, 228, 235, 236, 252, 254, 255, 260, 305, 316, 317, 329, 356, 369, 370, 373, 374, 375, 380, 381, 385, 386, 387, 407, 410, 413, 428, 430, 431, 434, 445, 446, 450, 451, 454, 457, 459, 461, 463, 472, 473, 480, 481, 483, 484, 485, 499, 500, 502, 507, 508, 509, 510, 512, 513, 514, 515, 516, 519, 520, 525, 527, 528, 531, 532, 533, 535, 537, 540, 541, 543, 544, 545, 547, 548, 550, 552, 553, 555, 557, 558, 559, 560, 563, 567, 569, 570, 572, 573, 575, 576, 577, 579, 580, 581, 582, 583, 586, 587, 638, 648, 652, 693, 732, 771, 810, 849, 875, 927, 928, 929, 930, 935, 971, 1011, 1092, 1134, 1145, 1187, 1211, 1598, 1626, 1642, 1646, 1647, 1663, 1666, 1679, 1685, 1686, 1693, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1744, 1768, 1806, 1807, 1812, 1821, 1826, 1848, 1850, 1856, 1860, 1861, 1862, 1863, 1866, 1869, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1897, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908, 1910], "5": [5, 159, 245, 254, 255, 268, 292, 329, 450, 459, 461, 482, 483, 484, 485, 499, 500, 502, 509, 510, 513, 531, 543, 547, 548, 551, 558, 563, 567, 569, 570, 572, 579, 580, 586, 1860, 1861, 1869, 1872, 1875, 1876, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "4": [5, 19, 85, 95, 245, 254, 255, 268, 292, 329, 357, 449, 450, 454, 457, 459, 461, 482, 483, 484, 485, 496, 500, 508, 509, 510, 513, 540, 547, 555, 558, 563, 567, 575, 580, 586, 587, 1699, 1701, 1711, 1850, 1856, 1860, 1861, 1862, 1872, 1875, 1876, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "issu": [5, 8, 543, 570, 581, 1848, 1849, 1854, 1884], "author": [5, 553, 1213], "citat": 5, "disclaim": [5, 1873, 1877], "frequent": 5, "question": [5, 6, 7, 343, 346, 396, 399, 1849, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1899, 1901, 1904, 1906], "q": [5, 561, 573, 1686, 1762, 1849, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "my": [5, 497, 569, 1867, 1882], "gf": [5, 9, 10, 182, 183, 184, 185, 186, 329, 499, 500, 515, 516, 517, 518, 519, 520, 522, 523, 524, 526, 531, 534, 536, 537, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 554, 560, 561, 575, 576, 577, 579, 580, 585, 586, 636, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1754, 1760, 1850, 1863, 1864, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "hash": 5, "regard": 6, "consult": [6, 499], "make": [6, 7, 130, 224, 232, 233, 234, 235, 236, 237, 238, 239, 250, 260, 305, 318, 354, 356, 365, 490, 507, 508, 511, 515, 517, 519, 522, 523, 524, 525, 543, 551, 568, 570, 572, 574, 577, 580, 587, 860, 1058, 1069, 1082, 1095, 1108, 1121, 1137, 1148, 1156, 1168, 1722, 1832, 1848, 1850, 1851, 1854, 1855, 1857, 1858, 1867, 1870, 1873, 1877, 1883, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "easier": [6, 1873, 1877, 1883, 1887, 1890, 1895], "fill": [6, 451, 457, 502, 503, 509, 516, 517, 519, 527, 544, 545, 547, 548, 555, 560, 689, 690, 691, 692, 728, 729, 730, 731, 767, 768, 769, 770, 806, 807, 808, 809, 845, 846, 847, 848, 967, 968, 969, 970, 1007, 1008, 1009, 1010, 1869, 1874, 1878, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1903, 1905, 1908], "new": [6, 8, 122, 123, 204, 206, 214, 217, 223, 235, 236, 237, 257, 297, 319, 335, 336, 354, 368, 376, 379, 388, 450, 451, 459, 492, 496, 497, 498, 506, 513, 514, 519, 551, 564, 570, 572, 573, 581, 587, 862, 879, 1685, 1696, 1778, 1849, 1850, 1855, 1858, 1861, 1866, 1867, 1873, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1887, 1888, 1894, 1910], "happi": 6, "improv": [6, 520, 571, 1597, 1850, 1873, 1877, 1910], "coordin": [6, 517, 557, 562, 563, 1600, 1617, 1626, 1628, 1629, 1630, 1637, 1653, 1862, 1882, 1888, 1894], "chang": [6, 7, 8, 224, 230, 231, 232, 233, 234, 409, 500, 512, 513, 543, 551, 568, 573, 576, 1685, 1692, 1696, 1714, 1715, 1716, 1849, 1850, 1852, 1854, 1858, 1861, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1887, 1889, 1890, 1891, 1894, 1895, 1896, 1901, 1906, 1907, 1910], "engag": 6, "forum": [6, 1849], "channel": [6, 1877, 1879, 1880, 1895, 1902, 1907], "announc": 6, "gladli": 7, "accept": [7, 218, 414, 417, 432, 439, 440, 449, 505, 507, 508, 513, 521, 561, 564, 567, 568, 570, 587, 875, 1755, 1761, 1887, 1889, 1896], "come": [7, 500, 558, 560, 569, 1855, 1860, 1861, 1884, 1890, 1895, 1903, 1908], "learn": [7, 8, 581, 1859, 1861, 1862, 1873, 1874, 1877, 1878, 1881, 1885, 1886, 1890, 1893, 1895], "green": [7, 9, 182, 183, 184, 185, 186, 245, 251, 253, 254, 255, 257, 259, 260, 268, 271, 283, 300, 302, 306, 307, 308, 312, 313, 314, 315, 316, 317, 321, 488, 492, 496, 499, 500, 502, 517, 518, 519, 521, 524, 526, 528, 531, 532, 535, 536, 537, 549, 550, 553, 554, 560, 577, 579, 580, 635, 636, 637, 638, 661, 662, 664, 666, 667, 668, 669, 670, 676, 677, 679, 680, 683, 685, 697, 698, 699, 700, 703, 705, 706, 707, 708, 709, 715, 716, 718, 719, 722, 724, 736, 737, 738, 739, 742, 744, 745, 746, 747, 748, 754, 755, 757, 758, 761, 763, 775, 776, 777, 778, 781, 783, 784, 785, 786, 787, 793, 794, 796, 797, 800, 802, 814, 815, 816, 817, 820, 822, 823, 824, 825, 826, 832, 833, 835, 836, 839, 841, 853, 854, 855, 856, 859, 860, 863, 874, 875, 880, 891, 906, 916, 929, 935, 942, 944, 945, 946, 947, 948, 954, 955, 957, 958, 961, 963, 975, 976, 977, 978, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 1012, 1079, 1092, 1105, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1209, 1210, 1212, 1213, 1216, 1217, 1218, 1219, 1220, 1699, 1723, 1756, 1849, 1859, 1868, 1869, 1875, 1876, 1879, 1880, 1884, 1885, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1905], "plai": [7, 541, 552, 1873, 1877, 1895], "futur": [7, 1832], "willing": 7, "check": [7, 189, 200, 225, 297, 300, 302, 319, 334, 346, 348, 349, 353, 399, 401, 402, 449, 498, 502, 507, 561, 575, 641, 1679, 1712, 1762, 1763, 1803, 1849, 1850, 1858, 1859, 1874, 1878, 1883, 1884, 1886, 1887, 1899, 1900, 1902, 1904, 1905, 1907], "websit": [7, 1850], "go": [7, 8, 570, 1849, 1859, 1873, 1877, 1883, 1887, 1889, 1890, 1895, 1900, 1901, 1905, 1906], "submit": [7, 8], "unsur": 7, "dbuild_document": [7, 1853], "dsphinx_onli": 7, "Then": [7, 514, 551, 582, 1778, 1850, 1866, 1873, 1877, 1882, 1889, 1890, 1895, 1903, 1908], "move": [7, 8, 85, 88, 196, 224, 245, 261, 272, 273, 284, 285, 407, 408, 410, 414, 428, 430, 431, 432, 433, 434, 435, 439, 440, 441, 507, 513, 523, 525, 569, 572, 1873, 1877, 1889, 1896], "doc": [7, 8, 207, 215, 268, 407, 413, 428, 430, 431, 489, 490, 493, 498, 525, 585, 1670, 1738, 1864, 1873, 1877, 1881], "cd": [7, 8, 363, 572, 676, 715, 754, 793, 832, 954, 1850, 1867, 1873, 1877], "becaus": [7, 491, 508, 516, 517, 543, 551, 570, 585, 1854, 1880, 1881, 1883, 1887, 1890, 1895, 1903, 1908], "want": [7, 519, 529, 533, 535, 543, 570, 579, 581, 583, 587, 1849, 1852, 1855, 1856, 1858, 1859, 1861, 1862, 1864, 1866, 1867, 1873, 1875, 1877, 1879, 1882, 1883, 1884, 1887, 1890, 1895], "docs_example_output": 7, "modifi": [7, 8, 357, 494, 513, 520, 524, 537, 546, 551, 581, 671, 710, 749, 788, 827, 949, 997, 1860, 1867, 1869, 1873, 1877, 1882, 1884, 1890, 1891, 1895, 1896], "src": [7, 8, 268, 585, 1867], "rebuild": [7, 217, 506, 513, 665, 704, 743, 782, 821], "hand": [7, 251, 268, 450, 502, 1873, 1877, 1899, 1902, 1903, 1904, 1907, 1908], "autobuild": 7, "form": [8, 9, 11, 159, 463, 490, 493, 500, 502, 503, 506, 527, 528, 541, 555, 556, 563, 568, 572, 573, 861, 876, 1664, 1684, 1832, 1869, 1873, 1877, 1879, 1883, 1885, 1887, 1888, 1894, 1900, 1902, 1905, 1907], "click": [8, 1874, 1878, 1881], "button": 8, "right": [8, 224, 251, 268, 451, 465, 480, 481, 487, 502, 553, 567, 676, 715, 754, 793, 832, 954, 1191, 1211, 1873, 1874, 1877, 1878, 1881, 1883, 1887, 1889, 1890, 1895, 1899, 1902, 1903, 1904, 1907, 1908], "screen": [8, 570, 573, 1683, 1684, 1685, 1690], "remot": 8, "origin": [8, 11, 15, 16, 17, 18, 21, 24, 40, 43, 44, 71, 73, 74, 75, 76, 78, 81, 85, 87, 89, 92, 93, 97, 98, 99, 100, 102, 106, 256, 257, 531, 547, 573, 587, 1696, 1873, 1877, 1879, 1883, 1886, 1887, 1903, 1907, 1908], "fetch": [8, 1850], "my_triq": 8, "your_usernam": 8, "again": [8, 568, 1872, 1873, 1876, 1877, 1880, 1884, 1890, 1891, 1895, 1896], "final": [8, 153, 155, 156, 157, 158, 449, 456, 499, 500, 520, 564, 567, 569, 570, 593, 595, 614, 616, 1666, 1849, 1850, 1883, 1886, 1887, 1889, 1892, 1897, 1900, 1905], "congratul": 8, "sync": 8, "checkout": 8, "my_first_pr": 8, "usual": [8, 508, 509, 510, 515, 551, 568, 570, 1851, 1873, 1877, 1881, 1890, 1895, 1900, 1905], "mind": [8, 543], "concis": 8, "bracket": [8, 511, 516, 542, 549], "what": [8, 292, 362, 496, 498, 543, 568, 570, 571, 580, 585, 1867, 1873, 1875, 1877, 1879, 1881, 1882, 1883, 1884, 1886, 1887, 1889, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "instanc": [8, 451, 563, 568, 569, 570, 572, 574, 1626, 1864], "det_manip": [8, 9, 10, 512, 514, 1859], "multipli": [8, 11, 32, 47, 48, 369, 373, 380, 385, 507, 523, 560, 1883, 1887], "squash": 8, "readi": [8, 494, 570, 572, 1849, 1859, 1867], "experi": [8, 1849, 1854, 1873, 1877], "atom_diag": [9, 10, 488, 1885], "lightweight": [9, 154, 488, 590, 591, 612, 1885], "exact": [9, 154, 488, 589, 590, 591, 612, 1876, 1880, 1889, 1901, 1906], "atom_diag_funct": [9, 500], "clef": [9, 254, 255, 488, 502, 518, 519, 523, 527, 528, 531, 541, 542, 1860, 1862, 1863], "motiv": [9, 503], "littl": [9, 497, 503, 505, 512, 517, 523, 532, 537, 542, 549, 564, 580, 581, 1859], "manipul": [9, 191, 488, 496, 503, 515, 518, 571, 1859, 1860, 1862, 1868, 1870, 1881, 1886], "notion": [9, 492, 517, 542, 575, 1854], "py": [9, 494, 542, 581, 1858, 1864, 1866, 1873, 1877, 1881, 1885, 1887, 1890, 1891, 1895, 1896, 1905], "hilbert_spac": [9, 10, 166, 488, 500, 572], "hilbert": [9, 153, 159, 160, 166, 167, 177, 340, 341, 342, 344, 345, 348, 349, 350, 351, 352, 356, 357, 358, 360, 365, 368, 370, 371, 376, 377, 378, 379, 381, 382, 388, 389, 390, 391, 392, 395, 397, 398, 401, 402, 403, 404, 488, 500, 550, 558, 559, 598, 601, 610, 619, 622, 631, 649, 655, 916, 929, 1889, 1896, 1897], "sub_hilbert_spac": [9, 324, 351, 352, 356, 365, 378, 555], "imperative_oper": [9, 324, 555], "imper": [9, 351, 357, 358, 359, 555], "introductori": 9, "Ising": [9, 565, 570], "chain": [9, 502, 565, 570, 1889], "magnet": [9, 565, 570], "quantiz": [9, 488], "object": [9, 11, 14, 26, 33, 42, 58, 72, 84, 96, 112, 119, 122, 123, 125, 126, 140, 142, 143, 149, 150, 151, 197, 251, 254, 255, 260, 268, 292, 300, 302, 314, 315, 316, 317, 329, 332, 333, 336, 344, 351, 352, 354, 355, 356, 360, 368, 370, 374, 375, 379, 381, 386, 387, 397, 451, 461, 472, 473, 480, 481, 490, 492, 494, 496, 499, 500, 502, 507, 510, 515, 517, 519, 524, 527, 528, 533, 535, 543, 544, 545, 546, 547, 548, 550, 551, 553, 556, 559, 560, 561, 564, 570, 571, 572, 573, 574, 578, 579, 583, 587, 655, 656, 659, 860, 935, 1186, 1189, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1217, 1646, 1659, 1662, 1663, 1664, 1693, 1726, 1732, 1740, 1760, 1800, 1805, 1832, 1841, 1844, 1862, 1876, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1890, 1895], "proven": [9, 488, 1858], "stat": [9, 10, 488], "averag": [9, 190, 449, 451, 453, 480, 481, 482, 483, 484, 485, 564, 1873, 1877, 1889, 1896], "notat": [9, 488, 532, 543, 572], "hdf5": [9, 208, 209, 247, 248, 249, 263, 264, 265, 275, 276, 277, 287, 288, 289, 332, 333, 344, 345, 397, 398, 400, 425, 426, 463, 467, 468, 469, 488, 490, 539, 542, 543, 549, 571, 1849, 1850, 1854, 1856, 1857, 1859, 1868, 1899, 1904], "cpp2py": [9, 488, 489, 490, 493, 494, 1851], "principl": [9, 491, 496, 498, 499, 507, 564, 581, 1867, 1883, 1887, 1899, 1902, 1904, 1907], "mc_tool": [9, 10, 567, 569, 570], "itertool": [9, 10, 113, 500, 572, 587, 1849, 1860, 1873, 1875, 1876, 1877, 1879, 1880], "iterator_facad": 11, "forward_iterator_tag": 11, "crtp": 11, "sentinel_t": [11, 18, 24, 33, 40, 46, 89, 93, 100, 106, 328, 331], "sentinel": [11, 18, 33, 46, 89, 100], "rang": [11, 12, 15, 19, 20, 21, 24, 26, 32, 34, 35, 36, 39, 40, 42, 43, 45, 47, 48, 63, 64, 65, 68, 71, 73, 77, 78, 81, 83, 85, 90, 92, 93, 95, 97, 101, 102, 105, 106, 113, 114, 179, 463, 465, 476, 500, 527, 528, 533, 535, 541, 563, 582, 1742, 1849, 1869, 1873, 1877, 1879, 1880, 1881, 1882, 1891, 1892, 1894, 1895, 1896, 1897, 1903, 1907, 1908], "enum_it": [11, 21], "prod_it": [11, 36], "cartesian": [11, 35, 517, 518, 521, 532, 1044, 1886], "mimic": 11, "stride_it": [11, 78, 81], "transform_it": [11, 92], "zip_it": [11, 102], "zip": [11, 587, 1873, 1877, 1899, 1904, 1905], "make_sentinel": 11, "similar": [11, 189, 498, 508, 514, 551, 580, 1664, 1873, 1877, 1880, 1883, 1887, 1890, 1895, 1910], "arrai": [11, 32, 48, 128, 129, 130, 245, 246, 254, 255, 256, 257, 260, 261, 270, 272, 273, 282, 284, 285, 295, 451, 461, 466, 496, 497, 499, 502, 516, 519, 521, 525, 526, 527, 528, 532, 533, 535, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 560, 561, 562, 563, 573, 575, 576, 580, 585, 586, 646, 650, 660, 664, 672, 673, 674, 675, 700, 703, 711, 712, 713, 714, 739, 742, 750, 751, 752, 753, 778, 781, 789, 790, 791, 792, 817, 820, 828, 829, 830, 831, 856, 906, 942, 950, 951, 952, 953, 978, 998, 999, 1000, 1001, 1057, 1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1187, 1211, 1215, 1216, 1217, 1613, 1619, 1620, 1622, 1631, 1648, 1663, 1664, 1666, 1684, 1685, 1689, 1691, 1692, 1693, 1694, 1696, 1699, 1709, 1710, 1711, 1714, 1715, 1716, 1726, 1731, 1732, 1745, 1754, 1756, 1758, 1760, 1762, 1765, 1815, 1829, 1848, 1849, 1856, 1859, 1867, 1870, 1873, 1877, 1879, 1880, 1881, 1882, 1886, 1887, 1900, 1905, 1908], "make_vector_from_rang": 11, "last": [11, 12, 13, 45, 48, 49, 52, 53, 196, 419, 422, 513, 514, 520, 539, 570, 580, 587, 1873, 1876, 1877, 1879, 1880, 1888, 1889, 1890, 1894, 1895, 1896, 1903, 1908], "divid": [11, 12, 113, 463, 514, 570, 1742, 1873, 1877, 1879, 1880, 1905], "equal": [11, 14, 18, 25, 41, 42, 46, 59, 69, 72, 76, 82, 84, 89, 96, 100, 107, 348, 349, 401, 402, 463, 465, 476, 478, 480, 481, 547, 1742, 1852, 1873, 1877, 1881, 1883, 1886, 1887, 1892, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "unari": 11, "callabl": [11, 26, 83, 84, 85, 86, 90, 92, 354, 355, 360, 370, 381, 507, 556, 579, 587, 659, 860, 1832, 1841], "synopsi": [12, 13, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 502, 510, 511, 517, 518, 521, 522, 524, 526, 531, 534, 537, 539, 540, 542, 587], "ptrdiff_t": [12, 63, 70, 71, 73], "n_chunk": 12, "indic": [12, 179, 182, 183, 184, 185, 186, 269, 281, 294, 305, 325, 329, 342, 515, 517, 523, 532, 541, 543, 544, 545, 546, 547, 548, 550, 551, 554, 555, 560, 561, 572, 574, 579, 580, 589, 591, 612, 697, 736, 775, 814, 853, 861, 867, 868, 876, 975, 1012, 1204, 1627, 1647, 1663, 1699, 1755, 1756, 1761, 1833, 1848, 1858, 1873, 1877, 1881, 1883, 1885, 1887, 1889, 1891, 1895, 1896, 1900, 1901, 1905, 1906, 1910], "typenam": [13, 14, 18, 19, 20, 26, 27, 28, 32, 33, 34, 35, 39, 42, 46, 47, 48, 62, 63, 64, 71, 72, 77, 83, 84, 89, 90, 95, 96, 100, 101, 105, 109, 110, 111, 112, 113, 125, 126, 128, 129, 131, 132, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 181, 188, 189, 190, 192, 197, 237, 241, 242, 245, 251, 253, 254, 255, 256, 257, 258, 259, 260, 268, 271, 283, 284, 292, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 323, 329, 335, 351, 354, 355, 356, 357, 360, 365, 366, 370, 378, 381, 406, 408, 409, 410, 427, 432, 434, 445, 449, 461, 480, 481, 482, 483, 484, 485, 487, 502, 510, 511, 513, 521, 523, 572, 574, 587], "iter1": 13, "iter2": 13, "iterator_trait": [13, 84], "difference_typ": 13, "increment": [14, 28, 30, 42, 71, 72, 84, 96, 1768, 1769], "derefer": [14, 28, 29, 31, 42, 72, 84, 96, 490], "decltyp": [16, 29, 31, 44, 74, 86, 98, 109, 110, 125, 149, 151, 517, 587], "dereferenc": [16, 44, 74, 86, 98], "void": [17, 26, 45, 75, 87, 99, 111, 112, 116, 117, 129, 136, 138, 140, 143, 150, 195, 196, 208, 209, 218, 223, 225, 226, 227, 228, 230, 231, 247, 248, 263, 264, 275, 276, 280, 287, 288, 292, 293, 296, 322, 323, 332, 333, 335, 336, 344, 345, 355, 360, 370, 376, 381, 388, 391, 397, 398, 403, 409, 410, 411, 412, 425, 426, 427, 429, 434, 436, 437, 441, 450, 464, 467, 468, 472, 490, 492, 493, 499, 502, 511, 513, 517, 521, 564, 567, 570, 585, 587], "bool": [18, 25, 41, 46, 59, 69, 76, 82, 89, 100, 107, 125, 127, 135, 139, 141, 142, 143, 149, 150, 153, 154, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 216, 245, 299, 300, 301, 302, 309, 310, 317, 320, 334, 337, 346, 348, 349, 351, 353, 356, 358, 359, 363, 365, 399, 401, 402, 407, 408, 413, 428, 430, 431, 473, 478, 513, 544, 545, 546, 547, 548, 553, 567, 570, 572, 573, 575, 664, 681, 682, 700, 703, 720, 721, 739, 742, 759, 760, 778, 781, 798, 799, 817, 820, 837, 838, 856, 942, 959, 960, 978, 1002, 1003, 1079, 1092, 1105, 1127, 1211, 1626, 1663, 1666, 1674, 1679, 1684, 1698, 1700, 1701, 1702, 1711, 1803, 1887], "sentinelit": [18, 46, 89, 100], "true": [18, 46, 76, 89, 100, 115, 120, 121, 122, 127, 135, 139, 300, 301, 302, 324, 334, 346, 348, 349, 352, 358, 363, 399, 401, 402, 407, 408, 413, 428, 430, 431, 478, 490, 493, 498, 500, 507, 508, 510, 544, 545, 546, 547, 548, 551, 555, 567, 568, 572, 573, 579, 582, 594, 596, 664, 700, 703, 739, 742, 778, 781, 817, 820, 856, 860, 875, 887, 935, 942, 978, 1018, 1626, 1664, 1666, 1684, 1700, 1701, 1702, 1754, 1756, 1803, 1837, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1890, 1892, 1895, 1897, 1899, 1904, 1905, 1906], "rg": [19, 26, 34, 39, 47, 58, 63, 71, 83, 95, 105, 113], "iostream": [19, 95, 450, 454, 457, 459, 499, 502, 508, 509, 510, 567, 569, 570, 585, 587], "cout": [19, 95, 254, 255, 450, 454, 457, 459, 482, 483, 484, 485, 499, 502, 506, 508, 509, 510, 513, 523, 527, 528, 531, 541, 555, 567, 569, 570, 572, 585, 587, 1860, 1861, 1862, 1863, 1867], "endl": [19, 95, 450, 454, 457, 459, 482, 483, 484, 485, 499, 502, 506, 508, 509, 510, 513, 523, 527, 528, 531, 555, 567, 569, 570, 572, 585, 587, 1860, 1861, 1862, 1863, 1867], "cbegin": [20, 35, 49, 50, 64, 77, 90, 91, 101, 325, 517, 572], "cend": [20, 35, 49, 54, 64, 77, 90, 94, 101, 325, 517, 572], "noexcept": [21, 24, 36, 40, 53, 65, 68, 78, 81, 102, 106, 127, 197, 268, 272, 280, 284, 293, 513], "const_iter": [21, 22, 36, 37, 50, 51, 52, 54, 65, 66, 67, 68, 78, 79, 80, 81, 91, 92, 102, 103, 326, 327, 331, 490, 517, 539, 572], "pre": [28, 451, 480, 481, 482, 483, 484, 485, 1850, 1873, 1877, 1881], "size_t": [32, 48, 479, 502, 513, 517, 556, 686, 725, 764, 803, 842, 964, 1004], "denot": [34, 480, 481, 532, 541, 564, 573, 575, 576, 577, 1685, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1883, 1886, 1887, 1892, 1897, 1910], "tu": [40, 587], "endit": [42, 43, 46], "its_begin": 43, "its_end": 43, "enableif": 48, "enable_if_t": 48, "is_integral_v": 48, "idx_tpl": 48, "idx_arr": 48, "shift": [49, 57, 186, 513, 547, 935, 1873, 1876, 1877, 1879, 1880, 1881, 1888, 1889, 1894, 1896, 1903, 1908], "whole": [49, 311, 507, 561, 1760, 1875, 1879], "amount": [49, 57, 463, 520, 1742, 1873, 1877, 1883, 1887, 1903, 1908], "start_idx": 63, "end_idx": 63, "past": [63, 328, 331, 572], "skip": 71, "end_offset": 81, "invoke_result_t": 84, "typenamestd": 84, "value_typ": [84, 193, 194, 210, 211, 212, 213, 214, 215, 219, 220, 221, 222, 232, 233, 234, 235, 236, 237, 238, 239, 369, 372, 373, 380, 384, 385, 513, 524, 537, 556], "v1": [95, 556, 1883, 1887], "v2": [95, 556, 1883, 1887], "y": [95, 193, 197, 206, 210, 213, 232, 233, 235, 236, 237, 512, 513, 518, 531, 536, 537, 542, 570, 572, 573, 576, 579, 580, 583, 587, 659, 660, 669, 708, 747, 786, 825, 913, 947, 1019, 1185, 1187, 1201, 1205, 1689, 1692, 1694, 1716, 1719, 1768, 1778, 1850, 1858, 1861, 1873, 1877, 1879, 1881, 1882, 1886, 1892, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "mpi_op": [110, 111, 131, 132, 142, 143, 149, 150, 317, 473, 499], "mpi_sum": [110, 111, 142, 143, 149, 150, 317, 473, 499], "subrang": 114, "interest": [114, 511, 570, 1873, 1877, 1889, 1891, 1896, 1900, 1905], "sup": 114, "disjoint": 115, "abort": 115, "mpi_abort": [115, 116, 413], "error_cod": 116, "poll_msec": [117, 1806, 1820], "interv": [117, 463, 520, 533, 535, 569, 570, 582, 1134, 1145, 1154, 1166, 1742, 1862, 1883, 1887, 1889, 1902, 1907], "millisecond": 117, "mpi_barri": 117, "mpi_comm": [118, 119, 122, 499], "mpi_comm_world": [118, 499], "mpi_comm_rank": 120, "mpi_comm_s": 121, "argc": [124, 499, 500, 567, 570], "char": [124, 499, 500, 567, 570, 587, 1873, 1877], "argv": [124, 493, 499, 500, 567, 570, 581, 1848], "mpi_datatyp": [126, 148, 499], "tup": 126, "nda": [128, 129, 215, 252, 254, 255, 322, 365, 366, 367, 451, 455, 456, 461, 466, 499, 502, 506, 507, 508, 509, 510, 516, 519, 523, 524, 527, 528, 531, 532, 541, 562, 1613, 1631, 1648, 1849, 1860, 1862, 1863, 1867], "invok": [128, 1832, 1841, 1844], "view": [128, 129, 250, 271, 272, 280, 284, 292, 293, 318, 490, 516, 518, 519, 522, 525, 531, 534, 535, 537, 542, 549, 581, 677, 685, 700, 716, 724, 739, 755, 763, 778, 794, 802, 817, 833, 841, 856, 871, 894, 955, 963, 978, 1815, 1829, 1866, 1869, 1873, 1877, 1883, 1884, 1887], "pointer": [131, 251, 268, 352, 517, 522], "emerg": 135, "finish": [139, 196, 1780, 1873, 1876, 1877, 1879, 1880, 1889, 1896], "mpi_isend": 139, "local_stop": 139, "string": [140, 208, 209, 247, 248, 249, 263, 264, 265, 275, 276, 277, 287, 288, 289, 296, 304, 325, 328, 331, 332, 333, 335, 344, 345, 347, 397, 398, 400, 408, 410, 413, 414, 425, 426, 434, 439, 440, 443, 444, 447, 467, 468, 469, 490, 493, 496, 497, 499, 523, 544, 545, 546, 547, 548, 551, 553, 557, 559, 567, 569, 570, 572, 573, 575, 576, 577, 580, 581, 589, 591, 612, 646, 653, 660, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1211, 1598, 1627, 1647, 1685, 1688, 1689, 1692, 1694, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1740, 1778, 1834, 1839, 1843, 1873, 1877, 1885], "reduct": [141, 142, 143, 149, 150, 473, 481, 500, 587], "datatyp": [145, 499], "mpi_scatt": [151, 499, 539], "partition_funct": [152, 500, 501], "atomic_density_matrix": [152, 500, 501], "act": [152, 351, 354, 449, 480, 481, 501, 555, 567, 660, 1882, 1900, 1905], "quantum_number_eigenvalues_check": [152, 501], "atomic_g_lehmann": [152, 500, 501], "atomic_g_tau": [152, 500, 501, 1885], "atomic_g_iw": [152, 500, 501], "atomic_g_l": [152, 500, 501], "atomic_g_w": [152, 500, 501], "full_hilbert_space_state_t": [153, 177, 633], "many_body_op_t": [153, 159, 169, 171, 188, 189, 190], "st": [153, 354, 356, 358, 368, 370, 379, 381, 555, 633], "finit": [154, 451, 500, 520, 544, 546, 555, 670, 709, 748, 787, 826, 948, 1067, 1859, 1873, 1877, 1895, 1899, 1901, 1904, 1906, 1909], "moder": [154, 500], "get_h_atom": 154, "get_fop": 154, "get_full_hilbert_spac": 154, "get_full_hilbert_space_dim": 154, "n_subspac": [154, 357, 500, 555], "get_fock_st": [154, 340, 390, 555], "get_unitary_matrix": 154, "get_unitary_matric": 154, "flatten_subspace_index": 154, "index_range_of_subspac": 154, "get_eigensystem": 154, "get_eigenvalu": 154, "get_energi": 154, "get_quantum_numb": 154, "get_gs_energi": 154, "get_vacuum_subspace_index": 154, "get_vacuum_st": 154, "c_connect": 154, "cdag_connect": 154, "c_matrix": 154, "cdag_matrix": 154, "op_linear_index": [155, 156, 157, 158, 593, 594, 595, 596, 614, 615, 616, 617], "sp_index": [155, 156, 157, 158, 160, 162, 163, 164, 172, 173, 176, 179, 593, 594, 595, 596, 598, 602, 603, 614, 615, 616, 617, 619, 623, 624], "connect": [155, 157, 170, 351, 352, 357, 359, 363, 515, 555, 570, 593, 595, 614, 616, 1849, 1873, 1877], "annihil": [155, 156, 159, 363, 572, 589, 591, 612, 1676, 1885, 1892, 1897], "matrix_t": [156, 158, 170], "dagger": [157, 158, 515, 572, 573, 575, 576, 1685, 1696, 1711, 1717, 1883, 1885, 1887, 1889, 1892, 1897], "qn_vector": [159, 589, 591, 612, 1885], "initializer_list": [159, 304, 523], "init_lst": 159, "uniniti": 159, "qr": [159, 589, 591, 612, 1885], "invari": [159, 160, 162, 173, 178, 179, 180, 190, 357, 358, 362, 363, 364, 500, 555, 573, 575, 607, 611, 628, 632, 1684, 1711], "chosen": [159, 463, 553, 564, 573, 1211, 1685, 1742, 1888, 1889, 1894], "met": [159, 352, 572, 589, 591, 612, 1700, 1701, 1702, 1876, 1880, 1885], "inner": [160, 182, 183, 184, 185, 186, 577, 598, 619, 860, 1699, 1723], "eigensystem": 161, "fock_state_t": [164, 342, 343, 346, 368, 379, 384, 391, 393, 394, 396, 399], "fock": [164, 175, 176, 325, 340, 342, 343, 346, 350, 360, 362, 365, 370, 381, 390, 391, 393, 394, 396, 399, 401, 402, 404, 555, 589, 591, 599, 609, 612, 620, 630, 1626, 1885], "ground": [168, 605, 626, 1903, 1908], "min": [168, 186, 515, 520, 605, 626, 1873, 1877, 1883, 1887], "monomial_t": [170, 572], "op_vec": 170, "monomi": [170, 354, 571, 574, 575, 1708], "canon": [170, 325, 572, 1883, 1887], "necessarili": 170, "op_block_mat_t": 171, "eigen": 171, "quantum_number_t": [172, 188, 189], "qn_index": 172, "qunatum": 172, "scalar_t": [175, 176, 190, 352, 572, 574, 594, 596, 615, 617, 642], "eigenst": [175, 176, 182, 183, 184, 185, 186, 188, 189, 500, 609, 630, 640, 641], "vacuum": [177, 178, 610, 611, 631, 632], "block_matrix_t": [181, 190, 634, 642, 1698, 1703], "temperatur": [181, 182, 183, 184, 185, 186, 187, 500, 544, 546, 547, 567, 570, 670, 709, 748, 787, 826, 877, 948, 1030, 1079, 1092, 1105, 1118, 1134, 1145, 1859, 1862, 1863, 1873, 1877, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1897, 1899, 1901, 1904, 1906, 1909], "gibb": 181, "gf_lehmann_t": [182, 183, 184, 185, 186], "gf_struct": [182, 183, 184, 185, 186, 245, 296, 329, 500, 635, 636, 637, 638, 875, 897, 1698, 1699, 1703, 1754, 1756, 1869, 1883, 1885, 1887, 1889, 1891, 1892, 1895, 1896, 1897], "mesh": [182, 183, 185, 186, 241, 242, 245, 251, 252, 254, 255, 257, 259, 260, 268, 271, 272, 283, 284, 300, 302, 311, 314, 316, 516, 518, 519, 520, 521, 524, 525, 531, 541, 542, 543, 544, 545, 546, 547, 548, 553, 650, 664, 665, 669, 670, 676, 684, 686, 698, 699, 703, 704, 708, 709, 715, 723, 725, 737, 738, 742, 743, 747, 748, 754, 762, 764, 776, 777, 781, 782, 786, 787, 793, 801, 803, 815, 816, 820, 821, 825, 826, 832, 840, 842, 854, 855, 875, 935, 942, 947, 948, 954, 962, 964, 976, 977, 1004, 1038, 1044, 1046, 1201, 1204, 1207, 1215, 1217, 1634, 1635, 1650, 1651, 1848, 1862, 1863, 1873, 1876, 1877, 1879, 1880, 1884, 1886, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "excluded_states_t": [182, 183, 184, 185, 186], "excluded_st": [182, 183, 184, 185, 186, 635, 636, 637, 638], "precomput": [182, 183, 185, 186, 509], "possibli": [182, 183, 185, 186, 553, 571, 635, 636, 637, 638, 1213, 1780, 1854], "none": [182, 183, 185, 186, 413, 489, 490, 492, 493, 498, 523, 529, 532, 544, 545, 546, 547, 548, 553, 559, 560, 561, 573, 575, 576, 579, 587, 635, 636, 637, 638, 653, 659, 660, 671, 687, 688, 689, 690, 691, 692, 693, 700, 710, 726, 727, 728, 729, 730, 731, 732, 739, 749, 765, 766, 767, 768, 769, 770, 771, 778, 788, 804, 805, 806, 807, 808, 809, 810, 817, 827, 843, 844, 845, 846, 847, 848, 849, 856, 942, 949, 965, 966, 967, 968, 969, 970, 971, 978, 997, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1017, 1037, 1038, 1059, 1070, 1083, 1096, 1109, 1122, 1128, 1138, 1149, 1157, 1169, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1211, 1215, 1591, 1626, 1627, 1632, 1646, 1647, 1663, 1666, 1684, 1685, 1693, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1744, 1760, 1762, 1763, 1778, 1780, 1806, 1819, 1832, 1835, 1838, 1840, 1854, 1873, 1877, 1879, 1886, 1887], "g_": [182, 183, 185, 186, 515, 541, 550, 676, 715, 754, 793, 832, 954, 1869, 1873, 1877, 1883, 1887, 1888, 1891, 1892, 1894, 1896, 1897, 1900, 1905], "ell": 183, "broaden": [186, 500, 638, 1876, 1880], "energy_window": [186, 638], "n_w": [186, 500, 638, 1154, 1873, 1876, 1877, 1879, 1880, 1883, 1884, 1887, 1894, 1900, 1905], "retard": [186, 542, 543, 549], "lorentian": 186, "omega_": [186, 520, 541, 1883, 1887], "max": [186, 449, 515, 517, 541, 1883, 1887], "suppos": [188, 189, 514, 1864], "density_matrix": [190, 544, 546, 642, 670, 709, 748, 787, 826, 948, 1890, 1895], "tr": [190, 642, 1903, 1907, 1908], "qmc": [191, 407, 428, 430, 431, 500, 585, 1869, 1873, 1877, 1889, 1891, 1892, 1895, 1896, 1897], "functiontyp": [192, 197, 199, 208, 209, 513], "get_singular_threshold": 192, "set_singular_threshold": 192, "get_n_operations_before_check": 192, "set_n_operations_before_check": 192, "get_precision_warn": 192, "set_precision_warn": 192, "get_precision_error": 192, "set_precision_error": 192, "get_x": [192, 513, 1861], "get_i": [192, 513, 1861], "get_x_internal_ord": [192, 207, 215], "get_y_internal_ord": 192, "get_funct": 192, "inverse_matrix": [192, 513, 1861], "inverse_matrix_internal_ord": 192, "swap_col": 192, "try_remov": [192, 219, 222, 513, 1861], "try_remove_k": 192, "try_change_col": [192, 193, 513], "try_change_row": [192, 194, 513], "try_refil": 192, "is_singular": 192, "reject_last_tri": 192, "insert_at_end": [192, 1861], "remov": [192, 238, 239, 480, 481, 498, 512, 513, 520, 525, 580, 1626, 1854, 1876, 1880, 1889, 1896], "roll_matrix": [192, 513], "try_insert_k": 192, "y_type": [193, 206, 207, 210, 211, 212, 213, 232, 233, 235, 236], "x_type": [194, 204, 205, 210, 211, 212, 213, 233, 234, 235, 236], "try_xxx": [196, 218, 223, 224], "init_s": [197, 513, 1861], "argumentcontainer1": [197, 237, 513], "argumentcontainer2": [197, 237, 513], "argumentcontain": 197, "resiz": [197, 251, 268, 292, 461, 522, 1861], "factor": [197, 450, 551, 1873, 1877, 1879, 1880, 1900, 1901, 1905, 1906], "happen": [197, 496, 498, 568, 1838, 1883, 1887, 1890, 1895, 1896], "det_typ": 198, "isnorm": [203, 216], "x_valu": [204, 205], "slow": [204, 206, 214, 217, 513, 1886, 1903, 1908], "sinc": [204, 206, 214, 217, 459, 500, 510, 513, 515, 516, 517, 519, 528, 536, 578, 1849, 1851, 1873, 1876, 1877, 1879, 1880, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "reorder": [204, 206, 214, 513], "intern": [205, 207, 215, 230, 231, 358, 519, 572, 1627, 1647, 1754, 1903, 1908], "permut": [205, 230, 231, 513], "critic": [205, 1849, 1890, 1891, 1895, 1896, 1901, 1903, 1906, 1908], "loop": [205, 509, 516, 531, 537, 543, 567, 570, 1778, 1869, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1904, 1907], "_internal_ord": 205, "y_valu": [206, 207, 1778], "col": [206, 214, 224, 230, 235, 236, 239, 513, 1873, 1877], "fg": [208, 209, 247, 248, 263, 264, 275, 276, 287, 288, 344, 345, 397, 398, 514], "subgroup_nam": [208, 209, 247, 248, 263, 264, 275, 276, 287, 288], "i0": [211, 220, 235, 236, 238, 239, 513, 1861], "i1": [211, 220, 236, 239, 513, 544, 545, 546, 547, 548, 1861], "j0": [211, 220, 235, 236, 239, 513, 1861, 1896], "j1": [211, 220, 236, 239, 513, 1861, 1896], "x0": [211, 212, 513, 531, 587, 1861], "x1": [211, 212, 508, 513, 532, 587, 1861], "y0": [211, 212, 513, 1861], "y1": [211, 212, 513, 532, 1861], "try_insert2": [211, 212, 513, 1861], "matrix_typ": [214, 217, 513], "matrix_const_view": 215, "singular_threshold": 216, "reject": [218, 417, 432, 564, 567, 568, 570], "try_remove2": [220, 221, 513, 1861], "new_n": 223, "new_k": 223, "bigger": [223, 1867, 1882, 1883, 1887, 1889, 1890, 1894, 1895], "preserv": [223, 256, 572], "rolldirect": [224, 513], "roll": [224, 513], "cyclic": [224, 1635, 1651], "nth": 224, "row": [224, 233, 234, 235, 236, 238, 239, 513, 557, 1065, 1077, 1598, 1605, 1610, 1666, 1861], "down": [224, 500, 551, 555, 560, 567, 575, 576, 577, 860, 875, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1869, 1873, 1876, 1877, 1879, 1880, 1883, 1885, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897], "modif": [224, 232, 233, 234, 235, 236, 237, 238, 239, 526, 568, 1854, 1910], "try_rol": 224, "uint64_t": 225, "threshold": [226, 227, 228, 301, 575, 1712], "get_is_singular_threshold": 228, "swap": [230, 231, 521], "column": [232, 233, 235, 236, 512, 513, 559, 573, 653, 891, 1693, 1873, 1877], "ratio": [232, 233, 234, 235, 236, 237, 238, 239, 435, 513, 564, 567, 568, 570, 1861], "minv_new": [232, 233, 234, 235, 236, 237, 238, 239], "minv": [232, 233, 234, 235, 236, 237, 238, 239], "x_i": [235, 236, 237, 512, 550, 583, 906], "y_": [235, 236, 502, 506, 507, 508, 510], "x_": [235, 236, 502, 506, 507, 508, 510, 583], "x_j": [235, 236], "resp": [235, 528], "becom": [235, 493, 496, 520, 568, 1892, 1897, 1900, 1903, 1905, 1908], "colum": [236, 512], "refil": 237, "y_i": [237, 512], "colj0": 238, "impl_tag": 240, "make_block_gf": [240, 523], "make_block_gf_view": [240, 523], "make_block2_gf": 240, "reinterpret_scalar_valued_gf_as_matrix_valu": [240, 521, 534], "is_gf_real": [240, 527], "make_gf_from_real_gf": 240, "make_gf_dlr": [240, 1883, 1887], "fit_gf_dlr": [240, 935], "make_gf_dlr_imtim": [240, 1883, 1887], "make_gf_dlr_imfreq": 240, "make_gf_imtim": [240, 1883, 1887], "make_gf_imfreq": [240, 1883, 1887], "tau_l2_norm": 240, "flatten_2d": [240, 322], "unflatten_2d": 240, "flatten_gf_2d": [240, 323], "unflatten_gf_2d": 240, "ctad": 241, "ariti": [242, 245, 251, 317], "hdf5_format": [242, 259, 271, 283, 340, 390, 463], "block_names_t": [243, 245], "isconst2": 245, "block_gf_const_view": [245, 254, 255, 317, 523], "g_t": [245, 254, 255, 553, 1213], "bl_size": 245, "anyth": [245, 251, 268, 272, 507, 522, 531, 537, 560, 561, 568, 570, 587, 650, 1762, 1832, 1874, 1878], "blockgreenfunct": 245, "16": [245, 255, 449, 500, 502, 510, 541, 1873, 1875, 1877, 1879, 1881, 1887, 1892, 1897, 1903, 1905, 1908], "this_t": [247, 248, 263, 264, 267, 275, 276, 279, 287, 288, 291, 531], "const_view_typ": [250, 251, 255], "view_typ": [250, 521, 524], "non": [250, 280, 358, 363, 365, 381, 383, 491, 494, 496, 510, 518, 531, 542, 553, 555, 556, 561, 575, 935, 1210, 1212, 1217, 1754, 1760, 1840, 1859, 1873, 1877, 1879, 1883, 1887, 1888, 1889, 1890, 1894, 1895, 1901, 1903, 1906, 1908, 1909], "side": [251, 268, 502, 517, 541, 676, 715, 754, 793, 832, 954, 1899, 1902, 1903, 1904, 1907, 1908], "tbw": [251, 268], "dcomplex": [252, 519, 541, 562, 672, 673, 674, 675, 687, 688, 711, 712, 713, 714, 726, 727, 750, 751, 752, 753, 765, 766, 789, 790, 791, 792, 804, 805, 828, 829, 830, 831, 843, 844, 950, 951, 952, 953, 965, 966, 996, 998, 999, 1000, 1001, 1005, 1006, 1615, 1633, 1649], "array_const_view": [252, 255, 519, 673, 675, 687, 688, 712, 714, 726, 727, 751, 753, 765, 766, 790, 792, 804, 805, 829, 831, 843, 844, 951, 953, 965, 966, 999, 1001, 1005, 1006], "tail": [252, 254, 255, 316, 521, 528, 533, 535, 541, 542, 543, 545, 551, 552, 553, 672, 673, 674, 675, 687, 688, 711, 712, 713, 714, 726, 727, 750, 751, 752, 753, 765, 766, 789, 790, 791, 792, 804, 805, 828, 829, 830, 831, 843, 844, 935, 950, 951, 952, 953, 965, 966, 998, 999, 1000, 1001, 1005, 1006, 1216, 1873, 1877], "w_max": [253, 355, 360, 370, 381, 986, 1079, 1092, 1105, 1154, 1883, 1887, 1900, 1905], "ep": [253, 553, 559, 560, 645, 646, 986, 1079, 1092, 1105, 1187, 1211, 1215, 1880, 1883, 1886, 1887], "dlr": [253, 306, 307, 308, 312, 313, 321, 697, 736, 775, 814, 853, 935, 975, 986, 987, 988, 989, 991, 992, 1012, 1079, 1087, 1088, 1089, 1092, 1105], "typenameg": [254, 255], "regular_typ": [254, 255, 297, 314, 315, 319, 490, 521], "bg": [254, 255, 523], "typenamebg": [254, 255], "impos": [254, 451, 553, 581, 1213, 1869], "ag": [254, 255], "frequeci": [254, 255], "iomanip": [254, 255], "namespac": [254, 255, 260, 316, 450, 454, 457, 459, 461, 482, 483, 484, 485, 493, 499, 500, 502, 506, 507, 508, 510, 516, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 555, 572, 587, 1860, 1862, 1863, 1864, 1867], "iw_": [254, 255, 541, 1862], "100": [254, 255, 316, 450, 454, 457, 461, 500, 513, 516, 527, 532, 533, 535, 541, 547, 559, 563, 567, 569, 649, 650, 693, 732, 771, 810, 849, 935, 971, 1011, 1187, 1666, 1861, 1862, 1869, 1882, 1883, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1903, 1904, 1905, 1906, 1907, 1908], "err": [254, 255, 483, 484, 541, 935], "setprecis": [254, 255], "ntail": [254, 255], "ba": 255, "dimension": [256, 499, 517, 553, 563, 567, 580, 1217, 1666, 1699, 1849, 1859, 1892, 1897, 1899, 1904, 1909], "whose": [256, 497, 506, 523, 1626, 1838, 1902, 1907], "flatten": [256, 257, 517, 532, 539, 587, 700, 739, 778, 817, 856, 978], "tensor": [257, 521, 573, 574, 1682, 1684, 1685, 1862, 1901, 1906], "definit": [259, 271, 283, 461, 496, 498, 500, 517, 521, 551, 556, 558, 570, 573, 579, 586, 1685, 1850, 1902, 1907], "data_shap": [259, 271, 283], "target_indic": [259, 271, 283], "mesh_t": [260, 266, 272, 278, 284, 290, 517, 521, 524, 525, 526, 537], "dat": [260, 272, 284, 525, 553, 1217, 1663, 1667, 1848, 1873, 1874, 1877, 1878, 1879, 1882], "target_shape_t": [260, 521, 523, 525], "deep": [260, 490, 551, 667, 706, 745, 784, 823, 862, 879, 945, 1016, 1047, 1048], "concept_greenfunct": 260, "arrrai": 260, "g2": [260, 262, 274, 286, 527, 528, 532, 543, 551, 860, 863, 880, 1862, 1863], "g1": [260, 262, 274, 286, 523, 527, 528, 532, 543, 551], "gf_assign_0": 268, "arraytyp": [272, 284], "THERE": 292, "behaviour": [292, 490, 493, 496, 551, 1900, 1901, 1903, 1905, 1906, 1908], "real_t": [297, 319], "blockgf": [297, 319, 542, 547, 549, 553, 935, 1210, 1211, 1215, 1217, 1883, 1887], "fullfil": [300, 314, 553, 1210], "epsilon": [300, 302, 559, 560, 563, 645, 646, 650, 653, 655, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1889, 1892, 1897, 1899, 1900, 1904, 1905], "depend": [300, 314, 493, 502, 506, 520, 521, 525, 543, 583, 589, 1664, 1850, 1855, 1856, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1887, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "frac": [300, 314, 315, 480, 481, 487, 513, 514, 515, 520, 527, 539, 540, 541, 550, 552, 553, 564, 570, 573, 575, 576, 580, 583, 916, 929, 1211, 1685, 1700, 1701, 1709, 1710, 1711, 1716, 1719, 1862, 1873, 1877, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "iif": [300, 301, 302, 496, 498, 510, 564, 1018], "hold": [300, 302, 458, 460, 1873, 1877, 1883, 1886, 1887, 1903, 1908], "g0": [305, 935, 1869, 1886, 1887, 1888, 1891, 1892, 1894, 1895, 1896, 1897], "block_gf_view_of": 305, "omega_n": [311, 515, 520, 527, 539, 553, 580, 700, 739, 778, 817, 856, 891, 978, 1211, 1215, 1869, 1873, 1877, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1902, 1903, 1904, 1907, 1908], "half": [311, 543, 555, 917, 930, 932, 1869, 1883, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1903, 1905, 1908], "rightarrow": [314, 315, 550, 564, 580, 650, 907, 910, 1873, 1877, 1879, 1883, 1886, 1887, 1890, 1895, 1900, 1901, 1903, 1905, 1906, 1908], "zeroth": [316, 541, 1903, 1908], "empty_tail": 316, "isconst": 317, "world": [317, 484, 485, 499, 567, 570, 1849, 1879, 1881], "sens": [317, 354, 517, 519, 524, 543, 570], "view_or_type_t": 318, "decay_t": 318, "l2": [321, 576, 697, 736, 775, 814, 853, 935, 975, 1012, 1714, 1881], "norm": [321, 553, 697, 736, 775, 814, 853, 935, 975, 1012, 1211, 1886], "memoryarrai": 322, "afl": 322, "gfl": 323, "hilbertspac": [324, 356, 365], "scalartyp": [324, 351, 354, 355, 356, 365, 572], "space_partit": [324, 555], "make_zero_st": [324, 365, 556], "arbitrarili": [325, 572], "mix": [325, 1865], "insert_from_indices_t": 325, "has_indic": 325, "h5_write_attribut": 325, "h5_read_attribut": 325, "fundamental_operator_set_begin": 327, "__wrap_it": [328, 331], "fundamental_operator_set_end": 328, "indextyp": [329, 335, 572], "indices_t": [330, 334, 336, 338, 342, 572, 574], "obj": [332, 333, 497, 502, 510, 1726, 1727, 1728], "attach": [332, 333], "ind": [335, 336, 572], "anoth": [337, 348, 349, 365, 374, 375, 386, 387, 401, 402, 443, 459, 502, 506, 517, 543, 551, 572, 573, 575, 576, 577, 583, 668, 707, 746, 785, 824, 946, 1048, 1696, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1835, 1864, 1873, 1877, 1883, 1887, 1907], "span": [340, 539], "has_stat": [340, 390], "get_state_index": [340, 390], "dummi": [341, 368, 379, 509], "parent": [344, 345, 397, 398], "belong": [346, 360, 362, 368, 379, 399, 517], "scheme": [347, 400, 496, 543, 549, 551, 568, 1881, 1883, 1887, 1892, 1897], "inequ": [348, 401], "total": [350, 404, 422, 452, 463, 464, 500, 561, 567, 570, 576, 698, 737, 776, 815, 854, 892, 976, 1667, 1717, 1718, 1742, 1744, 1758, 1765, 1873, 1877, 1879, 1889, 1896], "hilberttyp": 351, "usemap": [351, 352], "is_empti": 351, "hilbert_map_t": 352, "hmap": 352, "sub_spaces_set": 352, "nullptr": 352, "statetyp": [354, 357, 358, 360], "psi": 354, "phi": [354, 580], "coeff": [354, 1896], "basedonmap": [356, 365], "amplitud": [356, 365, 366, 368, 370, 372, 378, 379, 381, 383, 384, 500, 555, 1664, 1886, 1899, 1901, 1903, 1904, 1906, 1908], "operatortyp": [357, 358, 360], "action": [357, 498, 509, 555], "march": 357, "284": 357, "statevector_concept": [357, 365], "merge_subspac": 357, "lookup_basis_st": 357, "get_matrix_el": 357, "find_map": [357, 555], "state_t": [358, 555], "operator_t": [358, 359, 363], "store_matrix_el": [358, 363], "block_mapping_t": 359, "diagonal_onli": 359, "subject": [359, 360, 363, 473], "sp": [360, 1877, 1903, 1908], "matrix_element_map_t": [361, 363], "idx_t": [362, 364], "basis_st": 362, "ii": [363, 576, 1716], "get_hilbert": [366, 378], "set_hilbert": [366, 378], "dot_product": [366, 378, 555, 556], "amplitude_t": 367, "constant": [371, 372, 376, 382, 384, 388, 466, 509, 556, 572, 935, 1745, 1873, 1876, 1877, 1879, 1880, 1903, 1908], "uniti": [368, 379, 1886, 1902, 1907], "s1": [369, 380], "s2": [369, 374, 375, 380, 386, 387, 576, 1718], "individu": [372, 384, 556, 697, 736, 775, 814, 853, 975, 1012, 1883, 1887, 1889], "subtract": [375, 387, 556, 572, 1778, 1873, 1876, 1877, 1879, 1880, 1903, 1908], "new_h": [376, 388], "reset": [376, 388, 463, 464, 517, 1744], "huge": 378, "nterm": 378, "carri": [390, 537, 555, 572], "destinguish": 390, "add_fock_st": [390, 555], "get_all_fock_st": 390, "get_index": 390, "set_index": 390, "iff": [401, 402, 478], "random_gener": [405, 421, 438, 567, 569, 570, 582], "mc_gener": [405, 564, 565, 567, 568, 569, 570], "random_generator_nam": [405, 569], "mcsigntyp": [406, 408, 425, 426, 427, 430, 431, 432, 433, 438], "tbr": 406, "add_mov": [406, 567, 569, 570], "add_measur": [406, 427, 567, 570], "add_measure_aux": 406, "rm_measur": 406, "clear_measur": 406, "set_after_cycle_duti": 406, "warmup_and_accumul": [406, 564, 567, 570], "get_acceptance_r": [406, 432], "get_perc": 406, "get_rng": [406, 567, 569, 570], "get_current_cycle_numb": 406, "get_config_id": 406, "get_dur": 406, "get_total_tim": 406, "get_warmup_tim": 406, "get_warmup_time_hhmmss": 406, "get_accumulation_tim": 406, "get_accumulation_time_hhmmss": 406, "int64_t": [407, 420, 428, 430, 431], "n_accumulation_cycl": [407, 431], "length_cycl": [407, 428, 430, 431, 567, 568, 569, 570, 1869, 1873, 1877, 1889, 1892, 1897], "cycl": [407, 418, 428, 429, 430, 431, 568, 570, 1869, 1873, 1877, 1889, 1890, 1891, 1892, 1895, 1896, 1897], "typic": [407, 428, 430, 431, 491, 494, 496, 498, 517, 525, 569, 1780, 1803], "measuretyp": 408, "measure_set": [408, 427], "measure_itr_t": [408, 427], "enable_tim": 408, "report_measur": 408, "measureauxtyp": 409, "shared_ptr": [409, 491], "common": [409, 449, 543, 565, 581, 661, 662, 1850, 1883, 1886, 1887, 1888, 1894], "WILL": 409, "movetyp": [410, 434], "proposition_prob": [410, 432, 434], "probabl": [410, 434, 435, 440, 448, 486, 503, 564, 568, 1751, 1882, 1890, 1895, 1903, 1908], "precondit": [410, 587], "random_nam": [413, 567, 569, 570], "random_se": [413, 567, 569, 570], "rethrow_except": 413, "seed": [413, 443, 569, 570, 582, 1663, 1873, 1877, 1879, 1880], "tba": 413, "whether": [413, 428, 570, 575, 577, 1079, 1092, 1105, 1664, 1711, 1723, 1780, 1833, 1836, 1837, 1838, 1842, 1858, 1873, 1877, 1903, 1908], "rate": [414, 439, 1877, 1889, 1896], "name_of_the_mov": 414, "spent": [415, 416, 423, 424], "minut": [416, 424, 570, 1876, 1880], "visit": [417, 1849], "durat": [419, 1877, 1879], "percent": [420, 541], "mc": [425, 426, 564, 567, 570, 1873, 1877, 1879, 1889], "deregist": 427, "do_measur": 428, "n_warmup_cycl": [430, 431, 567, 568, 569, 570, 1869, 1873, 1877, 1889, 1891, 1892, 1895, 1896, 1897], "sign_init": [430, 431], "weight": [430, 431, 435, 547, 1037, 1038, 1873, 1874, 1877, 1878, 1879, 1880, 1883, 1887, 1890, 1895], "collect_statist": 432, "get_statist": 432, "tri": [433, 570, 1023], "pick": [435, 567, 1191], "proposit": 435, "metropoli": [435, 564, 568, 570], "acceptance_r": 439, "decal": 440, "pretti": [440, 1883, 1887], "eras": [442, 508], "buffer": 442, "1000": [442, 519, 528, 543, 544, 547, 550, 551, 579, 580, 1768, 1778, 1883, 1884, 1887, 1890, 1892, 1894, 1895, 1897], "preview": 442, "randomgeneratornam": 443, "uint32_t": 443, "seed_": 443, "mt19937": [443, 569, 582], "mersenn": [443, 569, 570], "twister": [443, 569, 570], "enable_if": [445, 510], "is_integr": 445, "sep": 447, "analyz": [448, 449, 583, 1866, 1890, 1895], "mean_mpi": 448, "mean_and_err": [448, 484], "mean_and_err_mpi": 448, "tau_estimate_from_error": 448, "resampl": [448, 480, 481, 583], "jackknife_mpi": 448, "cdf": 448, "cumul": [448, 462, 1750], "consecut": [449, 1873, 1877], "autocorrel": 449, "grow": [449, 1903, 1908], "satur": 449, "power": [449, 455, 456, 578, 1859, 1870, 1882, 1883, 1887], "ldot": [449, 480, 481, 575, 583, 1708], "underestim": 449, "ergod": 449, "cost": [449, 581, 1890, 1895], "advis": [449, 1864], "correctli": [449, 451, 1873, 1876, 1877, 1880], "At": [449, 568, 570, 572, 1892, 1897, 1901, 1903, 1906, 1908], "larger": [449, 1873, 1877, 1879, 1890, 1895, 1896], "n_log_bins_max": [449, 451, 459], "n_log_bin": 449, "n_lin_bins_max": [449, 451, 457], "n_lin_bin": [449, 453], "lin_bin_capac": [449, 450, 451], "capac": [449, 450, 451, 453, 455, 456, 457, 459], "log_bin_error": 449, "log_bin_errors_all_reduc": 449, "data_input_count": 449, "linear_bin": [449, 450], "compress_linear_bin": 449, "compression_factor": 450, "scale": [450, 500, 1873, 1877, 1882, 1883, 1887, 1889, 1894, 1897, 1903, 1908], "noth": [450, 498, 521, 523, 567, 568, 570, 940, 1813, 1832, 1854], "my_acc": [450, 454, 457, 459], "data_inst": 451, "requisit": 451, "wise": [451, 483, 484, 487], "manner": 451, "texttt": 451, "unbound": 451, "soon": [451, 508, 509, 570, 580], "caus": [451, 575, 1711, 1838, 1903, 1908], "reach": [451, 453, 459, 560, 570, 1778, 1883, 1887, 1890, 1895], "next": [453, 517, 547, 570, 572, 1780, 1854, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1892, 1897], "loss": 453, "deduc": [455, 456, 482, 483, 484, 485, 490, 517, 520, 544, 572, 587, 1889], "activ": [457, 459, 1841, 1844, 1850, 1852, 1854, 1855], "accumulatotr": [457, 459], "2nd": [457, 513, 573, 1693], "3rd": [457, 513, 573, 1693], "halfwai": 457, "my_acc_no_lin": 457, "maxmimum": 459, "my_acc_no_log": 459, "lin_bin_s": 461, "log_bin_s": 461, "might": [461, 508, 570, 1850, 1855, 1875, 1879, 1890, 1895], "els": [461, 478, 498, 1017, 1832, 1881], "my_accumulator_d": 461, "my_measurement_d": 461, "my_array_inst": 461, "my_accumulator_a": 461, "my_measurement_a": 461, "normalis": [462, 486, 1750, 1751], "track": [463, 1742, 1849], "lost": [463, 1742, 1850], "lie": [463, 1742], "outsid": [463, 527, 528, 533, 535, 1742, 1883, 1887], "n_data_pt": 463, "n_lost_pt": 463, "discard": [463, 464, 475, 476, 1744, 1749], "mpi_broadcast": 463, "n_bin": [465, 1892, 1897], "enclos": [467, 468], "dataset": [467, 468, 551, 1884], "n_": [471, 520, 563, 567, 570, 572, 575, 1709, 1710, 1747, 1889, 1891, 1892, 1896, 1897, 1902, 1903, 1907, 1908], "mathrm": [471, 480, 481, 550, 563, 572, 1747, 1883, 1887, 1888, 1889, 1892, 1894, 1895, 1897, 1906], "send": [473, 543, 551, 572], "h1": 476, "h2": 476, "sum": [476, 503, 504, 511, 558, 559, 570, 572, 575, 587, 645, 996, 1708, 1754, 1760, 1873, 1875, 1876, 1877, 1879, 1880, 1888, 1894, 1900, 1902, 1903, 1905, 1907, 1908], "incompat": [476, 544, 545, 546, 547, 548, 664, 703, 742, 781, 820], "summat": [476, 1873, 1877, 1879, 1880], "langl": [480, 481, 515, 573, 1687, 1883, 1887, 1900, 1902, 1903, 1905, 1907, 1908], "mathbf": [480, 481, 515, 560, 563, 576, 655, 1715, 1719, 1877, 1886, 1892, 1897, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "rangl": [480, 481, 515, 573, 1687, 1883, 1887, 1900, 1902, 1903, 1905, 1907, 1908], "jacknif": [480, 481, 583], "a_1": [480, 481, 520], "a_2": [480, 481, 520], "a_3": [480, 481], "four": [480, 481, 573, 1684, 1685, 1689, 1691, 1694, 1696, 1889, 1896, 1901, 1906], "f_": [480, 481, 520], "tild": [480, 481, 515, 520], "bar": [480, 481, 510, 573, 575, 583, 1684, 1709, 1710, 1740, 1873, 1877, 1879, 1880, 1889, 1895, 1900, 1905], "quad": [480, 481, 576, 580, 1719], "sum_": [480, 481, 515, 520, 541, 552, 553, 563, 573, 575, 576, 583, 676, 715, 754, 793, 832, 954, 1211, 1215, 1685, 1686, 1700, 1701, 1702, 1709, 1710, 1711, 1716, 1717, 1719, 1883, 1887, 1889, 1891, 1892, 1896, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "bia": [480, 481], "errror": [480, 481], "_j": [480, 481], "sqrt": [480, 481, 483, 484, 515, 520, 547, 550, 553, 573, 576, 929, 1211, 1687, 1716, 1892, 1897], "cdot": [480, 481, 515, 563, 576, 1715, 1883, 1887], "sigma_f": [480, 481], "deviat": [480, 481, 541, 1903, 1908], "addabl": [482, 483, 484, 485], "mean_error": [482, 483, 484, 485], "spread": [484, 485, 1851], "error_with_bin": 487, "error_no_bin": 487, "delta_n": 487, "delta_0": 487, "wrap_gener": [489, 490, 493], "calling_pattern": [489, 490, 493], "no_self_c": [489, 490], "is_constructor": 489, "is_method": [489, 490], "is_stat": [489, 490], "release_gil_and_enable_sign": [489, 490, 493], "c_name": [489, 490, 493], "py_typ": 490, "c_type": [490, 493], "c_type_absolut": 490, "is_print": 490, "add_cal": 490, "kw": [490, 544, 545, 546, 547, 548, 664, 665, 671, 672, 673, 674, 675, 681, 682, 686, 687, 688, 689, 690, 691, 692, 693, 697, 703, 704, 710, 711, 712, 713, 714, 720, 721, 725, 726, 727, 728, 729, 730, 731, 732, 736, 742, 743, 749, 750, 751, 752, 753, 759, 760, 764, 765, 766, 767, 768, 769, 770, 771, 775, 781, 782, 788, 789, 790, 791, 792, 798, 799, 803, 804, 805, 806, 807, 808, 809, 810, 814, 820, 821, 827, 828, 829, 830, 831, 837, 838, 842, 843, 844, 845, 846, 847, 848, 849, 853, 901, 902, 918, 919, 942, 943, 949, 950, 951, 952, 953, 959, 960, 964, 965, 966, 967, 968, 969, 970, 971, 975, 1887], "__call__": [490, 560], "add_method": 490, "add_constructor": 490, "intermediate_typ": 490, "defaut": [490, 493], "rtype": [490, 493, 580], "arg1": [490, 493], "name1": [490, 493], "arg2": [490, 493], "name2": [490, 493], "default2": [490, 493], "omit": [490, 493], "dict": [490, 493, 496, 498, 551, 562, 575, 576, 577, 580, 882, 896, 935, 984, 1201, 1611, 1627, 1647, 1667, 1699, 1700, 1701, 1702, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1740, 1886], "variable_nam": [490, 493], "default_valu": [490, 493], "expert": [490, 493, 523], "add_getitem": 490, "__getitem__": 490, "add_iter": 490, "c_cast_typ": 490, "cast_typ": 490, "add_len": 490, "len": [490, 498, 500, 563, 700, 739, 778, 817, 856, 978, 1666, 1848, 1873, 1877, 1879, 1880, 1900, 1902, 1903, 1905, 1907, 1908], "add_memb": 490, "py_nam": 490, "read_onli": 490, "boolean": [490, 493, 575, 576, 577, 1201, 1664, 1674, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1833], "self_c": [490, 493], "method_nam": [490, 493], "pure": [490, 493, 517, 1023], "gil": [490, 493], "handler": [490, 493], "signal_handl": [490, 493], "intercept": [490, 493, 1903, 1908], "ctrl": [490, 493, 1881], "requir": [490, 491, 493, 494, 499, 500, 517, 519, 520, 562, 572, 1611, 1632, 1850, 1853, 1854, 1858, 1867, 1869, 1883, 1886, 1887, 1890, 1895, 1902, 1907], "whatsoev": [490, 493], "indirectli": [490, 493], "add_method_copi": 490, "clone_funct": 490, "make_clon": 490, "add_method_copy_from": 490, "copy_from": [490, 551], "add_method_cpp_copi": 490, "sh_copi": 490, "ordinari": [490, 510, 1886], "add_properti": 490, "getter": 490, "setter": 490, "add_regular_type_convert": 490, "add_setitem": 490, "__setitem__": [490, 543], "deduce_inplace_arithmet": 490, "trivial": [491, 531, 539], "quit": [491, 522, 1858, 1873, 1877, 1881, 1882, 1883, 1887, 1891, 1895, 1896], "semant": [491, 507, 556, 1839], "while": [491, 494, 499, 502, 508, 509, 515, 570, 580, 1664, 1849, 1854, 1861, 1873, 1877, 1883, 1885, 1887, 1889, 1892, 1895, 1897, 1899, 1900, 1904, 1905], "triqss": [491, 543, 551], "entir": [491, 1833, 1899, 1901, 1904, 1906], "additionn": [491, 585], "magic": 491, "cell": [491, 557, 562, 563, 1598, 1601, 1611, 1627, 1638, 1647, 1654, 1667, 1858, 1873, 1875, 1877, 1879, 1886, 1890, 1892, 1895, 1896, 1897], "module_": [491, 495, 1864], "cfunction": [491, 495], "class_": [491, 495], "functionn": 492, "distinguish": [492, 517, 1860], "Its": [492, 503, 563, 568, 1833], "abl": [492, 570, 581, 1850, 1854, 1855, 1873, 1874, 1877, 1878], "add_class": 493, "cl": [493, 497, 498, 896, 982, 984, 1052], "add_convert": 493, "conv": 493, "add_enum": 493, "c_namespac": 493, "enum": [493, 530], "add_funct": 493, "add_import": 493, "lst": 493, "add_preambl": 493, "preambl": 493, "add_us": 493, "generate_cod": [493, 1864], "sy": [493, 581, 1848, 1873, 1875, 1876, 1877, 1879, 1880], "oppos": 493, "2py": [494, 1850, 1857, 1858, 1864], "fig": [494, 1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1892, 1894, 1897], "png": [494, 1907], "abc_desc": 494, "_document": 494, "remark": 494, "scratch": 494, "libclang": [494, 1850, 1856, 1857], "hierarch": 496, "v5": 496, "portabl": [496, 543, 551, 1884], "irrespect": 496, "dump": 496, "glimps": 496, "hdf": [496, 551], "compliant": [496, 1851], "intuit": [496, 1881], "hdfarchiv": [496, 497, 500, 581, 1848, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1884, 1891, 1892, 1895, 1896, 1897, 1899, 1902, 1904, 1905, 1906, 1907], "wide": [496, 1851], "machin": [496, 1850, 1855, 1856, 1874, 1878, 1883, 1887, 1891, 1896, 1907], "32": [496, 935, 1879, 1887, 1896, 1899, 1900, 1903, 1904, 1905, 1906, 1908], "bit": [496, 527, 579, 580, 586, 587, 1895], "64": [496, 1903, 1905, 1908], "oss": 496, "langag": 496, "f90": 496, "ti": 496, "explor": [496, 497, 1874, 1878], "tree": [496, 498, 506, 507, 1023, 1850], "unix": [496, 1850], "shell": [496, 573, 1683, 1685, 1688, 1690, 1692, 1850, 1852, 1855, 1870, 1877, 1880, 1884, 1890, 1895], "h5l": [496, 1884], "henc": [496, 522, 524, 551, 581, 586, 587, 1632, 1869, 1873, 1877, 1888, 1894, 1900, 1903, 1905, 1908], "compact": [496, 513, 532, 1884], "extent": [496, 1054, 1067, 1071, 1907], "speak": [496, 507], "dictionari": [496, 497, 498, 551, 563, 574, 580, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1627, 1647, 1667, 1699, 1700, 1701, 1702, 1832, 1873, 1877, 1884, 1889], "undesir": 496, "thought": [496, 551], "leav": [496, 507, 580, 1873, 1877], "rectangular": 496, "subtre": [496, 498, 506], "natur": [496, 517, 523, 537, 543, 1873, 1877, 1883, 1887], "group1": 496, "subgroup2": 496, "leaf1": 496, "hereaft": [496, 521, 1850], "reversibli": 496, "hdfarchivegroup": [496, 497], "get_raw": [496, 498], "create_group": [496, 498, 581, 1848, 1873, 1877], "is_group": [496, 498], "is_data": [496, 498], "read_attr": [496, 498], "root_path": [496, 498], "apply_on_leav": [496, 498], "register_class": [496, 497, 498], "reconstruct": [497, 498, 547, 1883, 1887], "__reduce_to_dict__": [497, 498], "__factory_from_dict__": [497, 896, 984], "classmethod": 497, "def": [497, 547, 563, 580, 587, 1881, 1886, 1888, 1894, 1895, 1902, 1903, 1907, 1908], "__init__": [497, 544, 545, 546, 547, 548, 1864, 1881, 1885, 1888, 1894, 1895], "myclass": [497, 498], "myfile2": 497, "56": [497, 1896], "ob": [497, 1732, 1873, 1876, 1877, 1879, 1880], "root_of_h": 497, "hdf5_data_schem": [497, 498], "rebuilt": 497, "search": [497, 1768, 1849, 1850, 1852, 1858], "offer": [498, 516, 1870], "shelv": [498, 542, 549], "myfil": [498, 543, 551], "subgroup1": 498, "apart": 498, "fact": [498, 507, 520, 568, 580, 586, 587, 1731, 1899, 1903, 1904, 1908], "open_flag": 498, "key_as_string_onli": 498, "reconstruct_python_object": 498, "keyerror": 498, "shortcut": 498, "iterkei": 498, "coupl": [498, 558, 567, 573, 576, 1683, 1684, 1685, 1690, 1715, 1849, 1860, 1861, 1862, 1873, 1876, 1877, 1880, 1895], "hfd": 498, "leaf": 498, "attributenam": 498, "good": [498, 570, 1870, 1873, 1877, 1883, 1887, 1890, 1895], "practiv": 498, "cluster": [498, 570, 1626, 1630, 1850, 1855, 1892, 1897], "inert": 498, "is_master_nod": [498, 1848, 1892, 1897], "_hdf5_data_scheme_": 498, "__name__": 498, "reread": [498, 512], "composit": [499, 532], "sendbuf": 499, "recvbuf": 499, "id": [499, 1840], "transmit": 499, "Such": [499, 502], "much": [499, 1876, 1880, 1883, 1887, 1895], "prone": 499, "simplifc": 499, "signific": [499, 507], "sendcount": 499, "sendtyp": 499, "recvcount": 499, "recvtyp": 499, "contiguo": 499, "multidimension": [499, 532, 1859, 1870], "across": [499, 1664, 1873, 1877, 1901, 1906], "adress": 499, "someth": [499, 507, 510, 516, 519, 523, 527, 586, 1874, 1876, 1878, 1880], "emploi": 499, "metaprogram": 499, "unecessari": [499, 1876, 1880], "copyi": 499, "web": [499, 1849, 1850, 1859, 1866, 1874, 1878], "allreduc": 499, "allgath": 499, "analogu": 499, "nativ": [499, 1840], "declar": [499, 507, 509, 570, 572, 587], "preceed": 500, "suppli": 500, "fashion": 500, "equilibrium": 500, "thermal": [500, 568, 1873, 1877, 1889, 1903, 1908], "prove": [500, 1903, 1908], "expans": [500, 515, 519, 527, 528, 529, 535, 541, 543, 550, 551, 552, 553, 556, 1213, 1859, 1883, 1887], "ct": [500, 1859, 1873, 1877], "hubbard": [500, 555, 573, 575, 1683, 1684, 1685, 1690, 1849, 1859, 1871, 1873, 1877, 1879, 1883, 1887, 1901, 1902, 1906, 1907], "nca": 500, "substitut": [500, 1902, 1907], "spin_nam": [500, 575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1895], "sn": 500, "n_up": [500, 555], "n_dn": [500, 555], "uprim": [500, 573, 575, 1684, 1691, 1709, 1710], "j_hund": [500, 573, 575, 1683, 1684, 1685, 1690, 1710], "1j": [500, 547, 579, 1881, 1886], "c_dag": [500, 555, 572, 1885, 1889, 1892, 1896, 1897], "28": [500, 1877, 1887, 1889, 1896, 1897, 1899], "dm": 500, "occup": [500, 575, 1708, 1873, 1877, 1879, 1880, 1890, 1895, 1902, 1903, 1907, 1908], "g_w": [500, 1863, 1887, 1894], "400": 500, "01": [500, 547, 1873, 1877, 1882, 1883, 1886, 1887, 1894, 1896, 1899, 1904, 1907, 1908], "g_tau": [500, 986, 987, 1889, 1892, 1896, 1897], "g_l": [500, 553, 1213, 1892, 1897], "20": [500, 511, 560, 580, 935, 1856, 1860, 1867, 1873, 1877, 1879, 1882, 1883, 1887, 1888, 1889, 1892, 1894, 1896, 1897, 1907], "later": [500, 1854, 1867, 1873, 1877, 1883, 1884, 1885, 1887, 1900, 1901, 1905, 1906], "atom_diag_exampl": 500, "flip": [500, 567, 570, 1891, 1896], "anomal": 500, "difer": 500, "polynomi": [500, 517, 521, 529, 542, 543, 549, 553, 1145, 1213, 1849], "indirect": 500, "g_tau_ind": 500, "g_iw_ind": 500, "g_l_ind": 500, "g_w_ind": 500, "some_expression_of_x_": 502, "i_": [502, 507, 509, 1860, 1883, 1887], "some_expression_of_i_": 502, "j_": [502, 509, 567, 573, 1684, 1860], "some_expression_of_x_i_j": 502, "cours": [502, 507, 543, 585, 1860, 1884, 1899, 1904], "lh": [502, 516, 519], "rewritten": [502, 515, 1859], "triqs_clef_auto_assign": 502, "pseudo": 502, "stl": 502, "pi": [502, 509, 513, 515, 520, 527, 539, 543, 547, 548, 550, 563, 580, 929, 1873, 1876, 1877, 1879, 1880, 1881, 1883, 1886, 1887, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1907, 1908], "aco": [502, 509, 513, 527], "k_": [502, 1892, 1897], "make_expr": [502, 507, 509], "fnt": 502, "make_funct": [502, 503], "adl": [502, 506, 510, 587], "therefor": [502, 517, 519, 520, 537, 543, 551, 581, 587, 1833, 1878, 1886, 1895, 1899, 1900, 1904, 1905], "friend": [502, 510], "similarli": [502, 510, 520, 551], "triqs_clef_auto_assign_subscript": 502, "struct": [502, 510, 513, 567, 570, 572, 587, 1861], "clef_implement_lazy_cal": [502, 510], "clef_auto_assign": 502, "prototyp": 503, "dark": 503, "corner": 503, "progress": [503, 558, 570, 1890, 1895], "ompil": 503, "azi": 503, "xpression": 503, "unction": 503, "nice": [506, 510, 1870], "useless": 506, "eval": [506, 508, 510, 525, 1023], "placeholder_1": [506, 508], "value_1": 506, "placeholder_2": [506, 508], "value_2": 506, "matter": [506, 508, 570, 1859], "lookup": 506, "e1": [506, 507], "e2": [506, 507], "loos": 507, "thing": [507, 581, 1873, 1877, 1879, 1880, 1883, 1887, 1890, 1895], "ternari": 507, "if_els": 507, "math": [507, 547, 548, 553, 563, 910, 1211, 1215, 1879, 1881, 1883, 1886, 1887, 1889, 1894, 1895, 1899, 1900, 1902, 1904, 1905, 1907], "clef_express": [507, 508], "almost": [507, 539, 543, 564, 570, 1851, 1854, 1890, 1895], "e0": 507, "meaningless": [507, 543], "complic": [507, 1848], "encod": [507, 515, 530, 572, 1900, 1905], "expr": [507, 508, 537, 912, 1022, 1023, 1024, 1027], "plu": [507, 1883, 1887], "fly": [507, 572, 1881], "themselv": 507, "rational": 507, "dangl": 507, "quicker": 507, "Of": [507, 543, 1884], "mandatori": 507, "longer": [507, 1883, 1887, 1890, 1892, 1895, 1897], "opposit": [508, 539, 575, 1709, 1710], "z_": [508, 576, 1716], "sai": [508, 519, 551, 568, 570, 1881, 1890, 1895, 1901, 1906], "placeholder_3": 508, "x2": [508, 532, 587], "x3": 508, "exhaust": 508, "ban": 508, "parenthesi": [508, 569, 1881], "though": [508, 516], "show": [508, 509, 570, 582, 1854, 1860, 1861, 1862, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1884, 1887, 1889, 1890, 1892, 1895, 1896, 1897, 1899, 1903, 1904, 1908], "f1": [508, 1801], "3x3": [509, 1883, 1887], "forget": [509, 1886], "cheke": 509, "time_consuming_funct": 509, "insist": 509, "clef_make_fnt_lazi": 510, "function_to_make_lazi": 510, "foo": 510, "notclefexpress": 510, "is_clef_express": 510, "BUT": 510, "absenc": [510, 1880], "58385": 510, "v_": [510, 553, 1211, 1215, 1889], "copyabl": 510, "my_method": 510, "clef_implement_lazy_method": 510, "evalut": 510, "_2": [510, 572, 1873, 1877], "_1": [510, 572], "trait": 510, "immutablearrai": 511, "preced": 511, "param": [511, 579, 659, 930, 1806], "tparam": 511, "dollar": 511, "rest": [511, 544, 570], "t1": [511, 587, 1862], "alpha": [511, 515, 573, 1628, 1629, 1685, 1873, 1877, 1879, 1882, 1889, 1897, 1906, 1907, 1908], "seriou": 512, "leq": [512, 515], "m_": [512, 1895], "y_j": 512, "fast": [512, 1873, 1877, 1899, 1904], "quickli": [512, 1849, 1881, 1890, 1895], "return_typ": 513, "argument_typ": [513, 1861], "xy_typ": 513, "vector_typ": 513, "tqa": 513, "matrix_view_typ": 513, "matrix_view": [513, 546, 671, 710, 749, 788, 827, 949, 997], "fx": 513, "fy": 513, "try_insert_from_funct": 513, "change_raw": 513, "try_op": 513, "bla": 513, "transpar": [513, 572, 1882], "fun": [513, 587, 1861], "typedef": [513, 1861], "result_typ": [513, 1861], "epsi": 513, "sin": [513, 580, 1882], "detratio": [513, 1861], "mathemat": [514, 517, 572, 1870, 1881, 1883, 1887], "mainli": [514, 1881], "know": [514, 519, 568, 571, 1873, 1877, 1881, 1883, 1886, 1887], "rm": [514, 543, 1889, 1891, 1896], "cof": 514, "i_n": 514, "pmatrix": [514, 573, 1686, 1687, 1695, 1883, 1887], "a_": [514, 515, 551, 573, 575, 576, 1685, 1710, 1711, 1716, 1717, 1719, 1891, 1896], "dot": [514, 515, 540, 563, 583, 1881, 1899, 1904], "vdot": 514, "invert": [514, 550, 1883, 1887, 1897], "furthermor": [514, 1873, 1877], "xi": [514, 532, 1903, 1908], "qquad": [514, 515, 1883, 1887, 1902, 1907], "ca": 514, "gi": [514, 532], "a_0": 514, "m_n": 514, "amelior": 514, "straightformward": 514, "hb": 514, "cg": 514, "fb": 514, "cb": 514, "gh": 514, "hg": 514, "ib": 514, "ic": 514, "gb": [514, 1905], "fh": 514, "hc": 514, "BEING": 515, "among": [515, 555, 1860, 1861, 1873, 1877], "deal": [515, 571], "emphas": 515, "essenti": [515, 541, 552, 1859, 1884], "alpha_a": 515, "beta_a": 515, "mathcal": [515, 570, 1873, 1877, 1886, 1900, 1905], "label": [515, 563, 580, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1873, 1876, 1877, 1879, 1880, 1882, 1887, 1889, 1892, 1894, 1895, 1897, 1899, 1904, 1905, 1906, 1907, 1908], "whenev": 515, "consider": [515, 543], "formal": [515, 517, 543, 1873, 1877, 1883, 1887], "equiv": [515, 559, 563, 573, 645, 1684, 1900, 1902, 1903, 1905, 1907, 1908], "c_": [515, 572, 593, 594, 614, 615, 1889, 1892, 1897], "int_0": [515, 697, 736, 775, 814, 853, 975, 1012, 1883, 1887, 1888, 1894], "2l": [515, 573, 1685, 1686], "p_l": 515, "theta": [515, 520, 550, 916, 929, 1883, 1887], "int_": [515, 559, 560, 645, 655, 1883, 1887], "analog": 515, "dt": [515, 697, 736, 775, 814, 853, 975, 1012, 1882], "2n": [515, 527, 539, 1883, 1887, 1902, 1907], "paramount": 515, "context": [515, 1023], "slowli": 515, "decai": [515, 553, 1210, 1883, 1887], "stackrel": 515, "parametr": 515, "n_1": [515, 575, 1708], "n_2": [515, 575, 1708], "o_": 515, "_i": [515, 563], "readeabl": 516, "travers": 516, "specialis": [516, 521, 523, 527, 528, 529, 533, 535, 537], "nfreq": [516, 527], "wn_": [516, 527], "strang": [516, 524], "cannot": [516, 526, 543, 589, 591, 612, 1884, 1885, 1903, 1908], "curri": 517, "understood": 517, "abstract": [517, 543, 555, 1023], "grid": [517, 560, 561, 563, 1754, 1760, 1762, 1877, 1882, 1886, 1892, 1897, 1899, 1904, 1905, 1906, 1908], "refin": [517, 556, 560, 1778], "regulartyp": 517, "comment": [517, 525, 539, 540, 556, 564, 1856, 1881, 1903, 1908], "k_vector": 517, "matsubara_freq": 517, "multi": [517, 580, 1849, 1901, 1906], "domain_t": [517, 524, 539], "eg": [517, 551, 573, 1688, 1689, 1883, 1887], "realli": [517, 568, 1870], "contigu": 517, "mesh_pt_gener": 517, "copyconstruct": [517, 556], "linear_index": [517, 1079, 1092, 1105], "at_end": 517, "cast_t": 517, "implicit": 517, "cast": [517, 1030, 1622], "wiht": 517, "fourier": [518, 541, 542, 544, 545, 547, 548, 549, 552, 562, 689, 728, 767, 806, 845, 967, 990, 1007, 1664, 1856, 1873, 1875, 1876, 1877, 1879, 1880, 1886, 1889, 1894, 1895, 1899, 1903, 1904, 1908], "purefunctionondomain": [518, 542], "adj": 519, "reason": [519, 551, 570, 580, 1856, 1873, 1876, 1877, 1880, 1883, 1887, 1890, 1895], "gw": [519, 544, 545, 546, 547, 548, 554, 690, 692, 693, 729, 731, 732, 768, 770, 771, 807, 809, 810, 846, 848, 849, 968, 970, 971, 1008, 1010, 1011, 1883, 1887], "That": [519, 570, 1867, 1881, 1890, 1895], "call_the_fourier_implement": 519, "moreov": [519, 1854], "possess": 519, "iw_mesh": [519, 541, 1862, 1883, 1886, 1887, 1894, 1895], "tau_mesh": [519, 1862, 1883, 1887, 1894, 1895], "om_": [519, 1863], "gw2": 519, "subroutin": 520, "discret": [520, 523, 553, 561, 1211, 1634, 1650, 1754, 1760, 1849, 1883, 1887, 1899, 1903, 1904, 1908], "dft": [520, 1849, 1850], "regularli": 520, "f_0": [520, 573, 1685], "f_k": [520, 573, 1683, 1685], "f_n": 520, "t_": [520, 563, 564, 573, 1685, 1696, 1883, 1887], "n_t": [520, 1166], "t_k": 520, "omega_m": 520, "eq": 520, "tf_r": 520, "recogn": [520, 1664], "inv_dft": 520, "prepar": [520, 558, 567, 570, 1872, 1873, 1876, 1877, 1880, 1886], "f_m": 520, "eq_inv_tf_r": 520, "tau_k": 520, "tau_": [520, 528], "inv_dft_i": 520, "ge": 520, "t_1": 520, "t_2": 520, "simeq": [520, 1902, 1907], "it_2": 520, "badli": 520, "naiv": 520, "substract": 520, "tranform": 520, "2a": [520, 537], "leftrightarrow": 520, "gg": [520, 1899, 1904], "chose": [520, 1881, 1883, 1887, 1888, 1894], "opt": [521, 523, 527, 528, 529, 533, 534, 535, 1813, 1827, 1854, 1885, 1886, 1887], "variable_t": 521, "target_t": 521, "option_t": 521, "unus": 521, "decrib": 521, "block_index": [521, 523, 876, 1699], "singularity_t": [521, 526], "symmetry_t": [521, 525, 526], "stage": [521, 570, 1873, 1877], "destructor": 521, "compound": [521, 543, 551, 572], "reinterpret": 521, "1x1": [521, 534, 1862, 1883, 1887], "contruct": 523, "gf2": 523, "init_list": 523, "strip": 523, "make_block_gf_view_from_vector": 523, "Not": 523, "TO": [523, 528, 529, 581, 1595, 1867, 1891, 1896], "BE": [523, 529, 581, 1595, 1867, 1891, 1896], "bg0": 523, "bg1": 523, "bg11": 523, "bg2": 523, "bg3": 523, "bg4": 523, "test_block_gf": 523, "b4": 523, "freq": [523, 993, 994, 1873, 1877, 1886, 1887, 1904], "1025": [523, 1118], "positive_onli": [523, 539, 1877, 1886, 1887, 1904], "clefexpress": [524, 537], "closest": [524, 528, 572, 1057, 1203, 1204], "extrem": [524, 581], "inconveni": 524, "forbid": 524, "asid": 525, "singularity_view_t": 525, "si": 525, "evaluator_t": 525, "No": [527, 544, 545, 546, 547, 548, 664, 703, 742, 781, 820, 1857, 1873, 1877], "immutablematrix": [527, 528, 533, 535], "1d": [527, 528, 533, 535, 560, 561, 646, 650, 660, 700, 739, 778, 817, 856, 978, 1731, 1762], "3d": [527, 528, 533, 535, 544, 545, 546, 547, 548, 560, 700, 739, 778, 817, 856, 978, 1873, 1877, 1886], "todo": 527, "make_shap": [527, 528, 541], "1i": 527, "m_pi": 527, "g3": [527, 528], "226344": 527, "248878": 527, "antiperiod": 528, "OR": 528, "n_time": [528, 535, 1862], "exp": [528, 553, 567, 570, 1211, 1215, 1861, 1882, 1883, 1887, 1899, 1903, 1904, 1908], "0407608": 528, "0407604": 528, "2x2": [529, 533, 535, 553, 1217, 1883, 1887], "wmin": [529, 533], "wmax": [529, 533], "n_freq": [529, 533, 1863], "var_t": 531, "tmin": [531, 532, 535, 1862], "tmax": [531, 532, 535, 1862], "n_re_tim": [531, 532], "n_im_tim": [531, 532], "g_t_tau_": [531, 532], "dedic": 531, "g_slice": 531, "_x1": 532, "_x2": 532, "y2": [532, 1873, 1877], "_xi": 532, "yi": 532, "g_t_tau_m": 532, "g_t_tau_t": 532, "m1": [532, 573, 1685, 1686], "m2": [532, 573, 1685, 1686], "matrix_valued_vers": 532, "gm": [532, 547, 1862], "tensor_valued_vers": 532, "test_product_gf": 532, "gf_const": 534, "concentr": 536, "1a": 537, "1b": 537, "2b": 537, "closest_mesh_pt_t": 537, "3a": 537, "3b": 537, "acquir": [537, 541, 543, 552], "closest_mesh_point_t": 537, "closest_mesh_point": 537, "vehicl": 537, "matsubara_freq_mesh": 539, "pictori": [539, 540], "all_frequ": 539, "positive_frequencies_onli": 539, "matsubara_freq_domain": 539, "iomega_n": [539, 550, 1848, 1869, 1883, 1887, 1889, 1891, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "linear_index_t": 539, "default_interpol_polici": 539, "domain_pt_t": 539, "full_siz": 539, "linear_to_index": 539, "revers": 539, "first_index": 539, "last_index": 539, "first_index_window": 539, "last_index_window": 539, "tau_n": 540, "get_interpolation_data": 540, "redefin": [540, 586], "anti": [540, 573, 1684, 1691, 1885, 1899, 1901, 1904, 1906], "role": [541, 551, 552], "accur": [541, 552, 1873, 1877, 1895, 1903, 1908], "approx": [541, 552, 583, 1873, 1877, 1883, 1887, 1899, 1903, 1904, 1905, 1906, 1908], "a_n": [541, 552], "coefficienct": [541, 552], "twenti": 541, "absolut": [541, 564, 1666, 1873, 1877], "fulfil": 541, "ij": [541, 573, 575, 1685, 1696, 1700, 1702, 1709, 1710, 1883, 1887], "ji": 541, "entail": 541, "prodiv": 541, "max_ord": 541, "nerror": 541, "experienc": [541, 1851], "set_tail_fit_paramet": 541, "tail_fract": [541, 1128], "expansion_ord": [541, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1128], "fraction": [541, 1838], "outer": [541, 860], "30": [541, 582, 1128, 1867, 1877, 1887, 1895, 1896], "fit_tail_on_window": 541, "behav": [541, 585, 1852, 1884], "fit_hermitian_tail_on_window": 541, "gflegendr": [542, 543, 549, 554, 1197, 1887], "gfretim": [542, 543, 549, 553, 1199, 1216, 1887], "pickl": [542, 549], "flavour": 543, "inv": [543, 551], "enough": [543, 1873, 1877], "50": [543, 544, 545, 546, 551, 554, 563, 567, 580, 1185, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1892, 1896, 1897, 1899], "imp": [543, 1873, 1877, 1879, 1880, 1883, 1887, 1888, 1889, 1894], "collid": 543, "former": 543, "don": [543, 570, 1891, 1896], "reassign": 543, "certainli": [543, 1881], "lazy_express": 543, "assembl": [543, 1849], "bandwith": [543, 553, 1211], "bandwidth": [543, 917, 930, 932, 1883, 1887], "picklabl": [543, 551], "sent": [543, 551], "disk": [543, 551, 1900, 1901, 1905, 1906], "saw": [543, 1900, 1905], "tell": [543, 568, 570, 580, 1881, 1883, 1887, 1890, 1895], "plotter": 543, "lot": [543, 1886], "target_rank": [544, 545, 546, 547, 548, 664, 703, 742, 781, 820, 875, 942, 1887], "is_real": [544, 545, 546, 547, 548, 664, 703, 742, 781, 820, 942, 1883, 1887], "kwarg": [544, 546, 551, 553, 589, 592, 613, 670, 698, 709, 737, 748, 776, 787, 815, 826, 854, 859, 860, 874, 875, 882, 892, 935, 948, 976, 1055, 1068, 1080, 1093, 1106, 1119, 1135, 1146, 1155, 1167, 1212, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1599, 1607, 1612, 1672, 1735, 1743, 1832, 1841, 1885, 1886, 1887], "g_out": [544, 545, 547, 548, 689, 728, 767, 806, 845, 967, 1007], "g_in": [544, 545, 547, 548, 689, 728, 767, 806, 845, 967, 990, 1007], "set_from_legendr": [544, 545], "decompos": [544, 545, 546, 547, 548, 551, 581, 1889, 1900, 1905], "meshgf": [544, 545, 546, 547, 548], "i2": [544, 545, 546, 547, 548], "this_str": [544, 545, 546, 547, 548], "eg1": [544, 547, 551], "eg2": [544, 547, 551], "egblock": [544, 547, 548, 551], "half_bandwidth": [544, 545, 546, 547, 550, 554, 916, 917, 929, 930, 932], "mpl_interfac": [544, 545, 546, 547, 548, 554, 558, 579, 580, 582, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "plt": [544, 546, 558, 563, 582, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "x_window": [544, 579, 580, 700, 739, 778, 817, 856, 978, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201], "ylim": [544, 558, 1872, 1883, 1887, 1889, 1892, 1894, 1895, 1897, 1908], "meshimtim": [545, 553, 703, 1178, 1194, 1196, 1211, 1215, 1883, 1887, 1894, 1895], "tailgf": 545, "enforce_discontinu": [546, 553, 1213], "disc": [546, 553, 671, 710, 749, 788, 827, 949, 997, 1211, 1215], "discontinu": [546, 553, 671, 710, 749, 788, 827, 949, 997, 1213], "40": [546, 554, 1873, 1877, 1882, 1896], "matsubaratolegendr": [546, 554], "giw": [547, 693, 732, 771, 810, 849, 971, 1011, 1883, 1886, 1887], "freq_offset": [547, 693, 732, 771, 810, 849, 971, 1011, 1900, 1905], "demonstr": [547, 563], "counterpart": 547, "cmath": 547, "101": [547, 558, 560, 1666, 1849, 1862, 1872, 1873, 1877, 1879], "lorentzian": 547, "glorentz": 547, "z": [547, 550, 567, 570, 573, 576, 669, 708, 747, 786, 825, 916, 929, 947, 1185, 1689, 1692, 1694, 1716, 1719, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1886, 1889, 1890, 1895, 1903, 1908], "semicircl": [547, 930], "gsc": 547, "superposit": 547, "2000": 547, "gr": 547, "995": 547, "1200": 547, "g_pade": 547, "meshretim": [548, 820, 1883, 1887], "1001": [548, 1885, 1894, 1895], "permit": 550, "wilson": 550, "eps_d": [550, 1883, 1887], "cut": [550, 570, 916, 1849, 1901, 1906], "2d": [550, 558, 563, 575, 916, 1205, 1626, 1709, 1710, 1872, 1873, 1877, 1879, 1880, 1883, 1887, 1892, 1897], "chem_potenti": [550, 929, 930], "contrast": 551, "rememb": [551, 1888, 1894, 1895], "sentenc": 551, "imagin": [551, 569, 1883, 1887], "involv": [551, 570, 572, 1849, 1889], "solid": [551, 1889], "t2g": [551, 573, 1688, 1694, 1883, 1887], "t2g1": 551, "t2g2": 551, "t2g3": 551, "t2gblock": 551, "name_list": [551, 875, 1883, 1887], "block_list": [551, 859, 860, 875, 1883, 1887], "make_copi": [551, 860, 875, 1887], "compos": [551, 1877, 1887], "initialis": [551, 862, 879], "do_someth": 551, "interestingli": 551, "appear": [551, 579, 1874, 1878, 1881, 1883, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1904, 1905], "clariti": [551, 570], "exactli": [551, 589, 591, 612, 1873, 1877, 1885, 1899, 1902, 1904, 1907], "clearli": [551, 564, 570, 1854, 1892, 1897], "__blockindiceslist": 551, "__name": 551, "__note": 551, "ident": [552, 1851, 1910], "caution": [553, 1210, 1850], "iomega": [553, 1210, 1211], "eps0": [553, 1211], "v0": [553, 1211], "tol": [553, 575, 1211, 1712], "maxit": [553, 935, 1211, 1768, 1769], "10000": [553, 570, 582, 1211, 1873, 1877, 1882, 1890, 1891, 1892, 1895, 1896, 1897], "cmplx": [553, 1211], "delta_": [553, 572, 576, 1211, 1215, 1716], "kl": [553, 1211, 1215], "kj": [553, 1211, 1215], "jl": [553, 1211, 1215], "eps_j": [553, 1211, 1215], "basinhop": [553, 1211], "frontend": [553, 1211], "norb": [553, 1211, 1215, 1663, 1905], "choleski": [553, 1211], "decomposit": [553, 1211], "xatol": [553, 1211], "ftol": [553, 1211], "complx": [553, 1211], "v_opt": [553, 1211], "thereof": [553, 1211, 1215, 1838], "eps_opt": [553, 1211], "sort": [553, 1211, 1873, 1877, 1890, 1895], "delta_disc": [553, 1211], "noisi": [553, 935, 1213, 1873, 1877], "low": [553, 1213, 1879, 1883, 1887, 1892, 1895, 1897, 1903, 1908], "treatement": [553, 1214], "block_txtfil": [553, 1217], "desir": [553, 1217, 1883, 1887], "uniform": [553, 585, 1217, 1883, 1887], "up_eg1": [553, 1217], "up_eg1_1": [553, 1217], "up_eg2_1": [553, 1217], "up_eg1_2": [553, 1217], "up_eg2_2": [553, 1217], "legendretomatsubara": 554, "pictur": [555, 1883, 1887, 1900, 1905], "abstarct": 555, "bitset": 555, "dimer": 555, "coulomb": [555, 573, 1682, 1875, 1879, 1889], "repuls": 555, "mu": [555, 559, 560, 561, 648, 652, 655, 930, 1754, 1760, 1869, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1882, 1885, 1886, 1888, 1891, 1892, 1894, 1896, 1897, 1899, 1903, 1904, 1908], "full_hs_operator_t": 555, "spars": [555, 1883, 1887], "prealloc": 555, "inv_subspac": 555, "emplace_back": 555, "spn": 555, "n_down": [555, 1896], "n_up_conn": 555, "n_down_conn": 555, "sub_hs_operator_t": 555, "n_up_hilbert_map": 555, "conn": 555, "n_up_op": 555, "n_down_hilbert_map": 555, "n_down_op": 555, "ket": 555, "equip": 556, "idenifi": 556, "vanis": 556, "bravaislattic": [557, 558, 560, 562, 1067, 1606, 1611, 1622, 1646, 1872, 1886], "atom_orb_po": [557, 1598], "atom_orb_nam": [557, 1598], "lattice_to_real_coordin": [557, 562], "r_t": [557, 562, 1600, 1617, 1637, 1653], "n_orbit": [557, 559, 653, 1642, 1877, 1899, 1904], "orbital_posit": [557, 560, 563, 1627, 1646, 1647], "bravai": [558, 562, 563, 1067, 1598, 1606, 1608, 1611, 1616, 1622, 1635, 1646, 1651, 1872, 1886, 1899, 1904], "bl": [558, 560, 562, 563, 1606, 1611, 1646, 1872, 1886], "nearest": [558, 1185, 1187, 1872, 1886, 1900, 1902, 1903, 1905, 1907, 1908], "neighbour": [558, 560, 567, 1872, 1886, 1900, 1902, 1905, 1907], "00": [558, 560, 1872, 1873, 1877, 1883, 1887, 1889, 1895, 1896, 1904, 1907, 1908], "tp": [558, 560, 563, 1872, 1892, 1897], "displac": [558, 562, 1611, 1614, 1872, 1886], "t11": [558, 1872], "t12": [558, 1872], "t13": [558, 1872], "t21": [558, 1872], "t22": [558, 1872], "t23": [558, 1872], "tnn": [558, 1872], "number_orbit": [558, 1872], "tb": [558, 560, 563, 1596, 1619, 1620, 1646, 1872, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1886], "tightbind": [558, 560, 562, 1619, 1620, 1646, 1872, 1886], "n_kpt": [558, 559, 560, 561, 1659, 1872], "500": [558, 560, 1863, 1872, 1889], "n_ep": [558, 559, 560, 1596, 1659, 1660, 1872], "matplotlib": [558, 563, 578, 1854, 1856, 1857, 1859, 1868, 1870, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "pylab": [558, 563, 1872], "xlim": [558, 1732, 1872, 1883, 1887, 1889, 1892, 1894, 1895, 1896, 1897, 1908], "energies_on_bz_path": 558, "dos_from_fil": [558, 559], "_k": [559, 563, 645], "epsilon_k": [559, 561, 645, 1760, 1888, 1894], "single_orbit": [559, 653], "ONE": [559, 653], "ith": [559, 653], "dosfromfunct": [559, 560], "x_min": [559, 649, 650, 1731], "x_max": [559, 649, 650, 1731], "hilberttransform": 560, "sigma0": 560, "bigl": [560, 655, 1892, 1897], "hat": [560, 572, 576, 655, 1714, 1715, 1716, 1717, 1718, 1719, 1873, 1877, 1883, 1886, 1887], "varepsilon": [560, 655], "bigr": [560, 655, 1892, 1897], "epsilon_hat": 560, "n_points_integr": 560, "test_converg": 560, "gfbloc": [560, 1632], "array_with_gfbloc_indic": 560, "gbloc": 560, "identity_matrix": 560, "npt": 560, "cv": 560, "sumkdiscretefromlattic": 561, "riemann": [561, 1760, 1762, 1763], "leftarrow": [561, 1754, 1760], "sum_k": [561, 1754, 1760, 1888, 1894, 1902, 1903, 1907, 1908], "eps_k": [561, 1754, 1760, 1886], "bz_point": [561, 1754, 1760], "bz_weight": [561, 1754, 1760, 1877], "mu_pattern": [561, 1754, 1760], "overlap": [561, 562, 1611, 1618, 1754, 1760, 1886], "IF": [561, 1754, 1760], "recomputegrid": [561, 1760], "gauss": [561, 1754, 1760, 1762, 1763], "gfblocindic": 561, "recompute_grid": 561, "chi_0": [561, 1762, 1859, 1901, 1902, 1906, 1907, 1909], "resize_arrai": 561, "nk": [561, 1185, 1758, 1765, 1905], "k_cvt": [562, 1613, 1615, 1631, 1633, 1648, 1649], "momentum": [562, 573, 576, 1054, 1613, 1615, 1631, 1633, 1648, 1649, 1664, 1683, 1685, 1688, 1690, 1692, 1714, 1716, 1883, 1886, 1887, 1892, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "reciproc": [562, 1054, 1610, 1613, 1615, 1631, 1633, 1648, 1649, 1666, 1886, 1899, 1904], "aim": [563, 572, 1850, 1859, 1873, 1877, 1902, 1907], "triplet": 563, "lbrace": [563, 583], "rbrace": [563, 583], "ie": 563, "phi_n": 563, "phi_m": 563, "wannier": [563, 1667], "hopping_dictionari": 563, "pt": [563, 1899, 1904], "epsilon_n": 563, "join": [563, 1903, 1907, 1908], "eigenvector": 563, "success": [563, 1778, 1865, 1873, 1877], "bl_1": 563, "bl_2": 563, "bl_4": 563, "hop_1": 563, "hop_2": 563, "hop_4": 563, "tb_1": 563, "tb_2": 563, "tb_4": 563, "gamma": [563, 1877, 1883, 1887, 1889, 1899, 1900, 1901, 1904, 1905, 1906], "pipi": 563, "pi0": 563, "pihpih": 563, "twopi0": 563, "twopitwopi": 563, "path_1": 563, "path_2": 563, "2at": 563, "ucel": 563, "path_4": 563, "4at": 563, "energies_on_path": 563, "orb": 563, "e_1": 563, "e_2": 563, "e_4": 563, "linewidth": [563, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1887, 1894], "ats": 563, "legend": [563, 580, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1873, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1889, 1895, 1897, 1905, 1906, 1907, 1908], "ax": [563, 1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1894, 1899, 1904], "set_xtick": [563, 1873, 1877, 1879, 1880], "150": [563, 1873, 1876, 1877, 1879, 1880, 1882], "set_xticklabel": [563, 1894], "gamma_1": 563, "m_1": [563, 573, 1686, 1687, 1695], "x_1": 563, "ylabel": [563, 580, 1201, 1882, 1887, 1894, 1895, 1897, 1899, 1904, 1905, 1906], "montecarlo": 564, "dynam": [564, 572, 935, 1852, 1859, 1900, 1905], "mc_sign_typ": 564, "proba": 564, "p_x": 564, "p_": [564, 570, 1892, 1897], "move_sign": 564, "move_r": 564, "new_sign": 564, "old_sign": 564, "focu": [565, 1890, 1891, 1895, 1896], "beta_": [567, 570], "field_": 567, "rng": [567, 569, 570], "delta_energi": 567, "config_": [567, 570], "rng_": 567, "metropli": 567, "compute_m": [567, 570], "sum_z": [567, 570], "sum_m": [567, 570], "greet": [567, 570], "500000": 567, "100000": [567, 1869], "374982": [567, 570], "273894": [567, 570], "isingmc": 567, "clock_callback": [567, 570], "27603": 567, "goal": [568, 581, 1865, 1888, 1890, 1894, 1895], "transit": [568, 570, 1849, 1875, 1879, 1890, 1891, 1892, 1895, 1896, 1897, 1901, 1903, 1906, 1908], "heart": 568, "repeat": [568, 1873, 1876, 1877, 1880, 1903, 1908], "decorrel": [568, 1873, 1877, 1889], "dictonari": 568, "doesn": [568, 570], "wether": [568, 1883, 1887], "clearer": 568, "23432": 569, "stand": [569, 1849], "uniformli": 569, "spinmc": [569, 570], "mymov": 569, "overview": [570, 1849, 1870, 1873, 1877, 1881], "concret": [570, 1883, 1887], "mayb": 570, "simplest": [570, 583, 1882], "ever": [570, 587], "uparrow": [570, 575, 1710, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1902, 1903, 1907, 1908], "downarrow": [570, 575, 1710, 1889, 1891, 1892, 1896, 1897, 1902, 1903, 1907, 1908], "job": [570, 1873, 1877, 1883, 1887], "everyth": [570, 587, 1864, 1867, 1873, 1877, 1881], "obvious": [570, 1867], "piec": [570, 581, 1881, 1889], "h_": [570, 1702, 1889, 1891, 1892, 1896, 1897], "isol": [570, 1855], "5000000": 570, "600": [570, 586], "149608": 570, "initial_sign": 570, "But": 570, "satisfi": [570, 1855, 1888, 1894, 1899, 1902, 1903, 1904, 1907, 1908], "importantli": 570, "trial": 570, "With": [570, 1858, 1902, 1907], "meant": 570, "launch": 570, "55": [570, 1896], "didn": 570, "manag": [570, 578, 1850, 1851], "cleanli": 570, "safe": 570, "hope": 570, "gave": 570, "idea": [570, 1849, 1870, 1889, 1890, 1895, 1903, 1908], "chapter": 570, "haven": 570, "acc": 570, "speed": [571, 1873, 1875, 1877, 1879, 1880], "quantiti": [571, 583, 1889, 1890, 1895, 1899, 1902, 1904, 1907], "readabl": [572, 1873, 1877], "accompani": 572, "approach": [572, 1874, 1878, 1886, 1892, 1897, 1900, 1901, 1903, 1905, 1906, 1908], "meet": [572, 1849, 1873, 1877], "is_zero": 572, "sake": 572, "many_body_operator_complex": 572, "nontrivi": 572, "obei": [572, 1899, 1902, 1903, 1904, 1907, 1908], "anticommut": 572, "dagger_": [572, 573, 575, 576, 595, 596, 616, 617, 1685, 1696, 1710, 1716, 1719, 1891, 1896], "preregist": 572, "elementari": [572, 583], "instanti": 572, "make_fundamental_operator_set": 572, "make_canon": 572, "is_dag": 572, "functor": 572, "paragraph": 572, "variant_int_str": 572, "canonical_ops_t": 572, "bidirect": 572, "dedocument": 572, "triqsd": 572, "coef": 572, "deseri": 572, "quartic": [572, 574, 1889, 1900, 1905], "__repr__": 572, "__str__": 572, "c_list": 572, "cd_list": 572, "commut": [572, 1885], "radial_integr": [573, 1683, 1685], "u_int": [573, 1683, 1684, 1685, 1690], "spheric": [573, 576, 1685, 1692, 1714, 1715, 1716], "m3": [573, 1685, 1686], "m4": [573, 1685, 1686], "f_2": [573, 1685], "f_4": [573, 1685], "radial": [573, 1683, 1685, 1690], "angular": [573, 1683, 1685, 1686, 1688, 1690, 1692], "racah_wign": [573, 1685], "u_j_to_radial_integr": [573, 1685], "convet": [573, 1685], "ijkl": [573, 575, 1685, 1701, 1711], "u_": [573, 575, 1684, 1685, 1700, 1701, 1709, 1710, 1711, 1889, 1903, 1908], "f0": [573, 1683, 1685, 1690], "f2": [573, 587, 1683, 1685, 1690, 1801], "f4": [573, 1683, 1685, 1690], "preferenti": [573, 1685], "alongsid": [573, 1685, 1851], "hund": [573, 1683, 1684, 1685, 1690], "harmon": [573, 576, 1685, 1688, 1692, 1714, 1715, 1716], "cubic": [573, 576, 1185, 1187, 1190, 1685, 1688, 1692, 1714, 1715, 1716], "b_": [573, 1685, 1696], "sum_j": [573, 1685, 1696], "reduce_4index_to_2index": 573, "u_4index": [573, 1691], "u_matrix_kanamori": 573, "up_int": [573, 1684], "full_uijkl": [573, 1684], "jc_hund": [573, 1684], "uijkl": [573, 1684], "j_c": [573, 1684], "neq": [573, 575, 1684, 1709, 1710, 1891, 1896], "prime": [573, 1684], "rotation": [573, 575, 1684, 1711], "retunr": [573, 1684], "foat": [573, 1684], "t2g_submatrix": 573, "submatrix": [573, 1689, 1694], "manifold": [573, 1689, 1694], "xy": [573, 1689, 1692, 1694, 1740], "yz": [573, 1689, 1692, 1694], "xz": [573, 1689, 1692, 1694], "u_t2g": [573, 1694], "eg_submatrix": 573, "u_eg": [573, 1689], "transform_u_matrix": 573, "cubic_nam": 573, "radial_integrals_to_u_j": 573, "angular_matrix_el": 573, "m_2": [573, 1686, 1687, 1695], "m_3": [573, 1686, 1687, 1695], "m_4": [573, 1686], "ang_mat_el": [573, 1686], "three_j_symbol": 573, "jm1": [573, 1687, 1695], "jm2": [573, 1687, 1695], "jm3": [573, 1687, 1695], "l_1": [573, 1695], "l_2": [573, 1695], "l_3": [573, 1695], "j_1": [573, 1687, 1695], "j_2": [573, 1687, 1695], "j_3": [573, 1687, 1695], "three_j_sym": [573, 1695], "clebsch_gordan": 573, "clebsh": [573, 1687], "gordan": [573, 1687], "cgcoeff": [573, 1687], "subarrai": 573, "idxlist": [573, 1693], "1st": [573, 1693], "extract_": 574, "monimi": 574, "quadrat": [574, 579, 1702], "dict_to_matrix": 574, "cleaner": 574, "shorthand": 574, "extractor": 574, "op_t": 574, "dict2_t": [574, 1699, 1700, 1702], "quadrupl": 574, "dict4_t": [574, 1701], "identifi": [575, 1835, 1873, 1875, 1877, 1879, 1880, 1889, 1896, 1897, 1899, 1903, 1904, 1905, 1906, 1908, 1910], "h_int_slat": 575, "off_diag": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723], "map_operator_structur": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722], "h_dump": [575, 1709, 1710, 1711], "4d": [575, 1711], "ye": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1849], "spin_orbit": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723], "up_0": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1873, 1876, 1877, 1879, 1880], "down_0": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1876, 1877, 1879, 1880], "fip": [575, 1710], "h_int_dens": 575, "diagonal_part": 575, "n_3": [575, 1708], "n_part": [575, 1708], "make_operator_r": 575, "h_real": [575, 1712], "n_op": 576, "s_op": 576, "s_": [576, 1719], "pm": [576, 1719, 1892, 1895, 1897], "s_x": [576, 1715, 1718, 1719], "s_y": [576, 1715, 1718, 1719], "s2_op": 576, "l_op": 576, "l_": [576, 676, 715, 754, 793, 832, 954, 1716], "l_x": [576, 1714, 1715, 1716], "l_y": [576, 1714, 1715, 1716], "2i": [576, 1716], "momenta": [576, 1187, 1714, 1715, 1716, 1900, 1902, 1905, 1907], "odd": [576, 1079, 1092, 1105, 1714, 1715, 1716, 1892, 1897, 1903, 1908], "l2_op": 576, "ls_op": 576, "get_mkind": 577, "mkind": [577, 1722], "operator_structur": [577, 1723], "panel": 578, "300": [579, 1849, 1877, 1879], "x_data_view": 579, "flatten_i": [579, 700, 739, 778, 817, 856, 978], "fitl": 579, "fitq": 579, "one_fermion_level": 579, "fit1": 579, "clip": 579, "reader": 579, "encourag": 579, "leastsq": 579, "x_arrai": [579, 659, 660, 1731], "y_arrai": [579, 659, 660], "fitter": [579, 659, 660], "p0": [579, 659, 660], "p1": [579, 659], "p2": [579, 659], "fitfunc": 579, "toolkit": [580, 1859], "graphic": [580, 1866], "pyplot": [580, 1726, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1886, 1892, 1897], "subfigur": 580, "subplot": [580, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1892, 1894, 1897, 1908], "bottom": [580, 1862, 1899, 1904, 1908], "bad": [580, 1889], "_plot_": 580, "curv": [580, 660, 1882, 1883, 1887, 1890, 1895, 1903, 1908], "optionsdict": 580, "optiondict": 580, "consum": 580, "pop": [580, 1876, 1880], "spuriou": 580, "xdata": 580, "ydata": 580, "graph": 580, "xlabel": [580, 1201, 1882, 1887, 1895, 1897, 1899, 1904, 1905, 1906, 1907, 1908], "overrul": 580, "myobject": [580, 1881], "arang": [580, 1882, 1887, 1888, 1891, 1894, 1895, 1896, 1903, 1907, 1908], "ydata1": 580, "ydata2": 580, "entri": [580, 1873, 1877, 1884, 1887], "dict1": 580, "dict2": 580, "scienc": 581, "everyon": 581, "human": 581, "task": [581, 1873, 1877, 1879, 1902, 1907], "admittedli": 581, "bore": 581, "physicist": 581, "fortun": 581, "wiki": 581, "wish": [581, 1857], "tini": 581, "git_hash": [581, 1848], "secur": 581, "show_machine_info": 581, "hostnam": 581, "login": [581, 1850], "code_vers": 581, "myself": [581, 1848], "situat": [581, 1883, 1887], "computation1": 581, "ok": [581, 587, 1867], "getsourc": 581, "randomgener": 582, "237849": 582, "random_generator_names_list": 582, "inverv": 582, "lagged_fibonacci607": 582, "237489": 582, "hist": [582, 1882], "aris": 583, "characterist": [583, 585, 1875, 1879, 1890, 1895], "proce": [583, 1888, 1894], "central": [583, 1873, 1877, 1883, 1887, 1892, 1897], "reliabl": [583, 1877], "difficult": 583, "date": 585, "stringstream": 585, "stack": [585, 1784], "strace": 585, "demangl": 585, "triqs_runtime_error": 585, "highli": [585, 1851], "caught": 585, "runtime_error": 585, "trace": 585, "exceptions_1": 585, "thrown": 585, "seen": [586, 1849, 1889, 1903, 1908], "pyconfig": 586, "1173": 586, "_posix_c_sourc": 586, "200112l": 586, "x86_64": 586, "unknown": 586, "os_defin": 586, "39": [586, 1877, 1879, 1881, 1882, 1885, 1886, 1887, 1889, 1896], "162": 586, "200809l": 586, "_xopen_sourc": 586, "first_includ": 586, "condition": 586, "tuple_tool": 587, "make_tupl": 587, "t0": 587, "t2": [587, 1862], "necessarli": 587, "res2": 587, "benefit": [587, 1849], "tuple_s": 587, "tie": 587, "54": [587, 1896], "61": [587, 1896], "_called_on_tupl": 587, "_f": 587, "flavor": [589, 591, 612, 1885], "truncat": [589, 591, 612, 1885], "init_value_default": 660, "param_tupl": 660, "tex": 660, "n0": [669, 708, 747, 786, 825, 947], "contraint": [673, 712, 751, 790, 829, 951, 999], "ac": [676, 715, 754, 793, 832, 954], "r_": [676, 715, 754, 793, 832, 954], "db": [676, 715, 754, 793, 832, 954], "new_n_tau": [686, 725, 764, 803, 842, 964, 1004, 1873, 1877, 1879, 1889], "rebin": [686, 725, 764, 803, 842, 964, 1004, 1873, 1877, 1879, 1889], "sparser": [686, 725, 764, 803, 842, 964, 1004], "insid": [700, 739, 778, 817, 856, 978, 1626, 1850, 1892, 1897], "name_list1": [859, 860], "name_list2": [859, 860], "coincid": 860, "block_index1": 861, "block_index2": 861, "selected_blocks1": [864, 871], "selected_blocks2": [864, 871], "bloc": 876, "selected_block": [881, 894], "no_except": 887, "adjust_temperatur": 887, "deprec": [888, 1834, 1836, 1842, 1843], "dic": [896, 984], "karg": [899, 900, 910, 911], "minu": 930, "alia": 931, "g0_dlr": 935, "g_dlr": [935, 988, 989, 991, 992, 1883, 1887], "sigma_mo": 935, "trust": [935, 1903, 1908], "constr": 935, "disp": 935, "finite_diff_rel_step": 935, "gtol": 935, "5000": [935, 1869, 1873, 1877, 1889, 1891, 1895, 1896], "xtol": [935, 1768, 1903, 1907, 1908], "contrain": 935, "arxiv": [935, 1849, 1902, 1903, 1907, 1908], "2310": [935, 1849], "01266": [935, 1849], "\u03c3": [935, 1879], "\u03c3_dyn": 935, "i\u03bd": 935, "\u03c3_0": 935, "hartre": [935, 1626, 1873, 1876, 1877, 1879, 1880], "\u03c3_1": 935, "altern": [935, 1851, 1866, 1883, 1887, 1902, 1907], "s_iw": 935, "s_iw_dlr": 935, "sigma_hf": 935, "iwn": 935, "g_dlr_iw": 935, "g_full_iw": 935, "provdid": 935, "sigma_dlr": 935, "sigma_0": 935, "g\u2080": 935, "g\u2080\u03c3g": 935, "dct": [937, 938], "mutual": [942, 1887], "exclus": [942, 1887], "hdf_scheme": 983, "lazyexpr": 1023, "eval_term": 1024, "fnode": 1027, "fterm": 1027, "child": 1027, "castabl": [1030, 1622], "data_index": [1037, 1038, 1063, 1075, 1088, 1101, 1114, 1131, 1142, 1153, 1161, 1175], "mlist": [1044, 1045], "compom": 1050, "vector_const_view": 1057, "data_index_t": [1062, 1063, 1074, 1075, 1087, 1088, 1100, 1101, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175], "pyobject": [1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177], "spacial": 1067, "otain": [1079, 1092, 1105], "cutoff": [1079, 1092, 1105, 1883, 1887], "accuraci": [1079, 1092, 1105, 1873, 1877, 1883, 1887], "choos": [1079, 1092, 1105, 1853, 1858, 1867, 1874, 1878], "evenli": [1134, 1154, 1166, 1887], "edg": [1134, 1154, 1166, 1849, 1887, 1892, 1897], "degre": [1145, 1890, 1892, 1895, 1897], "max_n": 1145, "w_min": [1154, 1887, 1900, 1905], "adjoint": 1178, "zmin": 1185, "zmax": 1185, "opt_dict": [1186, 1189, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1726, 1727, 1728, 1732], "gfbrillouinzon": [1186, 1189], "ltot": 1187, "xmin": [1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201], "xmax": [1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201], "allow_spectral_mod": 1201, "plot_data": [1201, 1740], "orient": [1204, 1881], "polygon": [1594, 1595], "michel": 1595, "n_div": [1596, 1660], "nkpt": 1619, "nep": [1619, 1620], "triangl": [1620, 1660], "ndiv": 1620, "tb_lattic": [1626, 1627, 1628, 1629, 1630, 1632], "super_lattice_unit": [1626, 1627], "cluster_sit": [1626, 1627], "remove_internal_hop": [1626, 1627], "tblattic": [1626, 1662, 1663, 1664, 1899, 1903, 1904, 1908], "supercel": 1629, "d1": 1632, "remove_intern": 1632, "create_zero": 1632, "dictionnari": 1632, "orbital1": 1632, "orbital2": 1632, "n_r": [1635, 1651, 1887], "n_site": 1642, "nsite": 1642, "pack_index_site_orbit": 1644, "ptb": 1662, "tbl": [1662, 1663, 1664], "extend_to_spin": 1663, "add_loc": 1663, "wout": [1663, 1668, 1874, 1878], "seed_hr": 1663, "seednam": [1663, 1873, 1877, 1880], "_hr": [1663, 1667], "digit": [1664, 1910], "decreas": [1664, 1889, 1896, 1903, 1908], "particularli": [1664, 1869, 1888, 1894], "crystal": [1664, 1883, 1887], "hk": [1664, 1891, 1896], "hk_numer": 1664, "sole": 1664, "hopp_dict": [1665, 1667], "num_wann": [1665, 1667, 1873, 1877], "segment": 1666, "num": [1666, 1899, 1904, 1905, 1906], "relative_coordin": 1666, "overal": [1666, 1873, 1877], "kvec": 1666, "dist": [1666, 1864], "travel": 1666, "null": 1674, "ignore_irrelev": [1698, 1700, 1701, 1702], "real_or_complex_arrai": 1699, "n_i": 1700, "n_j": 1700, "irrelev": [1700, 1701, 1702], "u_dict": [1700, 1701], "dagger_i": [1701, 1702], "dagger_j": 1701, "c_l": 1701, "c_k": 1701, "c_j": [1702, 1883, 1887], "h_dict": 1702, "bl_mat": 1703, "fname": [1707, 1720], "opt_list": [1726, 1727, 1728], "sl": 1731, "emul": 1732, "optional_dict": 1740, "width": [1740, 1882, 1883, 1887], "orthogonal_basi": [1754, 1756], "computegrid": 1754, "super_lattic": 1763, "provind": 1763, "x_0": [1768, 1769], "dx": [1768, 1769], "001": [1768, 1880], "x_name": [1768, 1778], "y_name": [1768, 1778], "monoton": 1768, "bisect": [1768, 1778], "06": [254, 1772, 1773, 1774, 1775, 1776, 1801, 1905], "x_init": 1778, "precision_on_i": 1778, "delta_x": 1778, "max_loop": 1778, "lower": [1778, 1883, 1887, 1889], "upper": 1778, "reimplement": [1780, 1784], "the_funct": [1780, 1784], "distributiononnodetest": 1780, "the_stack": [1784, 1786, 1791, 1793], "mpirun": [1803, 1850, 1873, 1876, 1877, 1880], "triqs_force_mpi_init": 1803, "is_mpi": 1803, "intracomm": 1805, "asynchron": 1806, "subprocess": 1806, "ping": 1806, "sleep": 1806, "msec": 1806, "host": [1809, 1823, 1850, 1874, 1878], "val": [1814, 1828], "dest": [1814, 1828], "imin": [1816, 1817], "imax": [1816, 1817], "threadgroup": 1832, "uniqu": 1832, "decim": 1832, "invoc": 1832, "subclass": [1832, 1841, 1886, 1887], "runtimeerror": [1833, 1838, 1844], "identif": [1834, 1839], "nonzero": 1835, "get_id": 1835, "recycl": 1835, "daemon": [1836, 1842], "unhandl": 1838, "is_al": 1838, "ed": [1838, 1876, 1880], "deadlock": 1838, "get_native_id": 1840, "kernel": [1840, 1883, 1887, 1889], "sequenti": 1841, "arrang": 1844, "control": [1844, 1856, 1873, 1877, 1881, 1882], "savetxt": 1848, "textfilenam": 1848, "reshap": [1848, 1886], "mesh_and_data": 1848, "hstack": 1848, "triqs quantum interacting systems toolbox research": 1849, "oolbox": 1849, "esearch": 1849, "nteract": 1849, "uantum": 1849, "ystem": 1849, "paradigm": 1849, "2005": 1849, "polytechniqu": 1849, "peer": 1849, "broader": 1849, "ecosystem": 1849, "flege": 1849, "dmft": [1849, 1850, 1859, 1869, 1874, 1875, 1878, 1879, 1881, 1883, 1887, 1890, 1891, 1895, 1896], "topic": 1849, "divers": 1849, "electron": [1849, 1873, 1874, 1877, 1878, 1879, 1883, 1887], "sr2ruo4": 1849, "120": [1849, 1873, 1877, 1879, 1880], "126401": 1849, "late": 1849, "metal": [1849, 1873, 1875, 1876, 1877, 1879, 1880, 1890, 1892, 1895, 1897], "oxid": 1849, "infinit": [1849, 1888, 1894, 1903, 1908], "nickel": 1849, "versu": [1849, 1890, 1895], "cuprat": [1849, 1892, 1897], "081110": 1849, "ndnio2": 1849, "cacuo2": 1849, "021061": 1849, "footprint": 1849, "fluctuat": [1849, 1902, 1903, 1907, 1908], "multimethod": 1849, "multimesseng": 1849, "011058": 1849, "resist": 1849, "sachdev": 1849, "kitaev": 1849, "syk": 1849, "liquid": [1849, 1877, 1878], "proc": 1849, "natl": 1849, "acad": 1849, "sci": 1849, "usa": 1849, "117": 1849, "18341": 1849, "scholar": 1849, "84": [1849, 1896], "075145": 1849, "105": 1849, "235115": 1849, "2404": 1849, "02334": 1849, "fellow": 1849, "insight": 1849, "event": 1849, "summer": 1849, "school": 1849, "annual": 1849, "strongli": [1849, 1850, 1859, 1873, 1877], "jupyt": [1849, 1850, 1857, 1859, 1868, 1871, 1873, 1874, 1875, 1877, 1878, 1879, 1909], "session": [1849, 1850, 1852, 1859], "brows": 1849, "snippet": [1849, 1863], "familiar": [1849, 1888, 1894, 1903, 1908], "platform": 1849, "la": [1850, 1873, 1877], "cart": 1850, "privat": 1850, "x86": 1850, "architectur": 1850, "lt": [1850, 1857, 1882, 1887], "jammi": 1850, "sudo": [1850, 1855, 1857], "transport": 1850, "curl": 1850, "lsb": 1850, "triqs3": 1850, "distrib_codenam": 1850, "perman": [1850, 1854], "forg": 1850, "feedstock": 1850, "triqs_cthyb": [1850, 1869, 1889, 1890, 1891, 1892, 1895, 1896, 1897], "triqs_dft_tool": [1850, 1873, 1877], "triqs_tprf": [1850, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "troubl": 1850, "mamba": 1850, "virtual": [1850, 1851, 1854], "administ": 1850, "triqs_latest": 1850, "sif": 1850, "exec": [1850, 1858], "servic": 1850, "close": [1850, 1856, 1863, 1873, 1877, 1890, 1895, 1900, 1905], "hpc": 1850, "bring": [1850, 1881], "eb": 1850, "robot": 1850, "foss": 1850, "2020a": 1850, "toolchain": 1850, "pai": 1850, "attent": [1850, 1873, 1877], "proceed": 1850, "install_prefix": 1850, "pwd": [1850, 1852], "mkdir": [1850, 1855, 1867], "dcmake_install_prefix": [1850, 1853], "ctest": 1850, "bash": 1850, "edit": [1850, 1881, 1890, 1895], "build_x": 1850, "build_x_test": 1850, "temporarili": 1850, "gigabyt": 1850, "ram": 1850, "restrict": 1850, "admin": 1850, "bash_profil": [1850, 1852, 1855], "zprofil": [1850, 1852], "lmod": 1850, "appl": 1851, "anyon": 1851, "superior": 1851, "drop": [1851, 1888, 1894, 1900, 1905], "precompil": 1851, "dowload": 1851, "influenc": 1852, "colon": 1852, "echo": 1852, "home": [1852, 1854, 1855, 1867, 1877], "printenv": 1852, "ld_library_path": 1852, "usernam": 1852, "cflag": 1852, "linker": [1852, 1853], "cpath": 1852, "isystem": 1852, "spawn": 1852, "intend": 1852, "install_path": 1853, "dcmake_build_typ": 1853, "dcmake_cxx_flag": 1853, "dcmake_exe_linker_flag": 1853, "dbuild_test": 1853, "upon": [1854, 1856], "macport": 1854, "fink": 1854, "enthought": 1854, "nor": 1854, "far": [1854, 1900, 1903, 1905, 1908], "qualiti": [1854, 1889], "sometim": 1854, "librairi": 1854, "dai": 1854, "suddenli": 1854, "priori": [1854, 1883, 1887], "impact": 1854, "robust": 1854, "mess": 1854, "mojav": 1854, "xcode": 1854, "sdk": 1854, "sdkroot": 1854, "xcrun": 1854, "doctor": 1854, "zshrc": 1854, "outdat": 1855, "verison": 1855, "although": 1855, "my_python": 1855, "confirm": 1855, "path_to_your_hom": 1855, "package_nam": 1855, "freeli": 1856, "iso": 1856, "committe": 1856, "philsophi": 1856, "evolut": 1856, "rapidli": 1856, "evolv": 1856, "99": [1856, 1896], "gfortran": 1857, "libopenbla": 1857, "libboost": 1857, "libfftw3": 1857, "libgmp": 1857, "libopenmpi": 1857, "fatal": 1857, "h5public": 1857, "dumpmachin": 1857, "suggest": [1858, 1900, 1905], "py3": 1858, "2to3": 1858, "backup": 1858, "2to3_nb": 1858, "ipynb": 1858, "dive": 1858, "round": 1858, "divison": 1858, "__floordiv__": 1858, "slash": 1858, "hard": [1858, 1873, 1877], "net": 1858, "editor": [1858, 1890, 1895], "bufdo": 1858, "nn1": 1858, "gc": 1858, "declin": 1858, "xa": 1858, "appnam": 1858, "module_name_desc": 1858, "outlin": [1858, 1883, 1887], "dpython_execut": 1858, "path_to_python3": 1858, "demo": 1859, "understand": [1859, 1873, 1877, 1890, 1895, 1896, 1900, 1905], "behind": [1859, 1882, 1889], "ingredi": [1859, 1892, 1897], "tackl": 1859, "condens": 1859, "theori": [1859, 1883, 1887], "realiz": 1859, "difficulti": 1859, "aspect": [1859, 1873, 1877, 1881, 1886, 1907, 1909], "remind": [1859, 1864, 1871, 1900, 1905], "anderson": [1859, 1871], "valenc": [1859, 1871], "bond": [1859, 1871, 1873, 1877], "nest": [1859, 1903, 1908, 1909], "suscept": [1859, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908, 1909], "rpa": [1859, 1899, 1904, 1909], "tpsc": [1859, 1899, 1901, 1904, 1906, 1909], "antiferromagnet": [1859, 1901, 1906, 1909], "resourc": [1859, 1873, 1877, 1881], "ctqmc": [1859, 1885, 1895], "store_a": 1860, "tql": 1860, "initial_x": 1861, "initial_i": 1861, "stai": [1861, 1881], "d2": 1861, "const_view": 1862, "shortest": 1862, "inu_": 1862, "t_mesh": 1862, "nxm": 1862, "Or": 1862, "t1_": 1862, "t2_": 1862, "36": [1862, 1887, 1896], "hfile": 1863, "my_gf": 1863, "hfile2": 1863, "48796": 1863, "0766486": 1863, "src_dir": 1864, "foobar": 1864, "toto_a1": 1864, "module_a1_desc": 1864, "module_a1": 1864, "totoa1": 1864, "module_b1": 1864, "application_b": 1864, "build_dir": 1864, "install_dir": 1864, "module_path_list": 1864, "automodul": 1864, "blue": [1864, 1873, 1877, 1882, 1889], "prompt": 1864, "my_funct": 1864, "module_a1_wrap": 1864, "yet": [1864, 1873, 1877], "to_be_instal": 1864, "perftool": 1866, "libgoogl": 1866, "pprof": 1866, "lprofil": 1866, "simple_test": 1866, "cpuprofil": 1866, "profile_test": 1866, "prof": 1866, "recompil": [1866, 1867, 1881], "preload": 1866, "libprofil": 1866, "yep": 1866, "easy_instal": 1866, "my_test": 1866, "myep": 1866, "successfulli": 1867, "plan": 1867, "said": [1867, 1899, 1904], "cmake_minimum_requir": 1867, "myproj": 1867, "cmake_build_typ": 1867, "predefin": [1867, 1873, 1877, 1883, 1887], "add_execut": 1867, "target_link_librari": 1867, "triqs_set_rpath_for_target": 1867, "dtriqs_path": 1867, "teach": [1868, 1871, 1909], "strictli": 1869, "technic": 1869, "semi": 1869, "circular": 1869, "g_0": [1869, 1883, 1886, 1887, 1888, 1889, 1894, 1899, 1900, 1904, 1905], "plain": 1869, "vanilla": 1869, "n_loop": [1869, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897], "niter": [1869, 1891, 1895, 1896], "paramagnet": [1869, 1873, 1877], "h_int": [1869, 1889, 1891, 1892, 1895, 1896, 1897], "single_site_beth": 1869, "friendli": 1870, "enhanc": [1870, 1900, 1901, 1905, 1906], "browser": 1870, "inlin": [1870, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "think": [1870, 1873, 1877, 1883, 1887, 1890, 1895, 1899, 1901, 1904, 1906], "spend": 1870, "familiaris": 1870, "yourself": 1870, "carpentri": 1870, "video": 1870, "slide": 1870, "lectur": [1870, 1902, 1907], "capabl": 1870, "modeldmft": 1871, "implemet": 1872, "set_printopt": [1873, 1875, 1876, 1877, 1879, 1880], "140": [1873, 1875, 1876, 1877, 1879, 1880], "plot_correlated_band": [1873, 1875, 1876, 1877, 1879, 1880], "pcb": [1873, 1875, 1876, 1877, 1879, 1880], "maxent_sigma": [1873, 1875, 1876, 1877, 1879, 1880], "sigma_max": [1873, 1875, 1876, 1877, 1879, 1880], "la2cuo4": [1873, 1875, 1877, 1879, 1880], "tc": [1873, 1877], "superconductor": [1873, 1877, 1892, 1897], "cu": [1873, 1874, 1877, 1878], "ion": [1873, 1877], "materi": [1873, 1874, 1877, 1878, 1879, 1888, 1894], "suit": [1873, 1877], "straightforward": [1873, 1877], "theoret": [1873, 1877], "werner": [1873, 1877], "91": [1873, 1875, 1877, 1879], "125142": [1873, 1875, 1877, 1879], "workflow": [1873, 1877], "spirit": [1873, 1877], "graybox": [1873, 1877], "deepen": [1873, 1877], "_autosummari": [1873, 1877], "read_config": [1873, 1877], "1088": [1873, 1877], "1361": [1873, 1877], "648x": [1873, 1877], "ac5d1c": [1873, 1877], "recap": [1873, 1877], "scf": [1873, 1877], "d_": [1873, 1877, 1889], "lco": [1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880], "nscf": [1873, 1877], "w90": [1873, 1875, 1876, 1877, 1879, 1880], "mlwf": [1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880], "bandstructur": [1873, 1877], "bnd": [1873, 1877], "disentangl": [1873, 1877], "win": [1873, 1877, 1903, 1908], "num_band": [1873, 1877], "mp_grid": [1873, 1877], "exclude_band": [1873, 1877], "31": [1873, 1877, 1880, 1887, 1896], "34": [1873, 1877, 1879, 1880, 1887, 1896, 1899], "dis_win_min": [1873, 1877], "dis_win_max": [1873, 1877], "dis_froz_min": [1873, 1877], "dis_froz_max": [1873, 1877], "wf": [1873, 1877], "cuo": [1873, 1877], "_4": [1873, 1877], "charact": [1873, 1877], "loc": [1873, 1876, 1877, 1879, 1880, 1883, 1887, 1889, 1892, 1897, 1908], "7367": [1873, 1875, 1876, 1877, 1879, 1880], "dos_data": [1873, 1877], "elem": [1873, 1877], "char_tabl": [1873, 1877], "pdos_tot": [1873, 1877], "tot": [1873, 1877], "loadtxt": [1873, 1877, 1882], "el": [1873, 1877], "n_atom": [1873, 1877], "n_char": [1873, 1877], "pdos_atm": [1873, 1877], "_wfc": [1873, 1877], "w90_do": [1873, 1877], "dpi": [1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1889, 1890, 1891, 1894, 1895, 1896], "figsiz": [1873, 1876, 1877, 1879, 1880, 1883, 1887, 1892, 1894, 1897, 1908], "fill_between": [1873, 1877, 1897], "zorder": [1873, 1877, 1899, 1904], "grai": [1873, 1877], "lw": [1873, 1877, 1882, 1887, 1897, 1899, 1904, 1906, 1907], "dz2": [1873, 1877], "dxz": [1873, 1877], "dyz": [1873, 1877], "dx2": [1873, 1877], "dxy": [1873, 1877], "cu_dx2y2": [1873, 1877], "cu_dz2": [1873, 1877], "2p": [1873, 1877], "set_xlim": [1873, 1876, 1877, 1879, 1880, 1883, 1887], "set_ylim": [1873, 1876, 1877, 1879, 1880], "set_ylabel": [1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1899, 1904], "set_xlabel": [1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887], "ev": [1873, 1875, 1876, 1877, 1879, 1880], "dominantli": [1873, 1877], "compromis": [1873, 1877], "carefulli": [1873, 1877], "leverag": [1873, 1877], "w90_dict": [1873, 1875, 1876, 1877, 1879, 1880], "w90_path": [1873, 1875, 1876, 1877, 1879, 1880], "w90_seed": [1873, 1875, 1876, 1877, 1879, 1880], "mu_tb": [1873, 1875, 1876, 1877, 1879, 1880], "plot_dict": [1873, 1875, 1876, 1877, 1879, 1880], "colorscheme_band": [1873, 1875, 1876, 1877, 1879, 1880], "coolwarm": [1873, 1877, 1886], "tb_dict": [1873, 1875, 1876, 1877, 1879, 1880], "bands_path": [1873, 1875, 1876, 1877, 1879, 1880], "get_dmft_band": [1873, 1876, 1877, 1879, 1880], "tb_band": [1873, 1876, 1877, 1879, 1880], "alatt_k_w_path": [1873, 1876, 1877, 1879, 1880], "freq_dict": [1873, 1876, 1877, 1879, 1880], "band_data": [1873, 1877], "lco_band": [1873, 1877], "k_mesh": [1873, 1877, 1879, 1880, 1886], "c0": [1873, 1876, 1877, 1879, 1880, 1889], "plot_band": [1873, 1876, 1877, 1879, 1880], "alatt": [1873, 1876, 1877, 1879, 1880], "wannier90convert": [1873, 1877], "inp": [1873, 1877], "irep": [1873, 1877], "lco_wanni": [1873, 1875, 1876, 1877, 1879, 1880], "hdf_filenam": [1873, 1877], "convert_dft_input": [1873, 1877], "cwd": [1873, 1877], "cp": [1873, 1877], "languang": [1873, 1877], "immens": [1873, 1877], "transfer": [1873, 1877, 1900, 1905], "h5py": [1873, 1877], "dft_input": [1873, 1877], "wannier90cconvert": [1873, 1877], "h5structur": [1873, 1877], "expand": [1873, 1874, 1877, 1878, 1889, 1903, 1908], "1160": [1873, 1877], "k_b": [1873, 1877], "ultim": [1873, 1877], "n_cycles_tot": [1873, 1877], "2e": [255, 1873, 1877], "walker": [1873, 1877], "workload": [1873, 1877], "dmft_config": [1873, 1875, 1877, 1879], "ini": [1873, 1875, 1876, 1877, 1879, 1880], "cat": [1873, 1876, 1877, 1879, 1880], "solver_typ": [1873, 1876, 1877, 1880], "n_iter_dmft": [1873, 1877, 1880], "jobnam": [1873, 1875, 1877, 1879, 1880], "dc_type": [1873, 1877, 1880], "b10": [1873, 1875, 1876, 1877, 1879, 1880], "u3": [1873, 1875, 1876, 1877, 1879, 1880, 1896], "observables_imp0": [1873, 1877, 1879], "metric": [1873, 1876, 1877, 1879, 1880], "dmft_result": [1873, 1876, 1877, 1879, 1880], "conv_ob": [1873, 1876, 1877, 1879, 1880], "convergence_ob": [1873, 1876, 1877, 1879, 1880], "sigma_imp_iw": [1873, 1877, 1879], "last_it": [1873, 1876, 1877, 1879, 1880], "sigma_freq_0": [1873, 1877, 1879, 1880], "g_imp_iw": [1873, 1876, 1877, 1879, 1880], "gimp_freq_0": [1873, 1876, 1877, 1879, 1880], "g_imp_tau": [1873, 1876, 1877, 1879, 1880], "gimp_time_0": [1873, 1876, 1877, 1879, 1880], "chemical_potential_post": [1873, 1876, 1877, 1879, 1880], "dc": [1873, 1876, 1877, 1879, 1880], "dc_pot": [1873, 1876, 1877, 1879, 1880], "gaug": [1873, 1877], "quasiparticl": [1873, 1874, 1877, 1878, 1879, 1890, 1892, 1895, 1897], "weiss": [1873, 1877, 1879, 1880, 1888, 1892, 1894, 1897], "condid": [1873, 1877], "nrow": [1873, 1877, 1879, 1880], "sharex": [1873, 1876, 1877, 1879, 1880], "imp_occ": [1873, 1877, 1879, 1880], "c1": [1873, 1877, 1879, 1880, 1889], "98": [1873, 1877, 1879, 1880, 1896], "aw0": [1873, 1877, 1879, 1880], "imp_gb2": [1873, 1877, 1879, 1880], "c2": [1873, 1877, 1879, 1880], "orb_z": [1873, 1877, 1879, 1880], "c3": [1873, 1877, 1879, 1880], "qp": [1873, 1877, 1879, 1880], "semilogi": [1873, 1877, 1879, 1880, 1883, 1887], "d_g0": [1873, 1877, 1879, 1880], "c4": [1873, 1877, 1879, 1880], "dg": [1873, 1877, 1879, 1880], "_0": [1873, 1877, 1879, 1880, 1888, 1892, 1894, 1897], "gimp": [1873, 1877, 1879, 1880], "gloc": [1873, 1877, 1879, 1880], "d_gimp": [1873, 1877, 1879, 1880], "c5": [1873, 1877, 1879, 1880], "seem": [1873, 1877, 1903, 1908], "room": [1873, 1877], "diverg": [1873, 1877, 1879, 1883, 1887, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "mott": [1873, 1877, 1879, 1890, 1891, 1895, 1896], "insul": [1873, 1875, 1876, 1877, 1879, 1880, 1890, 1892, 1895, 1897], "slope": [1873, 1877], "strength": [1873, 1875, 1877, 1879, 1889], "toward": [1873, 1877, 1901, 1906], "strong": [1873, 1877, 1879], "convergen": [1873, 1877], "smoothli": [1873, 1877], "append": [1873, 1877, 1879, 1881, 1884, 1887, 1895], "hd": [1873, 1877], "notic": [1873, 1875, 1877, 1879], "rerun": [1873, 1877], "fine": [1873, 1877, 1900, 1905], "rebinning_tau": [1873, 1877, 1879, 1889], "xx": [1873, 1877], "maxent": [1873, 1875, 1877, 1879, 1895], "stochast": [1873, 1877, 1889], "delic": [1873, 1877, 1883, 1887, 1890, 1895], "great": [1873, 1877], "sound": [1873, 1877], "overinterpret": [1873, 1877], "sigma_real_freq": [1873, 1876, 1877, 1879, 1880], "external_path": [1873, 1877, 1879], "omega_max": [1873, 1877, 1879], "maxent_error": [1873, 1877, 1879], "03": [1873, 1877, 1879, 1882, 1889, 1896, 1899, 1904], "n_points_max": [1873, 1877, 1879], "continuator_typ": [1873, 1877, 1879], "inversion_sigmainf": [1873, 1877, 1879], "offset": [1873, 1876, 1877, 1879, 1880], "photoemiss": [1873, 1877], "with_sigma": [1873, 1876, 1877, 1879, 1880], "calc": [1873, 1877, 1879], "keywarg": [1873, 1876, 1877, 1879, 1880], "sigma_dict": [1873, 1876, 1877, 1879, 1880], "w_mesh": [1873, 1876, 1877, 1879, 1880, 1883, 1884, 1887], "501": [1873, 1876, 1877, 1879, 1880], "dmft_path": [1873, 1876, 1877, 1879, 1880], "grei": [1873, 1875, 1876, 1877, 1879, 1880], "colorscheme_alatt": [1873, 1875, 1876, 1877, 1879, 1880], "spectral_r": [1873, 1875, 1876, 1877, 1879, 1880], "colorscheme_kslic": [1873, 1875, 1876, 1877, 1879, 1880], "black": [1873, 1877, 1879], "intens": [1873, 1877, 1879], "bright": [1873, 1877], "sattelit": [1873, 1877, 1879], "homogen": [1873, 1877], "k_dim": [1873, 1877, 1879, 1880], "e_k": [1873, 1877, 1879, 1880, 1899, 1900, 1903, 1904, 1905, 1908], "mesh_k_w": [1873, 1877, 1879], "g_k_w": [1873, 1877, 1879], "g_loc_w": [1873, 1876, 1877, 1879, 1880], "went": [1873, 1877], "roughli": [1873, 1877], "maxent_gf_imp": [1873, 1877], "gf_imp_max": [1873, 1877], "sum_spin": [1873, 1877], "a_imp_w": [1873, 1877, 1879], "aimp_w_line_fit": [1873, 1877, 1879], "total_0": [1873, 1877, 1879], "plane": [1873, 1877], "tb_kslice": [1873, 1877], "isupp": [1873, 1877], "kslice_upd": [1873, 1877], "kz": [1873, 1877, 1899, 1904], "1e6": [1873, 1877], "fermi_slic": [1873, 1877], "plot_kslic": [1873, 1877], "quarter": [1873, 1877, 1891, 1896], "appropri": [1873, 1874, 1877, 1878, 1879], "sigma_fermise": [1873, 1874, 1877, 1878], "self_energi": [1873, 1877], "dmft_mu": [1873, 1877], "orbital_ord": [1873, 1877], "webapp": [1874, 1878], "lco_hr": [1874, 1877, 1878], "simga_fermise": [1874, 1878], "lab": [1874, 1878], "enter": [1874, 1878, 1881, 1902, 1903, 1907, 1908], "recomput": [1874, 1878, 1903, 1908], "kpoint": [1874, 1878], "upload": [1874, 1878], "wrong": [1874, 1878, 1895, 1903, 1908], "reload": [1874, 1878], "solid_dmft": [1874, 1875, 1876, 1878, 1879, 1880], "incoher": [1874, 1878, 1879, 1880], "fermi": [1874, 1875, 1876, 1878, 1879, 1880, 1892, 1897, 1900, 1903, 1905, 1908], "surfac": [1874, 1878, 1900, 1903, 1905, 1908], "tab": [1874, 1878, 1881], "08": [1875, 1877, 1879, 1880, 1889, 1892, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "223892": [1875, 1879], "gap": [1875, 1879, 1890, 1895], "prb": [1875, 1879], "37": [1875, 1879, 1887, 1896, 1897], "7506": [1875, 1879], "1988": [1875, 1879], "artifici": [1875, 1879, 1890, 1895], "simplic": [1875, 1879], "rout": [1875, 1879], "mit": [1875, 1879], "regim": [1875, 1878, 1879, 1903, 1908], "tip": [1875, 1876, 1879, 1880, 1889, 1890, 1895], "converg": [1875, 1876, 1879, 1880, 1888, 1890, 1892, 1894, 1895, 1897, 1903, 1908], "load_sigma": [1875, 1879], "path_to_sigma": [1875, 1879], "whatev": [1875, 1879], "translat": [1875, 1879], "afterward": [1875, 1882], "abil": [1876, 1880], "seamlessli": [1876, 1880], "lighter": [1876, 1880], "neglect": [1876, 1880, 1899, 1904], "dmft_config_hubbardi": [1876, 1880], "sigma_real_freq_hi": [1876, 1880], "sigma_refreq_0": [1876, 1880], "g_atomic_w": [1876, 1880], "gimp_refreq_0": [1876, 1880], "mu_hi": [1876, 1880], "dc_hi": [1876, 1880], "lehman": [1876, 1880, 1883, 1887], "fragment": [1876, 1880], "sigma_real_freq_cthyb": [1876, 1880], "sigma_maxent_0": [1876, 1880], "xxxx": 1876, "sigma_real_freq_cthyb_in": [1876, 1880], "mu_dmft": [1876, 1880], "spectra": [1876, 1880], "deliv": [1876, 1880], "4j": [1876, 1880, 1881], "g_loc_w_cthyb": [1876, 1880], "ce2o3_csc_w90": [1876, 1880], "19": [254, 255, 1877, 1887, 1889, 1896], "07": [1877, 1897, 1899, 1904], "53": [1877, 1896, 1903, 1908], "835903": 1877, "antibod": 1877, "8956": [1877, 1879, 1880], "mnt": 1877, "ahampel": 1877, "abinitiodmft": 1877, "inequival": 1877, "3may2022": 1877, "397": 1877, "00000": 1877, "corr": 1877, "838": 1877, "000j": 1877, "charge_below": 1877, "corr_shel": 1877, "corr_to_inequiv": 1877, "density_requir": 1877, "dft_code": 1877, "dim_rep": 1877, "energy_unit": 1877, "inequiv_to_corr": 1877, "k_dep_project": 1877, "kpt_weight": 1877, "kpt": 1877, "n_corr_shel": 1877, "n_inequiv_shel": 1877, "n_rep": 1877, "n_shell": 1877, "proj_mat": 1877, "rot_mat": 1877, "rot_mat_time_inv": 1877, "symm_op": 1877, "use_rot": 1877, "251": [1877, 1880], "5001": [1877, 1880, 1883, 1887], "prec_mu": [1877, 1880], "0001": [1877, 1880], "mu_initial_guess": [1877, 1880], "h_int_typ": [1877, 1880], "dc_dmft": [1877, 1880], "h5_save_freq": [1877, 1880], "store_solv": 1877, "imag_threshold": 1877, "measure_density_matrix": [1877, 1880, 1890, 1895], "perform_tail_fit": 1877, "fit_max_mo": 1877, "fit_min_w": 1877, "fit_max_w": 1877, "occ": [1877, 1879], "79717": [1877, 1879], "32562": [1877, 1879], "99991": [1877, 1879], "14981": 1877, "98807": 1877, "86777": 1877, "12728": 1877, "99207": 1877, "89134": 1877, "11719": 1877, "99775": 1877, "89788": 1877, "11063": 1877, "99678": 1877, "90672": 1877, "10749": 1877, "99894": 1877, "90939": 1877, "10648": 1877, "99783": 1877, "91505": 1877, "10431": 1877, "99636": 1877, "92424": 1877, "10370": 1877, "00087": 1877, "92160": 1877, "10397": 1877, "00069": 1877, "dmft_input": 1877, "dft_misc_input": 1877, "sigma_freq_0_up_0": 1877, "502": 1877, "sigma_freq_0_down_0": 1877, "g_imp_rebin": [1877, 1879, 1889], "\u03c9": [1877, 1879, 1880], "0454": 1877, "5425": 1877, "5920": 1877, "0752": 1877, "2550": 1877, "epsilon_": [1877, 1889, 1897], "\u03bc": [1877, 1879, 1880], "9199": 1877, "23": [1877, 1887, 1896], "27": [1877, 1887, 1896], "29": [1877, 1887, 1896, 1904, 1905, 1906, 1908], "0911": 1877, "u5": [1879, 1880, 1896], "09197": 1879, "98699": 1879, "88153": 1879, "04956": 1879, "99814": 1879, "89133": 1879, "02594": 1879, "99703": 1879, "90468": 1879, "01621": 1879, "99913": 1879, "90872": 1879, "00930": 1879, "99939": 1879, "91156": 1879, "00421": 1879, "00005": 1879, "00202": 1879, "99979": 1879, "91255": 1879, "00367": 1879, "99936": 1879, "91577": 1879, "00284": 1879, "91871": 1879, "00353": 1879, "99932": 1879, "02": [1879, 1880, 1883, 1886, 1887, 1896], "_n": 1879, "coher": 1879, "jump": [1879, 1883, 1887], "induc": 1879, "freez": 1879, "motion": 1879, "excit": [1879, 1880, 1903, 1908], "42": [1879, 1896], "1552": 1879, "6919": 1879, "92": [1879, 1886, 1896], "3515": 1879, "0624": [1879, 1896], "125": 1879, "2610": 1879, "9218": 1879, "disappear": 1879, "aimp_w_0_met": 1879, "aimp_maxent_0": 1879, "optic": 1879, "853128": 1880, "dc_energ": 1880, "delta_time_0": 1880, "g0_refreq_0": 1880, "g0_freq_0": 1880, "chemical_potential_pr": 1880, "dens_mat_post": 1880, "dens_mat_pr": 1880, "full_dens_mat_0": 1880, "h_loc_diag_0": 1880, "ins": [1880, 1896], "pole": 1880, "awai": [1880, 1888, 1894], "7853": 1880, "multiplet": [1880, 1890, 1895, 1896], "peak": [1880, 1883, 1887, 1900, 1901, 1905, 1906], "adequ": 1880, "heavi": 1880, "Being": 1881, "thorough": 1881, "swcarpentri": 1881, "novic": 1881, "gapmind": 1881, "inflamm": 1881, "my_script": 1881, "mathematica": 1881, "hello": 1881, "exercis": [1881, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "quickest": 1881, "explanatori": 1881, "2j": [1881, 1891, 1896], "3095238095238093": 1881, "0j": [1881, 1886], "12j": 1881, "elif": 1881, "fnct": 1881, "3f": [1881, 1883, 1887], "000": 1881, "l3": 1881, "what_is_x": 1881, "change_x": 1881, "press": 1881, "5x": 1882, "mpl": [1882, 1883, 1887, 1889, 1890, 1891, 1894, 1895, 1896], "rcparam": [1882, 1883, 1887, 1889, 1890, 1891, 1894, 1895, 1896], "xr": 1882, "yr1": 1882, "yr2": 1882, "red": [1882, 1889, 1906], "xb": 1882, "0x10d970050": 1882, "yr": 1882, "titl": [1882, 1897, 1905, 1906, 1908], "randn": 1882, "facecolor": 1882, "028": 1882, "0025": 1882, "smart": 1882, "45": [1882, 1896, 1907, 1908], "025": 1882, "fontsiz": [1882, 1897, 1899, 1904], "160": 1882, "matlab": 1882, "curtain": 1882, "add_ax": [1882, 1894], "set_titl": [1882, 1886], "inset": 1882, "tanh": [1882, 1900, 1905], "subax": 1882, "85": [1882, 1892, 1896, 1897], "sinu": 1882, "0x10dd56810": 1882, "211": 1882, "212": 1882, "121": 1882, "122": 1882, "line2d": 1882, "0x10db27a90": 1882, "cal": [1883, 1887, 1888, 1891, 1892, 1894, 1896, 1897], "mathbb": [1883, 1887], "times2": [1883, 1887], "grand": [1883, 1887], "ensembl": [1883, 1887], "exponenti": [1883, 1887, 1903, 1908], "realist": [1883, 1887], "c_i": [1883, 1887], "conserv": [1883, 1887, 1902, 1907], "2g": [1883, 1887], "e_g": [1883, 1887], "talk": [1883, 1887], "v_1": [1883, 1887], "epsilon_2": [1883, 1887], "v_2": [1883, 1887], "g_eg": [1883, 1887], "g_t2g": [1883, 1887], "eps_t2g": [1883, 1887], "t_2g": [1883, 1887], "epsilon_d": [1883, 1887, 1889], "textbf": [1883, 1887], "worri": [1883, 1887], "giw_2": [1883, 1887], "thousand": [1883, 1887], "problemat": [1883, 1887], "kay": [1883, 1887], "prb105": [1883, 1887], "2022": [1883, 1887], "omega_l": [1883, 1887], "widehat": [1883, 1887], "_l": [1883, 1887], "dimensionless": [1883, 1887], "character": [1883, 1887, 1890, 1895], "assumpt": [1883, 1887], "1500": [1883, 1887], "dlr_iw_mesh": [1883, 1887], "giw_dlr": [1883, 1887], "43": [1883, 1887, 1896], "giw_from_dlr": [1883, 1887], "arbirarili": [1883, 1887], "dens": [1883, 1887], "gtau_dlr": [1883, 1887], "ill": [1883, 1887], "nois": [1883, 1887, 1889, 1890, 1895], "coars": [1883, 1887], "worsen": [1883, 1887], "did": [1883, 1887, 1890, 1895], "verifi": [1883, 1887], "perturb": [1883, 1887], "light": 1884, "recoveri": 1884, "recov": 1884, "my_arch": 1884, "overwrit": 1884, "inspir": 1885, "gs_energi": 1885, "2t": [1886, 1892, 1897, 1899, 1900, 1904, 1905], "k_x": [1886, 1897, 1899, 1900, 1904, 1905], "k_y": [1886, 1897, 1899, 1900, 1904, 1905], "_x": [1886, 1905], "_y": 1886, "r3": 1886, "128": [1886, 1899, 1903, 1904, 1908], "k_iw_mesh": 1886, "recal": [1886, 1892, 1897], "timeit": 1886, "faster": 1886, "iw_arr": 1886, "k_arr": 1886, "np_ep": 1886, "eps_arr": 1886, "repons": 1886, "omega_2": 1886, "g_eval": 1886, "g_exact": 1886, "k_0": 1886, "k0": 1886, "linearli": 1886, "9996637574643963": 1886, "cpython": [1886, 1887], "311": [1886, 1887], "darwin": [1886, 1887], "gtb": 1886, "k_grid": 1886, "110": [1886, 1899, 1904], "surf": 1886, "plot_surfac": 1886, "cmap": [1886, 1897, 1899, 1904, 1905], "colorbar": [1886, 1897, 1899, 1904, 1905, 1906], "shrink": 1886, "addmethod": 1887, "119": 1887, "146": 1887, "178": 1887, "217": 1887, "265": 1887, "324": 1887, "396": 1887, "483": 1887, "590": 1887, "721": 1887, "26894142138025784": 1887, "816357384858482e": 1887, "15j": 1887, "6001": 1887, "31556737050747535": 1887, "638049093627782e": 1887, "17j": 1887, "83481049534862e": 1887, "9381548639656863j": 1887, "33": [1887, 1896], "35": [1887, 1894, 1896, 1907, 1908], "eps_r": 1887, "05": [255, 1887, 1899, 1904], "0x11273a790": 1887, "sigma_check": 1887, "_check": 1887, "38": [1887, 1896], "g0_tau": [1887, 1894, 1895], "sigma_tau": [1887, 1894, 1895], "g0_w": 1887, "ipt": [1888, 1889, 1890, 1894, 1895], "cheap": [1888, 1894], "iptsolv": [1888, 1894, 1895], "sigma_": [1888, 1890, 1892, 1894, 1895, 1897], "scan": [1888, 1894, 1902, 1907], "hybridis": 1889, "darkgreen": 1889, "nu": [1889, 1902, 1903, 1907, 1908], "diagrammat": 1889, "contrari": [1889, 1903, 1908], "busi": 1889, "circl": 1889, "50000": 1889, "49": [1889, 1896], "483848": 1889, "warm": [1889, 1896], "4999": [1889, 1896], "9760": 1889, "49999": 1889, "00566571": 1889, "000908685": 1889, "000881916": 1889, "0114234": 1889, "0188797": 1889, "0512121": 1889, "delta_up": [1889, 1896], "0513189": 1889, "delta_down": [1889, 1896], "0511046": 1889, "0509981": 1889, "0513082": 1889, "0506868": 1889, "00488083": 1889, "delta_up_up": [1889, 1896], "00562934": 1889, "delta_up_down": [1889, 1896], "0033534": 1889, "delta_down_up": [1889, 1896], "00373554": 1889, "delta_down_down": [1889, 1896], "00676994": 1889, "00496258": 1889, "00575551": 1889, "0038171": 1889, "00347195": 1889, "00682145": 1889, "689225": 1889, "0479879": 1889, "507693": 1889, "716": 1889, "86": [1889, 1896], "6392": 1889, "disconnect": 1889, "markov": 1889, "onlin": 1889, "benefici": 1889, "unrol": 1889, "randomli": 1889, "proport": [1889, 1895, 1903, 1908], "oscil": 1889, "elabor": [1890, 1895], "run_dmft": [1890, 1895], "favourit": [1890, 1895], "vi": [1890, 1895], "gedit": [1890, 1895], "polar": [1890, 1895], "criteria": [1890, 1895], "extrapol": [1890, 1895], "gradual": [1890, 1895], "use_norm_as_weight": [1890, 1895], "multiplet_tool": [1890, 1895], "multiplet_analysi": [1890, 1895], "panda": [1890, 1895], "frame": [1890, 1895], "3j": [1891, 1896], "mu_": [1891, 1896], "81": [1891, 1896], "6899": [1891, 1896], "1099": [1891, 1896], "02548": [1891, 1896], "02709": [1891, 1896], "1606": [1891, 1896], "one_band": [1891, 1895, 1896], "makedir": [1891, 1896], "2f": [1891, 1894, 1895, 1896, 1906, 1908], "stuck": [1891, 1896], "sneak": [1891, 1896], "peek": [1891, 1896], "two_band": [1891, 1896], "vari": [1891, 1895, 1896, 1902, 1907], "u_c": [1891, 1896, 1901, 1903, 1906, 1908], "dca": [1892, 1897], "80": [1892, 1896, 1897, 1908], "064501": [1892, 1897], "europhi": [1892, 1897], "57009": [1892, 1897], "82": [1892, 1896, 1897], "054502": [1892, 1897], "2010": [1892, 1897], "155101": [1892, 1897], "freedom": [1892, 1897], "nodal": [1892, 1897], "antinod": [1892, 1897], "region": [1892, 1897, 1899, 1904], "dope": [1892, 1897], "appar": [1892, 1897], "arc": [1892, 1897], "varepsilon_": [1892, 1897], "4t": [1892, 1897], "hole": [1892, 1897, 1901, 1906], "subdivid": [1892, 1897], "area": [1892, 1897], "complementari": [1892, 1897], "kinet": [1892, 1897], "linspac": [1892, 1897, 1899, 1904, 1905, 1906], "meshgrid": [1892, 1897, 1899, 1904, 1905, 1906], "contourplot": [1892, 1897], "6155": [1892, 1897], "mask": [1892, 1897], "in_central_patch": [1892, 1897], "kx": [1892, 1897, 1899, 1904, 1905, 1906], "ky": [1892, 1897, 1899, 1904, 1905, 1906], "cn": [1892, 1897], "cn_dag": [1892, 1897], "nn": [1892, 1897], "h_loc": [1892, 1897], "rho_": [1892, 1897], "measure_g_l": [1892, 1897], "unfortun": [1892, 1897], "vbdmft": [1892, 1897], "subfold": [1892, 1897], "pseudogap": [1892, 1897], "qualit": [1892, 1897], "rough": [1892, 1897, 1900, 1903, 1905, 1908], "doping_": [1892, 1897], "10001": [1894, 1895], "pn": 1894, "set_yticklabel": 1894, "antoin": 1894, "georg": 1894, "a1": 1895, "u2": [1895, 1896], "a2": 1895, "u6": [1895, 1896], "di": 1895, "sim": [1895, 1903, 1908], "omega_0": [1895, 1899, 1900, 1904, 1905], "u_list": 1895, "z_list": 1895, "u_list2": 1895, "z_list2": 1895, "u4": [1895, 1896], "g_real": 1895, "regardless": 1895, "knob": 1895, "solver_u_met": 1895, "solver_u_in": 1895, "occupi": [1895, 1902, 1907], "res_met": 1895, "h_loc_diag": 1895, "h_loc_diagon": 1895, "res_in": 1895, "41": [1896, 1903, 1907, 1908], "2083": 1896, "2046": 1896, "9999": 1896, "00121841": 1896, "000180423": 1896, "000183033": 1896, "0022792": 1896, "00386106": 1896, "134194": 1896, "135137": 1896, "133256": 1896, "134078": 1896, "134495": 1896, "13366": 1896, "0237206": 1896, "0263818": 1896, "0215067": 1896, "0192815": 1896, "Ins": 1896, "568460": 1896, "ert": 1896, "0276912": 1896, "0240728": 1896, "027297": 1896, "0201105": 1896, "0206622": 1896, "0282551": 1896, "83864": 1896, "240672": 1896, "491363": 1896, "1807": 1896, "07816": 1896, "2096": 1896, "2041": 1896, "00122602": 1896, "000181799": 1896, "000187614": 1896, "00154239": 1896, "00313782": 1896, "137529": 1896, "138608": 1896, "136454": 1896, "135646": 1896, "137095": 1896, "134192": 1896, "0248063": 1896, "029023": 1896, "0202982": 1896, "0212102": 1896, "0286456": 1896, "0258106": 1896, "0300133": 1896, "0207927": 1896, "0216027": 1896, "0308751": 1896, "82967": 1896, "242133": 1896, "496411": 1896, "0726": 1896, "95457": 1896, "2012": 1896, "1999": 1896, "00126701": 1896, "000178569": 1896, "000182007": 1896, "00399153": 1896, "00561911": 1896, "136691": 1896, "136118": 1896, "137262": 1896, "135948": 1896, "135115": 1896, "136781": 1896, "024431": 1896, "0279642": 1896, "0212578": 1896, "021372": 1896, "0270992": 1896, "0251374": 1896, "0298838": 1896, "0205143": 1896, "0209849": 1896, "0291752": 1896, "832854": 1896, "247163": 1896, "502235": 1896, "1617": 1896, "88829": 1896, "2072": 1896, "00126531": 1896, "00018556": 1896, "000181974": 1896, "00307852": 1896, "00471137": 1896, "137877": 1896, "13878": 1896, "136976": 1896, "136859": 1896, "137844": 1896, "135872": 1896, "0240401": 1896, "0279466": 1896, "0193165": 1896, "0205293": 1896, "rt": 1896, "0283427": 1896, "0247222": 1896, "0272073": 1896, "0219802": 1896, "0218302": 1896, "0278651": 1896, "830322": 1896, "246525": 1896, "498298": 1896, "1484": 1896, "59076": 1896, "2026": 1896, "2064": 1896, "00124302": 1896, "000183717": 1896, "000188498": 1896, "00344506": 1896, "0050603": 1896, "136129": 1896, "135304": 1896, "136951": 1896, "137127": 1896, "1367": 1896, "137554": 1896, "024601": 1896, "0281926": 1896, "0207839": 1896, "0216895": 1896, "027688": 1896, "0242563": 1896, "0271906": 1896, "0216098": 1896, "0202847": 1896, "0279555": 1896, "830414": 1896, "242121": 1896, "490822": 1896, "1626": 1896, "51126": 1896, "10found": 1896, "2094": 1896, "00124401": 1896, "000175229": 1896, "000179357": 1896, "00229849": 1896, "00389709": 1896, "136631": 1896, "137952": 1896, "135314": 1896, "138106": 1896, "13836": 1896, "137851": 1896, "0257115": 1896, "029352": 1896, "0212757": 1896, "0216313": 1896, "030564": 1896, "0249482": 1896, "0290644": 1896, "0214022": 1896, "0207806": 1896, "0285886": 1896, "830217": 1896, "237919": 1896, "48821": 1896, "1595": 1896, "00369": 1896, "2071": 1896, "2093": 1896, "00121949": 1896, "000174776": 1896, "000177332": 1896, "00220899": 1896, "00378058": 1896, "138683": 1896, "138785": 1896, "138581": 1896, "135491": 1896, "134835": 1896, "136151": 1896, "0238837": 1896, "0282195": 1896, "0187678": 1896, "0213364": 1896, "0271656": 1896, "0256944": 1896, "0296998": 1896, "0223175": 1896, "0230494": 1896, "0277512": 1896, "826742": 1896, "240293": 1896, "484146": 1896, "0322": 1896, "10339": 1896, "2055": 1896, "2008": 1896, "00122868": 1896, "000178445": 1896, "000179449": 1896, "00223444": 1896, "00382102": 1896, "138506": 1896, "139623": 1896, "137394": 1896, "138454": 1896, "136949": 1896, "139969": 1896, "0253769": 1896, "0293179": 1896, "0211004": 1896, "0205091": 1896, "sert": 1896, "0305689": 1896, "0253767": 1896, "0309133": 1896, "0217365": 1896, "0212245": 1896, "0276795": 1896, "827338": 1896, "241515": 1896, "487717": 1896, "0508": 1896, "62123": 1896, "2074": 1896, "2058": 1896, "00120751": 1896, "000174187": 1896, "000178604": 1896, "00142541": 1896, "00298571": 1896, "137111": 1896, "138103": 1896, "136124": 1896, "136868": 1896, "136946": 1896, "136791": 1896, "0244609": 1896, "0282271": 1896, "0201996": 1896, "0211721": 1896, "0281887": 1896, "0246914": 1896, "0285174": 1896, "0222497": 1896, "0207763": 1896, "0272237": 1896, "831942": 1896, "239978": 1896, "48282": 1896, "1865": 1896, "6264": 1896, "2077": 1896, "00127013": 1896, "000206261": 1896, "000180197": 1896, "00201599": 1896, "00367258": 1896, "136865": 1896, "136144": 1896, "137585": 1896, "136487": 1896, "136087": 1896, "136888": 1896, "0247125": 1896, "0291157": 1896, "0200999": 1896, "0207065": 1896, "0288711": 1896, "0250504": 1896, "0279124": 1896, "0211228": 1896, "0220934": 1896, "0291107": 1896, "830829": 1896, "24054": 1896, "4861": 1896, "1232": 1896, "62633": 1896, "2284": 1896, "2255": 1896, "00123761": 1896, "000177008": 1896, "000180409": 1896, "00124214": 1896, "00283716": 1896, "125473": 1896, "125155": 1896, "12579": 1896, "125671": 1896, "125471": 1896, "125871": 1896, "0246864": 1896, "0268028": 1896, "0216412": 1896, "0227946": 1896, "0274721": 1896, "0247316": 1896, "0269343": 1896, "0224071": 1896, "0220799": 1896, "0275138": 1896, "698464": 1896, "218575": 1896, "443867": 1896, "6646": 1896, "28392": 1896, "46": 1896, "2314": 1896, "2312": 1896, "00120478": 1896, "000177364": 1896, "000178484": 1896, "00126514": 1896, "00282577": 1896, "130538": 1896, "131357": 1896, "129719": 1896, "130263": 1896, "131032": 1896, "129493": 1896, "0270564": 1896, "0299128": 1896, "0238143": 1896, "0254887": 1896, "0289647": 1896, "0271909": 1896, "0297328": 1896, "0259022": 1896, "0248111": 1896, "028303": 1896, "678488": 1896, "215686": 1896, "437622": 1896, "3414": 1896, "59554": 1896, "2256": 1896, "00120432": 1896, "000177742": 1896, "000178896": 1896, "00268057": 1896, "00424153": 1896, "127771": 1896, "128914": 1896, "12663": 1896, "128221": 1896, "129491": 1896, "12695": 1896, "0256648": 1896, "0283026": 1896, "0233949": 1896, "0232993": 1896, "0276514": 1896, "0258822": 1896, "0277958": 1896, "0234759": 1896, "0250552": 1896, "0272286": 1896, "684272": 1896, "217683": 1896, "44214": 1896, "4618": 1896, "75014": 1896, "2304": 1896, "2294": 1896, "00122231": 1896, "000187478": 1896, "000183211": 1896, "00135477": 1896, "00294777": 1896, "131699": 1896, "130628": 1896, "13277": 1896, "130431": 1896, "129478": 1896, "131386": 1896, "0271569": 1896, "0258805": 1896, "024888": 1896, "0296566": 1896, "0275519": 1896, "0287468": 1896, "0255961": 1896, "0253231": 1896, "0305499": 1896, "672073": 1896, "215632": 1896, "436025": 1896, "2379": 1896, "34046": 1896, "2308": 1896, "2293": 1896, "00123141": 1896, "000177542": 1896, "000178821": 1896, "00140636": 1896, "00299413": 1896, "131567": 1896, "133715": 1896, "129426": 1896, "130663": 1896, "13311": 1896, "128214": 1896, "0276007": 1896, "0306565": 1896, "0254948": 1896, "025725": 1896, "0285063": 1896, "0284674": 1896, "0316303": 1896, "0252882": 1896, "0267753": 1896, "0301962": 1896, "677651": 1896, "216824": 1896, "439615": 1896, "2701": 1896, "43454": 1896, "2299": 1896, "2264": 1896, "00118916": 1896, "000176917": 1896, "000176414": 1896, "00128476": 1896, "00282725": 1896, "127818": 1896, "127863": 1896, "127773": 1896, "128597": 1896, "128824": 1896, "12837": 1896, "0270821": 1896, "0302706": 1896, "0244285": 1896, "0250341": 1896, "0285486": 1896, "0268681": 1896, "029369": 1896, "0251997": 1896, "0249889": 1896, "0279296": 1896, "680676": 1896, "218647": 1896, "440596": 1896, "4495": 1896, "93486": 1896, "2273": 1896, "2245": 1896, "00127285": 1896, "000182139": 1896, "000183024": 1896, "00171741": 1896, "00335542": 1896, "128634": 1896, "128384": 1896, "128883": 1896, "129022": 1896, "12886": 1896, "129184": 1896, "0264743": 1896, "0287922": 1896, "0235365": 1896, "0237667": 1896, "0297869": 1896, "026674": 1896, "0276172": 1896, "0253356": 1896, "0249358": 1896, "0288193": 1896, "681544": 1896, "218576": 1896, "440496": 1896, "4043": 1896, "96938": 1896, "2292": 1896, "2296": 1896, "00121937": 1896, "000173054": 1896, "000177333": 1896, "00127057": 1896, "00284032": 1896, "132223": 1896, "132401": 1896, "132044": 1896, "129861": 1896, "12952": 1896, "130201": 1896, "0269862": 1896, "0305089": 1896, "0243726": 1896, "0237724": 1896, "0292517": 1896, "0282147": 1896, "0309872": 1896, "0276375": 1896, "0263264": 1896, "0279213": 1896, "677678": 1896, "216506": 1896, "437101": 1896, "242": 1896, "74536": 1896, "2325": 1896, "00127472": 1896, "000172614": 1896, "000177763": 1896, "00117997": 1896, "00280507": 1896, "130937": 1896, "132246": 1896, "12963": 1896, "131236": 1896, "132046": 1896, "130424": 1896, "0276569": 1896, "0298347": 1896, "0258974": 1896, "0245561": 1896, "0303272": 1896, "0277909": 1896, "0306308": 1896, "0249253": 1896, "0255935": 1896, "0300287": 1896, "675164": 1896, "215985": 1896, "432564": 1896, "2563": 1896, "01083": 1896, "2300": 1896, "2318": 1896, "00120759": 1896, "000175362": 1896, "000180967": 1896, "00117891": 1896, "00274283": 1896, "131003": 1896, "131509": 1896, "1305": 1896, "130783": 1896, "130729": 1896, "130837": 1896, "0263867": 1896, "0290737": 1896, "0231511": 1896, "0250389": 1896, "0282522": 1896, "0267621": 1896, "0297348": 1896, "0242209": 1896, "0247709": 1896, "0283461": 1896, "67701": 1896, "215519": 1896, "43658": 1896, "3268": 1896, "794236": 1896, "2498": 1896, "2484": 1896, "00119638": 1896, "000171907": 1896, "000178944": 1896, "00109991": 1896, "00264714": 1896, "112247": 1896, "113798": 1896, "110696": 1896, "111523": 1896, "11241": 1896, "110636": 1896, "0226176": 1896, "0237627": 1896, "0205814": 1896, "0218449": 1896, "0242896": 1896, "0232029": 1896, "0245147": 1896, "022101": 1896, "0226071": 1896, "0235938": 1896, "568929": 1896, "199267": 1896, "399275": 1896, "0545": 1896, "35299": 1896, "2696": 1896, "2670": 1896, "00120833": 1896, "000195012": 1896, "000184797": 1896, "00111078": 1896, "00269892": 1896, "119575": 1896, "118774": 1896, "120375": 1896, "118525": 1896, "117625": 1896, "119424": 1896, "0260688": 1896, "0249124": 1896, "0259468": 1896, "028224": 1896, "0251899": 1896, "0267536": 1896, "026036": 1896, "0281528": 1896, "0270466": 1896, "0257593": 1896, "509178": 1896, "185284": 1896, "376047": 1896, "1244": 1896, "95588": 1896, "2684": 1896, "2678": 1896, "00121023": 1896, "000178375": 1896, "000180273": 1896, "00104384": 1896, "00261271": 1896, "116787": 1896, "116187": 1896, "117384": 1896, "116633": 1896, "116475": 1896, "11679": 1896, "0259455": 1896, "026201": 1896, "0258814": 1896, "0264806": 1896, "0252178": 1896, "0264393": 1896, "0269715": 1896, "0248916": 1896, "026979": 1896, "0269331": 1896, "520079": 1896, "18574": 1896, "377745": 1896, "61951": 1896, "2683": 1896, "2661": 1896, "00118682": 1896, "000179021": 1896, "000177377": 1896, "000954406": 1896, "00249762": 1896, "119259": 1896, "118998": 1896, "11952": 1896, "11786": 1896, "11722": 1896, "118509": 1896, "0262007": 1896, "0247214": 1896, "0280183": 1896, "0277204": 1896, "0243335": 1896, "0270037": 1896, "0264473": 1896, "0269378": 1896, "0272082": 1896, "027421": 1896, "514142": 1896, "185126": 1896, "375112": 1896, "1344": 1896, "42356": 1896, "2687": 1896, "2634": 1896, "00118086": 1896, "000177055": 1896, "000180533": 1896, "00158726": 1896, "00312571": 1896, "12076": 1896, "121218": 1896, "120303": 1896, "121201": 1896, "121831": 1896, "120573": 1896, "0267368": 1896, "026411": 1896, "0274809": 1896, "0270616": 1896, "0260013": 1896, "0265407": 1896, "025342": 1896, "0281685": 1896, "0271009": 1896, "0255323": 1896, "515457": 1896, "18502": 1896, "378509": 1896, "1383": 1896, "12987": 1896, "52": 1896, "2643": 1896, "2664": 1896, "0012663": 1896, "000184783": 1896, "000189254": 1896, "00362876": 1896, "0052691": 1896, "117368": 1896, "117308": 1896, "117427": 1896, "117241": 1896, "116591": 1896, "117894": 1896, "0261457": 1896, "0261487": 1896, "0253525": 1896, "0266688": 1896, "0264136": 1896, "0265045": 1896, "0252665": 1896, "0275678": 1896, "0282901": 1896, "512693": 1896, "187877": 1896, "38964": 1896, "1385": 1896, "93431": 1896, "2704": 1896, "2590": 1896, "00119782": 1896, "000175158": 1896, "000179523": 1896, "00180878": 1896, "00336127": 1896, "117365": 1896, "117624": 1896, "117106": 1896, "117283": 1896, "118533": 1896, "116037": 1896, "026697": 1896, "0264597": 1896, "0273612": 1896, "0266847": 1896, "0262799": 1896, "0270184": 1896, "0264397": 1896, "0271184": 1896, "0268783": 1896, "0276341": 1896, "514539": 1896, "185398": 1896, "379588": 1896, "1263": 1896, "74038": 1896, "2685": 1896, "2596": 1896, "00116657": 1896, "000178551": 1896, "000180033": 1896, "00131102": 1896, "00283617": 1896, "116924": 1896, "117617": 1896, "116232": 1896, "118121": 1896, "119441": 1896, "116798": 1896, "0269091": 1896, "0271326": 1896, "025719": 1896, "029214": 1896, "0255767": 1896, "0263473": 1896, "0264778": 1896, "0261575": 1896, "0262325": 1896, "0265242": 1896, "520462": 1896, "185252": 1896, "383034": 1896, "2418": 1896, "82905": 1896, "51": [1896, 1902, 1907], "2560": 1896, "2609": 1896, "00121845": 1896, "000179815": 1896, "000202924": 1896, "0021689": 1896, "00377008": 1896, "119297": 1896, "120148": 1896, "118445": 1896, "118649": 1896, "119257": 1896, "11804": 1896, "0254296": 1896, "0260036": 1896, "0235786": 1896, "0265909": 1896, "0255261": 1896, "0261909": 1896, "0270227": 1896, "0257851": 1896, "0259396": 1896, "0260241": 1896, "522949": 1896, "190266": 1896, "388758": 1896, "3131": 1896, "33377": 1896, "2549": 1896, "2363": 1896, "00129221": 1896, "000192149": 1896, "000188825": 1896, "00803591": 1896, "0097091": 1896, "119166": 1896, "117673": 1896, "120666": 1896, "119688": 1896, "11855": 1896, "120824": 1896, "0250876": 1896, "025384": 1896, "024949": 1896, "0252735": 1896, "0247464": 1896, "0252292": 1896, "0248425": 1896, "0247179": 1896, "0271435": 1896, "0242195": 1896, "507301": 1896, "195011": 1896, "40592": 1896, "1319": 1896, "78747": 1896, "2734": 1896, "2815": 1896, "00119336": 1896, "00017397": 1896, "000173595": 1896, "00108587": 1896, "00262679": 1896, "10269": 1896, "100883": 1896, "104505": 1896, "102024": 1896, "101145": 1896, "102906": 1896, "0199348": 1896, "0203415": 1896, "0208978": 1896, "020635": 1896, "0178728": 1896, "0204535": 1896, "0205254": 1896, "0194903": 1896, "022088": 1896, "0197157": 1896, "460326": 1896, "180869": 1896, "359313": 1896, "2466": 1896, "60183": 1896, "66": 1896, "3327": 1896, "3220": 1896, "00117142": 1896, "000177189": 1896, "000180591": 1896, "00234315": 1896, "00387235": 1896, "110834": 1896, "111457": 1896, "110211": 1896, "110152": 1896, "110913": 1896, "109392": 1896, "0245707": 1896, "0213173": 1896, "0271374": 1896, "0288638": 1896, "0209527": 1896, "0252332": 1896, "0219842": 1896, "027412": 1896, "02984": 1896, "021649": 1896, "347207": 1896, "15062": 1896, "312381": 1896, "5515": 1896, "66685": 1896, "68": 1896, "3418": 1896, "3354": 1896, "00119055": 1896, "000173035": 1896, "000182784": 1896, "00180668": 1896, "00335305": 1896, "109566": 1896, "110312": 1896, "108824": 1896, "109807": 1896, "109229": 1896, "110382": 1896, "0245849": 1896, "0203437": 1896, "0290226": 1896, "0286879": 1896, "0202673": 1896, "0245634": 1896, "0216013": 1896, "0291177": 1896, "0286001": 1896, "0188474": 1896, "32021": 1896, "145208": 1896, "299348": 1896, "2622": 1896, "56478": 1896, "67": [1896, 1907], "3379": 1896, "3452": 1896, "0011805": 1896, "000181326": 1896, "000179286": 1896, "0028098": 1896, "00435092": 1896, "10985": 1896, "110689": 1896, "109008": 1896, "108916": 1896, "110303": 1896, "107539": 1896, "0246851": 1896, "0198646": 1896, "0291511": 1896, "0290647": 1896, "0206731": 1896, "0254268": 1896, "0218722": 1896, "0289571": 1896, "0286299": 1896, "0222124": 1896, "311403": 1896, "147042": 1896, "294083": 1896, "1267": 1896, "44771": 1896, "3416": 1896, "3399": 1896, "00117656": 1896, "00018061": 1896, "000181128": 1896, "00213807": 1896, "00367637": 1896, "108138": 1896, "108557": 1896, "107721": 1896, "107349": 1896, "10754": 1896, "107159": 1896, "0241131": 1896, "0196703": 1896, "0286151": 1896, "0286033": 1896, "0195795": 1896, "0246752": 1896, "0211784": 1896, "0280695": 1896, "0287669": 1896, "0205929": 1896, "304464": 1896, "147427": 1896, "29027": 1896, "0936": 1896, "29194": 1896, "3511": 1896, "3491": 1896, "00114259": 1896, "000175433": 1896, "000179077": 1896, "00242444": 1896, "00392154": 1896, "10962": 1896, "109395": 1896, "109845": 1896, "109451": 1896, "109748": 1896, "109154": 1896, "0249161": 1896, "0216244": 1896, "0291868": 1896, "0285771": 1896, "0203135": 1896, "0252576": 1896, "0204928": 1896, "0309103": 1896, "0297791": 1896, "0197803": 1896, "302655": 1896, "142606": 1896, "287607": 1896, "059": 1896, "68458": 1896, "69": 1896, "3489": 1896, "3391": 1896, "00117954": 1896, "00018076": 1896, "000176842": 1896, "00274281": 1896, "00427996": 1896, "109167": 1896, "108878": 1896, "109457": 1896, "108529": 1896, "108384": 1896, "108673": 1896, "0251343": 1896, "0216667": 1896, "0298085": 1896, "0295327": 1896, "0194249": 1896, "0255293": 1896, "0224029": 1896, "0305386": 1896, "0293344": 1896, "0197125": 1896, "300808": 1896, "144613": 1896, "288052": 1896, "9724": 1896, "14536": 1896, "71": 1896, "3551": 1896, "3575": 1896, "0011946": 1896, "000173127": 1896, "000178696": 1896, "000725342": 1896, "00227176": 1896, "10916": 1896, "109252": 1896, "109067": 1896, "110798": 1896, "111607": 1896, "109984": 1896, "0252051": 1896, "0218661": 1896, "0287308": 1896, "0302921": 1896, "0199362": 1896, "0245902": 1896, "0197972": 1896, "0288953": 1896, "0308568": 1896, "0187846": 1896, "298548": 1896, "140103": 1896, "282513": 1896, "9563": 1896, "49552": 1896, "3442": 1896, "3488": 1896, "00116768": 1896, "000183687": 1896, "000177624": 1896, "00147453": 1896, "00300352": 1896, "107424": 1896, "105809": 1896, "109051": 1896, "108968": 1896, "108578": 1896, "109357": 1896, "024976": 1896, "0210199": 1896, "0283776": 1896, "0301075": 1896, "0203983": 1896, "0244054": 1896, "0201315": 1896, "0293393": 1896, "0275322": 1896, "0205381": 1896, "295469": 1896, "14504": 1896, "283466": 1896, "9659": 1896, "57761": 1896, "3593": 1896, "3578": 1896, "00119755": 1896, "000171298": 1896, "000178299": 1896, "000705123": 1896, "00225227": 1896, "109572": 1896, "109969": 1896, "109176": 1896, "108779": 1896, "110629": 1896, "106946": 1896, "025333": 1896, "0219449": 1896, "0308511": 1896, "0284571": 1896, "020084": 1896, "0258108": 1896, "0222851": 1896, "0286898": 1896, "0299628": 1896, "0222489": 1896, "300119": 1896, "139701": 1896, "28036": 1896, "9498": 1896, "22266": 1896, "62": 1896, "3104": 1896, "44": 1896, "3133": 1896, "00121134": 1896, "000183093": 1896, "00017673": 1896, "000906627": 1896, "0024778": 1896, "0934283": 1896, "0932668": 1896, "0935907": 1896, "0930836": 1896, "092358": 1896, "0938117": 1896, "0172868": 1896, "0159668": 1896, "0180807": 1896, "0190679": 1896, "mov": 1896, "10e": 1896, "0160378": 1896, "0178545": 1896, "0169909": 1896, "0189613": 1896, "0198869": 1896, "0155637": 1896, "158822": 1896, "319168": 1896, "5225": 1896, "04599": 1896, "83": 1896, "4197": 1896, "4072": 1896, "001176": 1896, "000176303": 1896, "000176643": 1896, "00180564": 1896, "00333458": 1896, "0993743": 1896, "0997124": 1896, "0990345": 1896, "100148": 1896, "101078": 1896, "0992169": 1896, "0218489": 1896, "0174252": 1896, "0266929": 1896, "0274607": 1896, "0158329": 1896, "0214816": 1896, "0163185": 1896, "0269219": 1896, "0273557": 1896, "0153002": 1896, "220527": 1896, "119323": 1896, "244041": 1896, "2385": 1896, "45713": 1896, "4643": 1896, "4501": 1896, "00117401": 1896, "000176022": 1896, "000174079": 1896, "000579364": 1896, "00210348": 1896, "0982657": 1896, "0973164": 1896, "0992208": 1896, "0987098": 1896, "0983834": 1896, "0990353": 1896, "0202451": 1896, "015387": 1896, "0256575": 1896, "0253815": 1896, "delta_dow": 1896, "0146119": 1896, "0200653": 1896, "0153902": 1896, "0249793": 1896, "025014": 1896, "0147525": 1896, "17415": 1896, "107687": 1896, "217982": 1896, "62833": 1896, "4923": 1896, "48": 1896, "4800": 1896, "00119368": 1896, "000175437": 1896, "00017678": 1896, "000532081": 1896, "00207798": 1896, "0947289": 1896, "0935515": 1896, "0959141": 1896, "096231": 1896, "0961732": 1896, "0962883": 1896, "017825": 1896, "0147368": 1896, "0225432": 1896, "0209947": 1896, "012999": 1896, "0170501": 1896, "0140059": 1896, "0210924": 1896, "0203299": 1896, "0127166": 1896, "15403": 1896, "101398": 1896, "205843": 1896, "9996": 1896, "4483": 1896, "78104": 1896, "5020": 1896, "00114739": 1896, "00017381": 1896, "000178013": 1896, "000545071": 1896, "00204428": 1896, "0927996": 1896, "0912686": 1896, "0943404": 1896, "0945209": 1896, "0935476": 1896, "0954924": 1896, "0165653": 1896, "0146711": 1896, "0186621": 1896, "0196094": 1896, "0133023": 1896, "0159569": 1896, "0145658": 1896, "0187106": 1896, "0171739": 1896, "0133664": 1896, "141392": 1896, "0971904": 1896, "198948": 1896, "9986": 1896, "3498": 1896, "59359": 1896, "5111": 1896, "00118152": 1896, "000174143": 1896, "000175604": 1896, "00170096": 1896, "00323222": 1896, "0928359": 1896, "0932811": 1896, "0923878": 1896, "0926255": 1896, "0928757": 1896, "092377": 1896, "0146763": 1896, "012186": 1896, "0176325": 1896, "016766": 1896, "0121195": 1896, "0149209": 1896, "0131733": 1896, "017507": 1896, "017798": 1896, "0111765": 1896, "132209": 1896, "0976131": 1896, "194463": 1896, "9962": 1896, "2003": [1896, 1903, 1908], "38459": 1896, "5262": 1896, "00116593": 1896, "000180144": 1896, "000180288": 1896, "00058201": 1896, "00210837": 1896, "0928416": 1896, "0906576": 1896, "0950149": 1896, "0920252": 1896, "0907245": 1896, "0933179": 1896, "013903": 1896, "0125541": 1896, "0153914": 1896, "0162744": 1896, "0113805": 1896, "0144144": 1896, "0126455": 1896, "0165371": 1896, "0155525": 1896, "0128903": 1896, "125583": 1896, "0940647": 1896, "188429": 1896, "9966": 1896, "0978": 1896, "6759": 1896, "5211": 1896, "00116479": 1896, "000173907": 1896, "000176399": 1896, "000532991": 1896, "00204808": 1896, "0919096": 1896, "0916205": 1896, "0921987": 1896, "0927888": 1896, "0930645": 1896, "0925146": 1896, "0144265": 1896, "0127007": 1896, "0166647": 1896, "0163973": 1896, "0119593": 1896, "0141665": 1896, "0122729": 1896, "0168521": 1896, "0155449": 1896, "0119799": 1896, "129702": 1896, "094935": 1896, "190139": 1896, "9904": 1896, "1729": 1896, "37016": 1896, "5241": 1896, "00117719": 1896, "000175777": 1896, "000177851": 1896, "000601851": 1896, "00213267": 1896, "0924057": 1896, "0915808": 1896, "0932353": 1896, "0931618": 1896, "0928729": 1896, "0934482": 1896, "0143961": 1896, "0125352": 1896, "0161123": 1896, "0168691": 1896, "0120458": 1896, "0142763": 1896, "0131137": 1896, "0156373": 1896, "0161881": 1896, "0121205": 1896, "126835": 1896, "0933722": 1896, "192358": 1896, "9932": 1896, "1737": 1896, "14348": 1896, "47": 1896, "4994": 1896, "4864": 1896, "00118008": 1896, "000178815": 1896, "000177486": 1896, "00366987": 1896, "00520625": 1896, "0920425": 1896, "0909091": 1896, "0931849": 1896, "0924267": 1896, "0933546": 1896, "091505": 1896, "0137666": 1896, "012333": 1896, "0161586": 1896, "0154218": 1896, "0111436": 1896, "0139227": 1896, "0114924": 1896, "0157556": 1896, "0157009": 1896, "0127152": 1896, "129222": 1896, "100126": 1896, "201704": 1896, "9968": 1896, "1866": 1896, "15122": 1896, "3398": 1896, "3460": 1896, "00124187": 1896, "000178268": 1896, "000178552": 1896, "00207588": 1896, "00367458": 1896, "0855862": 1896, "0862303": 1896, "0849443": 1896, "0862647": 1896, "0861289": 1896, "0864004": 1896, "0161327": 1896, "0135714": 1896, "0190244": 1896, "0183747": 1896, "0135908": 1896, "016286": 1896, "0142857": 1896, "0191166": 1896, "0189973": 1896, "0126796": 1896, "300009": 1896, "146407": 1896, "293905": 1896, "785": 1896, "47307": 1896, "93": 1896, "4679": 1896, "4715": 1896, "0012242": 1896, "000183404": 1896, "000184269": 1896, "00114776": 1896, "00273964": 1896, "0903981": 1896, "0901523": 1896, "090646": 1896, "0904723": 1896, "0912343": 1896, "delt": 1896, "a_down": 1896, "0897165": 1896, "0165848": 1896, "0118808": 1896, "0210818": 1896, "0219767": 1896, "0114437": 1896, "016681": 1896, "0124508": 1896, "0208665": 1896, "0211651": 1896, "0121752": 1896, "143248": 1896, "107062": 1896, "214947": 1896, "4458": 1896, "54242": 1896, "5544": 1896, "00114817": 1896, "000177973": 1896, "000178907": 1896, "000659669": 1896, "00216472": 1896, "0857364": 1896, "0845932": 1896, "0868874": 1896, "0848534": 1896, "0837722": 1896, "0859277": 1896, "opera": 1896, "tor": 1896, "0134187": 1896, "0102856": 1896, "0163494": 1896, "0164149": 1896, "0106362": 1896, "0138114": 1896, "0111514": 1896, "0171747": 1896, "0166038": 1896, "0102768": 1896, "105283": 1896, "0887984": 1896, "178604": 1896, "9994": 1896, "9382": 1896, "24137": 1896, "58": 1896, "5892": 1896, "00115656": 1896, "000172163": 1896, "000171354": 1896, "000511025": 1896, "0020111": 1896, "0813375": 1896, "0807074": 1896, "0819679": 1896, "0805692": 1896, "0807933": 1896, "0803457": 1896, "0106639": 1896, "00997202": 1896, "0117378": 1896, "0126783": 1896, "00827334": 1896, "010986": 1896, "0102901": 1896, "011223": 1896, "0124831": 1896, "00993179": 1896, "0924834": 1896, "0846274": 1896, "167454": 1896, "7817": 1896, "85936": 1896, "60": 1896, "6006": 1896, "00115569": 1896, "000178144": 1896, "000176416": 1896, "000650654": 1896, "0021609": 1896, "0807803": 1896, "0806915": 1896, "0808702": 1896, "0812727": 1896, "081801": 1896, "0807463": 1896, "0099321": 1896, "00904017": 1896, "0110288": 1896, "0113006": 1896, "00836602": 1896, "00970767": 1896, "00951802": 1896, "0101806": 1896, "0106859": 1896, "00843022": 1896, "086534": 1896, "0813237": 1896, "165674": 1896, "7405": 1896, "74432": 1896, "6050": 1896, "00117191": 1896, "000175165": 1896, "00017454": 1896, "00050787": 1896, "00202948": 1896, "0802191": 1896, "0791924": 1896, "0812492": 1896, "0809095": 1896, "0803057": 1896, "0815111": 1896, "00969948": 1896, "00925127": 1896, "0103824": 1896, "0101984": 1896, "00897148": 1896, "00927175": 1896, "0082894": 1896, "010285": 1896, "0103947": 1896, "00810573": 1896, "0879604": 1896, "0832035": 1896, "16585": 1896, "9974": 1896, "7589": 1896, "9097": 1896, "6139": 1896, "00118529": 1896, "000172073": 1896, "000172366": 1896, "000496923": 1896, "00202665": 1896, "0795869": 1896, "0790479": 1896, "0801287": 1896, "0793488": 1896, "0792065": 1896, "0794908": 1896, "00889574": 1896, "00825277": 1896, "00949215": 1896, "00962801": 1896, "00821994": 1896, "00910054": 1896, "00828074": 1896, "0100862": 1896, "00971145": 1896, "00831268": 1896, "0841257": 1896, "0818062": 1896, "16097": 1896, "9978": 1896, "6771": 1896, "1042": 1896, "6153": 1896, "00115225": 1896, "000171762": 1896, "000172688": 1896, "000498098": 1896, "00199479": 1896, "080043": 1896, "0801369": 1896, "0799484": 1896, "0794563": 1896, "0801462": 1896, "0787702": 1896, "00927618": 1896, "00859689": 1896, "00934467": 1896, "0107302": 1896, "00842416": 1896, "00952857": 1896, "00895115": 1896, "00986343": 1896, "0104291": 1896, "00886475": 1896, "0843788": 1896, "0796422": 1896, "161897": 1896, "6928": 1896, "26924": 1896, "59": [1896, 1902, 1907], "5957": 1896, "00115623": 1896, "00017426": 1896, "000175525": 1896, "000538327": 1896, "00204434": 1896, "0811482": 1896, "0799815": 1896, "0823172": 1896, "079918": 1896, "0798255": 1896, "0800096": 1896, "00925476": 1896, "00855502": 1896, "00981487": 1896, "0105368": 1896, "0081249": 1896, "00993752": 1896, "00927793": 1896, "00998653": 1896, "0106884": 1896, "00978858": 1896, "0876537": 1896, "0830675": 1896, "166809": 1896, "7751": 1896, "16191": 1896, "6097": 1896, "00115244": 1896, "00017814": 1896, "000175008": 1896, "000491659": 1896, "00199724": 1896, "0796655": 1896, "0798424": 1896, "0794869": 1896, "0806294": 1896, "0818259": 1896, "0794333": 1896, "00948261": 1896, "00896616": 1896, "0110163": 1896, "00972801": 1896, "00824513": 1896, "moveu": 1896, "00907485": 1896, "00870093": 1896, "00888078": 1896, "00987143": 1896, "00884075": 1896, "0868053": 1896, "0820692": 1896, "162871": 1896, "7002": 1896, "1179": 1896, "78": 1896, "3931": 1896, "3916": 1896, "00116999": 1896, "000178971": 1896, "000177013": 1896, "000661933": 1896, "0021879": 1896, "0825932": 1896, "0821367": 1896, "0830489": 1896, "0829548": 1896, "0825535": 1896, "0833533": 1896, "0149825": 1896, "0128456": 1896, "016206": 1896, "018634": 1896, "0122235": 1896, "0149866": 1896, "0129654": 1896, "0173514": 1896, "0175802": 1896, "0119693": 1896, "233272": 1896, "128126": 1896, "253855": 1896, "9717": 1896, "67936": 1896, "6032": 1896, "00115504": 1896, "000170611": 1896, "000174805": 1896, "00128361": 1896, "00278407": 1896, "0831347": 1896, "0826692": 1896, "0836028": 1896, "083416": 1896, "0828652": 1896, "083969": 1896, "0133214": 1896, "00978535": 1896, "0162945": 1896, "0179412": 1896, "00930456": 1896, "0131809": 1896, "0100251": 1896, "0165614": 1896, "0171715": 1896, "00890798": 1896, "0923836": 1896, "0827155": 1896, "168187": 1896, "7472": 1896, "10055": 1896, "65": 1896, "6573": 1896, "00119869": 1896, "000176954": 1896, "000178311": 1896, "000494936": 1896, "00204889": 1896, "07622": 1896, "075692": 1896, "0767499": 1896, "0754528": 1896, "0759239": 1896, "074984": 1896, "0088625": 1896, "00809271": 1896, "00996209": 1896, "0113564": 1896, "00605505": 1896, "00928461": 1896, "00818713": 1896, "0108847": 1896, "0106967": 1896, "00735": 1896, "0695589": 1896, "0759537": 1896, "150655": 1896, "4869": 1896, "47014": 1896, "6728": 1896, "0011518": 1896, "000170142": 1896, "000172553": 1896, "000480502": 1896, "001975": 1896, "0724759": 1896, "0715636": 1896, "0733873": 1896, "0720517": 1896, "0711002": 1896, "0730012": 1896, "00731203": 1896, "00710724": 1896, "00752697": 1896, "00819281": 1896, "00642832": 1896, "mo": 1896, "ve": 1896, "00748132": 1896, "00743524": 1896, "00759443": 1896, "00848466": 1896, "00640077": 1896, "0638096": 1896, "0742757": 1896, "147119": 1896, "4453": 1896, "27009": 1896, "6765": 1896, "0011343": 1896, "000175784": 1896, "000175253": 1896, "000505452": 1896, "00199079": 1896, "0713425": 1896, "0706458": 1896, "07204": 1896, "0718967": 1896, "0720733": 1896, "0717211": 1896, "00752552": 1896, "00686625": 1896, "00816653": 1896, "00877613": 1896, "00630587": 1896, "00721517": 1896, "00625928": 1896, "00727505": 1896, "00856445": 1896, "00676213": 1896, "063708": 1896, "073321": 1896, "146845": 1896, "991": 1896, "442": 1896, "81646": 1896, "6760": 1896, "00115614": 1896, "000174304": 1896, "000175429": 1896, "000510379": 1896, "00201626": 1896, "0722835": 1896, "071304": 1896, "0732643": 1896, "0724337": 1896, "0720262": 1896, "07284": 1896, "00747649": 1896, "00767686": 1896, "00721154": 1896, "00852148": 1896, "00649195": 1896, "00737793": 1896, "00707822": 1896, "00711645": 1896, "00876561": 1896, "00655318": 1896, "0641534": 1896, "0730972": 1896, "147456": 1896, "996": 1896, "4256": 1896, "87925": 1896, "6797": 1896, "00115404": 1896, "000171099": 1896, "000173656": 1896, "00048374": 1896, "00198254": 1896, "0719672": 1896, "0706898": 1896, "0732397": 1896, "0715593": 1896, "0704335": 1896, "0726812": 1896, "00708196": 1896, "00686678": 1896, "0078658": 1896, "00743821": 1896, "0061632": 1896, "0071656": 1896, "00718669": 1896, "00766542": 1896, "00723975": 1896, "00656952": 1896, "0617984": 1896, "0741883": 1896, "146003": 1896, "9934": 1896, "4186": 1896, "97262": 1896, "6733": 1896, "00117": 1896, "000176397": 1896, "000174993": 1896, "00058778": 1896, "00210917": 1896, "0723829": 1896, "0719869": 1896, "072779": 1896, "0718631": 1896, "0717641": 1896, "0719614": 1896, "00704912": 1896, "00711842": 1896, "00702896": 1896, "00800765": 1896, "00603686": 1896, "00728255": 1896, "00728605": 1896, "00757032": 1896, "00808733": 1896, "00617878": 1896, "0647355": 1896, "0728214": 1896, "146776": 1896, "9972": 1896, "4233": 1896, "35075": 1896, "6761": 1896, "00113392": 1896, "000174943": 1896, "000180306": 1896, "000498955": 1896, "00198812": 1896, "0720697": 1896, "0712123": 1896, "0729294": 1896, "0721389": 1896, "0714645": 1896, "0728079": 1896, "0070591": 1896, "00725576": 1896, "00753265": 1896, "00761844": 1896, "00582509": 1896, "00700508": 1896, "00793267": 1896, "0067748": 1896, "00738887": 1896, "00593318": 1896, "0639617": 1896, "0738343": 1896, "147712": 1896, "4578": 1896, "74578": 1896, "6668": 1896, "0011519": 1896, "000174972": 1896, "000177178": 1896, "000500343": 1896, "00200439": 1896, "0700786": 1896, "0702968": 1896, "0698603": 1896, "0696558": 1896, "0699828": 1896, "0693299": 1896, "ou": 1896, "perat": 1896, "00679017": 1896, "00662199": 1896, "00680628": 1896, "00800669": 1896, "00572275": 1896, "00691247": 1896, "00703885": 1896, "00726199": 1896, "00740299": 1896, "00594573": 1896, "0655141": 1896, "0722333": 1896, "14909": 1896, "499": 1896, "74692": 1896, "4202": 1896, "4308": 1896, "00119195": 1896, "000172087": 1896, "000176853": 1896, "000651202": 1896, "00219209": 1896, "0784645": 1896, "077737": 1896, "0791939": 1896, "0778967": 1896, "0777312": 1896, "0780616": 1896, "0137605": 1896, "0106226": 1896, "0159981": 1896, "0181051": 1896, "0102649": 1896, "014284": 1896, "0107163": 1896, "0180735": 1896, "0173927": 1896, "010941": 1896, "194802": 1896, "117678": 1896, "232515": 1896, "5417": 1896, "37617": 1896, "6826": 1896, "0011367": 1896, "000175053": 1896, "000174838": 1896, "000507683": 1896, "00199427": 1896, "0766449": 1896, "0764292": 1896, "0768612": 1896, "0761625": 1896, "0763946": 1896, "0759317": 1896, "0106741": 1896, "00774466": 1896, "0136975": 1896, "0145652": 1896, "0067659": 1896, "0108867": 1896, "00786259": 1896, "0137408": 1896, "0148857": 1896, "00699944": 1896, "0664264": 1896, "0726063": 1896, "145565": 1896, "4098": 1896, "66327": 1896, "73": 1896, "7364": 1896, "00113329": 1896, "000175666": 1896, "00017359": 1896, "000493932": 1896, "00197648": 1896, "0666085": 1896, "0665451": 1896, "066672": 1896, "0667213": 1896, "0672132": 1896, "0662322": 1896, "00669763": 1896, "00602932": 1896, "00748431": 1896, "00769875": 1896, "00559172": 1896, "00652602": 1896, "00578662": 1896, "00698408": 1896, "00760865": 1896, "00571634": 1896, "0514166": 1896, "0668013": 1896, "135057": 1896, "2625": 1896, "92343": 1896, "72": 1896, "7289": 1896, "00113231": 1896, "000174572": 1896, "000175548": 1896, "000526218": 1896, "00200864": 1896, "0648141": 1896, "0634921": 1896, "0661443": 1896, "0649517": 1896, "0649518": 1896, "0649516": 1896, "0061691": 1896, "00587146": 1896, "00646862": 1896, "00744427": 1896, "00489611": 1896, "00601018": 1896, "00491658": 1896, "00690701": 1896, "00676294": 1896, "00544022": 1896, "0503358": 1896, "0671483": 1896, "135564": 1896, "2763": 1896, "76404": 1896, "7343": 1896, "00116586": 1896, "000171716": 1896, "000175847": 1896, "000581802": 1896, "00209523": 1896, "0649176": 1896, "0641392": 1896, "0657014": 1896, "0647029": 1896, "0646974": 1896, "0647083": 1896, "00594983": 1896, "00583274": 1896, "00662917": 1896, "00637781": 1896, "00496899": 1896, "00605891": 1896, "00579733": 1896, "00580425": 1896, "00740682": 1896, "00521816": 1896, "0500971": 1896, "0681187": 1896, "135501": 1896, "9928": 1896, "2804": 1896, "52751": 1896, "7363": 1896, "00114743": 1896, "000174272": 1896, "000173083": 1896, "00048318": 1896, "00197796": 1896, "0648434": 1896, "0639435": 1896, "0657487": 1896, "0652002": 1896, "0650621": 1896, "0653372": 1896, "00653185": 1896, "00647684": 1896, "00700224": 1896, "00712778": 1896, "00552508": 1896, "00633317": 1896, "00574294": 1896, "00628081": 1896, "00798945": 1896, "00531256": 1896, "0519887": 1896, "0671887": 1896, "135337": 1896, "9896": 1896, "2736": 1896, "97512": 1896, "7350": 1896, "00114243": 1896, "000176064": 1896, "00017554": 1896, "000502765": 1896, "0019968": 1896, "0651064": 1896, "0640138": 1896, "0661968": 1896, "064921": 1896, "0643386": 1896, "0655007": 1896, "00608775": 1896, "00550639": 1896, "00688303": 1896, "00702353": 1896, "00494438": 1896, "00612031": 1896, "00518802": 1896, "006465": 1896, "00749811": 1896, "00532021": 1896, "0501661": 1896, "0677592": 1896, "135616": 1896, "9908": 1896, "2712": 1896, "45363": 1896, "7086": 1896, "00116354": 1896, "000175041": 1896, "000174947": 1896, "00112879": 1896, "00264231": 1896, "0650171": 1896, "0644201": 1896, "0656194": 1896, "0655976": 1896, "0658945": 1896, "0653032": 1896, "00591916": 1896, "00558637": 1896, "00615606": 1896, "00691088": 1896, "00502934": 1896, "0055814": 1896, "00478277": 1896, "00636994": 1896, "00639437": 1896, "00477878": 1896, "0504766": 1896, "0694536": 1896, "139764": 1896, "2853": 1896, "65569": 1896, "7286": 1896, "00114038": 1896, "000176438": 1896, "000175781": 1896, "000493773": 1896, "00198638": 1896, "06511": 1896, "0645775": 1896, "0656442": 1896, "065331": 1896, "0647873": 1896, "0658719": 1896, "00569673": 1896, "00567891": 1896, "00563549": 1896, "00576908": 1896, "00570335": 1896, "0056422": 1896, "00595789": 1896, "00547803": 1896, "00585611": 1896, "0052781": 1896, "0523878": 1896, "0673053": 1896, "136122": 1896, "14769": 1896, "00114125": 1896, "000176996": 1896, "000171122": 1896, "00150071": 1896, "00299008": 1896, "0655441": 1896, "0641989": 1896, "066902": 1896, "0656663": 1896, "0655177": 1896, "065813": 1896, "00574329": 1896, "00615239": 1896, "00584514": 1896, "00617653": 1896, "0047931": 1896, "su": 1896, "00557688": 1896, "00536355": 1896, "00589547": 1896, "0062092": 1896, "00483401": 1896, "0511499": 1896, "0669602": 1896, "138667": 1896, "2817": 1896, "92277": 1896, "4617": 1896, "4624": 1896, "00116428": 1896, "000175073": 1896, "000179122": 1896, "000624143": 1896, "00214262": 1896, "075023": 1896, "0737795": 1896, "0762717": 1896, "0754981": 1896, "0750419": 1896, "0759501": 1896, "0122848": 1896, "010087": 1896, "0149212": 1896, "0147216": 1896, "00942308": 1896, "0122644": 1896, "00940893": 1896, "0151437": 1896, "0152795": 1896, "00922575": 1896, "160022": 1896, "108396": 1896, "214303": 1896, "0593": 1896, "51099": 1896, "7205": 1896, "00114454": 1896, "000174778": 1896, "000178598": 1896, "000622807": 1896, "00212072": 1896, "0673988": 1896, "0660498": 1896, "0687521": 1896, "0665999": 1896, "0656989": 1896, "0674971": 1896, "00775671": 1896, "00641076": 1896, "00925224": 1896, "0098923": 1896, "00549451": 1896, "00814979": 1896, "0064208": 1896, "0094943": 1896, "0109052": 1896, "00577183": 1896, "0525718": 1896, "0684983": 1896, "13753": 1896, "2476": 1896, "18844": 1896, "76": 1896, "7605": 1896, "00111446": 1896, "000176218": 1896, "000173181": 1896, "000567391": 1896, "00203125": 1896, "0599149": 1896, "0587469": 1896, "0610859": 1896, "0603628": 1896, "0599454": 1896, "0607787": 1896, "00513004": 1896, "00500828": 1896, "00586709": 1896, "00532469": 1896, "00432035": 1896, "00484395": 1896, "00435256": 1896, "0050489": 1896, "00528113": 1896, "00468487": 1896, "0424689": 1896, "0623846": 1896, "129958": 1896, "1771": 1896, "90146": 1896, "7679": 1896, "00111329": 1896, "000174453": 1896, "000187997": 1896, "00052281": 1896, "00199855": 1896, "0597628": 1896, "0594387": 1896, "0600886": 1896, "0601823": 1896, "0602364": 1896, "0601285": 1896, "00498081": 1896, "00520013": 1896, "00499122": 1896, "00506582": 1896, "00466358": 1896, "00463958": 1896, "00460643": 1896, "00493022": 1896, "00485765": 1896, "00416083": 1896, "041741": 1896, "0630625": 1896, "128933": 1896, "9988": 1896, "1498": 1896, "35153": 1896, "7352": 1896, "0011521": 1896, "000179953": 1896, "000193562": 1896, "000986017": 1896, "00251163": 1896, "0607112": 1896, "0597318": 1896, "0616933": 1896, "0605566": 1896, "0600225": 1896, "0610896": 1896, "0048536": 1896, "00534402": 1896, "00512184": 1896, "00419329": 1896, "00474785": 1896, "00485389": 1896, "00482044": 1896, "00488813": 1896, "00502294": 1896, "00468169": 1896, "0414372": 1896, "0637003": 1896, "134183": 1896, "1644": 1896, "2926": 1896, "77": 1896, "7706": 1896, "00114883": 1896, "000172738": 1896, "000173912": 1896, "000500922": 1896, "0019964": 1896, "0597706": 1896, "058365": 1896, "0611883": 1896, "0603617": 1896, "0596815": 1896, "0610421": 1896, "00507342": 1896, "00552225": 1896, "00502914": 1896, "00519481": 1896, "0045431": 1896, "00475572": 1896, "00474486": 1896, "00519264": 1896, "00452235": 1896, "00455891": 1896, "0425655": 1896, "0640778": 1896, "1291": 1896, "1918": 1896, "29282": 1896, "57": 1896, "7662": 1896, "00114987": 1896, "000175873": 1896, "000174441": 1896, "000509332": 1896, "00200951": 1896, "059439": 1896, "0581668": 1896, "0607138": 1896, "0597239": 1896, "0590741": 1896, "06037": 1896, "00484312": 1896, "0048189": 1896, "00515876": 1896, "00478774": 1896, "00460903": 1896, "00469727": 1896, "0042228": 1896, "0049556": 1896, "00490294": 1896, "00470213": 1896, "0419401": 1896, "063158": 1896, "129703": 1896, "1825": 1896, "99906": 1896, "7668": 1896, "00113999": 1896, "000177145": 1896, "000494697": 1896, "0019877": 1896, "059728": 1896, "058413": 1896, "0610475": 1896, "06057": 1896, "0601686": 1896, "0609698": 1896, "00533349": 1896, "00561465": 1896, "00525122": 1896, "00578842": 1896, "00467645": 1896, "00479575": 1896, "00452891": 1896, "00515258": 1896, "00471774": 1896, "0047805": 1896, "0424987": 1896, "063466": 1896, "130279": 1896, "9944": 1896, "1765": 1896, "40606": 1896, "75": [1896, 1903, 1908], "7561": 1896, "00118073": 1896, "000176595": 1896, "000176277": 1896, "00126962": 1896, "00280322": 1896, "0596867": 1896, "0584019": 1896, "060971": 1896, "0597209": 1896, "0586373": 1896, "0608016": 1896, "00478203": 1896, "00492844": 1896, "00489903": 1896, "00478374": 1896, "00451458": 1896, "00471166": 1896, "00471679": 1896, "00453695": 1896, "00521538": 1896, "00437776": 1896, "0399454": 1896, "0650666": 1896, "131095": 1896, "9982": 1896, "1588": 1896, "33519": 1896, "7707": 1896, "00112932": 1896, "000173649": 1896, "000176619": 1896, "0005733": 1896, "00205289": 1896, "0604564": 1896, "0588577": 1896, "0620602": 1896, "0606382": 1896, "0597842": 1896, "0614869": 1896, "00508035": 1896, "00542338": 1896, "0051973": 1896, "00528804": 1896, "00440811": 1896, "00493871": 1896, "00482393": 1896, "00470077": 1896, "00566008": 1896, "0045722": 1896, "0412753": 1896, "0632685": 1896, "129126": 1896, "1691": 1896, "90488": 1896, "4971": 1896, "00118772": 1896, "000174399": 1896, "000175365": 1896, "000724154": 1896, "00226164": 1896, "0715393": 1896, "0714001": 1896, "0716792": 1896, "0708063": 1896, "0703415": 1896, "07127": 1896, "0109482": 1896, "00810392": 1896, "013351": 1896, "00807161": 1896, "10remov": 1896, "0114495": 1896, "00895825": 1896, "0147422": 1896, "0144898": 1896, "00756817": 1896, "136485": 1896, "0947748": 1896, "201123": 1896, "8101": 1896, "33423": 1896, "7784": 1896, "00114748": 1896, "000173434": 1896, "000173643": 1896, "000492445": 1896, "001987": 1896, "0620445": 1896, "0613942": 1896, "0626974": 1896, "0624537": 1896, "0626078": 1896, "0623003": 1896, "00688384": 1896, "00590854": 1896, "00871756": 1896, "00824825": 1896, "00467794": 1896, "00658183": 1896, "00538131": 1896, "00726536": 1896, "00855818": 1896, "0050996": 1896, "0414626": 1896, "0618828": 1896, "127212": 1896, "1285": 1896, "2533": 1896, "8085": 1896, "00114792": 1896, "000171199": 1896, "000170999": 1896, "000497123": 1896, "00198724": 1896, "0558467": 1896, "0548354": 1896, "0568613": 1896, "0563139": 1896, "0556514": 1896, "0569743": 1896, "00437746": 1896, "00445812": 1896, "00470138": 1896, "00439052": 1896, "00395763": 1896, "00414735": 1896, "00428681": 1896, "00416849": 1896, "00410326": 1896, "00403258": 1896, "0347029": 1896, "0598513": 1896, "122534": 1896, "0673": 1896, "48919": 1896, "8093": 1896, "0011215": 1896, "000173062": 1896, "00017243": 1896, "000481739": 1896, "00194873": 1896, "0551622": 1896, "0540573": 1896, "056271": 1896, "0554291": 1896, "0548532": 1896, "0560021": 1896, "00379637": 1896, "00380545": 1896, "00399505": 1896, "00374965": 1896, "00363535": 1896, "00366381": 1896, "00335177": 1896, "00377209": 1896, "00381376": 1896, "00371272": 1896, "0336264": 1896, "0597385": 1896, "12209": 1896, "12545": 1896, "8174": 1896, "00113455": 1896, "000172962": 1896, "000172111": 1896, "000494535": 1896, "00197415": 1896, "0555556": 1896, "0548071": 1896, "056308": 1896, "0565826": 1896, "0561847": 1896, "0569795": 1896, "00401386": 1896, "00431683": 1896, "00367912": 1896, "00402102": 1896, "00403548": 1896, "00343265": 1896, "00319218": 1896, "00357058": 1896, "00384326": 1896, "00311738": 1896, "0336175": 1896, "0608379": 1896, "120854": 1896, "0345": 1896, "44062": 1896, "8150": 1896, "0011493": 1896, "000176394": 1896, "000175145": 1896, "000636652": 1896, "00213749": 1896, "0561644": 1896, "0553785": 1896, "0569541": 1896, "0563292": 1896, "0563507": 1896, "0563077": 1896, "0040616": 1896, "00442985": 1896, "00424611": 1896, "00385272": 1896, "00371569": 1896, "00386509": 1896, "003755": 1896, "00376864": 1896, "00392764": 1896, "00400866": 1896, "0356184": 1896, "0611042": 1896, "121234": 1896, "0107": 1896, "51989": 1896, "8028": 1896, "00113187": 1896, "000172906": 1896, "000173854": 1896, "00119973": 1896, "00267836": 1896, "0569562": 1896, "0557674": 1896, "0581538": 1896, "0573977": 1896, "0568736": 1896, "057919": 1896, "00397292": 1896, "00431444": 1896, "00403564": 1896, "00342248": 1896, "00411819": 1896, "00370689": 1896, "00370983": 1896, "0034267": 1896, "00365311": 1896, "00403935": 1896, "0337761": 1896, "0612707": 1896, "122749": 1896, "0148": 1896, "53234": 1896, "8010": 1896, "00115006": 1896, "000171089": 1896, "000170973": 1896, "000614332": 1896, "00210645": 1896, "0595088": 1896, "0578924": 1896, "0611341": 1896, "0595746": 1896, "0587787": 1896, "0603688": 1896, "00426946": 1896, "00422307": 1896, "00518465": 1896, "00388528": 1896, "00378426": 1896, "00421233": 1896, "00335218": 1896, "00464931": 1896, "00480216": 1896, "00403033": 1896, "0367278": 1896, "0603263": 1896, "123466": 1896, "9806": 1896, "0485": 1896, "82185": 1896, "8154": 1896, "00112582": 1896, "000175281": 1896, "000174666": 1896, "000548011": 1896, "00202378": 1896, "056208": 1896, "0553238": 1896, "0570951": 1896, "0564072": 1896, "0561066": 1896, "0567066": 1896, "00407237": 1896, "00458353": 1896, "00414805": 1896, "00358938": 1896, "00396333": 1896, "00385295": 1896, "00384102": 1896, "00381134": 1896, "00384082": 1896, "0039189": 1896, "0336746": 1896, "0591636": 1896, "121264": 1896, "0118": 1896, "32063": 1896, "8130": 1896, "00112664": 1896, "000169903": 1896, "000170967": 1896, "000570233": 1896, "00203775": 1896, "0565456": 1896, "0560489": 1896, "0570416": 1896, "0565554": 1896, "0566927": 1896, "0564188": 1896, "00394695": 1896, "00453041": 1896, "003751": 1896, "00377433": 1896, "00372447": 1896, "00393142": 1896, "00393605": 1896, "00351129": 1896, "00412257": 1896, "00415485": 1896, "03294": 1896, "0595034": 1896, "121777": 1896, "0399": 1896, "72088": 1896, "5460": 1896, "00114313": 1896, "000173784": 1896, "000177948": 1896, "000703365": 1896, "00219823": 1896, "0696534": 1896, "0698218": 1896, "0694839": 1896, "0686236": 1896, "0693558": 1896, "0678957": 1896, "0101898": 1896, "00760697": 1896, "0134782": 1896, "0128854": 1896, "00681329": 1896, "010656": 1896, "00783997": 1896, "0139799": 1896, "0135968": 1896, "00715714": 1896, "113309": 1896, "0920199": 1896, "183328": 1896, "3798": 1896, "84919": 1896, "8267": 1896, "00113257": 1896, "000174729": 1896, "000171475": 1896, "000655191": 1896, "00213397": 1896, "0567635": 1896, "0558338": 1896, "0576938": 1896, "0570791": 1896, "0568651": 1896, "0572924": 1896, "00513888": 1896, "0044657": 1896, "00659921": 1896, "00590559": 1896, "00359382": 1896, "00494392": 1896, "00375318": 1896, "00599587": 1896, "00600445": 1896, "00399808": 1896, "0324819": 1896, "0581535": 1896, "119753": 1896, "9786": 1896, "6009": 1896, "8522": 1896, "00113484": 1896, "000174635": 1896, "00017281": 1896, "000471962": 1896, "00195425": 1896, "0522979": 1896, "0514701": 1896, "0531272": 1896, "0526289": 1896, "0525332": 1896, "052724": 1896, "0035412": 1896, "00398847": 1896, "00370725": 1896, "00335209": 1896, "00311216": 1896, "00335832": 1896, "00299014": 1896, "00369106": 1896, "0037407": 1896, "00300276": 1896, "0287871": 1896, "0573234": 1896, "116241": 1896, "9456": 1896, "58899": 1896, "8532": 1896, "00112831": 1896, "000175032": 1896, "000170599": 1896, "000477615": 1896, "00195155": 1896, "0510253": 1896, "0504098": 1896, "0516432": 1896, "0515426": 1896, "051475": 1896, "0516099": 1896, "00340387": 1896, "00378519": 1896, "0032779": 1896, "0033044": 1896, "00324285": 1896, "00317778": 1896, "00283378": 1896, "00321952": 1896, "00370341": 1896, "00294856": 1896, "0277202": 1896, "0570392": 1896, "116499": 1896, "9533": 1896, "78912": 1896, "8424": 1896, "00113708": 1896, "000169747": 1896, "000516366": 1896, "00199727": 1896, "0509114": 1896, "0494415": 1896, "0523881": 1896, "0515835": 1896, "0508587": 1896, "0523052": 1896, "00328518": 1896, "00378564": 1896, "00328526": 1896, "00299079": 1896, "00307324": 1896, "00292678": 1896, "00257701": 1896, "00286487": 1896, "0034609": 1896, "00279944": 1896, "0285168": 1896, "0573744": 1896, "117503": 1896, "9713": 1896, "77243": 1896, "8482": 1896, "00112907": 1896, "000171733": 1896, "000172552": 1896, "000497535": 1896, "00197089": 1896, "0518978": 1896, "0515069": 1896, "0522911": 1896, "0524093": 1896, "0525957": 1896, "052223": 1896, "00326625": 1896, "00386679": 1896, "00304207": 1896, "00291603": 1896, "00323224": 1896, "00301172": 1896, "00279397": 1896, "00282048": 1896, "0035536": 1896, "00287666": 1896, "0282139": 1896, "0573663": 1896, "117064": 1896, "9679": 1896, "24404": 1896, "8341": 1896, "0011421": 1896, "000175292": 1896, "00017538": 1896, "00057952": 1896, "00207229": 1896, "0514406": 1896, "0510664": 1896, "0518164": 1896, "051954": 1896, "0523787": 1896, "0515301": 1896, "00338554": 1896, "00366893": 1896, "00344041": 1896, "00307385": 1896, "0033557": 1896, "00305853": 1896, "00254999": 1896, "00326173": 1896, "00297855": 1896, "00343698": 1896, "0282974": 1896, "0568543": 1896, "118557": 1896, "9992": 1896, "9675": 1896, "34324": 1896, "8588": 1896, "00114523": 1896, "000173347": 1896, "000170297": 1896, "000496129": 1896, "001985": 1896, "0516234": 1896, "0507942": 1896, "0524561": 1896, "0515959": 1896, "0514668": 1896, "0517245": 1896, "00321691": 1896, "00343928": 1896, "00323961": 1896, "00322555": 1896, "00296047": 1896, "00319616": 1896, "00286625": 1896, "00345553": 1896, "00322388": 1896, "00323392": 1896, "0279356": 1896, "0577107": 1896, "115961": 1896, "998": 1896, "9502": 1896, "90419": 1896, "8520": 1896, "00113566": 1896, "000171149": 1896, "000171571": 1896, "000505713": 1896, "00198409": 1896, "0522993": 1896, "0518042": 1896, "0527968": 1896, "0523894": 1896, "0527668": 1896, "0520146": 1896, "00332163": 1896, "00385812": 1896, "00331033": 1896, "00287276": 1896, "00323793": 1896, "00320791": 1896, "00303251": 1896, "00257947": 1896, "00374368": 1896, "00347652": 1896, "0295904": 1896, "0569472": 1896, "116426": 1896, "999": 1896, "9579": 1896, "5502": 1896, "8308": 1896, "00113861": 1896, "00017479": 1896, "000171791": 1896, "000516632": 1896, "00200182": 1896, "052027": 1896, "0514887": 1896, "052567": 1896, "0525394": 1896, "0525082": 1896, "0525705": 1896, "00335517": 1896, "00413695": 1896, "00323186": 1896, "00292926": 1896, "00311042": 1896, "00302516": 1896, "00310847": 1896, "00289752": 1896, "00330243": 1896, "00279307": 1896, "0301017": 1896, "05751": 1896, "11865": 1896, "9998": 1896, "9797": 1896, "09128": 1896, "5758": 1896, "0011648": 1896, "000171131": 1896, "000177031": 1896, "00052665": 1896, "00203961": 1896, "0659214": 1896, "0645032": 1896, "0673451": 1896, "0664132": 1896, "0657103": 1896, "0671124": 1896, "00972141": 1896, "00816553": 1896, "0120463": 1896, "0123374": 1896, "00630649": 1896, "00948341": 1896, "00713825": 1896, "0120053": 1896, "0127712": 1896, "00596812": 1896, "0996916": 1896, "0850222": 1896, "173681": 1896, "1975": 1896, "8545": 1896, "8541": 1896, "00114865": 1896, "000173988": 1896, "000171794": 1896, "00119219": 1896, "00268662": 1896, "0532849": 1896, "0522147": 1896, "0543555": 1896, "053342": 1896, "0532922": 1896, "0533916": 1896, "00446188": 1896, "00427029": 1896, "0056238": 1896, "00476629": 1896, "0031903": 1896, "00436633": 1896, "00327022": 1896, "00473538": 1896, "00557037": 1896, "00387195": 1896, "0277647": 1896, "05598": 1896, "116407": 1896, "8927": 1896, "53428": 1896, "88": 1896, "8864": 1896, "00113772": 1896, "000172391": 1896, "000173831": 1896, "000667482": 1896, "00215142": 1896, "0487876": 1896, "0475343": 1896, "0500452": 1896, "0492262": 1896, "0486641": 1896, "0497856": 1896, "00317577": 1896, "0035957": 1896, "00350054": 1896, "00284136": 1896, "00275857": 1896, "00292205": 1896, "00258701": 1896, "00302885": 1896, "00338107": 1896, "0026844": 1896, "0236387": 1896, "0545816": 1896, "112377": 1896, "8792": 1896, "8611": 1896, "00115159": 1896, "000175224": 1896, "000172538": 1896, "000641879": 1896, "00214123": 1896, "048189": 1896, "0475752": 1896, "048804": 1896, "048684": 1896, "0485661": 1896, "0488014": 1896, "00280902": 1896, "00324111": 1896, "00320282": 1896, "00247802": 1896, "0023114": 1896, "0025366": 1896, "00258148": 1896, "00246217": 1896, "00286055": 1896, "00224081": 1896, "0246712": 1896, "0560449": 1896, "114722": 1896, "9191": 1896, "93015": 1896, "8682": 1896, "00113351": 1896, "00017218": 1896, "000169732": 1896, "00061197": 1896, "0020874": 1896, "0482681": 1896, "0473526": 1896, "0491879": 1896, "0482165": 1896, "0481162": 1896, "0483167": 1896, "00294627": 1896, "00344064": 1896, "00291673": 1896, "00275251": 1896, "00267103": 1896, "00298406": 1896, "0026251": 1896, "00285476": 1896, "00329326": 1896, "00315823": 1896, "0246552": 1896, "0552698": 1896, "114393": 1896, "88386": 1896, "8694": 1896, "00112254": 1896, "000171682": 1896, "000169843": 1896, "000609689": 1896, "00207376": 1896, "048889": 1896, "0478555": 1896, "0499248": 1896, "049152": 1896, "0484824": 1896, "0498193": 1896, "003037": 1896, "00320006": 1896, "00327777": 1896, "0029207": 1896, "00274846": 1896, "00285318": 1896, "00254032": 1896, "00293476": 1896, "00342016": 1896, "00251206": 1896, "0245681": 1896, "0554533": 1896, "113913": 1896, "8968": 1896, "21281": 1896, "87": 1896, "8797": 1896, "00112889": 1896, "000174991": 1896, "000176317": 1896, "000609379": 1896, "00208958": 1896, "0473094": 1896, "045965": 1896, "048656": 1896, "0473527": 1896, "046369": 1896, "0483339": 1896, "00272949": 1896, "00316006": 1896, "00287265": 1896, "00244254": 1896, "00243698": 1896, "0026367": 1896, "00258314": 1896, "00241881": 1896, "00319259": 1896, "00235322": 1896, "0233294": 1896, "0548638": 1896, "113268": 1896, "8957": 1896, "51035": 1896, "8705": 1896, "00116392": 1896, "000174849": 1896, "000171033": 1896, "000573339": 1896, "00208315": 1896, "0488708": 1896, "048186": 1896, "0495586": 1896, "0490466": 1896, "0489142": 1896, "049178": 1896, "00282094": 1896, "00316907": 1896, "00295433": 1896, "00271815": 1896, "00243883": 1896, "00273748": 1896, "00262902": 1896, "00272997": 1896, "00314165": 1896, "00244518": 1896, "0249233": 1896, "0546016": 1896, "11385": 1896, "9022": 1896, "34419": 1896, "8791": 1896, "00113176": 1896, "000173538": 1896, "000174227": 1896, "000500731": 1896, "00198025": 1896, "0492124": 1896, "0484356": 1896, "049993": 1896, "0489308": 1896, "048871": 1896, "0489904": 1896, "00273515": 1896, "00326991": 1896, "00276099": 1896, "00255092": 1896, "00235247": 1896, "00280445": 1896, "00258294": 1896, "0028585": 1896, "00317801": 1896, "00259388": 1896, "0245304": 1896, "0553609": 1896, "112756": 1896, "8688": 1896, "98793": 1896, "89": 1896, "8983": 1896, "00112999": 1896, "000172763": 1896, "000171394": 1896, "000627904": 1896, "00210205": 1896, "0486702": 1896, "0479463": 1896, "0493956": 1896, "0488597": 1896, "0489007": 1896, "0488189": 1896, "00274177": 1896, "00356041": 1896, "00275273": 1896, "00252121": 1896, "00212272": 1896, "00257861": 1896, "00265775": 1896, "00242603": 1896, "00290282": 1896, "00232661": 1896, "0231697": 1896, "0553643": 1896, "110655": 1896, "8281": 1896, "23047": 1896, "u1": 1896, "u10": 1896, "u7": 1896, "j2": 1896, "u11": 1896, "u8": 1896, "u12": 1896, "u9": 1896, "90": [1896, 1903, 1908], "somewher": 1896, "run_two_band": 1896, "se": 1896, "investig": [1896, 1900, 1905], "redirect": 1897, "start_redirect": 1897, "323600": 1897, "k_linear": 1897, "endpoint": [1897, 1904, 1905, 1906], "epsk": 1897, "pcolormesh": [1897, 1899, 1904, 1905], "rdbu_r": 1897, "shade": 1897, "vmin": 1897, "vmax": 1897, "set_label": 1897, "weak": [1899, 1900, 1904, 1905], "ferromagnet": [1899, 1901, 1904, 1906], "conist": [1899, 1904], "pauli": [1899, 1902, 1904, 1907], "mermin": [1899, 1901, 1904, 1906], "wagner": [1899, 1901, 1904, 1906], "theorem": [1899, 1900, 1901, 1904, 1905, 1906], "09": [255, 1899, 1904, 1905, 1906, 1908], "inlinebackend": [1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "figure_format": [1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "earier": [1899, 1904], "insead": [1899, 1904], "hamitonian": [1899, 1904], "python_api": [1899, 1904], "highlight": [1899, 1904], "__": [1899, 1904], "neigbhour": [1899, 1903, 1904, 1908], "h_r": [1899, 1903, 1904, 1908], "510934": 1899, "kmesh": [1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "0490874": [1899, 1904], "28319": [1899, 1904], "e_k_interp": [1899, 1904], "raster": [1899, 1904, 1905, 1906], "rdbu": [1899, 1904, 1905], "contour": [1899, 1904], "linestyl": [1899, 1904], "k_tick": [1899, 1904, 1905, 1906], "k_label": [1899, 1904], "xtick": [1899, 1904, 1905, 1906], "ytick": [1899, 1904, 1905, 1906], "va": [1899, 1904], "clip_on": [1899, 1904], "thepath": [1899, 1904], "python_refer": [1899, 1904], "k_vec": [1899, 1904, 1905, 1906], "k_plot": [1899, 1904, 1905, 1906], "wmesh": [1899, 1902, 1903, 1904, 1907, 1908], "wkmesh": [1899, 1904], "g0_wk": [1899, 1900, 1903, 1904, 1905, 1908], "lattice_dyson_g0_wk": [1899, 1903, 1904, 1908], "perfectli": [1899, 1900, 1903, 1904, 1905, 1908], "rho_k": [1899, 1904], "chi": [1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "chi_": [1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "dagger_a": [1900, 1905], "c_b": [1900, 1905], "dagger_c": [1900, 1905], "c_d": [1900, 1905], "wick": [1900, 1905], "convolut": [1900, 1905], "2frac": [1900, 1905], "inu_m": [1900, 1905], "nu_m": [1900, 1905], "fastest": [1900, 1905], "nu_n": [1900, 1905], "susceptibiltii": [1900, 1905], "fft": [1900, 1905], "triqs_trpf": [1900, 1905], "imtime_bubble_chi0_wk": [1900, 1903, 1905, 1908], "chi0_wk": [1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "nw": [1900, 1903, 1905, 1908], "greatli": [1900, 1905], "domin": [1900, 1905], "betaepsilon": [1900, 1905], "dinension": [1900, 1905], "extrema": [1900, 1905], "exercic": [1900, 1905], "manifest": [1900, 1905], "susecpt": [1900, 1905], "depdend": [1900, 1905], "sucept": [1900, 1905], "chi0_at_k_w": [1900, 1905], "susceptibilti": [1900, 1905], "chi_q_ref": [1900, 1905], "nan_to_num": [1900, 1905], "agre": [1900, 1905], "pad\u00e9": [1900, 1905], "fequenc": [1900, 1905], "fmesh": [1900, 1905], "chi_f": [1900, 1905], "pade_analytical_continuation_wk": [1900, 1905], "chi0_fk": [1900, 1905], "strongest": [1900, 1905], "susceptibilitii": [1900, 1905], "irreduc": [1901, 1906], "vertex": [1901, 1902, 1906, 1907], "denomin": [1901, 1902, 1903, 1906, 1907, 1908], "wherebi": [1901, 1906], "instabl": [1901, 1906], "predict": [1901, 1903, 1906, 1908], "unphys": [1901, 1903, 1906, 1908], "remedi": [1901, 1906], "shortcom": [1901, 1906], "solve_rpa_ph": [1901, 1902, 1903, 1906, 1907, 1908], "dtype": [1901, 1902, 1903, 1906, 1907, 1908], "compli": [1901, 1906], "chi_wk": [1901, 1902, 1903, 1906, 1907, 1908], "magnitud": [1901, 1906], "incommensur": [1901, 1906], "af": [1901, 1903, 1906, 1908], "andr\u00e9": [1902, 1907], "mari": [1902, 1907], "tremblai": [1902, 1903, 1907, 1908], "law": [1902, 1907], "tpc": [1902, 1903, 1907, 1908], "vertici": [1902, 1907], "cascad": [1902, 1907], "ansatz": [1902, 1903, 1907, 1908], "vilk": [1902, 1903, 1907, 1908], "franc": [1902, 1903, 1907, 1908], "1997": [1902, 1903, 1907, 1908], "1309": [1902, 1903, 1907, 1908], "1368": [1902, 1903, 1907, 1908], "solve_rpa": [1902, 1903, 1907, 1908], "triq_trpf": [1902, 1907], "focus": [1902, 1903, 1907, 1908], "brentq": [1902, 1903, 1907, 1908], "usp_root": [1902, 1903, 1907, 1908], "trace_chi": [1902, 1903, 1907, 1908], "chi_w": [1902, 1903, 1907, 1908], "squeez": [1902, 1903, 1905, 1906, 1907, 1908], "usp": [1902, 1903, 1907, 1908], "uch_root": [1902, 1903, 1907, 1908], "uch": [1902, 1903, 1907, 1908], "docc": [1902, 1903, 1907, 1908], "solve_tpsc": [1902, 1903, 1907, 1908], "iq_n": [1902, 1907], "violat": [1902, 1907], "1133": [1903, 1908], "1966": [1903, 1908], "imposs": [1903, 1908], "heurist": [1903, 1908], "proof": [1903, 1908], "collinear": [1903, 1908], "nabla": [1903, 1908], "wavelength": [1903, 1908], "classic": [1903, 1908], "equipartit": [1903, 1908], "k_bt": [1903, 1908], "rise": [1903, 1908], "infrar": [1903, 1908], "2q": [1903, 1908], "absurd": [1903, 1908], "hypothesi": [1903, 1908], "wave": [1903, 1908], "bubbl": [1903, 1905, 1908], "get_chi0": [1903, 1908], "tr_chi_sp": [1903, 1907, 1908], "diff": [1903, 1907, 1908], "tr_chi": [1903, 1907, 1908], "uc": [1903, 1907, 1908], "examin": [1903, 1908], "sum_n": [1903, 1908], "t_c": [1903, 1908], "t_rpa_vec": [1903, 1908], "concaten": [1903, 1907, 1908], "s_rpa_vec": [1903, 1908], "zeros_lik": [1903, 1907, 1908], "s_rpa": [1903, 1908], "4e": [1903, 1907, 1908], "rigor": [1903, 1908], "excercis": [1903, 1908], "whenc": [1903, 1908], "lowest": [1903, 1908], "sudden": [1903, 1908], "suddent": [1903, 1908], "anitferromagnet": [1903, 1908], "remnant": [1903, 1908], "kyung": [1903, 1908], "landri": [1903, 1908], "poulin": [1903, 1908], "099702": [1903, 1908], "asymptot": [1903, 1908], "trick": [1903, 1908], "appendix": [1903, 1908], "dar\u00e9": [1903, 1908], "14236": [1903, 1908], "1996": [1903, 1908], "intermedi": [1903, 1908], "rightarrow0": [1903, 1908], "rapid": [1903, 1908], "crossov": [1903, 1908], "2u": [1903, 1908], "866052": 1904, "kgrid1d": 1904, "a_k": 1904, "a_inv_k": 1904, "rho_k_interp": 1904, "box": 1905, "16384": 1905, "fourier_wk_to_wr": 1905, "fourier_wr_to_tr": 1905, "chi0_tr_from_grt_ph": 1905, "amp": 1905, "009086": 1905, "chi_wr_from_chi_tr": 1905, "chi_wk_from_chi_wr": 1905, "chi_interp": 1905, "q_x": [1905, 1906], "q_y": [1905, 1906], "chi0_k_interp": 1905, "k_g": 1905, "k_m": 1905, "k_pt": 1905, "_m": 1905, "ro": 1905, "var": 1905, "_1fkps792lsc0txclg5ky4300000gq": 1905, "ipykernel_50793": 1905, "228374747": 1905, "runtimewarn": 1905, "chi0_fk_interp": 1905, "chi_k_interp": 1906, "qx": 1906, "qy": 1906, "pcolor": 1906, "701127": 1906, "k_af": 1906, "u_vec": [1906, 1907], "chi_inv_vec": 1906, "5092181189127931": 1907, "5918677213723913": 1907, "18865226486409914": 1907, "778901915273313": 1907, "usp_vec": 1907, "uch_vec": 1907, "docc_vec": [1907, 1908], "0000e": [1907, 1908], "8960e": 1907, "2410e": 1907, "4133e": 1907, "6960e": 1907, "0074e": 1907, "3480e": 1907, "4299e": 1907, "4181e": 1907, "2964e": 1907, "0435e": 1907, "1509e": 1907, "2343e": 1907, "8118e": 1907, "3194e": 1907, "2029e": 1907, "5092e": 1907, "5919e": 1907, "8865e": 1907, "9155e": 1907, "1248e": 1907, "5962e": 1907, "1660e": 1907, "2127e": 1907, "3538e": 1907, "3187e": 1907, "8718e": 1907, "1594e": 1907, "imread": 1907, "overlai": 1907, "img": 1907, "fig2": 1907, "imshow": 1907, "sum_chi_vec": 1907, "sum_chi": 1907, "9935e": 1907, "5000e": [1907, 1908], "9969e": 1907, "0007e": 1907, "0024e": 1907, "0048e": 1907, "2500e": [1907, 1908], "0079e": 1907, "0118e": 1907, "7500e": 1907, "0166e": 1907, "0222e": 1907, "0287e": 1907, "617709": 1908, "7196e": 1908, "3333e": 1908, "5925e": 1908, "8000e": 1908, "5714e": 1908, "8783e": 1908, "6000e": 1908, "8462e": 1908, "2302e": 1908, "4000e": 1908, "1667e": 1908, "6725e": 1908, "2000e": 1908, "5455e": 1908, "2425e": 1908, "0006e": 1908, "5556e": 1908, "0503e": 1908, "5858e": 1908, "1429e": 1908, "0020e": 1908, "4436e": 1908, "5028e": 1908, "9329e": 1908, "t_tpsc_vec": 1908, "s_tpsc_vec": 1908, "u_sp_vec": 1908, "u_ch_vec": 1908, "s_tpsc": 1908, "ucrpa": 1908, "chi_sp_wk": 1908, "1151e": 1908, "9735e": 1908, "9469e": 1908, "6108e": 1908, "9065e": 1908, "3054e": 1908, "8166e": 1908, "3189e": 1908, "7718e": 1908, "5801e": 1908, "7324e": 1908, "9464e": 1908, "6148e": 1908, "0225e": 1908, "6343e": 1908, "9851e": 1908, "6667e": 1908, "4421e": 1908, "8411e": 1908, "5263e": 1908, "9599e": 1908, "3406e": 1908, "7133e": 1908, "4629e": 1908, "2155e": 1908, "2802e": 1908, "5589e": 1908, "4251e": 1908, "0735e": 1908, "2301e": 1908, "6547e": 1908, "3938e": 1908, "5004e": 1908, "1949e": 1908, "0900e": 1908, "3718e": 1908, "3575e": 1908, "1657e": 1908, "2228e": 1908, "3535e": 1908, "8974e": 1908, "8571e": 1908, "1527e": 1908, "2658e": 1908, "3454e": 1908, "6014e": 1908, "1327e": 1908, "3218e": 1908, "3330e": 1908, "0230e": 1908, "0869e": 1908, "4279e": 1908, "3043e": 1908, "2999e": 1908, "221": 1908, "222": 1908, "blow": 1908, "223": 1908, "u_sp": 1908, "224": 1908, "twoparticlerespons": 1909, "deeper": 1910, "profound": 1910, "port": 1910, "summari": 1910, "path_to_install_directori": 1910, "diretori": 1910, "show_vers": 1910, "9e": [254, 255], "6e": [254, 255], "3e": [254, 255], "00068": 254, "8e": 255, "5e": 255, "00098": 255, "00042": 255, "645497": [483, 484]}, "objects": {"": [[498, 0, 1, "", "HDFArchiveGroup"], [498, 0, 1, "", "HDFArchiveInert"], [497, 1, 1, "reduce_to_dict__", "__reduce_to_dict__"], [496, 2, 0, "-", "h5"], [498, 3, 1, "", "register_class"]], "HDFArchiveGroup": [[498, 1, 1, "", "apply_on_leaves"], [498, 1, 1, "", "create_group"], [498, 1, 1, "", "get_raw"], [498, 1, 1, "", "is_data"], [498, 1, 1, "", "is_group"], [498, 1, 1, "", "items"], [498, 1, 1, "", "keys"], [498, 1, 1, "", "read_attr"], [498, 1, 1, "", "root_path"], [498, 1, 1, "", "update"], [498, 1, 1, "", "values"]], "h5": [[498, 0, 1, "", "HDFArchive"]], "triqs": [[588, 2, 0, "-", "atom_diag"], [643, 2, 0, "-", "dos"], [657, 2, 0, "-", "fit"], [661, 2, 0, "-", "gf"], [1592, 2, 0, "-", "lattice"], [1669, 2, 0, "-", "operators"], [1724, 2, 0, "-", "plot"], [1733, 2, 0, "-", "random_generator"], [1738, 2, 0, "-", "stat"], [1752, 2, 0, "-", "sumk"], [1766, 2, 0, "-", "utility"]], "triqs.atom_diag": [[589, 3, 1, "", "AtomDiag"], [590, 2, 0, "-", "atom_diag"]], "triqs.atom_diag.atom_diag": [[591, 0, 1, "", "AtomDiagComplex"], [612, 0, 1, "", "AtomDiagReal"], [633, 3, 1, "", "act"], [634, 3, 1, "", "atomic_density_matrix"], [635, 3, 1, "", "atomic_g_iw"], [636, 3, 1, "", "atomic_g_l"], [637, 3, 1, "", "atomic_g_tau"], [638, 3, 1, "", "atomic_g_w"], [639, 3, 1, "", "partition_function"], [640, 3, 1, "", "quantum_number_eigenvalues"], [641, 3, 1, "", "quantum_number_eigenvalues_checked"], [642, 3, 1, "", "trace_rho_op"]], "triqs.atom_diag.atom_diag.AtomDiagComplex": [[592, 1, 1, "", "__init__"], [593, 1, 1, "", "c_connection"], [594, 1, 1, "", "c_matrix"], [595, 1, 1, "", "cdag_connection"], [596, 1, 1, "", "cdag_matrix"], [597, 4, 1, "", "energies"], [598, 1, 1, "", "flatten_subspace_index"], [599, 4, 1, "", "fock_states"], [600, 4, 1, "", "fops"], [601, 4, 1, "", "full_hilbert_space_dim"], [602, 1, 1, "", "get_eigenvalue"], [603, 1, 1, "", "get_subspace_dim"], [604, 1, 1, "", "get_subspace_dims"], [605, 4, 1, "", "gs_energy"], [606, 4, 1, "", "h_atomic"], [607, 4, 1, "", "n_subspaces"], [608, 4, 1, "", "quantum_numbers"], [609, 4, 1, "", "unitary_matrices"], [610, 4, 1, "", "vacuum_state"], [611, 4, 1, "", "vacuum_subspace_index"]], "triqs.atom_diag.atom_diag.AtomDiagReal": [[613, 1, 1, "", "__init__"], [614, 1, 1, "", "c_connection"], [615, 1, 1, "", "c_matrix"], [616, 1, 1, "", "cdag_connection"], [617, 1, 1, "", "cdag_matrix"], [618, 4, 1, "", "energies"], [619, 1, 1, "", "flatten_subspace_index"], [620, 4, 1, "", "fock_states"], [621, 4, 1, "", "fops"], [622, 4, 1, "", "full_hilbert_space_dim"], [623, 1, 1, "", "get_eigenvalue"], [624, 1, 1, "", "get_subspace_dim"], [625, 1, 1, "", "get_subspace_dims"], [626, 4, 1, "", "gs_energy"], [627, 4, 1, "", "h_atomic"], [628, 4, 1, "", "n_subspaces"], [629, 4, 1, "", "quantum_numbers"], [630, 4, 1, "", "unitary_matrices"], [631, 4, 1, "", "vacuum_state"], [632, 4, 1, "", "vacuum_subspace_index"]], "triqs.dos": [[644, 2, 0, "-", "dos"], [559, 3, 1, "", "dos_from_file"], [654, 2, 0, "-", "hilbert_transform"]], "triqs.dos.dos": [[645, 0, 1, "", "DOS"], [649, 0, 1, "", "DOSFromFunction"], [653, 3, 1, "", "dos_from_file"]], "triqs.dos.dos.DOS": [[646, 1, 1, "", "__init__"], [647, 1, 1, "", "copy"], [648, 1, 1, "", "density"]], "triqs.dos.dos.DOSFromFunction": [[650, 1, 1, "", "__init__"], [651, 1, 1, "", "copy"], [652, 1, 1, "", "density"]], "triqs.dos.hilbert_transform": [[655, 0, 1, "", "HilbertTransform"]], "triqs.dos.hilbert_transform.HilbertTransform": [[656, 1, 1, "", "__init__"]], "triqs.fit": [[658, 2, 0, "-", "fit"]], "triqs.fit.fit": [[659, 0, 1, "", "Fit"]], "triqs.fit.fit.Fit": [[660, 1, 1, "", "__init__"]], "triqs.gf": [[662, 2, 0, "-", "backwd_compat"], [858, 2, 0, "-", "block2_gf"], [873, 2, 0, "-", "block_gf"], [898, 2, 0, "-", "descriptor_base"], [915, 2, 0, "-", "descriptors"], [934, 2, 0, "-", "dlr_crm_dyson_solver"], [936, 2, 0, "-", "gf"], [985, 2, 0, "-", "gf_factories"], [995, 2, 0, "-", "gf_fnt"], [1013, 2, 0, "-", "lazy_expressions"], [1028, 2, 0, "-", "map_block"], [1029, 2, 0, "-", "matsubara_freq"], [1036, 2, 0, "-", "mesh_point"], [1043, 2, 0, "-", "mesh_product"], [1053, 2, 0, "-", "meshes"], [1179, 2, 0, "-", "plot"], [1208, 2, 0, "-", "tools"], [1220, 2, 0, "-", "wrapped_aux"]], "triqs.gf.backwd_compat": [[663, 2, 0, "-", "gf_imfreq"], [702, 2, 0, "-", "gf_imtime"], [741, 2, 0, "-", "gf_legendre"], [780, 2, 0, "-", "gf_refreq"], [819, 2, 0, "-", "gf_retime"]], "triqs.gf.backwd_compat.gf_imfreq": [[664, 0, 1, "", "GfImFreq"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq": [[665, 1, 1, "", "__init__"], [666, 1, 1, "", "conjugate"], [667, 1, 1, "", "copy"], [668, 1, 1, "", "copy_from"], [669, 5, 1, "", "data"], [670, 1, 1, "", "density"], [671, 1, 1, "", "enforce_discontinuity"], [672, 1, 1, "", "fit_hermitian_tail"], [673, 1, 1, "", "fit_hermitian_tail_on_window"], [674, 1, 1, "", "fit_tail"], [675, 1, 1, "", "fit_tail_on_window"], [676, 1, 1, "", "from_L_G_R"], [677, 5, 1, "", "imag"], [678, 5, 1, "", "indices"], [679, 1, 1, "", "inverse"], [680, 1, 1, "", "invert"], [681, 1, 1, "", "is_gf_hermitian"], [682, 1, 1, "", "is_gf_real_in_tau"], [683, 5, 1, "", "mesh"], [684, 5, 1, "", "rank"], [685, 5, 1, "", "real"], [686, 1, 1, "", "rebinning_tau"], [687, 1, 1, "", "replace_by_tail"], [688, 1, 1, "", "replace_by_tail_in_fit_window"], [689, 1, 1, "", "set_from_fourier"], [690, 1, 1, "", "set_from_imfreq"], [691, 1, 1, "", "set_from_imtime"], [692, 1, 1, "", "set_from_legendre"], [693, 1, 1, "", "set_from_pade"], [694, 5, 1, "", "target_indices"], [695, 5, 1, "", "target_rank"], [696, 5, 1, "", "target_shape"], [697, 1, 1, "", "tau_L2_norm"], [698, 1, 1, "", "total_density"], [699, 1, 1, "", "transpose"], [700, 1, 1, "", "x_data_view"], [701, 1, 1, "", "zero"]], "triqs.gf.backwd_compat.gf_imtime": [[703, 0, 1, "", "GfImTime"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime": [[704, 1, 1, "", "__init__"], [705, 1, 1, "", "conjugate"], [706, 1, 1, "", "copy"], [707, 1, 1, "", "copy_from"], [708, 5, 1, "", "data"], [709, 1, 1, "", "density"], [710, 1, 1, "", "enforce_discontinuity"], [711, 1, 1, "", "fit_hermitian_tail"], [712, 1, 1, "", "fit_hermitian_tail_on_window"], [713, 1, 1, "", "fit_tail"], [714, 1, 1, "", "fit_tail_on_window"], [715, 1, 1, "", "from_L_G_R"], [716, 5, 1, "", "imag"], [717, 5, 1, "", "indices"], [718, 1, 1, "", "inverse"], [719, 1, 1, "", "invert"], [720, 1, 1, "", "is_gf_hermitian"], [721, 1, 1, "", "is_gf_real_in_tau"], [722, 5, 1, "", "mesh"], [723, 5, 1, "", "rank"], [724, 5, 1, "", "real"], [725, 1, 1, "", "rebinning_tau"], [726, 1, 1, "", "replace_by_tail"], [727, 1, 1, "", "replace_by_tail_in_fit_window"], [728, 1, 1, "", "set_from_fourier"], [729, 1, 1, "", "set_from_imfreq"], [730, 1, 1, "", "set_from_imtime"], [731, 1, 1, "", "set_from_legendre"], [732, 1, 1, "", "set_from_pade"], [733, 5, 1, "", "target_indices"], [734, 5, 1, "", "target_rank"], [735, 5, 1, "", "target_shape"], [736, 1, 1, "", "tau_L2_norm"], [737, 1, 1, "", "total_density"], [738, 1, 1, "", "transpose"], [739, 1, 1, "", "x_data_view"], [740, 1, 1, "", "zero"]], "triqs.gf.backwd_compat.gf_legendre": [[742, 0, 1, "", "GfLegendre"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre": [[743, 1, 1, "", "__init__"], [744, 1, 1, "", "conjugate"], [745, 1, 1, "", "copy"], [746, 1, 1, "", "copy_from"], [747, 5, 1, "", "data"], [748, 1, 1, "", "density"], [749, 1, 1, "", "enforce_discontinuity"], [750, 1, 1, "", "fit_hermitian_tail"], [751, 1, 1, "", "fit_hermitian_tail_on_window"], [752, 1, 1, "", "fit_tail"], [753, 1, 1, "", "fit_tail_on_window"], [754, 1, 1, "", "from_L_G_R"], [755, 5, 1, "", "imag"], [756, 5, 1, "", "indices"], [757, 1, 1, "", "inverse"], [758, 1, 1, "", "invert"], [759, 1, 1, "", "is_gf_hermitian"], [760, 1, 1, "", "is_gf_real_in_tau"], [761, 5, 1, "", "mesh"], [762, 5, 1, "", "rank"], [763, 5, 1, "", "real"], [764, 1, 1, "", "rebinning_tau"], [765, 1, 1, "", "replace_by_tail"], [766, 1, 1, "", "replace_by_tail_in_fit_window"], [767, 1, 1, "", "set_from_fourier"], [768, 1, 1, "", "set_from_imfreq"], [769, 1, 1, "", "set_from_imtime"], [770, 1, 1, "", "set_from_legendre"], [771, 1, 1, "", "set_from_pade"], [772, 5, 1, "", "target_indices"], [773, 5, 1, "", "target_rank"], [774, 5, 1, "", "target_shape"], [775, 1, 1, "", "tau_L2_norm"], [776, 1, 1, "", "total_density"], [777, 1, 1, "", "transpose"], [778, 1, 1, "", "x_data_view"], [779, 1, 1, "", "zero"]], "triqs.gf.backwd_compat.gf_refreq": [[781, 0, 1, "", "GfReFreq"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq": [[782, 1, 1, "", "__init__"], [783, 1, 1, "", "conjugate"], [784, 1, 1, "", "copy"], [785, 1, 1, "", "copy_from"], [786, 5, 1, "", "data"], [787, 1, 1, "", "density"], [788, 1, 1, "", "enforce_discontinuity"], [789, 1, 1, "", "fit_hermitian_tail"], [790, 1, 1, "", "fit_hermitian_tail_on_window"], [791, 1, 1, "", "fit_tail"], [792, 1, 1, "", "fit_tail_on_window"], [793, 1, 1, "", "from_L_G_R"], [794, 5, 1, "", "imag"], [795, 5, 1, "", "indices"], [796, 1, 1, "", "inverse"], [797, 1, 1, "", "invert"], [798, 1, 1, "", "is_gf_hermitian"], [799, 1, 1, "", "is_gf_real_in_tau"], [800, 5, 1, "", "mesh"], [801, 5, 1, "", "rank"], [802, 5, 1, "", "real"], [803, 1, 1, "", "rebinning_tau"], [804, 1, 1, "", "replace_by_tail"], [805, 1, 1, "", "replace_by_tail_in_fit_window"], [806, 1, 1, "", "set_from_fourier"], [807, 1, 1, "", "set_from_imfreq"], [808, 1, 1, "", "set_from_imtime"], [809, 1, 1, "", "set_from_legendre"], [810, 1, 1, "", "set_from_pade"], [811, 5, 1, "", "target_indices"], [812, 5, 1, "", "target_rank"], [813, 5, 1, "", "target_shape"], [814, 1, 1, "", "tau_L2_norm"], [815, 1, 1, "", "total_density"], [816, 1, 1, "", "transpose"], [817, 1, 1, "", "x_data_view"], [818, 1, 1, "", "zero"]], "triqs.gf.backwd_compat.gf_retime": [[820, 0, 1, "", "GfReTime"]], "triqs.gf.backwd_compat.gf_retime.GfReTime": [[821, 1, 1, "", "__init__"], [822, 1, 1, "", "conjugate"], [823, 1, 1, "", "copy"], [824, 1, 1, "", "copy_from"], [825, 5, 1, "", "data"], [826, 1, 1, "", "density"], [827, 1, 1, "", "enforce_discontinuity"], [828, 1, 1, "", "fit_hermitian_tail"], [829, 1, 1, "", "fit_hermitian_tail_on_window"], [830, 1, 1, "", "fit_tail"], [831, 1, 1, "", "fit_tail_on_window"], [832, 1, 1, "", "from_L_G_R"], [833, 5, 1, "", "imag"], [834, 5, 1, "", "indices"], [835, 1, 1, "", "inverse"], [836, 1, 1, "", "invert"], [837, 1, 1, "", "is_gf_hermitian"], [838, 1, 1, "", "is_gf_real_in_tau"], [839, 5, 1, "", "mesh"], [840, 5, 1, "", "rank"], [841, 5, 1, "", "real"], [842, 1, 1, "", "rebinning_tau"], [843, 1, 1, "", "replace_by_tail"], [844, 1, 1, "", "replace_by_tail_in_fit_window"], [845, 1, 1, "", "set_from_fourier"], [846, 1, 1, "", "set_from_imfreq"], [847, 1, 1, "", "set_from_imtime"], [848, 1, 1, "", "set_from_legendre"], [849, 1, 1, "", "set_from_pade"], [850, 5, 1, "", "target_indices"], [851, 5, 1, "", "target_rank"], [852, 5, 1, "", "target_shape"], [853, 1, 1, "", "tau_L2_norm"], [854, 1, 1, "", "total_density"], [855, 1, 1, "", "transpose"], [856, 1, 1, "", "x_data_view"], [857, 1, 1, "", "zero"]], "triqs.gf.block2_gf": [[859, 0, 1, "", "Block2Gf"]], "triqs.gf.block2_gf.Block2Gf": [[860, 1, 1, "", "__init__"], [861, 5, 1, "", "all_indices"], [862, 1, 1, "", "copy"], [863, 1, 1, "", "copy_from"], [864, 1, 1, "", "copy_selected_blocks"], [865, 5, 1, "", "imag"], [866, 5, 1, "", "indices"], [867, 5, 1, "", "indices1"], [868, 5, 1, "", "indices2"], [869, 5, 1, "", "n_blocks"], [870, 5, 1, "", "real"], [871, 1, 1, "", "view_selected_blocks"], [872, 1, 1, "", "zero"]], "triqs.gf.block_gf": [[874, 0, 1, "", "BlockGf"], [896, 3, 1, "", "call_factory_from_dict"], [897, 3, 1, "", "fix_gf_struct_type"]], "triqs.gf.block_gf.BlockGf": [[875, 1, 1, "", "__init__"], [876, 5, 1, "", "all_indices"], [877, 5, 1, "", "beta"], [878, 1, 1, "", "conjugate"], [879, 1, 1, "", "copy"], [880, 1, 1, "", "copy_from"], [881, 1, 1, "", "copy_selected_blocks"], [882, 1, 1, "", "density"], [883, 5, 1, "", "imag"], [884, 5, 1, "", "indices"], [885, 1, 1, "", "inverse"], [886, 1, 1, "", "invert"], [887, 1, 1, "", "load"], [888, 5, 1, "", "mesh"], [889, 5, 1, "", "n_blocks"], [890, 5, 1, "", "real"], [891, 1, 1, "", "save"], [892, 1, 1, "", "total_density"], [893, 1, 1, "", "transpose"], [894, 1, 1, "", "view_selected_blocks"], [895, 1, 1, "", "zero"]], "triqs.gf.descriptor_base": [[899, 0, 1, "", "Base"], [901, 0, 1, "", "BaseBlock"], [904, 0, 1, "", "Const"], [906, 0, 1, "", "Function"], [908, 0, 1, "", "LazyCTX"], [910, 0, 1, "", "Omega_"], [912, 3, 1, "", "convert_scalar_to_const"], [913, 3, 1, "", "is_lazy"], [914, 3, 1, "", "is_scalar"]], "triqs.gf.descriptor_base.Base": [[900, 1, 1, "", "__init__"]], "triqs.gf.descriptor_base.BaseBlock": [[902, 1, 1, "", "__init__"], [903, 1, 1, "", "is_block_descriptor"]], "triqs.gf.descriptor_base.Const": [[905, 1, 1, "", "__init__"]], "triqs.gf.descriptor_base.Function": [[907, 1, 1, "", "__init__"]], "triqs.gf.descriptor_base.LazyCTX": [[909, 1, 1, "", "__init__"]], "triqs.gf.descriptor_base.Omega_": [[911, 1, 1, "", "__init__"]], "triqs.gf.descriptors": [[916, 0, 1, "", "Flat"], [918, 0, 1, "", "Fourier"], [921, 0, 1, "", "LegendreToMatsubara"], [924, 0, 1, "", "MatsubaraToLegendre"], [550, 0, 1, "", "Omega"], [927, 0, 1, "", "OneFermionInTime"], [929, 0, 1, "", "SemiCircular"], [931, 4, 1, "", "Wilson"], [933, 3, 1, "", "semi"]], "triqs.gf.descriptors.Flat": [[917, 1, 1, "", "__init__"]], "triqs.gf.descriptors.Fourier": [[919, 1, 1, "", "__init__"], [920, 1, 1, "", "is_block_descriptor"]], "triqs.gf.descriptors.LegendreToMatsubara": [[922, 1, 1, "", "__init__"], [923, 1, 1, "", "is_block_descriptor"]], "triqs.gf.descriptors.MatsubaraToLegendre": [[925, 1, 1, "", "__init__"], [926, 1, 1, "", "is_block_descriptor"]], "triqs.gf.descriptors.OneFermionInTime": [[928, 1, 1, "", "__init__"]], "triqs.gf.descriptors.SemiCircular": [[930, 1, 1, "", "__init__"]], "triqs.gf.descriptors.Wilson": [[932, 1, 1, "", "__init__"]], "triqs.gf.dlr_crm_dyson_solver": [[935, 3, 1, "", "minimize_dyson"]], "triqs.gf.gf": [[937, 0, 1, "", "AddMethod"], [940, 0, 1, "", "CallProxyNone"], [942, 0, 1, "", "Gf"], [980, 0, 1, "", "Idx"], [982, 3, 1, "", "add_method_helper"], [983, 3, 1, "", "bckwd"], [984, 3, 1, "", "call_factory_from_dict"]], "triqs.gf.gf.AddMethod": [[938, 1, 1, "", "__init__"], [939, 1, 1, "", "mro"]], "triqs.gf.gf.CallProxyNone": [[941, 1, 1, "", "__init__"]], "triqs.gf.gf.Gf": [[943, 1, 1, "", "__init__"], [944, 1, 1, "", "conjugate"], [945, 1, 1, "", "copy"], [946, 1, 1, "", "copy_from"], [947, 5, 1, "", "data"], [948, 1, 1, "", "density"], [949, 1, 1, "", "enforce_discontinuity"], [950, 1, 1, "", "fit_hermitian_tail"], [951, 1, 1, "", "fit_hermitian_tail_on_window"], [952, 1, 1, "", "fit_tail"], [953, 1, 1, "", "fit_tail_on_window"], [954, 1, 1, "", "from_L_G_R"], [955, 5, 1, "", "imag"], [956, 5, 1, "", "indices"], [957, 1, 1, "", "inverse"], [958, 1, 1, "", "invert"], [959, 1, 1, "", "is_gf_hermitian"], [960, 1, 1, "", "is_gf_real_in_tau"], [961, 5, 1, "", "mesh"], [962, 5, 1, "", "rank"], [963, 5, 1, "", "real"], [964, 1, 1, "", "rebinning_tau"], [965, 1, 1, "", "replace_by_tail"], [966, 1, 1, "", "replace_by_tail_in_fit_window"], [967, 1, 1, "", "set_from_fourier"], [968, 1, 1, "", "set_from_imfreq"], [969, 1, 1, "", "set_from_imtime"], [970, 1, 1, "", "set_from_legendre"], [971, 1, 1, "", "set_from_pade"], [972, 5, 1, "", "target_indices"], [973, 5, 1, "", "target_rank"], [974, 5, 1, "", "target_shape"], [975, 1, 1, "", "tau_L2_norm"], [976, 1, 1, "", "total_density"], [977, 1, 1, "", "transpose"], [978, 1, 1, "", "x_data_view"], [979, 1, 1, "", "zero"]], "triqs.gf.gf.Idx": [[981, 1, 1, "", "__init__"]], "triqs.gf.gf_factories": [[986, 3, 1, "", "fit_gf_dlr"], [987, 3, 1, "", "make_gf_dlr"], [988, 3, 1, "", "make_gf_dlr_imfreq"], [989, 3, 1, "", "make_gf_dlr_imtime"], [990, 3, 1, "", "make_gf_from_fourier"], [991, 3, 1, "", "make_gf_imfreq"], [992, 3, 1, "", "make_gf_imtime"], [993, 3, 1, "", "make_hermitian"], [994, 3, 1, "", "make_real_in_tau"]], "triqs.gf.gf_fnt": [[996, 3, 1, "", "density"], [997, 3, 1, "", "enforce_discontinuity"], [998, 3, 1, "", "fit_hermitian_tail"], [999, 3, 1, "", "fit_hermitian_tail_on_window"], [1000, 3, 1, "", "fit_tail"], [1001, 3, 1, "", "fit_tail_on_window"], [1002, 3, 1, "", "is_gf_hermitian"], [1003, 3, 1, "", "is_gf_real_in_tau"], [1004, 3, 1, "", "rebinning_tau"], [1005, 3, 1, "", "replace_by_tail"], [1006, 3, 1, "", "replace_by_tail_in_fit_window"], [1007, 3, 1, "", "set_from_fourier"], [1008, 3, 1, "", "set_from_imfreq"], [1009, 3, 1, "", "set_from_imtime"], [1010, 3, 1, "", "set_from_legendre"], [1011, 3, 1, "", "set_from_pade"], [1012, 3, 1, "", "tau_L2_norm"]], "triqs.gf.lazy_expressions": [[1014, 0, 1, "", "LazyExpr"], [1020, 0, 1, "", "LazyExprTerminal"], [1022, 3, 1, "", "all_terminals"], [1023, 3, 1, "", "eval_expr"], [1024, 3, 1, "", "eval_expr_with_context"], [1025, 3, 1, "", "lazy_function"], [1026, 3, 1, "", "make_lazy"], [1027, 3, 1, "", "transform"]], "triqs.gf.lazy_expressions.LazyExpr": [[1015, 1, 1, "", "__init__"], [1016, 1, 1, "", "copy"], [1017, 1, 1, "", "get_terminal"], [1018, 1, 1, "", "is_terminal"], [1019, 1, 1, "", "set_from"]], "triqs.gf.lazy_expressions.LazyExprTerminal": [[1021, 1, 1, "", "__init__"]], "triqs.gf.matsubara_freq": [[1030, 0, 1, "", "MatsubaraFreq"]], "triqs.gf.matsubara_freq.MatsubaraFreq": [[1031, 1, 1, "", "__init__"], [1030, 4, 1, "", "beta"], [1032, 5, 1, "", "imag"], [1033, 5, 1, "", "index"], [1030, 4, 1, "", "n"], [1034, 5, 1, "", "real"], [1030, 4, 1, "", "statistic"], [1035, 5, 1, "", "value"]], "triqs.gf.mesh_point": [[1037, 0, 1, "", "MeshPoint"], [1041, 0, 1, "", "MeshValueGenerator"]], "triqs.gf.mesh_point.MeshPoint": [[1038, 1, 1, "", "__init__"], [1039, 5, 1, "", "imag"], [1040, 5, 1, "", "real"]], "triqs.gf.mesh_point.MeshValueGenerator": [[1042, 1, 1, "", "__init__"]], "triqs.gf.mesh_product": [[1044, 0, 1, "", "MeshProduct"], [1052, 3, 1, "", "call_factory_from_dict"]], "triqs.gf.mesh_product.MeshProduct": [[1045, 1, 1, "", "__init__"], [1046, 5, 1, "", "components"], [1047, 1, 1, "", "copy"], [1048, 1, 1, "", "copy_from"], [1049, 5, 1, "", "rank"], [1050, 1, 1, "", "size_of_components"], [1051, 1, 1, "", "to_data_index"]], "triqs.gf.meshes": [[1054, 0, 1, "", "MeshBrZone"], [1067, 0, 1, "", "MeshCycLat"], [1079, 0, 1, "", "MeshDLR"], [1092, 0, 1, "", "MeshDLRImFreq"], [1105, 0, 1, "", "MeshDLRImTime"], [1118, 0, 1, "", "MeshImFreq"], [1134, 0, 1, "", "MeshImTime"], [1145, 0, 1, "", "MeshLegendre"], [1154, 0, 1, "", "MeshReFreq"], [1166, 0, 1, "", "MeshReTime"], [1178, 3, 1, "", "make_adjoint_mesh"]], "triqs.gf.meshes.MeshBrZone": [[1055, 1, 1, "", "__init__"], [1056, 4, 1, "", "bz"], [1057, 1, 1, "", "closest_index"], [1058, 1, 1, "", "copy"], [1059, 1, 1, "", "copy_from"], [1060, 4, 1, "", "dims"], [1061, 4, 1, "", "mesh_hash"], [1062, 1, 1, "", "to_data_index"], [1063, 1, 1, "", "to_index"], [1064, 1, 1, "", "to_value"], [1065, 4, 1, "", "units"], [1066, 1, 1, "", "values"]], "triqs.gf.meshes.MeshCycLat": [[1068, 1, 1, "", "__init__"], [1069, 1, 1, "", "copy"], [1070, 1, 1, "", "copy_from"], [1071, 4, 1, "", "dims"], [1072, 4, 1, "", "lattice"], [1073, 4, 1, "", "mesh_hash"], [1074, 1, 1, "", "to_data_index"], [1075, 1, 1, "", "to_index"], [1076, 1, 1, "", "to_value"], [1077, 4, 1, "", "units"], [1078, 1, 1, "", "values"]], "triqs.gf.meshes.MeshDLR": [[1080, 1, 1, "", "__init__"], [1081, 4, 1, "", "beta"], [1082, 1, 1, "", "copy"], [1083, 1, 1, "", "copy_from"], [1084, 4, 1, "", "eps"], [1085, 4, 1, "", "mesh_hash"], [1086, 4, 1, "", "statistic"], [1087, 1, 1, "", "to_data_index"], [1088, 1, 1, "", "to_index"], [1089, 1, 1, "", "to_value"], [1090, 1, 1, "", "values"], [1091, 4, 1, "", "w_max"]], "triqs.gf.meshes.MeshDLRImFreq": [[1093, 1, 1, "", "__init__"], [1094, 4, 1, "", "beta"], [1095, 1, 1, "", "copy"], [1096, 1, 1, "", "copy_from"], [1097, 4, 1, "", "eps"], [1098, 4, 1, "", "mesh_hash"], [1099, 4, 1, "", "statistic"], [1100, 1, 1, "", "to_data_index"], [1101, 1, 1, "", "to_index"], [1102, 1, 1, "", "to_value"], [1103, 1, 1, "", "values"], [1104, 4, 1, "", "w_max"]], "triqs.gf.meshes.MeshDLRImTime": [[1106, 1, 1, "", "__init__"], [1107, 4, 1, "", "beta"], [1108, 1, 1, "", "copy"], [1109, 1, 1, "", "copy_from"], [1110, 4, 1, "", "eps"], [1111, 4, 1, "", "mesh_hash"], [1112, 4, 1, "", "statistic"], [1113, 1, 1, "", "to_data_index"], [1114, 1, 1, "", "to_index"], [1115, 1, 1, "", "to_value"], [1116, 1, 1, "", "values"], [1117, 4, 1, "", "w_max"]], "triqs.gf.meshes.MeshImFreq": [[1119, 1, 1, "", "__init__"], [1120, 4, 1, "", "beta"], [1121, 1, 1, "", "copy"], [1122, 1, 1, "", "copy_from"], [1123, 1, 1, "", "first_index"], [1124, 1, 1, "", "last_index"], [1125, 4, 1, "", "mesh_hash"], [1126, 4, 1, "", "n_iw"], [1127, 1, 1, "", "positive_only"], [1128, 1, 1, "", "set_tail_fit_parameters"], [1129, 4, 1, "", "statistic"], [1130, 1, 1, "", "to_data_index"], [1131, 1, 1, "", "to_index"], [1132, 1, 1, "", "to_value"], [1133, 1, 1, "", "values"]], "triqs.gf.meshes.MeshImTime": [[1135, 1, 1, "", "__init__"], [1136, 4, 1, "", "beta"], [1137, 1, 1, "", "copy"], [1138, 1, 1, "", "copy_from"], [1139, 4, 1, "", "mesh_hash"], [1140, 4, 1, "", "statistic"], [1141, 1, 1, "", "to_data_index"], [1142, 1, 1, "", "to_index"], [1143, 1, 1, "", "to_value"], [1144, 1, 1, "", "values"]], "triqs.gf.meshes.MeshLegendre": [[1146, 1, 1, "", "__init__"], [1147, 4, 1, "", "beta"], [1148, 1, 1, "", "copy"], [1149, 1, 1, "", "copy_from"], [1150, 4, 1, "", "mesh_hash"], [1151, 4, 1, "", "statistic"], [1152, 1, 1, "", "to_data_index"], [1153, 1, 1, "", "to_index"]], "triqs.gf.meshes.MeshReFreq": [[1155, 1, 1, "", "__init__"], [1156, 1, 1, "", "copy"], [1157, 1, 1, "", "copy_from"], [1158, 4, 1, "", "delta"], [1159, 4, 1, "", "mesh_hash"], [1160, 1, 1, "", "to_data_index"], [1161, 1, 1, "", "to_index"], [1162, 1, 1, "", "to_value"], [1163, 1, 1, "", "values"], [1164, 4, 1, "", "w_max"], [1165, 4, 1, "", "w_min"]], "triqs.gf.meshes.MeshReTime": [[1167, 1, 1, "", "__init__"], [1168, 1, 1, "", "copy"], [1169, 1, 1, "", "copy_from"], [1170, 4, 1, "", "delta"], [1171, 4, 1, "", "mesh_hash"], [1172, 4, 1, "", "t_max"], [1173, 4, 1, "", "t_min"], [1174, 1, 1, "", "to_data_index"], [1175, 1, 1, "", "to_index"], [1176, 1, 1, "", "to_value"], [1177, 1, 1, "", "values"]], "triqs.gf.plot": [[1180, 2, 0, "-", "bz"], [1188, 2, 0, "-", "bz_x_x"], [1191, 3, 1, "", "dispatcher"], [1192, 2, 0, "-", "one_var"], [1200, 2, 0, "-", "plot_base"], [1202, 2, 0, "-", "select_indices"]], "triqs.gf.plot.bz": [[1181, 3, 1, "", "dist"], [1182, 3, 1, "", "generate_points"], [1183, 3, 1, "", "generate_points_on_path"], [1184, 3, 1, "", "length"], [1185, 3, 1, "", "make_plottable"], [1186, 3, 1, "", "plot"], [1187, 3, 1, "", "slice_on_path"]], "triqs.gf.plot.bz_x_x": [[1189, 3, 1, "", "plot"], [1190, 3, 1, "", "plottable_slice_along_path"]], "triqs.gf.plot.one_var": [[1193, 3, 1, "", "dlr_imfreq"], [1194, 3, 1, "", "dlr_imtime"], [1195, 3, 1, "", "imfreq"], [1196, 3, 1, "", "imtime"], [1197, 3, 1, "", "legendre"], [1198, 3, 1, "", "refreq"], [1199, 3, 1, "", "retime"]], "triqs.gf.plot.plot_base": [[1201, 3, 1, "", "plot_base"]], "triqs.gf.plot.select_indices": [[1203, 3, 1, "", "closest_point_in_line"], [1204, 3, 1, "", "closest_to"], [1205, 3, 1, "", "dist"], [1206, 3, 1, "", "pick_selection_vec"], [1207, 3, 1, "", "select_path_indices"]], "triqs.gf.tools": [[1209, 3, 1, "", "conjugate"], [1210, 3, 1, "", "delta"], [1211, 3, 1, "", "discretize_bath"], [1212, 3, 1, "", "dyson"], [1213, 3, 1, "", "fit_legendre"], [1214, 3, 1, "", "inverse"], [1215, 3, 1, "", "make_delta"], [1216, 3, 1, "", "make_zero_tail"], [1217, 3, 1, "", "read_gf_from_txt"], [1218, 3, 1, "", "transpose"], [1219, 3, 1, "", "write_gf_to_txt"]], "triqs.gf.wrapped_aux": [[1221, 0, 1, "", "CallProxyBrZone_0"], [1223, 0, 1, "", "CallProxyBrZone_1"], [1225, 0, 1, "", "CallProxyBrZone_2"], [1227, 0, 1, "", "CallProxyBrZone_3"], [1229, 0, 1, "", "CallProxyBrZone_4"], [1231, 0, 1, "", "CallProxyBrZone_x_DLR_0"], [1233, 0, 1, "", "CallProxyBrZone_x_DLR_1"], [1235, 0, 1, "", "CallProxyBrZone_x_DLR_2"], [1237, 0, 1, "", "CallProxyBrZone_x_DLR_3"], [1239, 0, 1, "", "CallProxyBrZone_x_DLR_4"], [1241, 0, 1, "", "CallProxyBrZone_x_ImFreq_0"], [1243, 0, 1, "", "CallProxyBrZone_x_ImFreq_1"], [1245, 0, 1, "", "CallProxyBrZone_x_ImFreq_2"], [1247, 0, 1, "", "CallProxyBrZone_x_ImFreq_3"], [1249, 0, 1, "", "CallProxyBrZone_x_ImFreq_4"], [1251, 0, 1, "", "CallProxyBrZone_x_ImTime_0"], [1253, 0, 1, "", "CallProxyBrZone_x_ImTime_0_R"], [1255, 0, 1, "", "CallProxyBrZone_x_ImTime_1"], [1257, 0, 1, "", "CallProxyBrZone_x_ImTime_1_R"], [1259, 0, 1, "", "CallProxyBrZone_x_ImTime_2"], [1261, 0, 1, "", "CallProxyBrZone_x_ImTime_2_R"], [1263, 0, 1, "", "CallProxyBrZone_x_ImTime_3"], [1265, 0, 1, "", "CallProxyBrZone_x_ImTime_3_R"], [1267, 0, 1, "", "CallProxyBrZone_x_ImTime_4"], [1269, 0, 1, "", "CallProxyBrZone_x_ImTime_4_R"], [1271, 0, 1, "", "CallProxyBrZone_x_Legendre_0"], [1273, 0, 1, "", "CallProxyBrZone_x_Legendre_1"], [1275, 0, 1, "", "CallProxyBrZone_x_Legendre_2"], [1277, 0, 1, "", "CallProxyBrZone_x_Legendre_3"], [1279, 0, 1, "", "CallProxyBrZone_x_Legendre_4"], [1281, 0, 1, "", "CallProxyBrZone_x_ReFreq_0"], [1283, 0, 1, "", "CallProxyBrZone_x_ReFreq_1"], [1285, 0, 1, "", "CallProxyBrZone_x_ReFreq_2"], [1287, 0, 1, "", "CallProxyBrZone_x_ReFreq_3"], [1289, 0, 1, "", "CallProxyBrZone_x_ReFreq_4"], [1291, 0, 1, "", "CallProxyBrZone_x_ReTime_0"], [1293, 0, 1, "", "CallProxyBrZone_x_ReTime_1"], [1295, 0, 1, "", "CallProxyBrZone_x_ReTime_2"], [1297, 0, 1, "", "CallProxyBrZone_x_ReTime_3"], [1299, 0, 1, "", "CallProxyBrZone_x_ReTime_4"], [1301, 0, 1, "", "CallProxyCycLat_0"], [1303, 0, 1, "", "CallProxyCycLat_1"], [1305, 0, 1, "", "CallProxyCycLat_2"], [1307, 0, 1, "", "CallProxyCycLat_3"], [1309, 0, 1, "", "CallProxyCycLat_4"], [1311, 0, 1, "", "CallProxyCycLat_x_DLR_0"], [1313, 0, 1, "", "CallProxyCycLat_x_DLR_1"], [1315, 0, 1, "", "CallProxyCycLat_x_DLR_2"], [1317, 0, 1, "", "CallProxyCycLat_x_DLR_3"], [1319, 0, 1, "", "CallProxyCycLat_x_DLR_4"], [1321, 0, 1, "", "CallProxyCycLat_x_ImFreq_0"], [1323, 0, 1, "", "CallProxyCycLat_x_ImFreq_1"], [1325, 0, 1, "", "CallProxyCycLat_x_ImFreq_2"], [1327, 0, 1, "", "CallProxyCycLat_x_ImFreq_3"], [1329, 0, 1, "", "CallProxyCycLat_x_ImFreq_4"], [1331, 0, 1, "", "CallProxyCycLat_x_ImTime_0"], [1333, 0, 1, "", "CallProxyCycLat_x_ImTime_0_R"], [1335, 0, 1, "", "CallProxyCycLat_x_ImTime_1"], [1337, 0, 1, "", "CallProxyCycLat_x_ImTime_1_R"], [1339, 0, 1, "", "CallProxyCycLat_x_ImTime_2"], [1341, 0, 1, "", "CallProxyCycLat_x_ImTime_2_R"], [1343, 0, 1, "", "CallProxyCycLat_x_ImTime_3"], [1345, 0, 1, "", "CallProxyCycLat_x_ImTime_3_R"], [1347, 0, 1, "", "CallProxyCycLat_x_ImTime_4"], [1349, 0, 1, "", "CallProxyCycLat_x_ImTime_4_R"], [1351, 0, 1, "", "CallProxyCycLat_x_Legendre_0"], [1353, 0, 1, "", "CallProxyCycLat_x_Legendre_1"], [1355, 0, 1, "", "CallProxyCycLat_x_Legendre_2"], [1357, 0, 1, "", "CallProxyCycLat_x_Legendre_3"], [1359, 0, 1, "", "CallProxyCycLat_x_Legendre_4"], [1361, 0, 1, "", "CallProxyCycLat_x_ReFreq_0"], [1363, 0, 1, "", "CallProxyCycLat_x_ReFreq_1"], [1365, 0, 1, "", "CallProxyCycLat_x_ReFreq_2"], [1367, 0, 1, "", "CallProxyCycLat_x_ReFreq_3"], [1369, 0, 1, "", "CallProxyCycLat_x_ReFreq_4"], [1371, 0, 1, "", "CallProxyCycLat_x_ReTime_0"], [1373, 0, 1, "", "CallProxyCycLat_x_ReTime_1"], [1375, 0, 1, "", "CallProxyCycLat_x_ReTime_2"], [1377, 0, 1, "", "CallProxyCycLat_x_ReTime_3"], [1379, 0, 1, "", "CallProxyCycLat_x_ReTime_4"], [1381, 0, 1, "", "CallProxyDLR_0"], [1383, 0, 1, "", "CallProxyDLR_1"], [1385, 0, 1, "", "CallProxyDLR_2"], [1387, 0, 1, "", "CallProxyDLR_3"], [1389, 0, 1, "", "CallProxyDLR_4"], [1391, 0, 1, "", "CallProxyDLR_x_BrZone_0"], [1393, 0, 1, "", "CallProxyDLR_x_BrZone_1"], [1395, 0, 1, "", "CallProxyDLR_x_BrZone_2"], [1397, 0, 1, "", "CallProxyDLR_x_BrZone_3"], [1399, 0, 1, "", "CallProxyDLR_x_BrZone_4"], [1401, 0, 1, "", "CallProxyDLR_x_CycLat_0"], [1403, 0, 1, "", "CallProxyDLR_x_CycLat_1"], [1405, 0, 1, "", "CallProxyDLR_x_CycLat_2"], [1407, 0, 1, "", "CallProxyDLR_x_CycLat_3"], [1409, 0, 1, "", "CallProxyDLR_x_CycLat_4"], [1411, 0, 1, "", "CallProxyImFreq_0"], [1413, 0, 1, "", "CallProxyImFreq_1"], [1415, 0, 1, "", "CallProxyImFreq_2"], [1417, 0, 1, "", "CallProxyImFreq_3"], [1419, 0, 1, "", "CallProxyImFreq_4"], [1421, 0, 1, "", "CallProxyImFreq_x_BrZone_0"], [1423, 0, 1, "", "CallProxyImFreq_x_BrZone_1"], [1425, 0, 1, "", "CallProxyImFreq_x_BrZone_2"], [1427, 0, 1, "", "CallProxyImFreq_x_BrZone_3"], [1429, 0, 1, "", "CallProxyImFreq_x_BrZone_4"], [1431, 0, 1, "", "CallProxyImFreq_x_CycLat_0"], [1433, 0, 1, "", "CallProxyImFreq_x_CycLat_1"], [1435, 0, 1, "", "CallProxyImFreq_x_CycLat_2"], [1437, 0, 1, "", "CallProxyImFreq_x_CycLat_3"], [1439, 0, 1, "", "CallProxyImFreq_x_CycLat_4"], [1441, 0, 1, "", "CallProxyImTime_0"], [1443, 0, 1, "", "CallProxyImTime_0_R"], [1445, 0, 1, "", "CallProxyImTime_1"], [1447, 0, 1, "", "CallProxyImTime_1_R"], [1449, 0, 1, "", "CallProxyImTime_2"], [1451, 0, 1, "", "CallProxyImTime_2_R"], [1453, 0, 1, "", "CallProxyImTime_3"], [1455, 0, 1, "", "CallProxyImTime_3_R"], [1457, 0, 1, "", "CallProxyImTime_4"], [1459, 0, 1, "", "CallProxyImTime_4_R"], [1461, 0, 1, "", "CallProxyImTime_x_BrZone_0"], [1463, 0, 1, "", "CallProxyImTime_x_BrZone_0_R"], [1465, 0, 1, "", "CallProxyImTime_x_BrZone_1"], [1467, 0, 1, "", "CallProxyImTime_x_BrZone_1_R"], [1469, 0, 1, "", "CallProxyImTime_x_BrZone_2"], [1471, 0, 1, "", "CallProxyImTime_x_BrZone_2_R"], [1473, 0, 1, "", "CallProxyImTime_x_BrZone_3"], [1475, 0, 1, "", "CallProxyImTime_x_BrZone_3_R"], [1477, 0, 1, "", "CallProxyImTime_x_BrZone_4"], [1479, 0, 1, "", "CallProxyImTime_x_BrZone_4_R"], [1481, 0, 1, "", "CallProxyImTime_x_CycLat_0"], [1483, 0, 1, "", "CallProxyImTime_x_CycLat_0_R"], [1485, 0, 1, "", "CallProxyImTime_x_CycLat_1"], [1487, 0, 1, "", "CallProxyImTime_x_CycLat_1_R"], [1489, 0, 1, "", "CallProxyImTime_x_CycLat_2"], [1491, 0, 1, "", "CallProxyImTime_x_CycLat_2_R"], [1493, 0, 1, "", "CallProxyImTime_x_CycLat_3"], [1495, 0, 1, "", "CallProxyImTime_x_CycLat_3_R"], [1497, 0, 1, "", "CallProxyImTime_x_CycLat_4"], [1499, 0, 1, "", "CallProxyImTime_x_CycLat_4_R"], [1501, 0, 1, "", "CallProxyLegendre_0"], [1503, 0, 1, "", "CallProxyLegendre_1"], [1505, 0, 1, "", "CallProxyLegendre_2"], [1507, 0, 1, "", "CallProxyLegendre_3"], [1509, 0, 1, "", "CallProxyLegendre_4"], [1511, 0, 1, "", "CallProxyLegendre_x_BrZone_0"], [1513, 0, 1, "", "CallProxyLegendre_x_BrZone_1"], [1515, 0, 1, "", "CallProxyLegendre_x_BrZone_2"], [1517, 0, 1, "", "CallProxyLegendre_x_BrZone_3"], [1519, 0, 1, "", "CallProxyLegendre_x_BrZone_4"], [1521, 0, 1, "", "CallProxyLegendre_x_CycLat_0"], [1523, 0, 1, "", "CallProxyLegendre_x_CycLat_1"], [1525, 0, 1, "", "CallProxyLegendre_x_CycLat_2"], [1527, 0, 1, "", "CallProxyLegendre_x_CycLat_3"], [1529, 0, 1, "", "CallProxyLegendre_x_CycLat_4"], [1531, 0, 1, "", "CallProxyReFreq_0"], [1533, 0, 1, "", "CallProxyReFreq_1"], [1535, 0, 1, "", "CallProxyReFreq_2"], [1537, 0, 1, "", "CallProxyReFreq_3"], [1539, 0, 1, "", "CallProxyReFreq_4"], [1541, 0, 1, "", "CallProxyReFreq_x_BrZone_0"], [1543, 0, 1, "", "CallProxyReFreq_x_BrZone_1"], [1545, 0, 1, "", "CallProxyReFreq_x_BrZone_2"], [1547, 0, 1, "", "CallProxyReFreq_x_BrZone_3"], [1549, 0, 1, "", "CallProxyReFreq_x_BrZone_4"], [1551, 0, 1, "", "CallProxyReFreq_x_CycLat_0"], [1553, 0, 1, "", "CallProxyReFreq_x_CycLat_1"], [1555, 0, 1, "", "CallProxyReFreq_x_CycLat_2"], [1557, 0, 1, "", "CallProxyReFreq_x_CycLat_3"], [1559, 0, 1, "", "CallProxyReFreq_x_CycLat_4"], [1561, 0, 1, "", "CallProxyReTime_0"], [1563, 0, 1, "", "CallProxyReTime_1"], [1565, 0, 1, "", "CallProxyReTime_2"], [1567, 0, 1, "", "CallProxyReTime_3"], [1569, 0, 1, "", "CallProxyReTime_4"], [1571, 0, 1, "", "CallProxyReTime_x_BrZone_0"], [1573, 0, 1, "", "CallProxyReTime_x_BrZone_1"], [1575, 0, 1, "", "CallProxyReTime_x_BrZone_2"], [1577, 0, 1, "", "CallProxyReTime_x_BrZone_3"], [1579, 0, 1, "", "CallProxyReTime_x_BrZone_4"], [1581, 0, 1, "", "CallProxyReTime_x_CycLat_0"], [1583, 0, 1, "", "CallProxyReTime_x_CycLat_1"], [1585, 0, 1, "", "CallProxyReTime_x_CycLat_2"], [1587, 0, 1, "", "CallProxyReTime_x_CycLat_3"], [1589, 0, 1, "", "CallProxyReTime_x_CycLat_4"], [1591, 3, 1, "", "set_from_gf_data_mul_LR"]], "triqs.gf.wrapped_aux.CallProxyBrZone_0": [[1222, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_1": [[1224, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_2": [[1226, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_3": [[1228, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_4": [[1230, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0": [[1232, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1": [[1234, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2": [[1236, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3": [[1238, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4": [[1240, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0": [[1242, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1": [[1244, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2": [[1246, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3": [[1248, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4": [[1250, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0": [[1252, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R": [[1254, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1": [[1256, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R": [[1258, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2": [[1260, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R": [[1262, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3": [[1264, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R": [[1266, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4": [[1268, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R": [[1270, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0": [[1272, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1": [[1274, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2": [[1276, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3": [[1278, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4": [[1280, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0": [[1282, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1": [[1284, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2": [[1286, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3": [[1288, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4": [[1290, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0": [[1292, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1": [[1294, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2": [[1296, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3": [[1298, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4": [[1300, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_0": [[1302, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_1": [[1304, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_2": [[1306, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_3": [[1308, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_4": [[1310, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0": [[1312, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1": [[1314, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2": [[1316, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3": [[1318, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4": [[1320, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0": [[1322, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1": [[1324, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2": [[1326, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3": [[1328, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4": [[1330, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0": [[1332, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R": [[1334, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1": [[1336, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R": [[1338, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2": [[1340, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R": [[1342, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3": [[1344, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R": [[1346, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4": [[1348, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R": [[1350, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0": [[1352, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1": [[1354, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2": [[1356, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3": [[1358, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4": [[1360, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0": [[1362, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1": [[1364, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2": [[1366, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3": [[1368, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4": [[1370, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0": [[1372, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1": [[1374, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2": [[1376, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3": [[1378, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4": [[1380, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_0": [[1382, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_1": [[1384, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_2": [[1386, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_3": [[1388, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_4": [[1390, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0": [[1392, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1": [[1394, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2": [[1396, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3": [[1398, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4": [[1400, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0": [[1402, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1": [[1404, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2": [[1406, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3": [[1408, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4": [[1410, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_0": [[1412, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_1": [[1414, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_2": [[1416, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_3": [[1418, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_4": [[1420, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0": [[1422, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1": [[1424, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2": [[1426, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3": [[1428, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4": [[1430, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0": [[1432, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1": [[1434, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2": [[1436, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3": [[1438, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4": [[1440, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_0": [[1442, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_0_R": [[1444, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_1": [[1446, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_1_R": [[1448, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_2": [[1450, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_2_R": [[1452, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_3": [[1454, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_3_R": [[1456, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_4": [[1458, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_4_R": [[1460, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0": [[1462, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R": [[1464, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1": [[1466, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R": [[1468, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2": [[1470, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R": [[1472, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3": [[1474, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R": [[1476, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4": [[1478, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R": [[1480, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0": [[1482, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R": [[1484, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1": [[1486, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R": [[1488, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2": [[1490, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R": [[1492, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3": [[1494, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R": [[1496, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4": [[1498, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R": [[1500, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_0": [[1502, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_1": [[1504, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_2": [[1506, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_3": [[1508, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_4": [[1510, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0": [[1512, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1": [[1514, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2": [[1516, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3": [[1518, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4": [[1520, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0": [[1522, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1": [[1524, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2": [[1526, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3": [[1528, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4": [[1530, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_0": [[1532, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_1": [[1534, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_2": [[1536, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_3": [[1538, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_4": [[1540, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0": [[1542, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1": [[1544, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2": [[1546, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3": [[1548, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4": [[1550, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0": [[1552, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1": [[1554, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2": [[1556, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3": [[1558, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4": [[1560, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_0": [[1562, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_1": [[1564, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_2": [[1566, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_3": [[1568, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_4": [[1570, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0": [[1572, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1": [[1574, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2": [[1576, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3": [[1578, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4": [[1580, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0": [[1582, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1": [[1584, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2": [[1586, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3": [[1588, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4": [[1590, 1, 1, "", "__init__"]], "triqs.lattice": [[1593, 2, 0, "-", "bz_patch"], [1597, 2, 0, "-", "lattice_tools"], [1621, 2, 0, "-", "point"], [1625, 2, 0, "-", "super_lattice"], [1645, 2, 0, "-", "tight_binding"], [1661, 2, 0, "-", "utils"]], "triqs.lattice.bz_patch": [[1594, 0, 1, "", "BZPatch"]], "triqs.lattice.bz_patch.BZPatch": [[1595, 1, 1, "", "__init__"], [1596, 1, 1, "", "dos"]], "triqs.lattice.lattice_tools": [[1598, 0, 1, "", "BravaisLattice"], [1606, 0, 1, "", "BrillouinZone"], [1611, 0, 1, "", "TightBinding"], [1619, 3, 1, "", "dos"], [1620, 3, 1, "", "dos_patch"]], "triqs.lattice.lattice_tools.BravaisLattice": [[1599, 1, 1, "", "__init__"], [1600, 1, 1, "", "lattice_to_real_coordinates"], [1601, 4, 1, "", "n_orbitals"], [1602, 4, 1, "", "ndim"], [1603, 4, 1, "", "orbital_names"], [1604, 4, 1, "", "orbital_positions"], [1605, 4, 1, "", "units"]], "triqs.lattice.lattice_tools.BrillouinZone": [[1607, 1, 1, "", "__init__"], [1608, 4, 1, "", "lattice"], [1609, 4, 1, "", "ndim"], [1610, 4, 1, "", "units"]], "triqs.lattice.lattice_tools.TightBinding": [[1612, 1, 1, "", "__init__"], [1613, 1, 1, "", "dispersion"], [1614, 4, 1, "", "displ_vec"], [1615, 1, 1, "", "fourier"], [1616, 4, 1, "", "lattice"], [1617, 1, 1, "", "lattice_to_real_coordinates"], [1618, 4, 1, "", "overlap_mat_vec"]], "triqs.lattice.point": [[1622, 0, 1, "", "LatticePoint"]], "triqs.lattice.point.LatticePoint": [[1623, 1, 1, "", "__init__"], [1622, 4, 1, "", "index"], [1622, 4, 1, "", "lattice"], [1624, 5, 1, "", "value"]], "triqs.lattice.super_lattice": [[1626, 0, 1, "", "TBSuperLattice"]], "triqs.lattice.super_lattice.TBSuperLattice": [[1627, 1, 1, "", "__init__"], [1628, 1, 1, "", "change_coordinates_L_to_SL"], [1629, 1, 1, "", "change_coordinates_SL_to_L"], [1630, 1, 1, "", "cluster_sites"], [1631, 1, 1, "", "dispersion"], [1632, 1, 1, "", "fold"], [1633, 1, 1, "", "fourier"], [1634, 1, 1, "", "get_kmesh"], [1635, 1, 1, "", "get_rmesh"], [1636, 5, 1, "", "hoppings"], [1637, 1, 1, "", "lattice_to_real_coordinates"], [1638, 5, 1, "", "n_orbitals"], [1639, 5, 1, "", "ndim"], [1640, 5, 1, "", "orbital_names"], [1641, 5, 1, "", "orbital_positions"], [1642, 1, 1, "", "pack_index_site_orbital"], [1643, 5, 1, "", "units"], [1644, 1, 1, "", "unpack_index_site_orbital"]], "triqs.lattice.tight_binding": [[1646, 0, 1, "", "TBLattice"], [1659, 3, 1, "", "dos"], [1660, 3, 1, "", "dos_patch"]], "triqs.lattice.tight_binding.TBLattice": [[1647, 1, 1, "", "__init__"], [1646, 4, 1, "", "bl"], [1646, 4, 1, "", "bz"], [1648, 1, 1, "", "dispersion"], [1649, 1, 1, "", "fourier"], [1650, 1, 1, "", "get_kmesh"], [1651, 1, 1, "", "get_rmesh"], [1652, 5, 1, "", "hoppings"], [1653, 1, 1, "", "lattice_to_real_coordinates"], [1654, 5, 1, "", "n_orbitals"], [1655, 5, 1, "", "ndim"], [1656, 5, 1, "", "orbital_names"], [1657, 5, 1, "", "orbital_positions"], [1646, 4, 1, "", "tb"], [1658, 5, 1, "", "units"]], "triqs.lattice.utils": [[1662, 3, 1, "", "TB_from_pythTB"], [1663, 3, 1, "", "TB_from_wannier90"], [1664, 3, 1, "", "TB_to_sympy"], [1665, 3, 1, "", "extend_wannier90_to_spin"], [1666, 3, 1, "", "k_space_path"], [1667, 3, 1, "", "parse_hopping_from_wannier90_hr_dat"], [1668, 3, 1, "", "parse_lattice_vectors_from_wannier90_wout"]], "triqs.operators": [[1670, 2, 0, "-", "operators"], [1681, 2, 0, "-", "util"]], "triqs.operators.operators": [[1671, 0, 1, "", "Operator"], [1676, 3, 1, "", "c"], [1677, 3, 1, "", "c_dag"], [1678, 3, 1, "", "dagger"], [1679, 3, 1, "", "is_op_hermitian"], [1680, 3, 1, "", "n"]], "triqs.operators.operators.Operator": [[1672, 1, 1, "", "__init__"], [1673, 4, 1, "", "imag"], [1674, 1, 1, "", "is_zero"], [1675, 4, 1, "", "real"]], "triqs.operators.util": [[1682, 2, 0, "-", "U_matrix"], [1697, 2, 0, "-", "extractors"], [1706, 2, 0, "-", "hamiltonians"], [1713, 2, 0, "-", "observables"], [1721, 2, 0, "-", "op_struct"]], "triqs.operators.util.U_matrix": [[1683, 3, 1, "", "U_J_to_radial_integrals"], [1684, 3, 1, "", "U_matrix_kanamori"], [1685, 3, 1, "", "U_matrix_slater"], [1686, 3, 1, "", "angular_matrix_element"], [1687, 3, 1, "", "clebsch_gordan"], [1688, 3, 1, "", "cubic_names"], [1689, 3, 1, "", "eg_submatrix"], [1690, 3, 1, "", "radial_integrals_to_U_J"], [1691, 3, 1, "", "reduce_4index_to_2index"], [1692, 3, 1, "", "spherical_to_cubic"], [1693, 3, 1, "", "subarray"], [1694, 3, 1, "", "t2g_submatrix"], [1695, 3, 1, "", "three_j_symbol"], [1696, 3, 1, "", "transform_U_matrix"]], "triqs.operators.util.extractors": [[1698, 3, 1, "", "block_matrix_from_op"], [1699, 3, 1, "", "dict_to_matrix"], [1700, 3, 1, "", "extract_U_dict2"], [1701, 3, 1, "", "extract_U_dict4"], [1702, 3, 1, "", "extract_h_dict"], [1703, 3, 1, "", "op_from_block_matrix"], [1704, 3, 1, "", "quadratic_terms"], [1705, 3, 1, "", "quartic_terms"]], "triqs.operators.util.hamiltonians": [[1707, 3, 1, "", "backward_compat"], [1708, 3, 1, "", "diagonal_part"], [1709, 3, 1, "", "h_int_density"], [1710, 3, 1, "", "h_int_kanamori"], [1711, 3, 1, "", "h_int_slater"], [1712, 3, 1, "", "make_operator_real"]], "triqs.operators.util.observables": [[1714, 3, 1, "", "L2_op"], [1715, 3, 1, "", "LS_op"], [1716, 3, 1, "", "L_op"], [1717, 3, 1, "", "N_op"], [1718, 3, 1, "", "S2_op"], [1719, 3, 1, "", "S_op"], [1720, 3, 1, "", "check_backward_compat"]], "triqs.operators.util.op_struct": [[1722, 3, 1, "", "get_mkind"], [1723, 3, 1, "", "set_operator_structure"]], "triqs.plot": [[580, 3, 1, "", "_plot_"], [1725, 2, 0, "-", "mpl_interface"], [1730, 2, 0, "-", "protocol"]], "triqs.plot.mpl_interface": [[1726, 3, 1, "", "oplot"], [1727, 3, 1, "", "oploti"], [1728, 3, 1, "", "oplotr"], [1729, 3, 1, "", "use_amsmath"]], "triqs.plot.protocol": [[1731, 3, 1, "", "clip_array"], [1732, 3, 1, "", "plot_protocol_apply"]], "triqs.random_generator": [[1734, 0, 1, "", "RandomGenerator"], [1736, 2, 0, "-", "random_generator"], [582, 3, 1, "", "random_generator_names_list"]], "triqs.random_generator.RandomGenerator": [[1735, 1, 1, "", "__init__"]], "triqs.random_generator.random_generator": [[1737, 3, 1, "", "random_generator_names_list"]], "triqs.stat": [[1739, 2, 0, "-", "histogram"], [1741, 2, 0, "-", "histograms"]], "triqs.stat.histogram": [[1740, 3, 1, "", "plot"]], "triqs.stat.histograms": [[1742, 0, 1, "", "Histogram"], [1750, 3, 1, "", "cdf"], [1751, 3, 1, "", "pdf"]], "triqs.stat.histograms.Histogram": [[1743, 1, 1, "", "__init__"], [1744, 1, 1, "", "clear"], [1745, 4, 1, "", "data"], [1746, 4, 1, "", "limits"], [1747, 1, 1, "", "mesh_point"], [1748, 4, 1, "", "n_data_pts"], [1749, 4, 1, "", "n_lost_pts"]], "triqs.sumk": [[1753, 2, 0, "-", "sumk_discrete"], [1759, 2, 0, "-", "sumk_discrete_from_lattice"]], "triqs.sumk.sumk_discrete": [[1754, 0, 1, "", "SumkDiscrete"]], "triqs.sumk.sumk_discrete.SumkDiscrete": [[1755, 5, 1, "", "GFBlocIndices"], [1756, 1, 1, "", "__init__"], [1757, 1, 1, "", "n_kpts"], [1758, 1, 1, "", "resize_arrays"]], "triqs.sumk.sumk_discrete_from_lattice": [[1760, 0, 1, "", "SumkDiscreteFromLattice"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice": [[1761, 5, 1, "", "GFBlocIndices"], [1762, 1, 1, "", "Recompute_Grid"], [1763, 1, 1, "", "__init__"], [1764, 1, 1, "", "n_kpts"], [1765, 1, 1, "", "resize_arrays"]], "triqs.utility": [[1767, 2, 0, "-", "bound_and_bisect"], [1770, 2, 0, "-", "capture_stdout"], [1771, 2, 0, "-", "comparison_tests"], [1777, 2, 0, "-", "dichotomy"], [1779, 2, 0, "-", "dist_on_nodes"], [1799, 2, 0, "-", "h5diff"], [1802, 2, 0, "-", "mpi"], [1804, 2, 0, "-", "mpi_mpi4py"], [1818, 2, 0, "-", "mpi_nompi"], [1830, 2, 0, "-", "redirect"]], "triqs.utility.bound_and_bisect": [[1768, 3, 1, "", "bound_and_bisect"], [1769, 3, 1, "", "determine_bounds"]], "triqs.utility.comparison_tests": [[1772, 3, 1, "", "assert_array_close_to_scalar"], [1773, 3, 1, "", "assert_arrays_are_close"], [1774, 3, 1, "", "assert_block2_gfs_are_close"], [1775, 3, 1, "", "assert_block_gfs_are_close"], [1776, 3, 1, "", "assert_gfs_are_close"]], "triqs.utility.dichotomy": [[1778, 3, 1, "", "dichotomy"]], "triqs.utility.dist_on_nodes": [[1780, 0, 1, "", "DistributionOnNodes"], [1784, 0, 1, "", "DistributionOnNodesOneStack"], [1791, 0, 1, "", "DistributionOnNodesTest"]], "triqs.utility.dist_on_nodes.DistributionOnNodes": [[1781, 4, 1, "", "SleepTime"], [1782, 1, 1, "", "__init__"], [1783, 1, 1, "", "run"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack": [[1785, 4, 1, "", "SleepTime"], [1786, 1, 1, "", "__init__"], [1787, 1, 1, "", "finished"], [1788, 1, 1, "", "result"], [1789, 1, 1, "", "run"], [1790, 1, 1, "", "treate"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest": [[1792, 4, 1, "", "SleepTime"], [1793, 1, 1, "", "__init__"], [1794, 1, 1, "", "finished"], [1795, 1, 1, "", "result"], [1796, 1, 1, "", "run"], [1797, 1, 1, "", "the_function"], [1798, 1, 1, "", "treate"]], "triqs.utility.h5diff": [[1800, 3, 1, "", "compare"], [1801, 3, 1, "", "h5diff"]], "triqs.utility.mpi": [[1803, 3, 1, "", "check_for_mpi"]], "triqs.utility.mpi_mpi4py": [[1805, 3, 1, "", "all_reduce"], [1806, 3, 1, "", "barrier"], [1807, 3, 1, "", "bcast"], [1808, 3, 1, "", "is_master_node"], [1809, 3, 1, "", "master_gets_host_names"], [1810, 3, 1, "", "myprint_err"], [1811, 3, 1, "", "myprint_out"], [1812, 3, 1, "", "recv"], [1813, 3, 1, "", "report"], [1814, 3, 1, "", "send"], [1815, 3, 1, "", "slice_array"], [1816, 3, 1, "", "slice_inf"], [1817, 3, 1, "", "slice_sup"]], "triqs.utility.mpi_nompi": [[1819, 3, 1, "", "all_reduce"], [1820, 3, 1, "", "barrier"], [1821, 3, 1, "", "bcast"], [1822, 3, 1, "", "is_master_node"], [1823, 3, 1, "", "master_gets_host_names"], [1824, 3, 1, "", "myprint_err"], [1825, 3, 1, "", "myprint_out"], [1826, 3, 1, "", "recv"], [1827, 3, 1, "", "report"], [1828, 3, 1, "", "send"], [1829, 3, 1, "", "slice_array"]], "triqs.utility.redirect": [[1831, 0, 1, "", "T"], [1846, 3, 1, "", "start_redirect"], [1847, 3, 1, "", "stop_redirect"]], "triqs.utility.redirect.T": [[1832, 1, 1, "", "__init__"], [1833, 5, 1, "", "daemon"], [1834, 1, 1, "", "getName"], [1835, 5, 1, "", "ident"], [1836, 1, 1, "", "isDaemon"], [1837, 1, 1, "", "is_alive"], [1838, 1, 1, "", "join"], [1839, 5, 1, "", "name"], [1840, 5, 1, "", "native_id"], [1841, 1, 1, "", "run"], [1842, 1, 1, "", "setDaemon"], [1843, 1, 1, "", "setName"], [1844, 1, 1, "", "start"], [1845, 1, 1, "", "stop"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:module", "3": "py:function", "4": "py:attribute", "5": "py:property"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "module", "Python module"], "3": ["py", "function", "Python function"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "property", "Python property"]}, "titleterms": {"changelog": 0, "version": [0, 581, 1850, 1910], "3": [0, 524, 537, 1849, 1858, 1873, 1877, 1895, 1896], "1": [0, 497, 524, 537, 1054, 1067, 1154, 1166, 1873, 1877, 1895, 1896], "gener": [0, 494, 569, 582, 1889], "doc": 0, "0": [0, 1858, 1873, 1877, 1896, 1900, 1905], "gf": [0, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 521, 525, 527, 528, 529, 532, 533, 535, 553, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1848, 1862], "atom_diag": [0, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 500, 501, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642], "cmake": [0, 1853], "jenkin": 0, "2": [0, 524, 537, 1054, 1067, 1154, 1166, 1873, 1877, 1895, 1896], "port": [0, 1858], "script": [0, 581, 1848, 1881], "api": [0, 9, 495, 541, 552], "chang": [0, 514], "mesh": [0, 266, 278, 290, 517, 523, 526, 527, 528, 529, 532, 533, 535, 537, 539, 540, 683, 722, 761, 800, 839, 888, 961, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1883, 1887], "dlr": [0, 1883, 1887], "lattic": [0, 557, 558, 1072, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1869, 1872, 1886, 1888, 1894, 1899, 1904], "det_manip": [0, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 513, 1861], "mc_gener": [0, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431], "mpi": [0, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 499, 570, 1802, 1803], "fix": 0, "deprec": 0, "us": [0, 4, 500, 520, 537, 555, 569, 1848, 1850, 1851, 1859, 1865, 1873, 1877, 1900, 1905], "string": 0, "indic": [0, 678, 717, 756, 795, 834, 866, 884, 956], "green": [0, 515, 523, 527, 541, 542, 543, 544, 545, 546, 547, 548, 551, 552, 1862, 1863, 1873, 1877, 1883, 1886, 1887, 1899, 1904], "function": [0, 4, 11, 14, 20, 28, 35, 42, 49, 64, 72, 77, 84, 90, 96, 101, 108, 115, 123, 128, 133, 152, 154, 192, 240, 242, 259, 271, 283, 324, 325, 340, 351, 357, 366, 378, 390, 405, 406, 432, 442, 448, 449, 463, 499, 501, 503, 508, 510, 513, 515, 520, 521, 523, 527, 532, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 551, 552, 559, 572, 577, 906, 907, 1862, 1863, 1873, 1877, 1881, 1883, 1886, 1887, 1899, 1903, 1904, 1908], "gf_struct": 0, "object": [0, 497, 498, 580, 1873, 1877], "c": [0, 9, 491, 492, 500, 511, 518, 568, 570, 574, 1676, 1856, 1859, 1865, 1866, 1867], "move": [0, 522, 564, 567, 568, 570], "multi": 0, "arrai": [0, 1860], "triq": [0, 3, 4, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 496, 499, 500, 503, 513, 555, 558, 566, 571, 580, 581, 582, 583, 584, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1854, 1856, 1858, 1859, 1864, 1865, 1867, 1873, 1877, 1883, 1887, 1889, 1910], "nda": 0, "librari": [0, 520, 1849, 1856, 1857, 1881, 1910], "stat": [0, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 583, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751], "rework": 0, "bath": 0, "discret": 0, "sanit": 0, "check": [0, 1873, 1877], "new": [0, 1881], "websit": 0, "theme": 0, "tightbind": [0, 563, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618], "tblattic": [0, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658], "improv": 0, "requir": [0, 1856, 1857], "20": 0, "capabl": 0, "compil": [0, 503, 1850, 1851, 1854, 1855, 1856], "cpp2py": [0, 4, 491], "python": [0, 4, 9, 491, 492, 495, 500, 549, 552, 572, 574, 586, 1855, 1858, 1859, 1866, 1867, 1870, 1881, 1882], "10": 0, "issu": [0, 6, 1857], "819": 0, "atom": 0, "diag": 0, "renam": 0, "depend": [0, 1854], "manag": 0, "h5py": 0, "remov": [0, 219, 514, 1861], "detmanip": 0, "oper": [0, 18, 25, 29, 30, 31, 41, 46, 57, 58, 59, 69, 76, 82, 88, 89, 100, 107, 137, 192, 250, 251, 267, 268, 279, 291, 292, 337, 338, 348, 349, 354, 372, 373, 374, 375, 384, 385, 386, 387, 401, 402, 445, 461, 476, 477, 478, 508, 510, 522, 524, 532, 537, 543, 551, 571, 572, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1860, 1883, 1885, 1887], "packag": [0, 1850, 1855], "make": [0, 8, 1882], "rang": [0, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 1860], "itertool": [0, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "standalon": 0, "namespac": 0, "non": [0, 49, 192, 242, 259, 271, 283, 325, 340, 357, 366, 378, 390, 406, 463, 521, 539, 1861, 1899, 1900, 1904, 1905], "own": [0, 570, 1865, 1867], "view": [0, 521, 523, 524, 551, 1860], "dynam": [0, 1869, 1888, 1894], "analyz": [0, 1892, 1897], "asan": 0, "ubsan": 0, "No": 0, "longer": 0, "instal": [0, 1850, 1851, 1853, 1854, 1857, 1864, 1910], "googletest": 0, "app4triq": [0, 4, 1858], "fourier": [0, 515, 519, 520, 554, 918, 919, 920, 1615, 1633, 1649, 1883, 1887, 1900, 1905], "h5": [0, 496], "pytriq": 0, "clef": [0, 503, 506, 507, 508, 509, 510, 516, 524, 532, 537], "blockgf": [0, 551, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 1873, 1877], "lapack": 0, "tail": [0, 515, 520], "mc_tool": [0, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447], "hdf5": [0, 496, 498, 523, 527, 528, 529, 532, 533, 535, 544, 545, 546, 547, 548, 551, 572, 1860, 1863, 1884], "py": [0, 4], "travi": 0, "test": [0, 1867], "5": [0, 1873, 1877, 1895], "4": [0, 537, 1873, 1877, 1895], "document": [0, 6, 7, 9, 498, 499, 511, 513, 518, 549, 558, 566, 582, 1856, 1867], "mani": [0, 555, 571], "bodi": [0, 555, 571], "": [0, 515, 541, 542, 543, 544, 545, 546, 547, 548, 551, 552, 1862, 1863, 1873, 1877, 1883, 1886, 1887, 1899, 1904], "mont": [0, 565, 568, 569, 570], "carlo": [0, 565, 568, 569, 570], "tool": [0, 4, 491, 500, 553, 558, 559, 565, 584, 587, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1848, 1856, 1873, 1877], "determin": [0, 198, 512, 1861, 1910], "manipul": [0, 512, 1861, 1885], "2py": 0, "miscellan": 0, "class": [0, 11, 108, 152, 191, 240, 324, 405, 448, 489, 490, 492, 493, 497, 498, 513, 563, 569, 1861, 1881], "archiv": [0, 581, 1860, 1884], "about": [3, 1861, 1870], "author": 3, "contributor": 3, "citat": 3, "licens": 3, "disclaim": [3, 1854], "logo": 3, "file": [3, 495, 559, 1848, 1858, 1863], "applic": [4, 1849, 1858, 1864, 1910], "base": [4, 899, 900], "tabl": [4, 5], "content": [4, 5], "impur": [4, 1873, 1877, 1889], "solver": [4, 500, 1889, 1901, 1906], "hybrid": 4, "expans": 4, "hubbard": [4, 1876, 1880, 1890, 1891, 1892, 1895, 1896, 1897], "i": [4, 1848, 1862, 1876, 1880, 1900, 1905], "hartre": 4, "fock": 4, "exact": [4, 500, 1885], "diagon": [4, 500, 1885], "finit": [4, 1903, 1908], "quantum": [4, 1873, 1877], "system": [4, 1903, 1908], "extern": 4, "interfac": [4, 491], "pomerol": 4, "w2dynam": 4, "nrg": 4, "ljubljana": 4, "ab": 4, "initio": 4, "dft": [4, 1873, 1876, 1877, 1880], "toolbox": 4, "calcul": [4, 1873, 1876, 1877, 1880, 1881, 1888, 1894, 1900, 1903, 1905, 1908], "correl": [4, 583], "materi": 4, "solid_dmft": [4, 1873, 1877], "wrapper": 4, "perform": [4, 1873, 1877], "dmft": [4, 1871, 1873, 1876, 1877, 1880, 1888, 1892, 1894, 1897], "analyt": [4, 1873, 1877, 1883, 1887], "continu": [4, 1873, 1877, 1883, 1887], "maxent": 4, "nevanlinna": 4, "som": 4, "stochast": 4, "optim": 4, "method": [4, 510, 523, 527, 528, 529, 532, 533, 535, 572], "omegamax": 4, "other": [4, 510, 1848], "tprf": 4, "The": [4, 489, 490, 493, 496, 497, 513, 514, 520, 543, 551, 559, 563, 564, 567, 568, 570, 1873, 1877, 1881, 1888, 1889, 1894, 1901, 1906], "two": [4, 1861, 1862, 1891, 1896, 1902, 1903, 1907, 1908, 1909], "particl": [4, 1902, 1907, 1909], "respons": [4, 1909], "box": 4, "benchmark": 4, "skeleton": [4, 1858], "contribut": [6, 7], "featur": 6, "request": [6, 8], "code": [6, 511, 570, 581, 1867, 1903, 1908], "github": 6, "discuss": 6, "how": [7, 8, 498, 514, 1848, 1862, 1910], "who": 7, "should": 7, "write": [7, 570, 1848, 1867, 1884], "build": [7, 524, 1856, 1864], "edit": 7, "pull": 8, "set": [8, 1889], "up": [8, 1889], "your": [8, 570, 1853, 1858, 1865], "fork": 8, "repositori": [8, 1898], "manual": [9, 488, 498, 499, 513, 558, 566, 582], "chunk_rang": 12, "paramet": [12, 13, 14, 15, 18, 19, 20, 26, 28, 32, 33, 34, 35, 39, 42, 43, 46, 47, 48, 53, 57, 58, 62, 63, 64, 71, 72, 73, 76, 77, 83, 84, 85, 88, 89, 90, 95, 96, 97, 100, 101, 105, 112, 113, 114, 116, 117, 124, 125, 126, 128, 129, 131, 132, 134, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 162, 170, 171, 173, 179, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 197, 223, 235, 251, 254, 255, 256, 257, 259, 260, 268, 271, 272, 280, 283, 284, 292, 293, 297, 300, 301, 302, 314, 315, 316, 317, 319, 329, 332, 333, 334, 336, 338, 341, 342, 343, 344, 345, 346, 348, 349, 351, 352, 354, 355, 356, 357, 358, 359, 360, 362, 363, 365, 368, 369, 370, 372, 373, 374, 375, 376, 378, 379, 380, 381, 384, 385, 386, 387, 388, 391, 392, 394, 396, 397, 398, 399, 401, 402, 403, 407, 408, 410, 413, 427, 428, 429, 430, 431, 443, 450, 451, 456, 461, 462, 465, 467, 468, 471, 472, 473, 476, 477, 478, 480, 481, 482, 483, 484, 485, 486, 487, 511, 513, 521, 541, 544, 545, 546, 547, 548, 572, 664, 703, 742, 781, 820, 1054, 1067, 1154, 1166, 1886], "return": [12, 13, 16, 18, 19, 21, 24, 29, 30, 31, 32, 33, 34, 36, 40, 44, 46, 47, 48, 51, 52, 57, 58, 63, 65, 68, 70, 71, 74, 76, 78, 81, 83, 86, 89, 92, 93, 95, 98, 100, 102, 106, 113, 114, 120, 121, 122, 125, 126, 127, 130, 131, 132, 135, 139, 141, 142, 144, 149, 151, 153, 155, 156, 157, 158, 163, 170, 171, 172, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 254, 255, 256, 257, 300, 301, 302, 314, 315, 317, 326, 327, 328, 330, 331, 334, 338, 339, 342, 343, 346, 347, 348, 349, 350, 359, 361, 362, 363, 364, 367, 369, 371, 372, 373, 374, 375, 377, 380, 382, 383, 384, 385, 386, 387, 389, 393, 394, 395, 396, 399, 400, 401, 402, 404, 407, 414, 428, 430, 431, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 466, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 511, 1803], "distanc": 13, "templat": [13, 14, 18, 19, 20, 26, 28, 32, 33, 34, 35, 39, 42, 46, 47, 48, 62, 63, 64, 71, 72, 77, 83, 84, 89, 90, 95, 96, 100, 101, 105, 112, 113, 125, 126, 128, 129, 131, 132, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 154, 181, 182, 183, 184, 185, 186, 187, 197, 251, 254, 255, 256, 257, 259, 260, 268, 271, 272, 283, 284, 292, 297, 300, 301, 302, 314, 315, 316, 319, 351, 354, 355, 356, 357, 360, 365, 370, 378, 381, 410, 451, 461, 480, 481, 482, 483, 484, 485, 487, 511, 521, 572], "enum_it": [14, 15, 16, 17, 18], "public": [14, 20, 35, 42, 62, 64, 72, 77, 84, 90, 96, 101, 128, 242, 513], "member": [14, 20, 28, 35, 42, 49, 62, 64, 72, 77, 84, 90, 96, 101, 115, 123, 128, 133, 154, 192, 242, 259, 271, 283, 325, 340, 351, 357, 366, 378, 390, 406, 432, 442, 449, 463, 513, 521, 539, 540, 572], "constructor": [15, 39, 43, 53, 73, 85, 97, 105, 118, 124, 134, 159, 197, 245, 260, 272, 284, 329, 341, 352, 358, 368, 379, 392, 413, 438, 443, 451, 465, 523, 525], "derefer": [16, 44, 74, 86, 98], "increment": [17, 45, 75, 87, 99], "enumer": [19, 20, 21, 22, 23, 24, 25], "exampl": [19, 95, 254, 255, 260, 316, 450, 454, 457, 459, 461, 482, 483, 484, 485, 497, 499, 500, 504, 508, 513, 519, 523, 527, 528, 529, 532, 533, 535, 541, 544, 545, 546, 547, 548, 551, 555, 558, 563, 567, 579, 580, 582, 1882], "type": [20, 28, 35, 49, 64, 77, 90, 101, 128, 152, 154, 192, 240, 242, 259, 271, 283, 324, 325, 357, 366, 378, 499, 513, 515, 521, 523, 539, 540, 572], "begin": [21, 36, 50, 65, 78, 91, 102, 326], "cbegin": [22, 37, 51, 66, 79, 92, 103, 327], "cend": [23, 38, 52, 67, 80, 93, 104, 328], "end": [24, 40, 54, 68, 81, 94, 106, 331, 570], "foreach": [26, 360, 370, 381], "iterator_facad": [27, 28, 29, 30, 31], "iter": [28, 29, 30, 31, 523, 551, 572, 1888, 1894], "valu": [28, 29, 30, 31, 511, 543, 1035, 1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1624, 1862, 1883, 1887], "std": [28, 29, 30, 31, 147], "forward_iterator_tag": [28, 29, 30, 31], "refer": [28, 29, 30, 31, 498, 544, 545, 546, 547, 548, 550, 551, 558, 579], "differ": [28, 29, 30, 31], "make_product": 32, "make_sentinel": 33, "make_vector_from_rang": 34, "multipli": [35, 36, 37, 38, 39, 40, 41], "prod_it": [42, 43, 44, 45, 46], "product": 47, "product_rang": 48, "first": [55, 1873, 1877, 1888, 1894], "last": [56, 1861], "size": [60, 70, 121, 229, 339, 350, 377, 389, 404, 479], "step": [61, 1850, 1858], "sentinel_t": 62, "slice": [63, 64, 65, 66, 67, 68, 69, 70, 543, 1860, 1873, 1877], "stride": [71, 77, 78, 79, 80, 81, 82], "stride_it": [72, 73, 74, 75, 76], "transform": [83, 90, 91, 92, 93, 94, 497, 508, 515, 519, 554, 560, 1027, 1883, 1887, 1900, 1905], "transform_it": [84, 85, 86, 87, 88, 89], "zip": [95, 101, 102, 103, 104, 105, 106, 107], "zip_it": [96, 97, 98, 99, 100], "all_gath": 109, "all_reduc": [110, 1805, 1819], "all_reduce_in_plac": 111, "broadcast": [112, 1886], "chunk": 113, "chunk_length": 114, "commun": [115, 116, 117, 118, 119, 120, 121, 122, 1849], "abort": 116, "barrier": [117, 1806, 1820], "get": [119, 569, 1851, 1861, 1881], "rank": [120, 684, 723, 762, 801, 840, 962, 1049], "split": 122, "environ": [123, 124, 1850, 1852, 1855], "gather": [125, 570], "get_mpi_typ": 126, "is_initi": 127, "lazi": [128, 129, 130, 503, 505, 543, 1860], "invok": 129, "shape": 130, "map_c_funct": 131, "map_add": 132, "monitor": [133, 134, 135, 136, 137, 138, 139], "emergency_occur": 135, "finalize_commun": 136, "request_emergency_stop": 138, "root_check_nodes_and_bcast": 139, "mpi_broadcast": [140, 472], "mpi_gath": 141, "mpi_reduc": [142, 317, 473], "mpi_reduce_in_plac": 143, "mpi_scatt": 144, "mpi_typ": [145, 146, 147], "constt": 146, "tupl": [147, 584, 587], "t": [147, 523, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1862, 1903, 1908], "mpi_type_from_ti": 148, "reduc": 149, "reduce_in_plac": 150, "scatter": 151, "alias": [152, 240, 324], "act": [153, 633], "c_connect": [155, 593, 614], "c_matrix": [156, 594, 615], "cdag_connect": [157, 595, 616], "cdag_matrix": [158, 596, 617], "flatten_subspace_index": [160, 598, 619], "get_eigensystem": 161, "get_eigenvalu": [162, 602, 623], "get_energi": 163, "get_fock_st": [164, 342, 394], "get_fop": 165, "get_full_hilbert_spac": 166, "get_full_hilbert_space_dim": 167, "get_gs_energi": 168, "get_h_atom": 169, "get_matrix_element_of_monomi": 170, "get_op_mat": 171, "get_quantum_numb": 172, "get_subspace_dim": [173, 174, 603, 604, 624, 625], "get_unitary_matric": 175, "get_unitary_matrix": 176, "get_vacuum_st": 177, "get_vacuum_subspace_index": 178, "index_range_of_subspac": 179, "n_subspac": [180, 364, 607, 628], "atomic_density_matrix": [181, 634], "atomic_g_iw": [182, 635], "atomic_g_l": [183, 636], "atomic_g_lehmann": 184, "atomic_g_tau": [185, 637], "atomic_g_w": [186, 638], "partition_funct": [187, 639], "quantum_number_eigenvalu": [188, 640], "quantum_number_eigenvalues_check": [189, 641], "trace_rho_op": [190, 642], "change_col": 193, "change_row": 194, "clear": [195, 464, 1744], "complete_oper": 196, "get_funct": 199, "get_n_operations_before_check": 200, "get_precision_error": 201, "get_precision_warn": 202, "get_singular_threshold": 203, "get_x": 204, "get_x_internal_ord": 205, "get_i": 206, "get_y_internal_ord": 207, "h5_read": [208, 247, 263, 275, 287, 344, 397, 425, 467], "h5_write": [209, 248, 264, 276, 288, 345, 398, 426, 468], "insert": [210, 335], "insert2": 211, "insert2_at_end": 212, "insert_at_end": 213, "inverse_matrix": 214, "inverse_matrix_internal_ord": 215, "is_singular": 216, "matrix": [217, 543, 573, 1883, 1887], "reject_last_tri": 218, "remove2": 220, "remove2_at_end": 221, "remove_at_end": 222, "reserv": 223, "roll_matrix": 224, "set_n_operations_before_check": 225, "set_precision_error": 226, "set_precision_warn": 227, "set_singular_threshold": 228, "swap_col": 230, "swap_row": 231, "try_change_col": 232, "try_change_col_row": 233, "try_change_row": 234, "try_insert": 235, "try_insert_k": 236, "try_refil": 237, "try_remov": 238, "try_remove_k": 239, "deduct": 241, "guid": [241, 1858, 1859], "block_gf": [241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 523, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897], "block_nam": 243, "block_siz": 244, "data": [246, 261, 273, 285, 330, 466, 498, 523, 526, 527, 528, 529, 532, 533, 535, 543, 544, 545, 546, 547, 548, 579, 581, 583, 669, 708, 747, 786, 825, 947, 1745, 1848], "hdf5_format": [249, 265, 277, 289, 347, 400, 469], "densiti": [252, 559, 648, 652, 670, 709, 748, 787, 826, 882, 948, 996, 1883, 1887], "fit_gf_dlr": [253, 986], "fit_hermitian_tail": [254, 672, 711, 750, 789, 828, 950, 998], "fit_tail": [255, 674, 713, 752, 791, 830, 952, 1000], "flatten_2d": 256, "flatten_gf_2d": 257, "get_mesh": 258, "accessor": [259, 271, 283, 543], "data_shap": [262, 274, 286], "target_indic": [269, 281, 294, 694, 733, 772, 811, 850, 972], "target_shap": [270, 282, 295, 696, 735, 774, 813, 852, 974], "gf_const_view": [271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282], "rebind": [280, 293], "gf_view": [283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295], "h5_read_gf_struct": 296, "imag": [297, 677, 716, 755, 794, 833, 865, 883, 955, 1032, 1039, 1673], "impl_tag": 298, "invers": [299, 679, 718, 757, 796, 835, 885, 957, 1214], "is_gf_hermitian": [300, 681, 720, 759, 798, 837, 959, 1002], "is_gf_real": 301, "is_gf_real_in_tau": [302, 682, 721, 760, 799, 838, 960, 1003], "make_block2_gf": 303, "make_block_gf": 304, "make_block_gf_view": 305, "make_gf_dlr": [306, 987], "make_gf_dlr_imfreq": [307, 988], "make_gf_dlr_imtim": [308, 989], "make_gf_from_fouri": [309, 990], "make_gf_from_inverse_fouri": 310, "make_gf_from_real_gf": 311, "make_gf_imfreq": [312, 991], "make_gf_imtim": [313, 992], "make_hermitian": [314, 993], "make_real_in_tau": [315, 994], "make_zero_tail": [316, 1216], "positive_freq_view": 318, "real": [319, 515, 520, 533, 535, 547, 548, 685, 724, 763, 802, 841, 870, 890, 963, 1034, 1040, 1675, 1862], "reinterpret_scalar_valued_gf_as_matrix_valu": 320, "tau_l2_norm": [321, 697, 736, 775, 814, 853, 975, 1012], "unflatten_2d": 322, "unflatten_gf_2d": 323, "hilbert_spac": [324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 555], "fundamental_operator_set": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339], "h5_read_attribut": 332, "h5_write_attribut": 333, "has_indic": 334, "insert_from_indices_t": 336, "get_state_index": [343, 396], "has_stat": [346, 399], "imperative_oper": [351, 352, 353, 354, 355], "is_empti": 353, "updat": [355, 1858], "make_zero_st": 356, "space_partit": [357, 358, 359, 360, 361, 362, 363, 364], "find_map": 359, "get_matrix_el": 361, "lookup_basis_st": 362, "merge_subspac": 363, "state": [365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 555, 559, 1883, 1887], "hilbertspac": [366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389], "scalartyp": [366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389], "fals": [366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377], "amplitud": 367, "dot_product": [369, 380], "get_hilbert": [371, 382], "set_hilbert": [376, 388], "true": [378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389], "nterm": 383, "sub_hilbert_spac": [390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404], "add_fock_st": 391, "get_all_fock_st": 393, "get_index": 395, "set_index": 403, "accumul": [407, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461], "add_measur": 408, "add_measure_aux": 409, "add_mov": 410, "clear_measur": 411, "collect_result": 412, "get_acceptance_r": [414, 439], "get_accumulation_tim": 415, "get_accumulation_time_hhmmss": 416, "get_config_id": 417, "get_current_cycle_numb": 418, "get_dur": 419, "get_perc": 420, "get_rng": 421, "get_total_tim": 422, "get_warmup_tim": 423, "get_warmup_time_hhmmss": 424, "rm_measur": 427, "run": [428, 1783, 1789, 1796, 1841, 1873, 1876, 1877, 1880], "set_after_cycle_duti": 429, "warmup": 430, "warmup_and_accumul": 431, "move_set": [432, 433, 434, 435, 436, 437, 438, 439, 440, 441], "accept": 433, "add": [434, 511, 1861], "attempt": 435, "clear_statist": 436, "collect_statist": 437, "get_statist": 440, "reject": 441, "random_gener": [442, 443, 444, 445, 446, 1733, 1734, 1735, 1736, 1737], "name": [444, 568, 1839], "preview": 446, "random_generator_nam": 447, "logarithm": 449, "log": 449, "bin": 449, "linear": [449, 537, 1860], "lin": 449, "compress_linear_bin": 450, "data_input_count": 452, "lin_bin_capac": 453, "linear_bin": 454, "log_bin_error": 455, "log_bin_errors_all_reduc": 456, "n_lin_bin": 457, "n_lin_bins_max": 458, "n_log_bin": 459, "n_log_bins_max": 460, "cdf": [462, 1750], "histogram": [463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1882], "limit": [470, 1746], "mesh_point": [471, 537, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1747], "n_data_pt": [474, 1748], "n_lost_pt": [475, 1749], "jackknif": 480, "jackknife_mpi": 481, "mean": [482, 1869, 1888, 1894], "mean_and_err": 483, "mean_and_err_mpi": 484, "mean_mpi": 485, "pdf": [486, 1751], "tau_estimate_from_error": 487, "cfunction": 489, "class_": 490, "convert": 492, "v": [492, 1902, 1907], "wrap": 492, "from": [492, 537, 559, 569, 581, 1850, 1855, 1884, 1903, 1908], "module_": 493, "principl": [494, 497], "desc": [495, 1858], "format": 496, "solut": [497, 1876, 1880, 1892, 1895, 1896, 1897], "provid": 497, "dict": 497, "hdf": [497, 498], "compliant": [497, 498], "what": 497, "happen": 497, "detail": 497, "hdfarchiv": 498, "hdfarchivegroup": 498, "hdfarchiveinert": 498, "scheme": [498, 544, 545, 546, 547, 548], "doe": [498, 514], "becom": 498, "introduct": [499, 564, 568, 583, 1881, 1886], "support": 499, "basic": [499, 515, 1868], "usag": [499, 520, 582, 1851, 1855], "header": 499, "lightweight": 500, "util": [501, 584, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847], "automat": 502, "assign": [502, 522, 543], "contain": 502, "time": [503, 515, 520, 528, 535, 545, 548, 554, 1862, 1883, 1887, 1889], "express": [503, 506, 507, 508, 516, 524, 532, 537, 543, 1860], "more": [504, 514, 1870, 1882], "complex": 504, "A": [505, 551, 579, 580, 1856, 1859, 1867, 1872, 1881, 1888, 1894], "sum": [505, 561], "evalu": [506, 524, 527, 528, 529, 531, 533, 535, 1886], "complet": [506, 551, 582, 1856], "partial": [506, 531, 1886], "form": 507, "placehold": [507, 1862], "an": [507, 1860, 1861, 1884], "storag": [507, 523, 527, 528, 529, 532, 533, 535], "advanc": [507, 541, 580, 1850, 1876, 1880], "make_funct": 508, "short": [508, 1881], "notat": [508, 511], "motiv": [509, 564], "littl": [509, 551], "tour": [509, 1859], "overload": [510, 572], "argument": [510, 544, 545, 546, 547, 548, 664, 703, 742, 781, 820], "convent": [511, 523, 527, 528, 529, 532, 533, 535, 1864], "construct": [513, 570, 572, 573, 1886], "synopsi": [513, 519, 527, 528, 529, 533, 535], "under": 513, "hood": 513, "full": [513, 566, 1876, 1880], "work": 514, "cofactor": 514, "sherman": 514, "morrison": 514, "formula": 514, "addit": [514, 1883, 1887], "line": [514, 1861], "column": [514, 1861], "notion": 515, "matsubara": [515, 527, 528, 544, 545, 546, 554, 1862, 1889], "imaginari": [515, 520, 528, 544, 545, 1862, 1883, 1887, 1889], "gfimtim": [515, 545, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740], "frequenc": [515, 520, 527, 533, 541, 544, 547, 552, 554, 1862, 1883, 1887, 1889], "gfimfreq": [515, 544, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701], "legendr": [515, 529, 546, 554, 1197], "polynomi": [515, 546], "gflegendr": [515, 546, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779], "gfretim": [515, 548, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857], "retard": [515, 547, 548], "gfrefreq": [515, 547, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818], "high": [515, 541, 552], "interact": [516, 524, 537, 1881, 1899, 1900, 1904, 1905], "concept": [517, 556, 564], "domain": [517, 523, 527, 528, 529, 532, 533, 535, 537, 1862], "purefunctionondomain": 517, "meshpoint": [517, 1037, 1038, 1039, 1040], "implement": [520, 538], "note": [520, 538, 1902, 1907], "fftw": 520, "special": [520, 536], "case": 520, "fermion": [520, 562, 1885, 1899, 1900, 1904, 1905], "boson": 520, "tf": 520, "block": [523, 543, 551, 1883, 1887], "factori": [523, 572], "regular": 523, "singular": [523, 526, 528, 529, 532, 535], "interpol": [523, 532, 1862], "access": [526, 543, 551, 569], "symmetri": 526, "imfreq": [527, 539, 1195], "free": [527, 562, 572], "imtim": [528, 540, 1196], "represent": 529, "misc": 530, "statist": [530, 583, 1086, 1099, 1112, 1129, 1140, 1151], "prod": 532, "x": [532, 1854], "y": 532, "multipl": [532, 580], "variabl": [532, 568, 1852], "subscript": 532, "techniqu": 532, "refreq": [533, 1198], "target": 534, "reinterpret": 534, "retim": [535, 1199], "index": [537, 1033], "find": 537, "closest": 537, "point": [537, 543, 1621, 1622, 1623, 1624, 1862], "moment": [541, 552], "adjust": 541, "fit": [541, 579, 657, 658, 659, 660], "window": 541, "bracket": 543, "shelv": [543, 551], "pickl": [543, 551], "plot": [543, 578, 580, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1740, 1848, 1873, 1877, 1882], "option": [543, 580, 1054, 1067, 1154, 1166, 1853], "direct": 543, "keyword": [544, 545, 546, 547, 548, 664, 703, 742, 781, 820], "onli": [544, 545, 546, 547, 548, 664, 703, 742, 781, 820], "descriptor": [550, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 1883, 1887], "copi": [551, 647, 651, 667, 706, 745, 784, 823, 862, 879, 945, 1016, 1047, 1058, 1069, 1082, 1095, 1108, 1121, 1137, 1148, 1156, 1168], "hilbert": [555, 560], "space": 555, "statevector": 556, "bravai": 557, "introductori": 558, "relat": 559, "do": [559, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 1596, 1619, 1659, 1848], "read": [559, 1850, 1884], "text": [559, 1848, 1882], "comput": [559, 1900, 1905], "tight_bind": [559, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660], "over": [561, 572], "brillouin": 561, "zone": 561, "tight": [562, 1872, 1886], "bind": [562, 1872, 1886], "hop": [562, 1636, 1652, 1899, 1904], "bravaislattic": [563, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605], "definit": 563, "energies_on_bz_path": 563, "measur": [564, 567, 568, 570], "Ising": 567, "chain": 567, "magnet": 567, "field": [567, 1869, 1888, 1894], "configur": 567, "main": 567, "program": 567, "loop": [568, 1881], "connect": 568, "random": [569, 582, 1901, 1906], "number": [569, 582, 1885, 1910], "list": [569, 1856, 1881], "tutori": [570, 1859, 1873, 1877, 1882, 1893, 1898], "thi": [570, 1873, 1877, 1882], "problem": 570, "initi": [570, 1883, 1886, 1887], "simul": 570, "start": [570, 1844, 1849], "result": [570, 1788, 1795, 1889, 1892, 1897], "second": [571, 572], "quantiz": [571, 572], "hamiltonian": [571, 575, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1873, 1877, 1886], "monomi": 572, "serial": 572, "u": [573, 1896, 1902, 1907], "coeffici": 574, "extract": 574, "observ": [576, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720], "helper": 577, "protocol": [578, 580, 1730, 1731, 1732], "simpl": [579, 1860, 1862, 1867, 1881], "thin": 580, "layer": 580, "abov": 580, "matplotlib": [580, 1882], "panel": 580, "figur": [580, 581], "reproduc": 581, "proven": 581, "save": [581, 891, 1848], "analysi": 583, "process": [583, 1873, 1877], "averag": 583, "standard": 583, "error": 583, "except": [584, 585], "etc": 584, "includ": 586, "warn": 586, "appli": 587, "for_each": 587, "for_each_zip": 587, "map": [587, 1860], "fold": [587, 1632, 1860], "revers": 587, "called_on_tupl": 587, "atomdiag": 589, "atomdiagcomplex": [591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611], "__init__": [592, 613, 646, 650, 656, 660, 665, 704, 743, 782, 821, 860, 875, 900, 902, 905, 907, 909, 911, 917, 919, 922, 925, 928, 930, 932, 938, 941, 943, 981, 1015, 1021, 1031, 1038, 1042, 1045, 1055, 1068, 1080, 1093, 1106, 1119, 1135, 1146, 1155, 1167, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1595, 1599, 1607, 1612, 1623, 1627, 1647, 1672, 1735, 1743, 1756, 1763, 1782, 1786, 1793, 1832], "energi": [597, 618, 1873, 1877], "fock_stat": [599, 620], "fop": [600, 621], "full_hilbert_space_dim": [601, 622], "gs_energi": [605, 626], "h_atom": [606, 627], "quantum_numb": [608, 629], "unitary_matric": [609, 630], "vacuum_st": [610, 631], "vacuum_subspace_index": [611, 632], "atomdiagr": [612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632], "dosfromfunct": [649, 650, 651, 652], "dos_from_fil": 653, "hilbert_transform": [654, 655, 656], "hilberttransform": [655, 656], "backwd_compat": [662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857], "gf_imfreq": [663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701], "conjug": [666, 705, 744, 783, 822, 878, 944, 1209], "copy_from": [668, 707, 746, 785, 824, 863, 880, 946, 1048, 1059, 1070, 1083, 1096, 1109, 1122, 1138, 1149, 1157, 1169], "enforce_discontinu": [671, 710, 749, 788, 827, 949, 997], "fit_hermitian_tail_on_window": [673, 712, 751, 790, 829, 951, 999], "fit_tail_on_window": [675, 714, 753, 792, 831, 953, 1001], "from_l_g_r": [676, 715, 754, 793, 832, 954], "invert": [680, 719, 758, 797, 836, 886, 958], "rebinning_tau": [686, 725, 764, 803, 842, 964, 1004], "replace_by_tail": [687, 726, 765, 804, 843, 965, 1005], "replace_by_tail_in_fit_window": [688, 727, 766, 805, 844, 966, 1006], "set_from_fouri": [689, 728, 767, 806, 845, 967, 1007], "set_from_imfreq": [690, 729, 768, 807, 846, 968, 1008], "set_from_imtim": [691, 730, 769, 808, 847, 969, 1009], "set_from_legendr": [692, 731, 770, 809, 848, 970, 1010], "set_from_pad": [693, 732, 771, 810, 849, 971, 1011], "target_rank": [695, 734, 773, 812, 851, 973], "total_dens": [698, 737, 776, 815, 854, 892, 976], "transpos": [699, 738, 777, 816, 855, 893, 977, 1218], "x_data_view": [700, 739, 778, 817, 856, 978], "zero": [701, 740, 779, 818, 857, 872, 895, 979], "gf_imtim": [702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740], "gf_legendr": [741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779], "gf_refreq": [780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818], "gf_retim": [819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857], "block2_gf": [858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872], "block2gf": [859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872], "all_indic": [861, 876], "copy_selected_block": [864, 881], "indices1": 867, "indices2": 868, "n_block": [869, 889], "view_selected_block": [871, 894], "beta": [877, 1081, 1094, 1107, 1120, 1136, 1147, 1903, 1908], "load": 887, "call_factory_from_dict": [896, 984, 1052], "fix_gf_struct_typ": 897, "descriptor_bas": [898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914], "baseblock": [901, 902, 903], "is_block_descriptor": [903, 920, 923, 926], "const": [904, 905], "lazyctx": [908, 909], "omega_": [910, 911], "convert_scalar_to_const": 912, "is_lazi": 913, "is_scalar": 914, "flat": [916, 917, 1883, 1887], "legendretomatsubara": [921, 922, 923], "matsubaratolegendr": [924, 925, 926], "onefermionintim": [927, 928], "semicircular": [929, 930], "wilson": [931, 932], "semi": [933, 1883, 1887], "dlr_crm_dyson_solv": [934, 935], "minimize_dyson": 935, "addmethod": [937, 938, 939], "mro": 939, "callproxynon": [940, 941], "idx": [980, 981], "add_method_help": 982, "bckwd": 983, "gf_factori": [985, 986, 987, 988, 989, 990, 991, 992, 993, 994], "gf_fnt": [995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012], "lazy_express": [1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027], "lazyexpr": [1014, 1015, 1016, 1017, 1018, 1019], "get_termin": 1017, "is_termin": 1018, "set_from": 1019, "lazyexprtermin": [1020, 1021], "all_termin": 1022, "eval_expr": 1023, "eval_expr_with_context": 1024, "lazy_funct": 1025, "make_lazi": 1026, "map_block": 1028, "matsubara_freq": [1029, 1030, 1031, 1032, 1033, 1034, 1035], "matsubarafreq": [1030, 1031, 1032, 1033, 1034, 1035], "meshvaluegener": [1041, 1042], "mesh_product": [1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052], "meshproduct": [1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051], "compon": 1046, "size_of_compon": 1050, "to_data_index": [1051, 1062, 1074, 1087, 1100, 1113, 1130, 1141, 1152, 1160, 1174], "meshbrzon": [1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066], "bz": [1056, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187], "closest_index": 1057, "dim": [1060, 1071], "mesh_hash": [1061, 1073, 1085, 1098, 1111, 1125, 1139, 1150, 1159, 1171], "to_index": [1063, 1075, 1088, 1101, 1114, 1131, 1142, 1153, 1161, 1175], "to_valu": [1064, 1076, 1089, 1102, 1115, 1132, 1143, 1162, 1176], "unit": [1065, 1077, 1605, 1610, 1643, 1658], "meshcyclat": [1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078], "meshdlr": [1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091], "ep": [1084, 1097, 1110], "w_max": [1091, 1104, 1117, 1164], "meshdlrimfreq": [1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104], "meshdlrimtim": [1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117], "meshimfreq": [1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133], "first_index": 1123, "last_index": 1124, "n_iw": 1126, "positive_onli": 1127, "set_tail_fit_paramet": 1128, "meshimtim": [1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144], "meshlegendr": [1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153], "meshrefreq": [1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165], "delta": [1158, 1170, 1210], "w_min": 1165, "meshretim": [1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177], "t_max": 1172, "t_min": 1173, "make_adjoint_mesh": 1178, "dist": [1181, 1205], "generate_point": 1182, "generate_points_on_path": 1183, "length": 1184, "make_plott": 1185, "slice_on_path": 1187, "bz_x_x": [1188, 1189, 1190], "plottable_slice_along_path": 1190, "dispatch": 1191, "one_var": [1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199], "dlr_imfreq": 1193, "dlr_imtim": 1194, "plot_bas": [1200, 1201], "select_indic": [1202, 1203, 1204, 1205, 1206, 1207], "closest_point_in_lin": 1203, "closest_to": 1204, "pick_selection_vec": 1206, "select_path_indic": 1207, "discretize_bath": 1211, "dyson": 1212, "fit_legendr": 1213, "make_delta": 1215, "read_gf_from_txt": 1217, "write_gf_to_txt": 1219, "wrapped_aux": [1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591], "callproxybrzone_0": [1221, 1222], "callproxybrzone_1": [1223, 1224], "callproxybrzone_2": [1225, 1226], "callproxybrzone_3": [1227, 1228], "callproxybrzone_4": [1229, 1230], "callproxybrzone_x_dlr_0": [1231, 1232], "callproxybrzone_x_dlr_1": [1233, 1234], "callproxybrzone_x_dlr_2": [1235, 1236], "callproxybrzone_x_dlr_3": [1237, 1238], "callproxybrzone_x_dlr_4": [1239, 1240], "callproxybrzone_x_imfreq_0": [1241, 1242], "callproxybrzone_x_imfreq_1": [1243, 1244], "callproxybrzone_x_imfreq_2": [1245, 1246], "callproxybrzone_x_imfreq_3": [1247, 1248], "callproxybrzone_x_imfreq_4": [1249, 1250], "callproxybrzone_x_imtime_0": [1251, 1252], "callproxybrzone_x_imtime_0_r": [1253, 1254], "callproxybrzone_x_imtime_1": [1255, 1256], "callproxybrzone_x_imtime_1_r": [1257, 1258], "callproxybrzone_x_imtime_2": [1259, 1260], "callproxybrzone_x_imtime_2_r": [1261, 1262], "callproxybrzone_x_imtime_3": [1263, 1264], "callproxybrzone_x_imtime_3_r": [1265, 1266], "callproxybrzone_x_imtime_4": [1267, 1268], "callproxybrzone_x_imtime_4_r": [1269, 1270], "callproxybrzone_x_legendre_0": [1271, 1272], "callproxybrzone_x_legendre_1": [1273, 1274], "callproxybrzone_x_legendre_2": [1275, 1276], "callproxybrzone_x_legendre_3": [1277, 1278], "callproxybrzone_x_legendre_4": [1279, 1280], "callproxybrzone_x_refreq_0": [1281, 1282], "callproxybrzone_x_refreq_1": [1283, 1284], "callproxybrzone_x_refreq_2": [1285, 1286], "callproxybrzone_x_refreq_3": [1287, 1288], "callproxybrzone_x_refreq_4": [1289, 1290], "callproxybrzone_x_retime_0": [1291, 1292], "callproxybrzone_x_retime_1": [1293, 1294], "callproxybrzone_x_retime_2": [1295, 1296], "callproxybrzone_x_retime_3": [1297, 1298], "callproxybrzone_x_retime_4": [1299, 1300], "callproxycyclat_0": [1301, 1302], "callproxycyclat_1": [1303, 1304], "callproxycyclat_2": [1305, 1306], "callproxycyclat_3": [1307, 1308], "callproxycyclat_4": [1309, 1310], "callproxycyclat_x_dlr_0": [1311, 1312], "callproxycyclat_x_dlr_1": [1313, 1314], "callproxycyclat_x_dlr_2": [1315, 1316], "callproxycyclat_x_dlr_3": [1317, 1318], "callproxycyclat_x_dlr_4": [1319, 1320], "callproxycyclat_x_imfreq_0": [1321, 1322], "callproxycyclat_x_imfreq_1": [1323, 1324], "callproxycyclat_x_imfreq_2": [1325, 1326], "callproxycyclat_x_imfreq_3": [1327, 1328], "callproxycyclat_x_imfreq_4": [1329, 1330], "callproxycyclat_x_imtime_0": [1331, 1332], "callproxycyclat_x_imtime_0_r": [1333, 1334], "callproxycyclat_x_imtime_1": [1335, 1336], "callproxycyclat_x_imtime_1_r": [1337, 1338], "callproxycyclat_x_imtime_2": [1339, 1340], "callproxycyclat_x_imtime_2_r": [1341, 1342], "callproxycyclat_x_imtime_3": [1343, 1344], "callproxycyclat_x_imtime_3_r": [1345, 1346], "callproxycyclat_x_imtime_4": [1347, 1348], "callproxycyclat_x_imtime_4_r": [1349, 1350], "callproxycyclat_x_legendre_0": [1351, 1352], "callproxycyclat_x_legendre_1": [1353, 1354], "callproxycyclat_x_legendre_2": [1355, 1356], "callproxycyclat_x_legendre_3": [1357, 1358], "callproxycyclat_x_legendre_4": [1359, 1360], "callproxycyclat_x_refreq_0": [1361, 1362], "callproxycyclat_x_refreq_1": [1363, 1364], "callproxycyclat_x_refreq_2": [1365, 1366], "callproxycyclat_x_refreq_3": [1367, 1368], "callproxycyclat_x_refreq_4": [1369, 1370], "callproxycyclat_x_retime_0": [1371, 1372], "callproxycyclat_x_retime_1": [1373, 1374], "callproxycyclat_x_retime_2": [1375, 1376], "callproxycyclat_x_retime_3": [1377, 1378], "callproxycyclat_x_retime_4": [1379, 1380], "callproxydlr_0": [1381, 1382], "callproxydlr_1": [1383, 1384], "callproxydlr_2": [1385, 1386], "callproxydlr_3": [1387, 1388], "callproxydlr_4": [1389, 1390], "callproxydlr_x_brzone_0": [1391, 1392], "callproxydlr_x_brzone_1": [1393, 1394], "callproxydlr_x_brzone_2": [1395, 1396], "callproxydlr_x_brzone_3": [1397, 1398], "callproxydlr_x_brzone_4": [1399, 1400], "callproxydlr_x_cyclat_0": [1401, 1402], "callproxydlr_x_cyclat_1": [1403, 1404], "callproxydlr_x_cyclat_2": [1405, 1406], "callproxydlr_x_cyclat_3": [1407, 1408], "callproxydlr_x_cyclat_4": [1409, 1410], "callproxyimfreq_0": [1411, 1412], "callproxyimfreq_1": [1413, 1414], "callproxyimfreq_2": [1415, 1416], "callproxyimfreq_3": [1417, 1418], "callproxyimfreq_4": [1419, 1420], "callproxyimfreq_x_brzone_0": [1421, 1422], "callproxyimfreq_x_brzone_1": [1423, 1424], "callproxyimfreq_x_brzone_2": [1425, 1426], "callproxyimfreq_x_brzone_3": [1427, 1428], "callproxyimfreq_x_brzone_4": [1429, 1430], "callproxyimfreq_x_cyclat_0": [1431, 1432], "callproxyimfreq_x_cyclat_1": [1433, 1434], "callproxyimfreq_x_cyclat_2": [1435, 1436], "callproxyimfreq_x_cyclat_3": [1437, 1438], "callproxyimfreq_x_cyclat_4": [1439, 1440], "callproxyimtime_0": [1441, 1442], "callproxyimtime_0_r": [1443, 1444], "callproxyimtime_1": [1445, 1446], "callproxyimtime_1_r": [1447, 1448], "callproxyimtime_2": [1449, 1450], "callproxyimtime_2_r": [1451, 1452], "callproxyimtime_3": [1453, 1454], "callproxyimtime_3_r": [1455, 1456], "callproxyimtime_4": [1457, 1458], "callproxyimtime_4_r": [1459, 1460], "callproxyimtime_x_brzone_0": [1461, 1462], "callproxyimtime_x_brzone_0_r": [1463, 1464], "callproxyimtime_x_brzone_1": [1465, 1466], "callproxyimtime_x_brzone_1_r": [1467, 1468], "callproxyimtime_x_brzone_2": [1469, 1470], "callproxyimtime_x_brzone_2_r": [1471, 1472], "callproxyimtime_x_brzone_3": [1473, 1474], "callproxyimtime_x_brzone_3_r": [1475, 1476], "callproxyimtime_x_brzone_4": [1477, 1478], "callproxyimtime_x_brzone_4_r": [1479, 1480], "callproxyimtime_x_cyclat_0": [1481, 1482], "callproxyimtime_x_cyclat_0_r": [1483, 1484], "callproxyimtime_x_cyclat_1": [1485, 1486], "callproxyimtime_x_cyclat_1_r": [1487, 1488], "callproxyimtime_x_cyclat_2": [1489, 1490], "callproxyimtime_x_cyclat_2_r": [1491, 1492], "callproxyimtime_x_cyclat_3": [1493, 1494], "callproxyimtime_x_cyclat_3_r": [1495, 1496], "callproxyimtime_x_cyclat_4": [1497, 1498], "callproxyimtime_x_cyclat_4_r": [1499, 1500], "callproxylegendre_0": [1501, 1502], "callproxylegendre_1": [1503, 1504], "callproxylegendre_2": [1505, 1506], "callproxylegendre_3": [1507, 1508], "callproxylegendre_4": [1509, 1510], "callproxylegendre_x_brzone_0": [1511, 1512], "callproxylegendre_x_brzone_1": [1513, 1514], "callproxylegendre_x_brzone_2": [1515, 1516], "callproxylegendre_x_brzone_3": [1517, 1518], "callproxylegendre_x_brzone_4": [1519, 1520], "callproxylegendre_x_cyclat_0": [1521, 1522], "callproxylegendre_x_cyclat_1": [1523, 1524], "callproxylegendre_x_cyclat_2": [1525, 1526], "callproxylegendre_x_cyclat_3": [1527, 1528], "callproxylegendre_x_cyclat_4": [1529, 1530], "callproxyrefreq_0": [1531, 1532], "callproxyrefreq_1": [1533, 1534], "callproxyrefreq_2": [1535, 1536], "callproxyrefreq_3": [1537, 1538], "callproxyrefreq_4": [1539, 1540], "callproxyrefreq_x_brzone_0": [1541, 1542], "callproxyrefreq_x_brzone_1": [1543, 1544], "callproxyrefreq_x_brzone_2": [1545, 1546], "callproxyrefreq_x_brzone_3": [1547, 1548], "callproxyrefreq_x_brzone_4": [1549, 1550], "callproxyrefreq_x_cyclat_0": [1551, 1552], "callproxyrefreq_x_cyclat_1": [1553, 1554], "callproxyrefreq_x_cyclat_2": [1555, 1556], "callproxyrefreq_x_cyclat_3": [1557, 1558], "callproxyrefreq_x_cyclat_4": [1559, 1560], "callproxyretime_0": [1561, 1562], "callproxyretime_1": [1563, 1564], "callproxyretime_2": [1565, 1566], "callproxyretime_3": [1567, 1568], "callproxyretime_4": [1569, 1570], "callproxyretime_x_brzone_0": [1571, 1572], "callproxyretime_x_brzone_1": [1573, 1574], "callproxyretime_x_brzone_2": [1575, 1576], "callproxyretime_x_brzone_3": [1577, 1578], "callproxyretime_x_brzone_4": [1579, 1580], "callproxyretime_x_cyclat_0": [1581, 1582], "callproxyretime_x_cyclat_1": [1583, 1584], "callproxyretime_x_cyclat_2": [1585, 1586], "callproxyretime_x_cyclat_3": [1587, 1588], "callproxyretime_x_cyclat_4": [1589, 1590], "set_from_gf_data_mul_lr": 1591, "bz_patch": [1593, 1594, 1595, 1596], "bzpatch": [1594, 1595, 1596], "lattice_tool": [1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620], "lattice_to_real_coordin": [1600, 1617, 1637, 1653], "n_orbit": [1601, 1638, 1654], "ndim": [1602, 1609, 1639, 1655], "orbital_nam": [1603, 1640, 1656], "orbital_posit": [1604, 1641, 1657], "brillouinzon": [1606, 1607, 1608, 1609, 1610], "dispers": [1613, 1631, 1648], "displ_vec": 1614, "overlap_mat_vec": 1618, "dos_patch": [1620, 1660], "latticepoint": [1622, 1623, 1624], "super_lattic": [1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644], "tbsuperlattic": [1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644], "change_coordinates_l_to_sl": 1628, "change_coordinates_sl_to_l": 1629, "cluster_sit": 1630, "get_kmesh": [1634, 1650], "get_rmesh": [1635, 1651], "pack_index_site_orbit": 1642, "unpack_index_site_orbit": 1644, "tb_from_pythtb": 1662, "tb_from_wannier90": 1663, "tb_to_sympi": 1664, "extend_wannier90_to_spin": 1665, "k_space_path": 1666, "parse_hopping_from_wannier90_hr_dat": 1667, "parse_lattice_vectors_from_wannier90_wout": 1668, "is_zero": 1674, "c_dag": 1677, "dagger": 1678, "is_op_hermitian": 1679, "n": 1680, "u_matrix": [1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696], "u_j_to_radial_integr": 1683, "u_matrix_kanamori": 1684, "u_matrix_slat": 1685, "angular_matrix_el": 1686, "clebsch_gordan": 1687, "cubic_nam": 1688, "eg_submatrix": 1689, "radial_integrals_to_u_j": 1690, "reduce_4index_to_2index": 1691, "spherical_to_cub": 1692, "subarrai": 1693, "t2g_submatrix": 1694, "three_j_symbol": 1695, "transform_u_matrix": 1696, "extractor": [1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705], "block_matrix_from_op": 1698, "dict_to_matrix": 1699, "extract_u_dict2": 1700, "extract_u_dict4": 1701, "extract_h_dict": 1702, "op_from_block_matrix": 1703, "quadratic_term": 1704, "quartic_term": 1705, "backward_compat": 1707, "diagonal_part": 1708, "h_int_dens": 1709, "h_int_kanamori": 1710, "h_int_slat": 1711, "make_operator_r": 1712, "l2_op": 1714, "ls_op": 1715, "l_op": 1716, "n_op": 1717, "s2_op": 1718, "s_op": 1719, "check_backward_compat": 1720, "op_struct": [1721, 1722, 1723], "get_mkind": 1722, "set_operator_structur": 1723, "mpl_interfac": [1725, 1726, 1727, 1728, 1729], "oplot": 1726, "oploti": 1727, "oplotr": 1728, "use_amsmath": 1729, "clip_arrai": 1731, "plot_protocol_appli": 1732, "randomgener": [1734, 1735], "random_generator_names_list": 1737, "sumk": [1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765], "sumk_discret": [1753, 1754, 1755, 1756, 1757, 1758], "sumkdiscret": [1754, 1755, 1756, 1757, 1758], "gfblocindic": [1755, 1761], "n_kpt": [1757, 1764], "resize_arrai": [1758, 1765], "sumk_discrete_from_lattic": [1759, 1760, 1761, 1762, 1763, 1764, 1765], "sumkdiscretefromlattic": [1760, 1761, 1762, 1763, 1764, 1765], "recompute_grid": 1762, "bound_and_bisect": [1767, 1768, 1769], "determine_bound": 1769, "capture_stdout": 1770, "comparison_test": [1771, 1772, 1773, 1774, 1775, 1776], "assert_array_close_to_scalar": 1772, "assert_arrays_are_clos": 1773, "assert_block2_gfs_are_clos": 1774, "assert_block_gfs_are_clos": 1775, "assert_gfs_are_clos": 1776, "dichotomi": [1777, 1778], "dist_on_nod": [1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798], "distributiononnod": [1780, 1781, 1782, 1783], "sleeptim": [1781, 1785, 1792], "distributiononnodesonestack": [1784, 1785, 1786, 1787, 1788, 1789, 1790], "finish": [1787, 1794], "treat": [1790, 1798], "distributiononnodestest": [1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798], "the_funct": 1797, "h5diff": [1799, 1800, 1801], "compar": 1800, "check_for_mpi": 1803, "mpi_mpi4pi": [1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817], "bcast": [1807, 1821], "is_master_nod": [1808, 1822], "master_gets_host_nam": [1809, 1823], "myprint_err": [1810, 1824], "myprint_out": [1811, 1825], "recv": [1812, 1826], "report": [1813, 1827], "send": [1814, 1828], "slice_arrai": [1815, 1829], "slice_inf": 1816, "slice_sup": 1817, "mpi_nompi": [1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829], "redirect": [1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847], "daemon": 1833, "getnam": 1834, "ident": 1835, "isdaemon": 1836, "is_al": 1837, "join": 1838, "native_id": 1840, "setdaemon": 1842, "setnam": 1843, "stop": 1845, "start_redirect": 1846, "stop_redirect": 1847, "frequent": 1848, "ask": 1848, "question": [1848, 1900, 1903, 1905, 1908], "q": [1848, 1900, 1905], "my": 1848, "e": 1848, "g": [1848, 1862, 1889], "hash": 1848, "debug": 1848, "purpos": 1848, "welcom": 1849, "core": 1849, "numer": 1849, "algorithm": 1849, "where": 1849, "ubuntu": [1850, 1857], "debian": 1850, "anaconda": 1850, "docker": 1850, "apptain": 1850, "binder": 1850, "sourc": [1850, 1855, 1864], "easybuild": 1850, "prerequisit": [1850, 1854], "setup": 1850, "further": 1850, "clang": 1851, "linux": 1851, "libclang": 1851, "unix": 1852, "common": 1852, "softwar": 1852, "develop": 1852, "affect": 1852, "openmp": 1852, "custom": 1853, "mac": 1854, "o": 1854, "virtual": 1855, "prepar": 1858, "ipython": [1858, 1870, 1881], "notebook": [1858, 1870, 1881, 1903, 1908], "floor": 1858, "divis": 1858, "regener": 1858, "final": 1858, "user": 1859, "why": 1859, "quick": 1859, "multidimension": 1860, "declar": 1860, "print": 1860, "matric": 1860, "vector": 1860, "defin": [1860, 1881, 1886], "through": 1860, "algebra": 1860, "ctqmc": 1861, "creation": [1861, 1862], "empti": 1861, "inform": 1861, "one": [1861, 1873, 1877], "replac": 1861, "omega": [1862, 1900, 1905], "nu": 1862, "tau": [1862, 1889], "fill": 1862, "structur": [1864, 1903, 1908], "project": [1865, 1867], "profil": 1866, "you": [1867, 1873, 1877], "its": 1867, "mix": 1867, "theori": [1869, 1888, 1894, 1900, 1902, 1905, 1907], "beth": [1869, 1888, 1894], "learn": 1870, "model": [1871, 1872, 1889, 1890, 1891, 1892, 1895, 1896, 1897], "squar": [1872, 1899, 1904], "espresso": [1873, 1877], "creat": [1873, 1877], "wannier": [1873, 1877], "low": [1873, 1877], "descript": [1873, 1877], "la_2cuo_4": [1873, 1877], "shot": [1873, 1877], "converg": [1873, 1877], "remind": [1873, 1877, 1889], "self": [1873, 1876, 1877, 1880, 1902, 1907], "\u03c3": [1873, 1877], "spectral": [1873, 1877], "6": [1873, 1877, 1895], "fermi": [1873, 1877, 1899, 1904], "k_z": [1873, 1877], "post": [1873, 1877], "conclud": [1873, 1877], "mai": [1873, 1877], "now": [1873, 1877], "02": [1873, 1877], "fermise": [1873, 1874, 1877, 1878], "phase": [1875, 1879, 1901, 1906], "diagram": [1875, 1879], "explor": [1875, 1879], "comparison": [1876, 1880, 1894], "charg": [1876, 1880], "consist": [1876, 1880, 1902, 1907], "introduc": 1881, "mode": 1881, "shell": 1881, "veri": 1881, "indent": 1881, "If": 1881, "statement": 1881, "import": [1881, 1886], "modul": 1881, "numpi": [1881, 1886], "help": 1881, "goal": [1882, 1900, 1905], "inlin": 1882, "prettier": 1882, "subplot": 1882, "like": 1882, "approach": 1882, "circular": [1883, 1887], "arithmet": [1883, 1887], "obtain": [1883, 1887], "compact": [1883, 1887], "pade": [1883, 1887], "exercis": [1883, 1887, 1896], "fundament": 1885, "multivari": 1886, "perturb": [1888, 1894], "visual": [1888, 1889, 1894], "mott": [1888, 1894], "transit": [1888, 1894], "anderson": 1889, "cthyb": 1889, "sampl": 1889, "singl": [1890, 1895], "orbit": [1890, 1891, 1895, 1896], "valenc": [1892, 1897], "bond": [1892, 1897], "precomput": [1892, 1897], "literatur": 1894, "j": 1896, "conclus": 1896, "perfect": [1899, 1900, 1904, 1905], "nest": [1899, 1900, 1904, 1905], "nearest": [1899, 1904], "neighbour": [1899, 1904], "surfac": [1899, 1904], "suscept": [1900, 1905], "chi_0": [1900, 1903, 1905, 1908], "fast": [1900, 1905], "mathbf": [1900, 1905], "omega_n": [1900, 1905], "static": [1900, 1905], "approxim": [1901, 1906], "rpa": [1901, 1902, 1903, 1906, 1907, 1908], "tpsc": [1902, 1903, 1907, 1908], "behaviour": [1902, 1907], "u_": [1902, 1907], "sp": [1902, 1907], "ch": [1902, 1907], "weak": [1902, 1907], "temperatur": [1903, 1908], "antiferromagnet": [1903, 1908], "dimension": [1903, 1908], "mermin": [1903, 1908], "wagner": [1903, 1908], "theorem": [1903, 1908], "previou": [1903, 1908], "arbitrari": [1903, 1908], "spin": [1903, 1908], "factor": [1903, 1908], "s_": [1903, 1908], "remark": [1903, 1908], "compat": 1910}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "nbsphinx": 4, "sphinx": 60}, "alltitles": {"Manual": [[488, null], [9, "manual"]], "Convertion vs wrapping": [[492, "convertion-vs-wrapping"]], "Wrapping classes from C++ to Python": [[492, "wrapping-classes-from-c-to-python"]], "Convertion": [[492, "convertion"]], "The class_ class": [[490, "the-class-class"]], "General Principle": [[494, "general-principle"]], "The module_ class": [[493, "the-module-class"]], "The cfunction class": [[489, "the-cfunction-class"]], "Cpp2Py: a C++/Python interfacing tool": [[491, "cpp2py-a-c-python-interfacing-tool"]], "Forming CLEF expressions": [[507, "forming-clef-expressions"]], "Placeholders": [[507, "placeholders"]], "Forming an expression": [[507, "forming-an-expression"]], "Storage of expressions [advanced]": [[507, "storage-of-expressions-advanced"]], "[triqs/clef] Clef: Compile-time lazy expressions and functions": [[503, "triqs-clef-clef-compile-time-lazy-expressions-and-functions"]], "Example": [[497, "example"], [519, "example"], [563, "example"], [548, "example"], [546, "example"], [541, "example"], [544, "example"], [545, "example"], [580, "example"], [582, "example"], [19, "example"], [95, "example"], [255, "example"], [254, "example"], [260, "example"], [316, "example"], [450, "example"], [459, "example"], [454, "example"], [457, "example"], [461, "example"], [482, "example"], [483, "example"], [484, "example"], [485, "example"], [513, "example"]], "Solution 1. The class provides the transformation into a dict of hdf-compliant objects": [[497, "solution-1-the-class-provides-the-transformation-into-a-dict-of-hdf-compliant-objects"]], "Principle": [[497, "principle"]], "What happens in detail?": [[497, "what-happens-in-detail"]], "A lazy sum": [[505, "a-lazy-sum"]], "More complex examples": [[504, "more-complex-examples"]], "Evaluating CLEF expressions": [[506, "evaluating-clef-expressions"]], "Complete evaluation": [[506, "complete-evaluation"]], "Partial evaluation": [[506, "partial-evaluation"], [531, "partial-evaluation"], [531, "id1"], [1886, "Partial-evaluation"]], "Motivation: a little tour of CLEF": [[509, "motivation-a-little-tour-of-clef"]], "Transform CLEF expressions into functions": [[508, "transform-clef-expressions-into-functions"]], "make_function": [[508, "make-function"]], "Short notation with >> operator": [[508, "short-notation-with-operator"]], "clef::function": [[508, "clef-function"]], "Examples": [[508, "examples"], [523, "examples"], [535, "examples"], [529, "examples"], [528, "examples"], [533, "examples"], [547, "examples"], [532, "examples"], [527, "examples"]], "Automatic assignment of containers": [[502, "automatic-assignment-of-containers"]], "Python API of the desc file": [[495, "python-api-of-the-desc-file"]], "triqs/MPI": [[499, "triqs-mpi"]], "Introduction": [[499, "introduction"], [583, "introduction"], [568, "introduction"]], "MPI documentation/manual/triqs": [[499, "mpi-documentation-manual-triqs"]], "Supported functions and types": [[499, "supported-functions-and-types"]], "Basic usage": [[499, "basic-usage"]], "Headers": [[499, "headers"]], "MPI example": [[499, "mpi-example"]], "[triqs/h5] The HDF5 format": [[496, "triqs-h5-the-hdf5-format"]], "[triqs/atom_diag] Lightweight exact diagonalization solver and tools": [[500, "triqs-atom-diag-lightweight-exact-diagonalization-solver-and-tools"]], "Example of use: Python": [[500, "example-of-use-python"]], "Example of use: C++": [[500, "example-of-use-c"]], "Utility functions for atom_diag": [[501, "utility-functions-for-atom-diag"]], "Operator()": [[524, "operator"]], "(1) Evaluation": [[524, "evaluation"]], "(2) Building a view": [[524, "building-a-view"]], "(3) Interaction with clef expressions": [[524, "interaction-with-clef-expressions"]], "Assignment": [[522, "assignment"]], "Move assign operator": [[522, "move-assign-operator"]], "Interaction with CLEF expressions": [[516, "interaction-with-clef-expressions"]], "Overloading functions and methods for CLEF arguments": [[510, "overloading-functions-and-methods-for-clef-arguments"]], "Overloading functions": [[510, "overloading-functions"]], "Overloading operator() and other methods": [[510, "overloading-operator-and-other-methods"]], "Fourier: implementation notes": [[520, "fourier-implementation-notes"]], "The FFTW library": [[520, "the-fftw-library"]], "Implementation in real time/frequency using FFTW": [[520, "implementation-in-real-time-frequency-using-fftw"]], "Implementation in imaginary time/frequency using FFTW": [[520, "implementation-in-imaginary-time-frequency-using-fftw"]], "Special case of real functions in time for fermions": [[520, "special-case-of-real-functions-in-time-for-fermions"]], "Special case of real functions in time for bosons": [[520, "special-case-of-real-functions-in-time-for-bosons"]], "Usage of the tail in the TF": [[520, "usage-of-the-tail-in-the-tf"]], "[block_gf] Block Green functions": [[523, "block-gf-t-block-green-functions"]], "Constructors": [[523, "constructors"], [525, "constructors"]], "Factories": [[523, "factories"]], "Factories for the regular type": [[523, "factories-for-the-regular-type"]], "Factories for the view type": [[523, "factories-for-the-view-type"]], "Domain & mesh": [[523, "domain-mesh"], [535, "domain-mesh"], [529, "domain-mesh"], [528, "domain-mesh"], [533, "domain-mesh"], [532, "domain-mesh"], [527, "domain-mesh"]], "Singularity": [[523, "singularity"], [535, "singularity"], [529, "singularity"], [528, "singularity"], [532, "singularity"]], "Interpolation method": [[523, "interpolation-method"], [532, "interpolation-method"]], "Data storage": [[523, "data-storage"], [535, "data-storage"], [529, "data-storage"], [528, "data-storage"], [533, "data-storage"], [532, "data-storage"], [527, "data-storage"]], "HDF5 storage convention": [[523, "hdf5-storage-convention"], [535, "hdf5-storage-convention"], [529, "hdf5-storage-convention"], [528, "hdf5-storage-convention"], [533, "hdf5-storage-convention"], [532, "hdf5-storage-convention"], [527, "hdf5-storage-convention"]], "Iterators": [[523, "iterators"]], "Parameters": [[511, "parameters"], [140, "parameters"], [141, "parameters"], [12, "parameters"], [15, "parameters"], [13, "parameters"], [19, "parameters"], [18, "parameters"], [26, "parameters"], [32, "parameters"], [33, "parameters"], [34, "parameters"], [39, "parameters"], [43, "parameters"], [47, "parameters"], [48, "parameters"], [46, "parameters"], [53, "parameters"], [57, "parameters"], [58, "parameters"], [63, "parameters"], [71, "parameters"], [73, "parameters"], [76, "parameters"], [83, "parameters"], [85, "parameters"], [89, "parameters"], [88, "parameters"], [97, "parameters"], [95, "parameters"], [100, "parameters"], [105, "parameters"], [113, "parameters"], [116, "parameters"], [112, "parameters"], [117, "parameters"], [114, "parameters"], [125, "parameters"], [129, "parameters"], [126, "parameters"], [124, "parameters"], [134, "parameters"], [143, "parameters"], [142, "parameters"], [144, "parameters"], [150, "parameters"], [149, "parameters"], [153, "parameters"], [151, "parameters"], [156, "parameters"], [155, "parameters"], [159, "parameters"], [158, "parameters"], [157, "parameters"], [162, "parameters"], [160, "parameters"], [170, "parameters"], [171, "parameters"], [173, "parameters"], [182, "parameters"], [179, "parameters"], [181, "parameters"], [183, "parameters"], [189, "parameters"], [184, "parameters"], [187, "parameters"], [186, "parameters"], [188, "parameters"], [185, "parameters"], [190, "parameters"], [197, "parameters"], [223, "parameters"], [235, "parameters"], [255, "parameters"], [251, "parameters"], [254, "parameters"], [260, "parameters"], [256, "parameters"], [257, "parameters"], [268, "parameters"], [272, "parameters"], [280, "parameters"], [284, "parameters"], [297, "parameters"], [292, "parameters"], [293, "parameters"], [302, "parameters"], [301, "parameters"], [300, "parameters"], [314, "parameters"], [315, "parameters"], [319, "parameters"], [316, "parameters"], [317, "parameters"], [332, "parameters"], [333, "parameters"], [329, "parameters"], [334, "parameters"], [336, "parameters"], [338, "parameters"], [342, "parameters"], [344, "parameters"], [341, "parameters"], [345, "parameters"], [343, "parameters"], [348, "parameters"], [349, "parameters"], [346, "parameters"], [354, "parameters"], [356, "parameters"], [355, "parameters"], [352, "parameters"], [363, "parameters"], [358, "parameters"], [362, "parameters"], [360, "parameters"], [359, "parameters"], [368, "parameters"], [369, "parameters"], [375, "parameters"], [370, "parameters"], [373, "parameters"], [374, "parameters"], [372, "parameters"], [380, "parameters"], [379, "parameters"], [381, "parameters"], [376, "parameters"], [386, "parameters"], [384, "parameters"], [387, "parameters"], [385, "parameters"], [391, "parameters"], [392, "parameters"], [388, "parameters"], [398, "parameters"], [396, "parameters"], [394, "parameters"], [399, "parameters"], [397, "parameters"], [402, "parameters"], [403, "parameters"], [401, "parameters"], [407, "parameters"], [410, "parameters"], [408, "parameters"], [413, "parameters"], [428, "parameters"], [429, "parameters"], [427, "parameters"], [431, "parameters"], [430, "parameters"], [443, "parameters"], [450, "parameters"], [451, "parameters"], [456, "parameters"], [461, "parameters"], [465, "parameters"], [462, "parameters"], [467, "parameters"], [471, "parameters"], [468, "parameters"], [473, "parameters"], [476, "parameters"], [477, "parameters"], [472, "parameters"], [481, "parameters"], [482, "parameters"], [480, "parameters"], [483, "parameters"], [478, "parameters"], [484, "parameters"], [487, "parameters"], [485, "parameters"], [486, "parameters"]], "Template parameters": [[511, "template-parameters"], [572, "template-parameters"], [140, "template-parameters"], [141, "template-parameters"], [14, "template-parameters"], [13, "template-parameters"], [19, "template-parameters"], [20, "template-parameters"], [18, "template-parameters"], [26, "template-parameters"], [28, "template-parameters"], [32, "template-parameters"], [33, "template-parameters"], [34, "template-parameters"], [35, "template-parameters"], [39, "template-parameters"], [42, "template-parameters"], [47, "template-parameters"], [48, "template-parameters"], [46, "template-parameters"], [62, "template-parameters"], [63, "template-parameters"], [64, "template-parameters"], [71, "template-parameters"], [72, "template-parameters"], [77, "template-parameters"], [83, "template-parameters"], [84, "template-parameters"], [89, "template-parameters"], [90, "template-parameters"], [96, "template-parameters"], [95, "template-parameters"], [100, "template-parameters"], [101, "template-parameters"], [105, "template-parameters"], [113, "template-parameters"], [112, "template-parameters"], [125, "template-parameters"], [129, "template-parameters"], [126, "template-parameters"], [128, "template-parameters"], [131, "template-parameters"], [132, "template-parameters"], [145, "template-parameters"], [143, "template-parameters"], [146, "template-parameters"], [142, "template-parameters"], [144, "template-parameters"], [147, "template-parameters"], [150, "template-parameters"], [149, "template-parameters"], [148, "template-parameters"], [151, "template-parameters"], [154, "template-parameters"], [182, "template-parameters"], [181, "template-parameters"], [183, "template-parameters"], [184, "template-parameters"], [187, "template-parameters"], [186, "template-parameters"], [185, "template-parameters"], [197, "template-parameters"], [255, "template-parameters"], [251, "template-parameters"], [254, "template-parameters"], [260, "template-parameters"], [259, "template-parameters"], [256, "template-parameters"], [257, "template-parameters"], [268, "template-parameters"], [272, "template-parameters"], [271, "template-parameters"], [284, "template-parameters"], [283, "template-parameters"], [297, "template-parameters"], [292, "template-parameters"], [302, "template-parameters"], [301, "template-parameters"], [300, "template-parameters"], [314, "template-parameters"], [315, "template-parameters"], [319, "template-parameters"], [316, "template-parameters"], [351, "template-parameters"], [354, "template-parameters"], [357, "template-parameters"], [356, "template-parameters"], [355, "template-parameters"], [360, "template-parameters"], [365, "template-parameters"], [370, "template-parameters"], [381, "template-parameters"], [378, "template-parameters"], [410, "template-parameters"], [451, "template-parameters"], [461, "template-parameters"], [481, "template-parameters"], [482, "template-parameters"], [480, "template-parameters"], [483, "template-parameters"], [484, "template-parameters"], [487, "template-parameters"], [485, "template-parameters"], [521, "template-parameters"]], "Notations and documentation conventions": [[511, "notations-and-documentation-conventions"]], "Notation": [[511, "notation"]], "Documentation conventions for C++ code": [[511, "documentation-conventions-for-c-code"]], "add": [[511, "add"]], "Return value": [[511, "return-value"]], "Fourier transforms": [[519, "fourier-transforms"], [1883, "Fourier-transforms"], [1887, "Fourier-transforms"]], "Synopsis": [[519, "synopsis"], [535, "synopsis"], [529, "synopsis"], [528, "synopsis"], [533, "synopsis"], [513, "synopsis"], [527, "synopsis"]], "fourier": [[519, "fourier"], [0, "fourier"], [0, "id76"]], "How does it work ?": [[514, "how-does-it-work"]], "Cofactors": [[514, "cofactors"]], "The Sherman-Morrison formula": [[514, "the-sherman-morrison-formula"]], "Addition of a line and a column, or more": [[514, "addition-of-a-line-and-a-column-or-more"]], "Removal of a line and a column, or more": [[514, "removal-of-a-line-and-a-column-or-more"]], "Change of a column": [[514, "change-of-a-column"]], "Change of a line": [[514, "change-of-a-line"]], "Change of a line and a column": [[514, "change-of-a-line-and-a-column"]], "Concepts": [[517, "concepts"], [564, "concepts"]], "Domain": [[517, "domain"]], "PureFunctionOnDomain": [[517, "purefunctionondomain"]], "Mesh": [[517, "mesh"]], "MeshPoint": [[517, "meshpoint"]], "Basic notions": [[515, "basic-notions"]], "Types of Green\u2019s functions": [[515, "types-of-green-s-functions"]], "Matsubara Green\u2019s function in imaginary time ": [[515, "matsubara-green-s-function-in-imaginary-time-gfimtime"]], "Matsubara Green\u2019s function in imaginary frequencies ": [[515, "matsubara-green-s-function-in-imaginary-frequencies-gfimfreq"]], "Matsubara Green\u2019s function with Legendre polynomials ": [[515, "matsubara-green-s-function-with-legendre-polynomials-gflegendre"]], "Green function in real time ": [[515, "green-function-in-real-time-gfretime"]], "Retarded Green\u2019s function in real frequencies ": [[515, "retarded-green-s-function-in-real-frequencies-gfrefreq"]], "Fourier and Legendre transforms": [[515, "fourier-and-legendre-transforms"]], "High-frequency tail": [[515, "high-frequency-tail"]], "How to contribute to documentation?": [[7, "how-to-contribute-to-documentation"]], "Who should write documentation?": [[7, "who-should-write-documentation"]], "Building the documentation": [[7, "building-the-documentation"]], "Editing the documentation": [[7, "editing-the-documentation"]], "Contributing": [[6, "contributing"]], "Issues and feature requests": [[6, "issues-and-feature-requests"]], "Contributing to code and documentation": [[6, "contributing-to-code-and-documentation"]], "Github discussions": [[6, "github-discussions"]], "About TRIQS": [[3, "about-triqs"]], "Authors & contributors": [[3, "authors-contributors"]], "Citation": [[3, "citation"]], "License": [[3, "license"]], "Disclaimer": [[3, "disclaimer"], [1854, "disclaimer"]], "Logo files": [[3, "logo-files"]], "How to make a pull request?": [[8, "how-to-make-a-pull-request"]], "Setting up your fork repository": [[8, "setting-up-your-fork-repository"]], "Making your pull request": [[8, "making-your-pull-request"]], "mpi": [[0, "id26"], [0, "id58"], [108, "mpi"]], "Changelog": [[0, "changelog"]], "Version 3.3.1": [[0, "version-3-3-1"]], "General": [[0, "general"], [0, "id2"], [0, "id4"], [0, "id8"], [0, "id18"], [0, "id30"], [0, "id35"], [0, "id41"], [0, "id49"], [0, "id52"], [0, "id62"], [0, "id66"], [0, "id74"], [0, "id80"]], "doc": [[0, "doc"], [0, "id3"], [0, "id5"], [0, "id10"], [0, "id14"], [0, "id21"], [0, "id34"], [0, "id38"], [0, "id46"], [0, "id50"], [0, "id54"], [0, "id64"], [0, "id73"], [0, "id79"]], "Version 3.3.0": [[0, "version-3-3-0"]], "Gf": [[0, "gf"], [0, "id9"], [0, "id31"]], "atom_diag": [[0, "atom-diag"], [0, "id19"], [0, "id27"], [0, "id36"], [0, "id72"]], "cmake": [[0, "cmake"], [0, "id7"], [0, "id11"], [0, "id13"], [0, "id20"], [0, "id29"], [0, "id32"], [0, "id37"], [0, "id42"], [0, "id48"], [0, "id51"], [0, "id53"], [0, "id65"], [0, "id69"], [0, "id77"]], "jenkins": [[0, "jenkins"], [0, "id6"], [0, "id12"], [0, "id23"], [0, "id33"], [0, "id40"], [0, "id45"], [0, "id56"], [0, "id63"]], "Version 3.2.1": [[0, "version-3-2-1"]], "Version 3.2.0": [[0, "version-3-2-0"]], "Porting Script": [[0, "porting-script"], [0, "id17"]], "API Changes": [[0, "api-changes"]], "Meshes": [[0, "meshes"], [0, "id16"]], "DLR": [[0, "dlr"]], "Lattice": [[0, "lattice"]], "det_manip": [[0, "det-manip"], [0, "id71"]], "mc_generic": [[0, "mc-generic"], [0, "id25"], [0, "id57"]], "MPI": [[0, "mpi"]], "Fixes": [[0, "fixes"]], "Version 3.1.1": [[0, "version-3-1-1"]], "gf": [[0, "id15"], [0, "id22"], [0, "id28"], [0, "id39"], [0, "id44"], [0, "id47"], [0, "id55"], [0, "id67"], [0, "id81"]], "Version 3.1.0": [[0, "version-3-1-0"]], "Deprecate use of string indices for Green functions": [[0, "deprecate-use-of-string-indices-for-green-functions"]], "Change in gf_struct objects": [[0, "change-in-gf-struct-objects"]], "Green function meshes (C++)": [[0, "green-function-meshes-c"]], "Move multi-array into TRIQS/nda library": [[0, "move-multi-array-into-triqs-nda-library"]], "triqs::stat Rework": [[0, "triqs-stat-rework"]], "Bath discretization function": [[0, "bath-discretization-function"]], "Jenkins Sanitizer Checks": [[0, "jenkins-sanitizer-checks"]], "New website theme": [[0, "new-website-theme"]], "TightBinding and TBLattice improvements": [[0, "tightbinding-and-tblattice-improvements"]], "Require C++20 capable compiler": [[0, "require-c-20-capable-compiler"]], "cpp2py": [[0, "cpp2py"], [0, "id43"]], "lattice": [[0, "id24"], [0, "id59"], [0, "id70"]], "mesh": [[0, "mesh"], [526, "mesh"]], "nda": [[0, "nda"]], "Version 3.0.2": [[0, "version-3-0-2"]], "Python 3.10": [[0, "python-3-10"]], "c++20": [[0, "c-20"]], "Version 3.0.1": [[0, "version-3-0-1"]], "Issue 819 - Atom Diag": [[0, "issue-819-atom-diag"]], "array": [[0, "array"], [0, "id68"]], "Version 3.0.0": [[0, "version-3-0-0"]], "Renamings": [[0, "renamings"]], "Dependency Management": [[0, "dependency-management"]], "h5py dependency": [[0, "h5py-dependency"]], "Removal of deprecated API": [[0, "removal-of-deprecated-api"]], "detmanip": [[0, "detmanip"]], "operators": [[0, "operators"], [0, "id60"]], "packaging": [[0, "packaging"], [0, "id61"]], "Version 2.2.3": [[0, "version-2-2-3"]], "Version 2.2.2": [[0, "version-2-2-2"]], "Version 2.2.1": [[0, "version-2-2-1"]], "Version 2.2.0": [[0, "version-2-2-0"]], "Make range and itertools functionality standalone": [[0, "make-range-and-itertools-functionality-standalone"]], "Make mpi functionality standalone and change namespace": [[0, "make-mpi-functionality-standalone-and-change-namespace"]], "Non-owning views (C++)": [[0, "non-owning-views-c"]], "Dynamic Analyzer Checks (ASAN, UBSAN)": [[0, "dynamic-analyzer-checks-asan-ubsan"]], "No longer install googletest": [[0, "no-longer-install-googletest"]], "app4triqs": [[0, "app4triqs"]], "arrays": [[0, "arrays"], [0, "id78"]], "h5": [[0, "h5"]], "itertools": [[0, "itertools"], [11, "itertools"]], "pytriqs": [[0, "pytriqs"], [0, "id75"], [0, "id83"]], "Version 2.1.1": [[0, "version-2-1-1"]], "Version 2.1.0": [[0, "version-2-1-0"]], "clef": [[0, "clef"]], "BlockGf": [[0, "blockgf"]], "lapack": [[0, "lapack"]], "tail": [[0, "tail"], [0, "id82"]], "mc_tools": [[0, "mc-tools"]], "Version 2.0.0": [[0, "version-2-0-0"]], "fourier,tail": [[0, "fourier-tail"]], "hdf5": [[0, "hdf5"]], "gf/py": [[0, "gf-py"]], "py": [[0, "py"]], "travis": [[0, "travis"]], "pytriqs/gf": [[0, "pytriqs-gf"]], "test": [[0, "test"]], "tail,fourier": [[0, "tail-fourier"]], "Version 1.5": [[0, "version-1-5"]], "API changes": [[0, "id84"]], "Version 1.4": [[0, "version-1-4"]], "Documentation": [[0, "documentation"], [9, "documentation"]], "Installation": [[0, "installation"], [0, "id85"], [1850, "installation"]], "Many-body operators": [[0, "many-body-operators"], [0, "id86"]], "Green\u2019s functions": [[0, "greens-functions"], [542, "green-s-functions"], [1862, "green-s-functions"]], "Tests": [[0, "tests"], [0, "id88"]], "Version 1.3": [[0, "version-1-3"]], "Green functions": [[0, "green-functions"]], "Monte-Carlo tools": [[0, "monte-carlo-tools"]], "Determinant manipulation": [[0, "determinant-manipulation"]], "HDF5": [[0, "id87"], [551, "hdf5"]], "c++2py": [[0, "c-2py"]], "Miscellaneous": [[0, "miscellaneous"]], "Version 1.2": [[0, "version-1-2"]], "C++": [[0, "c"], [1866, "c"], [574, "c"]], "Python": [[0, "python"], [572, "python"], [1866, "python"], [574, "python"]], "Green Functions": [[0, "id89"]], "Version 1.1": [[0, "version-1-1"]], "Version 1.0": [[0, "version-1-0"]], "Python classes": [[0, "python-classes"]], "Archives": [[0, "archives"]], "Table of contents": [[5, "table-of-contents"]], "Applications based on TRIQS": [[4, "applications-based-on-triqs"]], "Table of Contents": [[4, "table-of-contents"]], "Impurity Solvers": [[4, "impurity-solvers"]], "Hybridization-expansion solver": [[4, "hybridization-expansion-solver"]], "Hubbard I solver": [[4, "hubbard-i-solver"]], "Hartree Fock solver": [[4, "hartree-fock-solver"]], "PYED - Exact diagonalization for finite quantum systems (external)": [[4, "pyed-exact-diagonalization-for-finite-quantum-systems-external"]], "Interface to the pomerol exact diagonalization solver (external)": [[4, "interface-to-the-pomerol-exact-diagonalization-solver-external"]], "Interface to the w2dynamics impurity solver": [[4, "interface-to-the-w2dynamics-impurity-solver"]], "Interface to the NRG Ljubljana impurity solver": [[4, "interface-to-the-nrg-ljubljana-impurity-solver"]], "Ab-Initio Tools": [[4, "ab-initio-tools"]], "DFT tools - Toolbox for ab initio calculations of correlated materials": [[4, "dft-tools-toolbox-for-ab-initio-calculations-of-correlated-materials"]], "solid_dmft - Python wrapper to perform DFT+DMFT calculations using TRIQS": [[4, "solid-dmft-python-wrapper-to-perform-dft-dmft-calculations-using-triqs"]], "Analytic Continuation": [[4, "analytic-continuation"]], "Maxent": [[4, "maxent"]], "Nevanlinna Analytic Continuation": [[4, "nevanlinna-analytic-continuation"]], "SOM - Stochastic Optimization Method for Analytic Continuation (external)": [[4, "som-stochastic-optimization-method-for-analytic-continuation-external"]], "Interface to Omegamaxent": [[4, "interface-to-omegamaxent"]], "Other Applications": [[4, "other-applications"]], "TPRF - The Two-Particle Response Function tool box": [[4, "tprf-the-two-particle-response-function-tool-box"]], "TRIQS Solver benchmarks": [[4, "triqs-solver-benchmarks"]], "App4Triqs Application Skeleton": [[4, "app4triqs-application-skeleton"]], "Cpp2Py": [[4, "cpp2py"]], "C++ API": [[9, "c-api"]], "Python API": [[9, "python-api"], [552, "python-api"]], "Target reinterpretation": [[534, "target-reinterpretation"]], "Evaluation method": [[535, "evaluation-method"], [529, "evaluation-method"], [528, "evaluation-method"], [533, "evaluation-method"], [527, "evaluation-method"]], "[gf] Real time": [[535, "gf-retime-real-time"]], "Implementation notes": [[538, "implementation-notes"]], "Data access": [[526, "data-access"]], "data": [[526, "data"]], "singularity": [[526, "singularity"]], "symmetry": [[526, "symmetry"]], "[gf] Legendre representation": [[529, "gf-legendre-legendre-representation"]], "Specializations": [[536, "specializations"]], "[gf] Matsubara imaginary time": [[528, "gf-imtime-matsubara-imaginary-time"]], "Misc": [[530, "misc"]], "Statistic": [[530, "statistic"]], "Operator []": [[537, "operator"]], "(1) Use the linear index of the mesh": [[537, "use-the-linear-index-of-the-mesh"]], "(2) Use the mesh_point of the mesh": [[537, "use-the-mesh-point-of-the-mesh"]], "(3) Find the closest mesh point from a domain point": [[537, "find-the-closest-mesh-point-from-a-domain-point"]], "(4) Interaction with clef expressions": [[537, "interaction-with-clef-expressions"]], "[gf] Real frequencies": [[533, "gf-refreq-real-frequencies"]], "Constructors of gf": [[525, "constructors-of-gf"]], "triqs.atom_diag.atom_diag": [[590, "module-triqs.atom_diag.atom_diag"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.c_connection": [[593, "triqs-atom-diag-atom-diag-atomdiagcomplex-c-connection"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.flatten_subspace_index": [[598, "triqs-atom-diag-atom-diag-atomdiagcomplex-flatten-subspace-index"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.c_matrix": [[594, "triqs-atom-diag-atom-diag-atomdiagcomplex-c-matrix"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_matrix": [[596, "triqs-atom-diag-atom-diag-atomdiagcomplex-cdag-matrix"]], "triqs.atom_diag.AtomDiag": [[589, "triqs-atom-diag-atomdiag"]], "Python include warnings": [[586, "python-include-warnings"]], "triqs.atom_diag.atom_diag.AtomDiagComplex": [[591, "triqs-atom-diag-atom-diag-atomdiagcomplex"]], "triqs.atom_diag": [[588, "module-triqs.atom_diag"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_connection": [[595, "triqs-atom-diag-atom-diag-atomdiagcomplex-cdag-connection"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.energies": [[597, "triqs-atom-diag-atom-diag-atomdiagcomplex-energies"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.__init__": [[592, "triqs-atom-diag-atom-diag-atomdiagcomplex-init"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.fock_states": [[599, "triqs-atom-diag-atom-diag-atomdiagcomplex-fock-states"]], "Tuple tools": [[587, "tuple-tools"]], "apply": [[587, "apply"]], "for_each": [[587, "for-each"]], "for_each_zip": [[587, "for-each-zip"]], "map": [[587, "map"]], "fold": [[587, "fold"]], "reverse": [[587, "reverse"]], "called_on_tuple": [[587, "called-on-tuple"]], "Exceptions": [[585, "exceptions"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dims": [[604, "triqs-atom-diag-atom-diag-atomdiagcomplex-get-subspace-dims"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.fops": [[600, "triqs-atom-diag-atom-diag-atomdiagcomplex-fops"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.unitary_matrices": [[609, "triqs-atom-diag-atom-diag-atomdiagcomplex-unitary-matrices"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_state": [[610, "triqs-atom-diag-atom-diag-atomdiagcomplex-vacuum-state"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.h_atomic": [[606, "triqs-atom-diag-atom-diag-atomdiagcomplex-h-atomic"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_subspace_index": [[611, "triqs-atom-diag-atom-diag-atomdiagcomplex-vacuum-subspace-index"]], "triqs.atom_diag.atom_diag.AtomDiagReal.__init__": [[613, "triqs-atom-diag-atom-diag-atomdiagreal-init"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.quantum_numbers": [[608, "triqs-atom-diag-atom-diag-atomdiagcomplex-quantum-numbers"]], "triqs.atom_diag.atom_diag.AtomDiagReal": [[612, "triqs-atom-diag-atom-diag-atomdiagreal"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.get_eigenvalue": [[602, "triqs-atom-diag-atom-diag-atomdiagcomplex-get-eigenvalue"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.n_subspaces": [[607, "triqs-atom-diag-atom-diag-atomdiagcomplex-n-subspaces"]], "triqs.atom_diag.atom_diag.AtomDiagReal.c_connection": [[614, "triqs-atom-diag-atom-diag-atomdiagreal-c-connection"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dim": [[603, "triqs-atom-diag-atom-diag-atomdiagcomplex-get-subspace-dim"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.full_hilbert_space_dim": [[601, "triqs-atom-diag-atom-diag-atomdiagcomplex-full-hilbert-space-dim"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.gs_energy": [[605, "triqs-atom-diag-atom-diag-atomdiagcomplex-gs-energy"]], "Reference documentation/manual": [[558, "reference-documentation-manual"], [498, "reference-documentation-manual"]], "[triqs/lattice] Lattice tools": [[558, "triqs-lattice-lattice-tools"]], "Introductory example": [[558, "introductory-example"]], "[triqs/hilbert_space] Many-body states and Hilbert spaces": [[555, "triqs-hilbert-space-many-body-states-and-hilbert-spaces"]], "Example of use": [[555, "example-of-use"]], "Bravais Lattice": [[557, "bravais-lattice"]], "Example: the Ising chain in a magnetic field": [[567, "example-the-ising-chain-in-a-magnetic-field"]], "The configuration": [[567, "the-configuration"]], "The move": [[567, "the-move"], [570, "the-move"]], "Measure": [[567, "measure"]], "Main program": [[567, "main-program"]], "Sums over Brillouin zone": [[561, "sums-over-brillouin-zone"]], "Introduction & Motivations": [[564, "introduction-motivations"]], "The Move concept": [[564, "the-move-concept"]], "The Measure concept": [[564, "the-measure-concept"]], "The BravaisLattice and TightBinding classes: definitions and example": [[563, "the-bravaislattice-and-tightbinding-classes-definitions-and-example"]], "BravaisLattice": [[563, "bravaislattice"]], "TightBinding": [[563, "tightbinding"]], "energies_on_bz_path": [[563, "energies-on-bz-path"]], "Hilbert Transform": [[560, "hilbert-transform"]], "StateVector Concept": [[556, "statevector-concept"]], "Random number generator": [[569, "random-number-generator"]], "Generic use": [[569, "generic-use"]], "Getting a list of random number generators": [[569, "getting-a-list-of-random-number-generators"]], "Accessing the random number generator from the Monte Carlo class": [[569, "accessing-the-random-number-generator-from-the-monte-carlo-class"]], "Free Fermions with tight binding hopping": [[562, "free-fermions-with-tight-binding-hopping"]], "Density of state and related tools": [[559, "density-of-state-and-related-tools"]], "The Density of state: DOS": [[559, "the-density-of-state-dos"]], "Reading a DOS from a text file": [[559, "reading-a-dos-from-a-text-file"]], "Computing a DOS from a tight_binding": [[559, "computing-a-dos-from-a-tight-binding"]], "The DOS computed from a function": [[559, "the-dos-computed-from-a-function"]], "triqs.atom_diag.atom_diag.AtomDiagReal.full_hilbert_space_dim": [[622, "triqs-atom-diag-atom-diag-atomdiagreal-full-hilbert-space-dim"]], "triqs.atom_diag.atom_diag.AtomDiagReal.c_matrix": [[615, "triqs-atom-diag-atom-diag-atomdiagreal-c-matrix"]], "triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dim": [[624, "triqs-atom-diag-atom-diag-atomdiagreal-get-subspace-dim"]], "triqs.atom_diag.atom_diag.AtomDiagReal.h_atomic": [[627, "triqs-atom-diag-atom-diag-atomdiagreal-h-atomic"]], "triqs.atom_diag.atom_diag.AtomDiagReal.get_eigenvalue": [[623, "triqs-atom-diag-atom-diag-atomdiagreal-get-eigenvalue"]], "triqs.atom_diag.atom_diag.AtomDiagReal.cdag_connection": [[616, "triqs-atom-diag-atom-diag-atomdiagreal-cdag-connection"]], "triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dims": [[625, "triqs-atom-diag-atom-diag-atomdiagreal-get-subspace-dims"]], "triqs.atom_diag.atom_diag.AtomDiagReal.quantum_numbers": [[629, "triqs-atom-diag-atom-diag-atomdiagreal-quantum-numbers"]], "triqs.atom_diag.atom_diag.AtomDiagReal.cdag_matrix": [[617, "triqs-atom-diag-atom-diag-atomdiagreal-cdag-matrix"]], "triqs.atom_diag.atom_diag.AtomDiagReal.gs_energy": [[626, "triqs-atom-diag-atom-diag-atomdiagreal-gs-energy"]], "triqs.atom_diag.atom_diag.AtomDiagReal.n_subspaces": [[628, "triqs-atom-diag-atom-diag-atomdiagreal-n-subspaces"]], "triqs.atom_diag.atom_diag.AtomDiagReal.flatten_subspace_index": [[619, "triqs-atom-diag-atom-diag-atomdiagreal-flatten-subspace-index"]], "triqs.atom_diag.atom_diag.AtomDiagReal.fops": [[621, "triqs-atom-diag-atom-diag-atomdiagreal-fops"]], "triqs.atom_diag.atom_diag.AtomDiagReal.fock_states": [[620, "triqs-atom-diag-atom-diag-atomdiagreal-fock-states"]], "triqs.atom_diag.atom_diag.AtomDiagReal.energies": [[618, "triqs-atom-diag-atom-diag-atomdiagreal-energies"]], "triqs.dos": [[643, "module-triqs.dos"]], "triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_subspace_index": [[632, "triqs-atom-diag-atom-diag-atomdiagreal-vacuum-subspace-index"]], "triqs.atom_diag.atom_diag.atomic_g_iw": [[635, "triqs-atom-diag-atom-diag-atomic-g-iw"]], "triqs.atom_diag.atom_diag.atomic_g_l": [[636, "triqs-atom-diag-atom-diag-atomic-g-l"]], "triqs.atom_diag.atom_diag.trace_rho_op": [[642, "triqs-atom-diag-atom-diag-trace-rho-op"]], "triqs.atom_diag.atom_diag.atomic_g_w": [[638, "triqs-atom-diag-atom-diag-atomic-g-w"]], "triqs.atom_diag.atom_diag.atomic_density_matrix": [[634, "triqs-atom-diag-atom-diag-atomic-density-matrix"]], "triqs.atom_diag.atom_diag.partition_function": [[639, "triqs-atom-diag-atom-diag-partition-function"]], "triqs.dos.dos": [[644, "module-triqs.dos.dos"]], "triqs.atom_diag.atom_diag.AtomDiagReal.unitary_matrices": [[630, "triqs-atom-diag-atom-diag-atomdiagreal-unitary-matrices"]], "triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_state": [[631, "triqs-atom-diag-atom-diag-atomdiagreal-vacuum-state"]], "triqs.atom_diag.atom_diag.atomic_g_tau": [[637, "triqs-atom-diag-atom-diag-atomic-g-tau"]], "triqs.atom_diag.atom_diag.quantum_number_eigenvalues": [[640, "triqs-atom-diag-atom-diag-quantum-number-eigenvalues"]], "triqs.atom_diag.atom_diag.quantum_number_eigenvalues_checked": [[641, "triqs-atom-diag-atom-diag-quantum-number-eigenvalues-checked"]], "triqs.atom_diag.atom_diag.act": [[633, "triqs-atom-diag-atom-diag-act"]], "triqs.dos.dos.DOS": [[645, "triqs-dos-dos-dos"]], "triqs.dos.hilbert_transform.HilbertTransform": [[655, "triqs-dos-hilbert-transform-hilberttransform"]], "triqs.fit": [[657, "module-triqs.fit"]], "triqs.dos.dos.dos_from_file": [[653, "triqs-dos-dos-dos-from-file"]], "triqs.dos.dos.DOS.density": [[648, "triqs-dos-dos-dos-density"]], "triqs.fit.fit": [[658, "module-triqs.fit.fit"]], "triqs.dos.hilbert_transform.HilbertTransform.__init__": [[656, "triqs-dos-hilbert-transform-hilberttransform-init"]], "triqs.dos.dos.DOSFromFunction": [[649, "triqs-dos-dos-dosfromfunction"]], "triqs.dos.dos.DOS.copy": [[647, "triqs-dos-dos-dos-copy"]], "triqs.dos.dos.DOS.__init__": [[646, "triqs-dos-dos-dos-init"]], "triqs.dos.dos.DOSFromFunction.__init__": [[650, "triqs-dos-dos-dosfromfunction-init"]], "triqs.dos.dos.DOSFromFunction.copy": [[651, "triqs-dos-dos-dosfromfunction-copy"]], "triqs.dos.hilbert_transform": [[654, "module-triqs.dos.hilbert_transform"]], "triqs.fit.fit.Fit": [[659, "triqs-fit-fit-fit"]], "triqs.dos.dos.DOSFromFunction.density": [[652, "triqs-dos-dos-dosfromfunction-density"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail": [[672, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-fit-hermitian-tail"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq": [[664, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq"]], "Parameters (KEYWORD argument ONLY)": [[664, "parameters-keyword-argument-only"], [703, "parameters-keyword-argument-only"], [742, "parameters-keyword-argument-only"], [781, "parameters-keyword-argument-only"], [548, "parameters-keyword-argument-only"], [546, "parameters-keyword-argument-only"], [544, "parameters-keyword-argument-only"], [547, "parameters-keyword-argument-only"], [545, "parameters-keyword-argument-only"], [820, "parameters-keyword-argument-only"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.conjugate": [[666, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-conjugate"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail": [[674, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-fit-tail"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy_from": [[668, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-copy-from"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy": [[667, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-copy"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.data": [[669, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-data"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.density": [[670, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-density"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.__init__": [[665, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-init"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail_on_window": [[673, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-fit-hermitian-tail-on-window"]], "triqs.fit.fit.Fit.__init__": [[660, "triqs-fit-fit-fit-init"]], "triqs.gf": [[661, "module-triqs.gf"]], "triqs.gf.backwd_compat": [[662, "module-triqs.gf.backwd_compat"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.enforce_discontinuity": [[671, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_imfreq": [[663, "module-triqs.gf.backwd_compat.gf_imfreq"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail_on_window": [[675, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.imag": [[677, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-imag"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_hermitian": [[681, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.indices": [[678, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-indices"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.from_L_G_R": [[676, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-from-l-g-r"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail_in_fit_window": [[688, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_fourier": [[689, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-fourier"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rebinning_tau": [[686, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-rebinning-tau"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.invert": [[680, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-invert"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.inverse": [[679, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-inverse"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail": [[687, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-replace-by-tail"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.mesh": [[683, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-mesh"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_real_in_tau": [[682, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.real": [[685, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-real"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rank": [[684, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-rank"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.__init__": [[704, "triqs-gf-backwd-compat-gf-imtime-gfimtime-init"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.total_density": [[698, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-total-density"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_indices": [[694, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-target-indices"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_legendre": [[692, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-legendre"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.transpose": [[699, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-transpose"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imfreq": [[690, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.x_data_view": [[700, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-x-data-view"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.zero": [[701, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-zero"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_pade": [[693, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-pade"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime": [[703, "triqs-gf-backwd-compat-gf-imtime-gfimtime"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_rank": [[695, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-target-rank"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.tau_L2_norm": [[697, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imtime": [[691, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-imtime"]], "triqs.gf.backwd_compat.gf_imtime": [[702, "module-triqs.gf.backwd_compat.gf_imtime"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_shape": [[696, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-target-shape"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail_on_window": [[712, "triqs-gf-backwd-compat-gf-imtime-gfimtime-fit-hermitian-tail-on-window"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.from_L_G_R": [[715, "triqs-gf-backwd-compat-gf-imtime-gfimtime-from-l-g-r"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.imag": [[716, "triqs-gf-backwd-compat-gf-imtime-gfimtime-imag"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.conjugate": [[705, "triqs-gf-backwd-compat-gf-imtime-gfimtime-conjugate"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.enforce_discontinuity": [[710, "triqs-gf-backwd-compat-gf-imtime-gfimtime-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail": [[711, "triqs-gf-backwd-compat-gf-imtime-gfimtime-fit-hermitian-tail"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.invert": [[719, "triqs-gf-backwd-compat-gf-imtime-gfimtime-invert"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.copy_from": [[707, "triqs-gf-backwd-compat-gf-imtime-gfimtime-copy-from"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.data": [[708, "triqs-gf-backwd-compat-gf-imtime-gfimtime-data"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail": [[713, "triqs-gf-backwd-compat-gf-imtime-gfimtime-fit-tail"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail_on_window": [[714, "triqs-gf-backwd-compat-gf-imtime-gfimtime-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.copy": [[706, "triqs-gf-backwd-compat-gf-imtime-gfimtime-copy"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.indices": [[717, "triqs-gf-backwd-compat-gf-imtime-gfimtime-indices"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.density": [[709, "triqs-gf-backwd-compat-gf-imtime-gfimtime-density"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.inverse": [[718, "triqs-gf-backwd-compat-gf-imtime-gfimtime-inverse"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail": [[726, "triqs-gf-backwd-compat-gf-imtime-gfimtime-replace-by-tail"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_real_in_tau": [[721, "triqs-gf-backwd-compat-gf-imtime-gfimtime-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.real": [[724, "triqs-gf-backwd-compat-gf-imtime-gfimtime-real"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imtime": [[730, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-imtime"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_hermitian": [[720, "triqs-gf-backwd-compat-gf-imtime-gfimtime-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_pade": [[732, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-pade"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_rank": [[734, "triqs-gf-backwd-compat-gf-imtime-gfimtime-target-rank"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imfreq": [[729, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_fourier": [[728, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-fourier"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.rebinning_tau": [[725, "triqs-gf-backwd-compat-gf-imtime-gfimtime-rebinning-tau"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_legendre": [[731, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-legendre"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail_in_fit_window": [[727, "triqs-gf-backwd-compat-gf-imtime-gfimtime-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_indices": [[733, "triqs-gf-backwd-compat-gf-imtime-gfimtime-target-indices"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.rank": [[723, "triqs-gf-backwd-compat-gf-imtime-gfimtime-rank"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.mesh": [[722, "triqs-gf-backwd-compat-gf-imtime-gfimtime-mesh"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.__init__": [[743, "triqs-gf-backwd-compat-gf-legendre-gflegendre-init"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy_from": [[746, "triqs-gf-backwd-compat-gf-legendre-gflegendre-copy-from"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy": [[745, "triqs-gf-backwd-compat-gf-legendre-gflegendre-copy"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.transpose": [[738, "triqs-gf-backwd-compat-gf-imtime-gfimtime-transpose"]], "triqs.gf.backwd_compat.gf_legendre": [[741, "module-triqs.gf.backwd_compat.gf_legendre"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.data": [[747, "triqs-gf-backwd-compat-gf-legendre-gflegendre-data"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_shape": [[735, "triqs-gf-backwd-compat-gf-imtime-gfimtime-target-shape"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre": [[742, "triqs-gf-backwd-compat-gf-legendre-gflegendre"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.conjugate": [[744, "triqs-gf-backwd-compat-gf-legendre-gflegendre-conjugate"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.density": [[748, "triqs-gf-backwd-compat-gf-legendre-gflegendre-density"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.enforce_discontinuity": [[749, "triqs-gf-backwd-compat-gf-legendre-gflegendre-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.total_density": [[737, "triqs-gf-backwd-compat-gf-imtime-gfimtime-total-density"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.zero": [[740, "triqs-gf-backwd-compat-gf-imtime-gfimtime-zero"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.x_data_view": [[739, "triqs-gf-backwd-compat-gf-imtime-gfimtime-x-data-view"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.tau_L2_norm": [[736, "triqs-gf-backwd-compat-gf-imtime-gfimtime-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.inverse": [[757, "triqs-gf-backwd-compat-gf-legendre-gflegendre-inverse"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail": [[752, "triqs-gf-backwd-compat-gf-legendre-gflegendre-fit-tail"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.from_L_G_R": [[754, "triqs-gf-backwd-compat-gf-legendre-gflegendre-from-l-g-r"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail": [[750, "triqs-gf-backwd-compat-gf-legendre-gflegendre-fit-hermitian-tail"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.mesh": [[761, "triqs-gf-backwd-compat-gf-legendre-gflegendre-mesh"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.invert": [[758, "triqs-gf-backwd-compat-gf-legendre-gflegendre-invert"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail_on_window": [[753, "triqs-gf-backwd-compat-gf-legendre-gflegendre-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail_on_window": [[751, "triqs-gf-backwd-compat-gf-legendre-gflegendre-fit-hermitian-tail-on-window"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.rank": [[762, "triqs-gf-backwd-compat-gf-legendre-gflegendre-rank"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.rebinning_tau": [[764, "triqs-gf-backwd-compat-gf-legendre-gflegendre-rebinning-tau"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_real_in_tau": [[760, "triqs-gf-backwd-compat-gf-legendre-gflegendre-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.imag": [[755, "triqs-gf-backwd-compat-gf-legendre-gflegendre-imag"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_hermitian": [[759, "triqs-gf-backwd-compat-gf-legendre-gflegendre-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.real": [[763, "triqs-gf-backwd-compat-gf-legendre-gflegendre-real"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.indices": [[756, "triqs-gf-backwd-compat-gf-legendre-gflegendre-indices"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail": [[765, "triqs-gf-backwd-compat-gf-legendre-gflegendre-replace-by-tail"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.tau_L2_norm": [[775, "triqs-gf-backwd-compat-gf-legendre-gflegendre-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_indices": [[772, "triqs-gf-backwd-compat-gf-legendre-gflegendre-target-indices"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.x_data_view": [[778, "triqs-gf-backwd-compat-gf-legendre-gflegendre-x-data-view"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imtime": [[769, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-imtime"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_rank": [[773, "triqs-gf-backwd-compat-gf-legendre-gflegendre-target-rank"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_shape": [[774, "triqs-gf-backwd-compat-gf-legendre-gflegendre-target-shape"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_legendre": [[770, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-legendre"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_pade": [[771, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-pade"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.total_density": [[776, "triqs-gf-backwd-compat-gf-legendre-gflegendre-total-density"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.zero": [[779, "triqs-gf-backwd-compat-gf-legendre-gflegendre-zero"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.transpose": [[777, "triqs-gf-backwd-compat-gf-legendre-gflegendre-transpose"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail_in_fit_window": [[766, "triqs-gf-backwd-compat-gf-legendre-gflegendre-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imfreq": [[768, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_fourier": [[767, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-fourier"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.from_L_G_R": [[793, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-from-l-g-r"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.__init__": [[782, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-init"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.enforce_discontinuity": [[788, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.density": [[787, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-density"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy_from": [[785, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-copy-from"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.data": [[786, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-data"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail_on_window": [[792, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.conjugate": [[783, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-conjugate"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail_on_window": [[790, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-fit-hermitian-tail-on-window"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail": [[789, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-fit-hermitian-tail"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy": [[784, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-copy"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq": [[781, "triqs-gf-backwd-compat-gf-refreq-gfrefreq"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.imag": [[794, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-imag"]], "triqs.gf.backwd_compat.gf_refreq": [[780, "module-triqs.gf.backwd_compat.gf_refreq"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail": [[791, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-fit-tail"]], "Fourier and Legendre to Matsubara transforms": [[554, "fourier-and-legendre-to-matsubara-transforms"]], "Time to frequency": [[554, "time-to-frequency"]], "Legendre to Matsubara": [[554, "legendre-to-matsubara"]], "Descriptors": [[550, "descriptors"]], "Reference": [[550, "reference"], [548, "reference"], [546, "reference"], [551, "reference"], [544, "reference"], [547, "reference"], [545, "reference"], [579, "reference"]], "High-Frequency moments of the Green\u2019s function": [[552, "high-frequency-moments-of-the-green-s-function"], [541, "high-frequency-moments-of-the-green-s-function"]], "HDF5 data scheme": [[548, "hdf5-data-scheme"], [546, "hdf5-data-scheme"], [544, "hdf5-data-scheme"], [547, "hdf5-data-scheme"], [545, "hdf5-data-scheme"], [498, "hdf5-data-scheme"]], "[GfReTime] Retarded Green\u2019s function in real time": [[548, "gfretime-retarded-green-s-function-in-real-time"]], "[GfLegendre] Matsubara Green\u2019s function with Legendre polynomials": [[546, "gflegendre-matsubara-green-s-function-with-legendre-polynomials"]], "API": [[541, "api"]], "Adjusting the fit parameters (Advanced)": [[541, "adjusting-the-fit-parameters-advanced"]], "Adjusting the fit window (Advanced)": [[541, "adjusting-the-fit-window-advanced"]], "Operations": [[551, "operations"], [192, "operations"], [543, "operations"]], "shelve / pickle": [[551, "shelve-pickle"], [543, "shelve-pickle"]], "BlockGf: The complete Green\u2019s function": [[551, "blockgf-the-complete-green-s-function"]], "A little example": [[551, "a-little-example"]], "Block access": [[551, "block-access"]], "Iterator": [[551, "iterator"]], "View or copies?": [[551, "view-or-copies"]], "[GfImFreq] Matsubara Green\u2019s function in imaginary frequencies": [[544, "gfimfreq-matsubara-green-s-function-in-imaginary-frequencies"]], "[GfReFreq] Retarded Green\u2019s function in real frequencies": [[547, "gfrefreq-retarded-green-s-function-in-real-frequencies"]], "Tools for GFs": [[553, "tools-for-gfs"]], "[GfImTime] Matsubara Green\u2019s function in imaginary time": [[545, "gfimtime-matsubara-green-s-function-in-imaginary-time"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_real_in_tau": [[799, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.inverse": [[796, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-inverse"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.mesh": [[800, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-mesh"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.rebinning_tau": [[803, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-rebinning-tau"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.rank": [[801, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-rank"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_fourier": [[806, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-fourier"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_hermitian": [[798, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail": [[804, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-replace-by-tail"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imfreq": [[807, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.real": [[802, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-real"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imtime": [[808, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-imtime"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.indices": [[795, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-indices"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail_in_fit_window": [[805, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_legendre": [[809, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-legendre"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.invert": [[797, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-invert"]], "Helper functions": [[577, "helper-functions"]], "Fitting data": [[579, "fitting-data"]], "A simple example": [[579, "a-simple-example"]], "Reproducibility, provenance": [[581, "reproducibility-provenance"]], "TRIQS code version": [[581, "triqs-code-version"]], "Saving the script in the data archive": [[581, "saving-the-script-in-the-data-archive"]], "From the data to the figures": [[581, "from-the-data-to-the-figures"]], "[triqs/operators] Second-quantization operators and many-body Hamiltonians": [[571, "triqs-operators-second-quantization-operators-and-many-body-hamiltonians"]], "Observables": [[576, "observables"]], "Tutorial": [[570, "tutorial"]], "The C++ code for this problem": [[570, "the-c-code-for-this-problem"]], "Initializing the MPI": [[570, "initializing-the-mpi"]], "Constructing the Monte Carlo simulation": [[570, "constructing-the-monte-carlo-simulation"]], "Moves and measures": [[570, "moves-and-measures"]], "The measure": [[570, "the-measure"]], "Starting the Monte Carlo simulation": [[570, "starting-the-monte-carlo-simulation"]], "End of the simulation - gathering results": [[570, "end-of-the-simulation-gathering-results"]], "Writing your own Monte Carlo simulation": [[570, "writing-your-own-monte-carlo-simulation"]], "Plotting TRIQS objects": [[580, "plotting-triqs-objects"]], "A thin layer above matplotlib": [[580, "a-thin-layer-above-matplotlib"]], "Multiple panels figures": [[580, "multiple-panels-figures"]], "Plot protocol [Advanced]": [[580, "plot-protocol-advanced"]], "Example with options": [[580, "example-with-options"]], "Member types": [[572, "member-types"], [20, "member-types"], [28, "member-types"], [35, "member-types"], [49, "member-types"], [64, "member-types"], [77, "member-types"], [90, "member-types"], [101, "member-types"], [128, "member-types"], [154, "member-types"], [192, "member-types"], [242, "member-types"], [259, "member-types"], [271, "member-types"], [283, "member-types"], [325, "member-types"], [357, "member-types"], [366, "member-types"], [378, "member-types"], [540, "member-types"], [539, "member-types"], [521, "member-types"]], "Free functions": [[572, "free-functions"], [527, "free-functions"]], "Second-quantization operators": [[572, "second-quantization-operators"]], "Construction/factories": [[572, "construction-factories"]], "Overloaded operations": [[572, "overloaded-operations"]], "Methods": [[572, "methods"]], "Iteration over monomials": [[572, "iteration-over-monomials"]], "Serialization & HDF5": [[572, "serialization-hdf5"]], "Hamiltonians": [[575, "hamiltonians"]], "[triqs/stat] Statistical Analysis": [[583, "triqs-stat-statistical-analysis"]], "Processing Correlated Data": [[583, "processing-correlated-data"]], "Averages and Standard Errors": [[583, "averages-and-standard-errors"]], "[triqs/utility] Utilities: exceptions, tuple-tools, etc.": [[584, "triqs-utility-utilities-exceptions-tuple-tools-etc"]], "Random number generators": [[582, "random-number-generators"]], "Usage": [[582, "usage"], [1855, "usage"], [1851, "usage"]], "Complete documentation/manual/triqs": [[582, "complete-documentation-manual-triqs"]], "U matrix construction": [[573, "u-matrix-construction"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.__init__": [[821, "triqs-gf-backwd-compat-gf-retime-gfretime-init"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.conjugate": [[822, "triqs-gf-backwd-compat-gf-retime-gfretime-conjugate"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_indices": [[811, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-target-indices"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.zero": [[818, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-zero"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.x_data_view": [[817, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-x-data-view"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.copy_from": [[824, "triqs-gf-backwd-compat-gf-retime-gfretime-copy-from"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.copy": [[823, "triqs-gf-backwd-compat-gf-retime-gfretime-copy"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.tau_L2_norm": [[814, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_shape": [[813, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-target-shape"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_pade": [[810, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-pade"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.transpose": [[816, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-transpose"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_rank": [[812, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-target-rank"]], "triqs.gf.backwd_compat.gf_retime": [[819, "module-triqs.gf.backwd_compat.gf_retime"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.total_density": [[815, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-total-density"]], "triqs.gf.backwd_compat.gf_retime.GfReTime": [[820, "triqs-gf-backwd-compat-gf-retime-gfretime"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.from_L_G_R": [[832, "triqs-gf-backwd-compat-gf-retime-gfretime-from-l-g-r"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail": [[828, "triqs-gf-backwd-compat-gf-retime-gfretime-fit-hermitian-tail"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.enforce_discontinuity": [[827, "triqs-gf-backwd-compat-gf-retime-gfretime-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.inverse": [[835, "triqs-gf-backwd-compat-gf-retime-gfretime-inverse"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_hermitian": [[837, "triqs-gf-backwd-compat-gf-retime-gfretime-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.indices": [[834, "triqs-gf-backwd-compat-gf-retime-gfretime-indices"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_real_in_tau": [[838, "triqs-gf-backwd-compat-gf-retime-gfretime-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.mesh": [[839, "triqs-gf-backwd-compat-gf-retime-gfretime-mesh"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail_on_window": [[829, "triqs-gf-backwd-compat-gf-retime-gfretime-fit-hermitian-tail-on-window"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.density": [[826, "triqs-gf-backwd-compat-gf-retime-gfretime-density"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.imag": [[833, "triqs-gf-backwd-compat-gf-retime-gfretime-imag"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.data": [[825, "triqs-gf-backwd-compat-gf-retime-gfretime-data"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail": [[830, "triqs-gf-backwd-compat-gf-retime-gfretime-fit-tail"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.invert": [[836, "triqs-gf-backwd-compat-gf-retime-gfretime-invert"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail_on_window": [[831, "triqs-gf-backwd-compat-gf-retime-gfretime-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail_in_fit_window": [[844, "triqs-gf-backwd-compat-gf-retime-gfretime-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imtime": [[847, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-imtime"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.total_density": [[854, "triqs-gf-backwd-compat-gf-retime-gfretime-total-density"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail": [[843, "triqs-gf-backwd-compat-gf-retime-gfretime-replace-by-tail"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.real": [[841, "triqs-gf-backwd-compat-gf-retime-gfretime-real"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.target_rank": [[851, "triqs-gf-backwd-compat-gf-retime-gfretime-target-rank"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.rank": [[840, "triqs-gf-backwd-compat-gf-retime-gfretime-rank"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_pade": [[849, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-pade"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.tau_L2_norm": [[853, "triqs-gf-backwd-compat-gf-retime-gfretime-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_fourier": [[845, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-fourier"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.rebinning_tau": [[842, "triqs-gf-backwd-compat-gf-retime-gfretime-rebinning-tau"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imfreq": [[846, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_legendre": [[848, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-legendre"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.target_indices": [[850, "triqs-gf-backwd-compat-gf-retime-gfretime-target-indices"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.target_shape": [[852, "triqs-gf-backwd-compat-gf-retime-gfretime-target-shape"]], "triqs.gf.block2_gf.Block2Gf.all_indices": [[861, "triqs-gf-block2-gf-block2gf-all-indices"]], "triqs.gf.block2_gf.Block2Gf.copy": [[862, "triqs-gf-block2-gf-block2gf-copy"]], "triqs.gf.block2_gf.Block2Gf.n_blocks": [[869, "triqs-gf-block2-gf-block2gf-n-blocks"]], "triqs.gf.block2_gf.Block2Gf": [[859, "triqs-gf-block2-gf-block2gf"]], "triqs.gf.block2_gf.Block2Gf.indices1": [[867, "triqs-gf-block2-gf-block2gf-indices1"]], "triqs.gf.block2_gf.Block2Gf.imag": [[865, "triqs-gf-block2-gf-block2gf-imag"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.transpose": [[855, "triqs-gf-backwd-compat-gf-retime-gfretime-transpose"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.zero": [[857, "triqs-gf-backwd-compat-gf-retime-gfretime-zero"]], "triqs.gf.block2_gf.Block2Gf.copy_selected_blocks": [[864, "triqs-gf-block2-gf-block2gf-copy-selected-blocks"]], "triqs.gf.block2_gf.Block2Gf.indices2": [[868, "triqs-gf-block2-gf-block2gf-indices2"]], "triqs.gf.block2_gf.Block2Gf.copy_from": [[863, "triqs-gf-block2-gf-block2gf-copy-from"]], "triqs.gf.block2_gf": [[858, "module-triqs.gf.block2_gf"]], "triqs.gf.block2_gf.Block2Gf.indices": [[866, "triqs-gf-block2-gf-block2gf-indices"]], "triqs.gf.block2_gf.Block2Gf.__init__": [[860, "triqs-gf-block2-gf-block2gf-init"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.x_data_view": [[856, "triqs-gf-backwd-compat-gf-retime-gfretime-x-data-view"]], "triqs.gf.block_gf.BlockGf.__init__": [[875, "triqs-gf-block-gf-blockgf-init"]], "triqs.gf.block_gf.BlockGf.density": [[882, "triqs-gf-block-gf-blockgf-density"]], "triqs.gf.block_gf.BlockGf.indices": [[884, "triqs-gf-block-gf-blockgf-indices"]], "triqs.gf.block2_gf.Block2Gf.view_selected_blocks": [[871, "triqs-gf-block2-gf-block2gf-view-selected-blocks"]], "triqs.gf.block_gf.BlockGf.beta": [[877, "triqs-gf-block-gf-blockgf-beta"]], "triqs.gf.block_gf.BlockGf.copy": [[879, "triqs-gf-block-gf-blockgf-copy"]], "triqs.gf.block_gf.BlockGf.all_indices": [[876, "triqs-gf-block-gf-blockgf-all-indices"]], "triqs.gf.block_gf.BlockGf.conjugate": [[878, "triqs-gf-block-gf-blockgf-conjugate"]], "triqs.gf.block_gf.BlockGf.copy_selected_blocks": [[881, "triqs-gf-block-gf-blockgf-copy-selected-blocks"]], "triqs.gf.block2_gf.Block2Gf.zero": [[872, "triqs-gf-block2-gf-block2gf-zero"]], "triqs.gf.block_gf.BlockGf": [[874, "triqs-gf-block-gf-blockgf"]], "triqs.gf.block2_gf.Block2Gf.real": [[870, "triqs-gf-block2-gf-block2gf-real"]], "triqs.gf.block_gf": [[873, "module-triqs.gf.block_gf"]], "triqs.gf.block_gf.BlockGf.imag": [[883, "triqs-gf-block-gf-blockgf-imag"]], "triqs.gf.block_gf.BlockGf.copy_from": [[880, "triqs-gf-block-gf-blockgf-copy-from"]], "triqs.gf.block_gf.BlockGf.real": [[890, "triqs-gf-block-gf-blockgf-real"]], "triqs.gf.block_gf.BlockGf.view_selected_blocks": [[894, "triqs-gf-block-gf-blockgf-view-selected-blocks"]], "triqs.gf.descriptor_base": [[898, "module-triqs.gf.descriptor_base"]], "triqs.gf.block_gf.BlockGf.inverse": [[885, "triqs-gf-block-gf-blockgf-inverse"]], "triqs.gf.block_gf.BlockGf.invert": [[886, "triqs-gf-block-gf-blockgf-invert"]], "triqs.gf.block_gf.BlockGf.transpose": [[893, "triqs-gf-block-gf-blockgf-transpose"]], "triqs.gf.block_gf.call_factory_from_dict": [[896, "triqs-gf-block-gf-call-factory-from-dict"]], "triqs.gf.block_gf.fix_gf_struct_type": [[897, "triqs-gf-block-gf-fix-gf-struct-type"]], "triqs.gf.block_gf.BlockGf.n_blocks": [[889, "triqs-gf-block-gf-blockgf-n-blocks"]], "triqs.gf.block_gf.BlockGf.load": [[887, "triqs-gf-block-gf-blockgf-load"]], "triqs.gf.block_gf.BlockGf.mesh": [[888, "triqs-gf-block-gf-blockgf-mesh"]], "triqs.gf.block_gf.BlockGf.save": [[891, "triqs-gf-block-gf-blockgf-save"]], "triqs.gf.descriptor_base.Base": [[899, "triqs-gf-descriptor-base-base"]], "triqs.gf.block_gf.BlockGf.total_density": [[892, "triqs-gf-block-gf-blockgf-total-density"]], "triqs.gf.block_gf.BlockGf.zero": [[895, "triqs-gf-block-gf-blockgf-zero"]], "triqs.gf.descriptor_base.is_lazy": [[913, "triqs-gf-descriptor-base-is-lazy"]], "triqs.gf.descriptor_base.convert_scalar_to_const": [[912, "triqs-gf-descriptor-base-convert-scalar-to-const"]], "triqs.gf.descriptor_base.BaseBlock.is_block_descriptor": [[903, "triqs-gf-descriptor-base-baseblock-is-block-descriptor"]], "triqs.gf.descriptor_base.Function": [[906, "triqs-gf-descriptor-base-function"]], "triqs.gf.descriptor_base.LazyCTX": [[908, "triqs-gf-descriptor-base-lazyctx"]], "triqs.gf.descriptor_base.BaseBlock": [[901, "triqs-gf-descriptor-base-baseblock"]], "triqs.gf.descriptor_base.BaseBlock.__init__": [[902, "triqs-gf-descriptor-base-baseblock-init"]], "triqs.gf.descriptor_base.Function.__init__": [[907, "triqs-gf-descriptor-base-function-init"]], "triqs.gf.descriptor_base.is_scalar": [[914, "triqs-gf-descriptor-base-is-scalar"]], "triqs.gf.descriptor_base.Omega_": [[910, "triqs-gf-descriptor-base-omega"]], "triqs.gf.descriptor_base.Const": [[904, "triqs-gf-descriptor-base-const"]], "triqs.gf.descriptor_base.Base.__init__": [[900, "triqs-gf-descriptor-base-base-init"]], "triqs.gf.descriptor_base.Const.__init__": [[905, "triqs-gf-descriptor-base-const-init"]], "triqs.gf.descriptor_base.LazyCTX.__init__": [[909, "triqs-gf-descriptor-base-lazyctx-init"]], "triqs.gf.descriptor_base.Omega_.__init__": [[911, "triqs-gf-descriptor-base-omega-init"]], "triqs.gf.descriptors.OneFermionInTime": [[927, "triqs-gf-descriptors-onefermionintime"]], "triqs.gf.descriptors.Flat": [[916, "triqs-gf-descriptors-flat"]], "triqs.gf.descriptors.MatsubaraToLegendre": [[924, "triqs-gf-descriptors-matsubaratolegendre"]], "triqs.gf.descriptors.OneFermionInTime.__init__": [[928, "triqs-gf-descriptors-onefermionintime-init"]], "triqs.gf.descriptors.Flat.__init__": [[917, "triqs-gf-descriptors-flat-init"]], "triqs.gf.descriptors.LegendreToMatsubara": [[921, "triqs-gf-descriptors-legendretomatsubara"]], "triqs.gf.descriptors.LegendreToMatsubara.is_block_descriptor": [[923, "triqs-gf-descriptors-legendretomatsubara-is-block-descriptor"]], "triqs.gf.descriptors.SemiCircular": [[929, "triqs-gf-descriptors-semicircular"]], "triqs.gf.descriptors.LegendreToMatsubara.__init__": [[922, "triqs-gf-descriptors-legendretomatsubara-init"]], "triqs.gf.descriptors.MatsubaraToLegendre.__init__": [[925, "triqs-gf-descriptors-matsubaratolegendre-init"]], "triqs.gf.descriptors.MatsubaraToLegendre.is_block_descriptor": [[926, "triqs-gf-descriptors-matsubaratolegendre-is-block-descriptor"]], "triqs.gf.descriptors.Fourier.is_block_descriptor": [[920, "triqs-gf-descriptors-fourier-is-block-descriptor"]], "triqs.gf.descriptors": [[915, "module-triqs.gf.descriptors"]], "triqs.gf.descriptors.Fourier.__init__": [[919, "triqs-gf-descriptors-fourier-init"]], "triqs.gf.descriptors.Fourier": [[918, "triqs-gf-descriptors-fourier"]], "triqs.gf.gf.Gf.conjugate": [[944, "triqs-gf-gf-gf-conjugate"]], "triqs.gf.dlr_crm_dyson_solver": [[934, "module-triqs.gf.dlr_crm_dyson_solver"]], "triqs.gf.descriptors.semi": [[933, "triqs-gf-descriptors-semi"]], "triqs.gf.gf.Gf.__init__": [[943, "triqs-gf-gf-gf-init"]], "triqs.gf.gf.AddMethod.__init__": [[938, "triqs-gf-gf-addmethod-init"]], "triqs.gf.gf.Gf": [[942, "triqs-gf-gf-gf"]], "triqs.gf.gf": [[936, "module-triqs.gf.gf"]], "triqs.gf.gf.AddMethod": [[937, "triqs-gf-gf-addmethod"]], "triqs.gf.descriptors.Wilson.__init__": [[932, "triqs-gf-descriptors-wilson-init"]], "triqs.gf.dlr_crm_dyson_solver.minimize_dyson": [[935, "triqs-gf-dlr-crm-dyson-solver-minimize-dyson"]], "triqs.gf.gf.AddMethod.mro": [[939, "triqs-gf-gf-addmethod-mro"]], "triqs.gf.descriptors.SemiCircular.__init__": [[930, "triqs-gf-descriptors-semicircular-init"]], "triqs.gf.gf.CallProxyNone": [[940, "triqs-gf-gf-callproxynone"]], "triqs.gf.gf.CallProxyNone.__init__": [[941, "triqs-gf-gf-callproxynone-init"]], "triqs.gf.descriptors.Wilson": [[931, "triqs-gf-descriptors-wilson"]], "triqs.gf.gf.Gf.fit_hermitian_tail_on_window": [[951, "triqs-gf-gf-gf-fit-hermitian-tail-on-window"]], "triqs.gf.gf.Gf.fit_tail": [[952, "triqs-gf-gf-gf-fit-tail"]], "triqs.gf.gf.Gf.enforce_discontinuity": [[949, "triqs-gf-gf-gf-enforce-discontinuity"]], "triqs.gf.gf.Gf.density": [[948, "triqs-gf-gf-gf-density"]], "triqs.gf.gf.Gf.invert": [[958, "triqs-gf-gf-gf-invert"]], "triqs.gf.gf.Gf.copy": [[945, "triqs-gf-gf-gf-copy"]], "triqs.gf.gf.Gf.data": [[947, "triqs-gf-gf-gf-data"]], "triqs.gf.gf.Gf.fit_hermitian_tail": [[950, "triqs-gf-gf-gf-fit-hermitian-tail"]], "triqs.gf.gf.Gf.is_gf_hermitian": [[959, "triqs-gf-gf-gf-is-gf-hermitian"]], "triqs.gf.gf.Gf.from_L_G_R": [[954, "triqs-gf-gf-gf-from-l-g-r"]], "triqs.gf.gf.Gf.fit_tail_on_window": [[953, "triqs-gf-gf-gf-fit-tail-on-window"]], "triqs.gf.gf.Gf.copy_from": [[946, "triqs-gf-gf-gf-copy-from"]], "triqs.gf.gf.Gf.imag": [[955, "triqs-gf-gf-gf-imag"]], "triqs.gf.gf.Gf.inverse": [[957, "triqs-gf-gf-gf-inverse"]], "triqs.gf.gf.Gf.indices": [[956, "triqs-gf-gf-gf-indices"]], "triqs.gf.gf.Gf.mesh": [[961, "triqs-gf-gf-gf-mesh"]], "triqs.gf.gf.Gf.target_indices": [[972, "triqs-gf-gf-gf-target-indices"]], "triqs.gf.gf.Gf.real": [[963, "triqs-gf-gf-gf-real"]], "triqs.gf.gf.Gf.target_shape": [[974, "triqs-gf-gf-gf-target-shape"]], "triqs.gf.gf.Gf.rebinning_tau": [[964, "triqs-gf-gf-gf-rebinning-tau"]], "triqs.gf.gf.Gf.target_rank": [[973, "triqs-gf-gf-gf-target-rank"]], "triqs.gf.gf.Gf.is_gf_real_in_tau": [[960, "triqs-gf-gf-gf-is-gf-real-in-tau"]], "triqs.gf.gf.Gf.replace_by_tail_in_fit_window": [[966, "triqs-gf-gf-gf-replace-by-tail-in-fit-window"]], "triqs.gf.gf.Gf.set_from_imtime": [[969, "triqs-gf-gf-gf-set-from-imtime"]], "triqs.gf.gf.Gf.rank": [[962, "triqs-gf-gf-gf-rank"]], "triqs.gf.gf.Gf.replace_by_tail": [[965, "triqs-gf-gf-gf-replace-by-tail"]], "triqs.gf.gf.Gf.set_from_legendre": [[970, "triqs-gf-gf-gf-set-from-legendre"]], "triqs.gf.gf.Gf.set_from_imfreq": [[968, "triqs-gf-gf-gf-set-from-imfreq"]], "triqs.gf.gf.Gf.set_from_pade": [[971, "triqs-gf-gf-gf-set-from-pade"]], "triqs.gf.gf.Gf.set_from_fourier": [[967, "triqs-gf-gf-gf-set-from-fourier"]], "triqs.gf.gf.call_factory_from_dict": [[984, "triqs-gf-gf-call-factory-from-dict"]], "triqs.gf.gf.bckwd": [[983, "triqs-gf-gf-bckwd"]], "triqs.gf.gf.add_method_helper": [[982, "triqs-gf-gf-add-method-helper"]], "triqs.gf.gf_factories.make_gf_dlr_imfreq": [[988, "triqs-gf-gf-factories-make-gf-dlr-imfreq"]], "triqs.gf.gf.Gf.total_density": [[976, "triqs-gf-gf-gf-total-density"]], "triqs.gf.gf.Gf.x_data_view": [[978, "triqs-gf-gf-gf-x-data-view"]], "triqs.gf.gf.Idx.__init__": [[981, "triqs-gf-gf-idx-init"]], "triqs.gf.gf_factories.make_gf_dlr": [[987, "triqs-gf-gf-factories-make-gf-dlr"]], "triqs.gf.gf.Idx": [[980, "triqs-gf-gf-idx"]], "triqs.gf.gf_factories.fit_gf_dlr": [[986, "triqs-gf-gf-factories-fit-gf-dlr"]], "triqs.gf.gf.Gf.transpose": [[977, "triqs-gf-gf-gf-transpose"]], "triqs.gf.gf_factories": [[985, "module-triqs.gf.gf_factories"]], "triqs.gf.gf.Gf.tau_L2_norm": [[975, "triqs-gf-gf-gf-tau-l2-norm"]], "triqs.gf.gf_factories.make_gf_dlr_imtime": [[989, "triqs-gf-gf-factories-make-gf-dlr-imtime"]], "triqs.gf.gf.Gf.zero": [[979, "triqs-gf-gf-gf-zero"]], "triqs.gf.gf_fnt.density": [[996, "triqs-gf-gf-fnt-density"]], "triqs.gf.gf_factories.make_hermitian": [[993, "triqs-gf-gf-factories-make-hermitian"]], "triqs.gf.gf_fnt.rebinning_tau": [[1004, "triqs-gf-gf-fnt-rebinning-tau"]], "triqs.gf.gf_fnt.enforce_discontinuity": [[997, "triqs-gf-gf-fnt-enforce-discontinuity"]], "triqs.gf.gf_fnt.fit_tail_on_window": [[1001, "triqs-gf-gf-fnt-fit-tail-on-window"]], "triqs.gf.gf_factories.make_gf_imfreq": [[991, "triqs-gf-gf-factories-make-gf-imfreq"]], "triqs.gf.gf_factories.make_gf_imtime": [[992, "triqs-gf-gf-factories-make-gf-imtime"]], "triqs.gf.gf_fnt.fit_hermitian_tail": [[998, "triqs-gf-gf-fnt-fit-hermitian-tail"]], "triqs.gf.gf_fnt.fit_tail": [[1000, "triqs-gf-gf-fnt-fit-tail"]], "triqs.gf.gf_fnt.fit_hermitian_tail_on_window": [[999, "triqs-gf-gf-fnt-fit-hermitian-tail-on-window"]], "triqs.gf.gf_fnt": [[995, "module-triqs.gf.gf_fnt"]], "triqs.gf.gf_factories.make_real_in_tau": [[994, "triqs-gf-gf-factories-make-real-in-tau"]], "triqs.gf.gf_fnt.is_gf_hermitian": [[1002, "triqs-gf-gf-fnt-is-gf-hermitian"]], "triqs.gf.gf_fnt.is_gf_real_in_tau": [[1003, "triqs-gf-gf-fnt-is-gf-real-in-tau"]], "triqs.gf.gf_factories.make_gf_from_fourier": [[990, "triqs-gf-gf-factories-make-gf-from-fourier"]], "triqs.gf.gf_fnt.set_from_imfreq": [[1008, "triqs-gf-gf-fnt-set-from-imfreq"]], "triqs.gf.gf_fnt.replace_by_tail": [[1005, "triqs-gf-gf-fnt-replace-by-tail"]], "triqs.gf.lazy_expressions.LazyExpr.get_terminal": [[1017, "triqs-gf-lazy-expressions-lazyexpr-get-terminal"]], "triqs.gf.gf_fnt.set_from_imtime": [[1009, "triqs-gf-gf-fnt-set-from-imtime"]], "triqs.gf.lazy_expressions.LazyExpr.set_from": [[1019, "triqs-gf-lazy-expressions-lazyexpr-set-from"]], "triqs.gf.gf_fnt.set_from_pade": [[1011, "triqs-gf-gf-fnt-set-from-pade"]], "triqs.gf.lazy_expressions.LazyExpr.__init__": [[1015, "triqs-gf-lazy-expressions-lazyexpr-init"]], "triqs.gf.gf_fnt.tau_L2_norm": [[1012, "triqs-gf-gf-fnt-tau-l2-norm"]], "triqs.gf.lazy_expressions.LazyExpr": [[1014, "triqs-gf-lazy-expressions-lazyexpr"]], "triqs.gf.gf_fnt.set_from_fourier": [[1007, "triqs-gf-gf-fnt-set-from-fourier"]], "triqs.gf.lazy_expressions.LazyExpr.is_terminal": [[1018, "triqs-gf-lazy-expressions-lazyexpr-is-terminal"]], "triqs.gf.gf_fnt.set_from_legendre": [[1010, "triqs-gf-gf-fnt-set-from-legendre"]], "triqs.gf.gf_fnt.replace_by_tail_in_fit_window": [[1006, "triqs-gf-gf-fnt-replace-by-tail-in-fit-window"]], "triqs.gf.lazy_expressions.LazyExpr.copy": [[1016, "triqs-gf-lazy-expressions-lazyexpr-copy"]], "triqs.gf.lazy_expressions": [[1013, "module-triqs.gf.lazy_expressions"]], "triqs.gf.lazy_expressions.eval_expr": [[1023, "triqs-gf-lazy-expressions-eval-expr"]], "triqs.gf.map_block": [[1028, "module-triqs.gf.map_block"]], "triqs.gf.lazy_expressions.all_terminals": [[1022, "triqs-gf-lazy-expressions-all-terminals"]], "triqs.gf.matsubara_freq.MatsubaraFreq": [[1030, "triqs-gf-matsubara-freq-matsubarafreq"]], "triqs.gf.matsubara_freq.MatsubaraFreq.index": [[1033, "triqs-gf-matsubara-freq-matsubarafreq-index"]], "triqs.gf.lazy_expressions.LazyExprTerminal.__init__": [[1021, "triqs-gf-lazy-expressions-lazyexprterminal-init"]], "triqs.gf.lazy_expressions.eval_expr_with_context": [[1024, "triqs-gf-lazy-expressions-eval-expr-with-context"]], "triqs.gf.matsubara_freq.MatsubaraFreq.imag": [[1032, "triqs-gf-matsubara-freq-matsubarafreq-imag"]], "triqs.gf.matsubara_freq": [[1029, "module-triqs.gf.matsubara_freq"]], "triqs.gf.lazy_expressions.LazyExprTerminal": [[1020, "triqs-gf-lazy-expressions-lazyexprterminal"]], "triqs.gf.lazy_expressions.transform": [[1027, "triqs-gf-lazy-expressions-transform"]], "triqs.gf.lazy_expressions.make_lazy": [[1026, "triqs-gf-lazy-expressions-make-lazy"]], "triqs.gf.matsubara_freq.MatsubaraFreq.real": [[1034, "triqs-gf-matsubara-freq-matsubarafreq-real"]], "triqs.gf.lazy_expressions.lazy_function": [[1025, "triqs-gf-lazy-expressions-lazy-function"]], "triqs.gf.matsubara_freq.MatsubaraFreq.__init__": [[1031, "triqs-gf-matsubara-freq-matsubarafreq-init"]], "triqs.gf.matsubara_freq.MatsubaraFreq.value": [[1035, "triqs-gf-matsubara-freq-matsubarafreq-value"]], "triqs.gf.mesh_point.MeshPoint.__init__": [[1038, "triqs-gf-mesh-point-meshpoint-init"]], "triqs.gf.mesh_point.MeshPoint.real": [[1040, "triqs-gf-mesh-point-meshpoint-real"]], "triqs.gf.mesh_point.MeshValueGenerator.__init__": [[1042, "triqs-gf-mesh-point-meshvaluegenerator-init"]], "triqs.gf.mesh_product.MeshProduct.rank": [[1049, "triqs-gf-mesh-product-meshproduct-rank"]], "triqs.gf.mesh_product.MeshProduct.__init__": [[1045, "triqs-gf-mesh-product-meshproduct-init"]], "triqs.gf.mesh_product.MeshProduct.copy_from": [[1048, "triqs-gf-mesh-product-meshproduct-copy-from"]], "triqs.gf.mesh_product.MeshProduct": [[1044, "triqs-gf-mesh-product-meshproduct"]], "triqs.gf.mesh_point.MeshPoint.imag": [[1039, "triqs-gf-mesh-point-meshpoint-imag"]], "triqs.gf.mesh_point.MeshValueGenerator": [[1041, "triqs-gf-mesh-point-meshvaluegenerator"]], "triqs.gf.mesh_point.MeshPoint": [[1037, "triqs-gf-mesh-point-meshpoint"]], "triqs.gf.mesh_product": [[1043, "module-triqs.gf.mesh_product"]], "triqs.gf.mesh_product.MeshProduct.components": [[1046, "triqs-gf-mesh-product-meshproduct-components"]], "triqs.gf.mesh_product.MeshProduct.copy": [[1047, "triqs-gf-mesh-product-meshproduct-copy"]], "triqs.gf.mesh_point": [[1036, "module-triqs.gf.mesh_point"]], "triqs.gf.meshes.MeshBrZone.copy_from": [[1059, "triqs-gf-meshes-meshbrzone-copy-from"]], "triqs.gf.meshes.MeshBrZone.to_data_index": [[1062, "triqs-gf-meshes-meshbrzone-to-data-index"]], "triqs.gf.meshes": [[1053, "module-triqs.gf.meshes"]], "triqs.gf.mesh_product.MeshProduct.to_data_index": [[1051, "triqs-gf-mesh-product-meshproduct-to-data-index"]], "triqs.gf.mesh_product.MeshProduct.size_of_components": [[1050, "triqs-gf-mesh-product-meshproduct-size-of-components"]], "triqs.gf.mesh_product.call_factory_from_dict": [[1052, "triqs-gf-mesh-product-call-factory-from-dict"]], "triqs.gf.meshes.MeshBrZone.mesh_hash": [[1061, "triqs-gf-meshes-meshbrzone-mesh-hash"]], "triqs.gf.meshes.MeshBrZone.__init__": [[1055, "triqs-gf-meshes-meshbrzone-init"]], "triqs.gf.meshes.MeshBrZone": [[1054, "triqs-gf-meshes-meshbrzone"]], "Parameters (Option 1)": [[1054, "parameters-option-1"], [1067, "parameters-option-1"], [1154, "parameters-option-1"], [1166, "parameters-option-1"]], "Parameters (Option 2)": [[1054, "parameters-option-2"], [1067, "parameters-option-2"], [1154, "parameters-option-2"], [1166, "parameters-option-2"]], "triqs.gf.meshes.MeshBrZone.bz": [[1056, "triqs-gf-meshes-meshbrzone-bz"]], "triqs.gf.meshes.MeshBrZone.closest_index": [[1057, "triqs-gf-meshes-meshbrzone-closest-index"]], "triqs.gf.meshes.MeshBrZone.to_value": [[1064, "triqs-gf-meshes-meshbrzone-to-value"]], "triqs.gf.meshes.MeshBrZone.copy": [[1058, "triqs-gf-meshes-meshbrzone-copy"]], "triqs.gf.meshes.MeshBrZone.dims": [[1060, "triqs-gf-meshes-meshbrzone-dims"]], "triqs.gf.meshes.MeshBrZone.to_index": [[1063, "triqs-gf-meshes-meshbrzone-to-index"]], "triqs.gf.meshes.MeshCycLat.mesh_hash": [[1073, "triqs-gf-meshes-meshcyclat-mesh-hash"]], "triqs.gf.meshes.MeshCycLat.to_index": [[1075, "triqs-gf-meshes-meshcyclat-to-index"]], "triqs.gf.meshes.MeshCycLat.dims": [[1071, "triqs-gf-meshes-meshcyclat-dims"]], "triqs.gf.meshes.MeshCycLat.copy": [[1069, "triqs-gf-meshes-meshcyclat-copy"]], "triqs.gf.meshes.MeshCycLat.copy_from": [[1070, "triqs-gf-meshes-meshcyclat-copy-from"]], "triqs.gf.meshes.MeshBrZone.units": [[1065, "triqs-gf-meshes-meshbrzone-units"]], "triqs.gf.meshes.MeshCycLat.lattice": [[1072, "triqs-gf-meshes-meshcyclat-lattice"]], "triqs.gf.meshes.MeshCycLat.values": [[1078, "triqs-gf-meshes-meshcyclat-values"]], "triqs.gf.meshes.MeshDLR": [[1079, "triqs-gf-meshes-meshdlr"]], "triqs.gf.meshes.MeshCycLat.to_data_index": [[1074, "triqs-gf-meshes-meshcyclat-to-data-index"]], "triqs.gf.meshes.MeshCycLat.__init__": [[1068, "triqs-gf-meshes-meshcyclat-init"]], "triqs.gf.meshes.MeshCycLat.to_value": [[1076, "triqs-gf-meshes-meshcyclat-to-value"]], "triqs.gf.meshes.MeshCycLat": [[1067, "triqs-gf-meshes-meshcyclat"]], "triqs.gf.meshes.MeshBrZone.values": [[1066, "triqs-gf-meshes-meshbrzone-values"]], "triqs.gf.meshes.MeshCycLat.units": [[1077, "triqs-gf-meshes-meshcyclat-units"]], "triqs.gf.meshes.MeshDLR.to_index": [[1088, "triqs-gf-meshes-meshdlr-to-index"]], "triqs.gf.meshes.MeshDLR.values": [[1090, "triqs-gf-meshes-meshdlr-values"]], "triqs.gf.meshes.MeshDLR.w_max": [[1091, "triqs-gf-meshes-meshdlr-w-max"]], "triqs.gf.meshes.MeshDLRImFreq.__init__": [[1093, "triqs-gf-meshes-meshdlrimfreq-init"]], "triqs.gf.meshes.MeshDLR.mesh_hash": [[1085, "triqs-gf-meshes-meshdlr-mesh-hash"]], "triqs.gf.meshes.MeshDLR.__init__": [[1080, "triqs-gf-meshes-meshdlr-init"]], "triqs.gf.meshes.MeshDLR.beta": [[1081, "triqs-gf-meshes-meshdlr-beta"]], "triqs.gf.meshes.MeshDLR.copy_from": [[1083, "triqs-gf-meshes-meshdlr-copy-from"]], "triqs.gf.meshes.MeshDLR.eps": [[1084, "triqs-gf-meshes-meshdlr-eps"]], "triqs.gf.meshes.MeshDLR.statistic": [[1086, "triqs-gf-meshes-meshdlr-statistic"]], "triqs.gf.meshes.MeshDLR.to_data_index": [[1087, "triqs-gf-meshes-meshdlr-to-data-index"]], "triqs.gf.meshes.MeshDLR.to_value": [[1089, "triqs-gf-meshes-meshdlr-to-value"]], "triqs.gf.meshes.MeshDLRImFreq.beta": [[1094, "triqs-gf-meshes-meshdlrimfreq-beta"]], "triqs.gf.meshes.MeshDLR.copy": [[1082, "triqs-gf-meshes-meshdlr-copy"]], "triqs.gf.meshes.MeshDLRImFreq": [[1092, "triqs-gf-meshes-meshdlrimfreq"]], "triqs.gf.meshes.MeshDLRImFreq.copy": [[1095, "triqs-gf-meshes-meshdlrimfreq-copy"]], "triqs.gf.meshes.MeshDLRImFreq.to_value": [[1102, "triqs-gf-meshes-meshdlrimfreq-to-value"]], "triqs.gf.meshes.MeshDLRImTime.__init__": [[1106, "triqs-gf-meshes-meshdlrimtime-init"]], "triqs.gf.meshes.MeshDLRImFreq.mesh_hash": [[1098, "triqs-gf-meshes-meshdlrimfreq-mesh-hash"]], "triqs.gf.meshes.MeshDLRImFreq.w_max": [[1104, "triqs-gf-meshes-meshdlrimfreq-w-max"]], "triqs.gf.meshes.MeshDLRImFreq.to_data_index": [[1100, "triqs-gf-meshes-meshdlrimfreq-to-data-index"]], "triqs.gf.meshes.MeshDLRImFreq.values": [[1103, "triqs-gf-meshes-meshdlrimfreq-values"]], "triqs.gf.meshes.MeshDLRImFreq.to_index": [[1101, "triqs-gf-meshes-meshdlrimfreq-to-index"]], "triqs.gf.meshes.MeshDLRImFreq.eps": [[1097, "triqs-gf-meshes-meshdlrimfreq-eps"]], "triqs.gf.meshes.MeshDLRImTime": [[1105, "triqs-gf-meshes-meshdlrimtime"]], "triqs.gf.meshes.MeshDLRImTime.copy": [[1108, "triqs-gf-meshes-meshdlrimtime-copy"]], "triqs.gf.meshes.MeshDLRImTime.copy_from": [[1109, "triqs-gf-meshes-meshdlrimtime-copy-from"]], "triqs.gf.meshes.MeshDLRImFreq.statistic": [[1099, "triqs-gf-meshes-meshdlrimfreq-statistic"]], "triqs.gf.meshes.MeshDLRImTime.beta": [[1107, "triqs-gf-meshes-meshdlrimtime-beta"]], "triqs.gf.meshes.MeshDLRImFreq.copy_from": [[1096, "triqs-gf-meshes-meshdlrimfreq-copy-from"]], "triqs.gf.meshes.MeshDLRImTime.values": [[1116, "triqs-gf-meshes-meshdlrimtime-values"]], "triqs.gf.meshes.MeshImFreq.copy": [[1121, "triqs-gf-meshes-meshimfreq-copy"]], "triqs.gf.meshes.MeshDLRImTime.eps": [[1110, "triqs-gf-meshes-meshdlrimtime-eps"]], "triqs.gf.meshes.MeshImFreq.last_index": [[1124, "triqs-gf-meshes-meshimfreq-last-index"]], "triqs.gf.meshes.MeshDLRImTime.mesh_hash": [[1111, "triqs-gf-meshes-meshdlrimtime-mesh-hash"]], "triqs.gf.meshes.MeshImFreq.__init__": [[1119, "triqs-gf-meshes-meshimfreq-init"]], "triqs.gf.meshes.MeshDLRImTime.to_value": [[1115, "triqs-gf-meshes-meshdlrimtime-to-value"]], "triqs.gf.meshes.MeshDLRImTime.w_max": [[1117, "triqs-gf-meshes-meshdlrimtime-w-max"]], "triqs.gf.meshes.MeshDLRImTime.to_data_index": [[1113, "triqs-gf-meshes-meshdlrimtime-to-data-index"]], "triqs.gf.meshes.MeshImFreq": [[1118, "triqs-gf-meshes-meshimfreq"]], "triqs.gf.meshes.MeshImFreq.copy_from": [[1122, "triqs-gf-meshes-meshimfreq-copy-from"]], "triqs.gf.meshes.MeshImFreq.first_index": [[1123, "triqs-gf-meshes-meshimfreq-first-index"]], "triqs.gf.meshes.MeshImFreq.beta": [[1120, "triqs-gf-meshes-meshimfreq-beta"]], "triqs.gf.meshes.MeshDLRImTime.to_index": [[1114, "triqs-gf-meshes-meshdlrimtime-to-index"]], "triqs.gf.meshes.MeshDLRImTime.statistic": [[1112, "triqs-gf-meshes-meshdlrimtime-statistic"]], "triqs.gf.meshes.MeshImTime": [[1134, "triqs-gf-meshes-meshimtime"]], "triqs.gf.meshes.MeshImFreq.to_index": [[1131, "triqs-gf-meshes-meshimfreq-to-index"]], "triqs.gf.meshes.MeshImFreq.to_data_index": [[1130, "triqs-gf-meshes-meshimfreq-to-data-index"]], "triqs.gf.meshes.MeshImFreq.values": [[1133, "triqs-gf-meshes-meshimfreq-values"]], "triqs.gf.meshes.MeshImTime.beta": [[1136, "triqs-gf-meshes-meshimtime-beta"]], "triqs.gf.meshes.MeshImTime.__init__": [[1135, "triqs-gf-meshes-meshimtime-init"]], "triqs.gf.meshes.MeshImFreq.set_tail_fit_parameters": [[1128, "triqs-gf-meshes-meshimfreq-set-tail-fit-parameters"]], "triqs.gf.meshes.MeshImTime.mesh_hash": [[1139, "triqs-gf-meshes-meshimtime-mesh-hash"]], "triqs.gf.meshes.MeshImFreq.mesh_hash": [[1125, "triqs-gf-meshes-meshimfreq-mesh-hash"]], "triqs.gf.meshes.MeshImFreq.statistic": [[1129, "triqs-gf-meshes-meshimfreq-statistic"]], "triqs.gf.meshes.MeshImFreq.positive_only": [[1127, "triqs-gf-meshes-meshimfreq-positive-only"]], "triqs.gf.meshes.MeshImFreq.to_value": [[1132, "triqs-gf-meshes-meshimfreq-to-value"]], "triqs.gf.meshes.MeshImFreq.n_iw": [[1126, "triqs-gf-meshes-meshimfreq-n-iw"]], "triqs.gf.meshes.MeshImTime.copy_from": [[1138, "triqs-gf-meshes-meshimtime-copy-from"]], "triqs.gf.meshes.MeshImTime.copy": [[1137, "triqs-gf-meshes-meshimtime-copy"]], "triqs.gf.meshes.MeshImTime.to_index": [[1142, "triqs-gf-meshes-meshimtime-to-index"]], "triqs.gf.meshes.MeshLegendre.mesh_hash": [[1150, "triqs-gf-meshes-meshlegendre-mesh-hash"]], "triqs.gf.meshes.MeshLegendre.beta": [[1147, "triqs-gf-meshes-meshlegendre-beta"]], "triqs.gf.meshes.MeshLegendre.copy": [[1148, "triqs-gf-meshes-meshlegendre-copy"]], "triqs.gf.meshes.MeshLegendre.statistic": [[1151, "triqs-gf-meshes-meshlegendre-statistic"]], "triqs.gf.meshes.MeshImTime.statistic": [[1140, "triqs-gf-meshes-meshimtime-statistic"]], "triqs.gf.meshes.MeshImTime.values": [[1144, "triqs-gf-meshes-meshimtime-values"]], "triqs.gf.meshes.MeshLegendre.copy_from": [[1149, "triqs-gf-meshes-meshlegendre-copy-from"]], "triqs.gf.meshes.MeshImTime.to_value": [[1143, "triqs-gf-meshes-meshimtime-to-value"]], "triqs.gf.meshes.MeshImTime.to_data_index": [[1141, "triqs-gf-meshes-meshimtime-to-data-index"]], "triqs.gf.meshes.MeshLegendre": [[1145, "triqs-gf-meshes-meshlegendre"]], "triqs.gf.meshes.MeshLegendre.__init__": [[1146, "triqs-gf-meshes-meshlegendre-init"]], "triqs.gf.meshes.MeshLegendre.to_index": [[1153, "triqs-gf-meshes-meshlegendre-to-index"]], "triqs.gf.meshes.MeshLegendre.to_data_index": [[1152, "triqs-gf-meshes-meshlegendre-to-data-index"]], "triqs.gf.meshes.MeshReFreq": [[1154, "triqs-gf-meshes-meshrefreq"]], "triqs.gf.meshes.MeshReFreq.to_data_index": [[1160, "triqs-gf-meshes-meshrefreq-to-data-index"]], "triqs.gf.meshes.MeshReFreq.to_index": [[1161, "triqs-gf-meshes-meshrefreq-to-index"]], "triqs.gf.meshes.MeshReTime.copy_from": [[1169, "triqs-gf-meshes-meshretime-copy-from"]], "triqs.gf.meshes.MeshReFreq.w_max": [[1164, "triqs-gf-meshes-meshrefreq-w-max"]], "triqs.gf.meshes.MeshReFreq.mesh_hash": [[1159, "triqs-gf-meshes-meshrefreq-mesh-hash"]], "triqs.gf.meshes.MeshReTime.copy": [[1168, "triqs-gf-meshes-meshretime-copy"]], "triqs.gf.meshes.MeshReTime.__init__": [[1167, "triqs-gf-meshes-meshretime-init"]], "triqs.gf.meshes.MeshReFreq.values": [[1163, "triqs-gf-meshes-meshrefreq-values"]], "triqs.gf.meshes.MeshReFreq.delta": [[1158, "triqs-gf-meshes-meshrefreq-delta"]], "triqs.gf.meshes.MeshReTime": [[1166, "triqs-gf-meshes-meshretime"]], "triqs.gf.meshes.MeshReFreq.copy_from": [[1157, "triqs-gf-meshes-meshrefreq-copy-from"]], "triqs.gf.meshes.MeshReFreq.to_value": [[1162, "triqs-gf-meshes-meshrefreq-to-value"]], "triqs.gf.meshes.MeshReFreq.w_min": [[1165, "triqs-gf-meshes-meshrefreq-w-min"]], "triqs.gf.meshes.MeshReFreq.copy": [[1156, "triqs-gf-meshes-meshrefreq-copy"]], "triqs.gf.meshes.MeshReFreq.__init__": [[1155, "triqs-gf-meshes-meshrefreq-init"]], "triqs.gf.plot.bz.length": [[1184, "triqs-gf-plot-bz-length"]], "triqs.gf.meshes.MeshReTime.t_min": [[1173, "triqs-gf-meshes-meshretime-t-min"]], "triqs.gf.plot.bz.generate_points_on_path": [[1183, "triqs-gf-plot-bz-generate-points-on-path"]], "triqs.gf.plot.bz": [[1180, "module-triqs.gf.plot.bz"]], "triqs.gf.meshes.MeshReTime.to_value": [[1176, "triqs-gf-meshes-meshretime-to-value"]], "triqs.gf.plot": [[1179, "module-triqs.gf.plot"]], "triqs.gf.meshes.MeshReTime.delta": [[1170, "triqs-gf-meshes-meshretime-delta"]], "triqs.gf.meshes.MeshReTime.mesh_hash": [[1171, "triqs-gf-meshes-meshretime-mesh-hash"]], "triqs.gf.plot.bz.dist": [[1181, "triqs-gf-plot-bz-dist"]], "triqs.gf.plot.bz.generate_points": [[1182, "triqs-gf-plot-bz-generate-points"]], "triqs.gf.meshes.MeshReTime.to_index": [[1175, "triqs-gf-meshes-meshretime-to-index"]], "triqs.gf.meshes.MeshReTime.t_max": [[1172, "triqs-gf-meshes-meshretime-t-max"]], "triqs.gf.meshes.make_adjoint_mesh": [[1178, "triqs-gf-meshes-make-adjoint-mesh"]], "triqs.gf.meshes.MeshReTime.values": [[1177, "triqs-gf-meshes-meshretime-values"]], "triqs.gf.meshes.MeshReTime.to_data_index": [[1174, "triqs-gf-meshes-meshretime-to-data-index"]], "triqs.gf.plot.bz.plot": [[1186, "triqs-gf-plot-bz-plot"]], "triqs.gf.plot.one_var.refreq": [[1198, "triqs-gf-plot-one-var-refreq"]], "triqs.gf.plot.bz_x_x.plottable_slice_along_path": [[1190, "triqs-gf-plot-bz-x-x-plottable-slice-along-path"]], "triqs.gf.plot.bz_x_x.plot": [[1189, "triqs-gf-plot-bz-x-x-plot"]], "triqs.gf.plot.one_var.dlr_imfreq": [[1193, "triqs-gf-plot-one-var-dlr-imfreq"]], "triqs.gf.plot.one_var.imtime": [[1196, "triqs-gf-plot-one-var-imtime"]], "triqs.gf.plot.one_var.legendre": [[1197, "triqs-gf-plot-one-var-legendre"]], "triqs.gf.plot.bz_x_x": [[1188, "module-triqs.gf.plot.bz_x_x"]], "triqs.gf.plot.bz.slice_on_path": [[1187, "triqs-gf-plot-bz-slice-on-path"]], "triqs.gf.plot.dispatcher": [[1191, "triqs-gf-plot-dispatcher"]], "triqs.gf.plot.one_var": [[1192, "module-triqs.gf.plot.one_var"]], "triqs.gf.plot.one_var.dlr_imtime": [[1194, "triqs-gf-plot-one-var-dlr-imtime"]], "triqs.gf.plot.one_var.imfreq": [[1195, "triqs-gf-plot-one-var-imfreq"]], "triqs.gf.plot.bz.make_plottable": [[1185, "triqs-gf-plot-bz-make-plottable"]], "triqs.gf.plot.one_var.retime": [[1199, "triqs-gf-plot-one-var-retime"]], "triqs.gf.plot.select_indices.closest_to": [[1204, "triqs-gf-plot-select-indices-closest-to"]], "triqs.gf.plot.select_indices": [[1202, "module-triqs.gf.plot.select_indices"]], "triqs.gf.tools.dyson": [[1212, "triqs-gf-tools-dyson"]], "triqs.gf.tools": [[1208, "module-triqs.gf.tools"]], "triqs.gf.tools.discretize_bath": [[1211, "triqs-gf-tools-discretize-bath"]], "triqs.gf.plot.plot_base": [[1200, "module-triqs.gf.plot.plot_base"]], "triqs.gf.tools.fit_legendre": [[1213, "triqs-gf-tools-fit-legendre"]], "triqs.gf.plot.plot_base.plot_base": [[1201, "triqs-gf-plot-plot-base-plot-base"]], "triqs.gf.tools.conjugate": [[1209, "triqs-gf-tools-conjugate"]], "triqs.gf.plot.select_indices.dist": [[1205, "triqs-gf-plot-select-indices-dist"]], "triqs.gf.tools.inverse": [[1214, "triqs-gf-tools-inverse"]], "triqs.gf.tools.delta": [[1210, "triqs-gf-tools-delta"]], "triqs.gf.plot.select_indices.pick_selection_vec": [[1206, "triqs-gf-plot-select-indices-pick-selection-vec"]], "triqs.gf.plot.select_indices.closest_point_in_line": [[1203, "triqs-gf-plot-select-indices-closest-point-in-line"]], "triqs.gf.plot.select_indices.select_path_indices": [[1207, "triqs-gf-plot-select-indices-select-path-indices"]], "triqs.gf.tools.write_gf_to_txt": [[1219, "triqs-gf-tools-write-gf-to-txt"]], "triqs.gf.tools.make_zero_tail": [[1216, "triqs-gf-tools-make-zero-tail"]], "triqs.gf.wrapped_aux.CallProxyBrZone_0.__init__": [[1222, "triqs-gf-wrapped-aux-callproxybrzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_2.__init__": [[1226, "triqs-gf-wrapped-aux-callproxybrzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_4": [[1229, "triqs-gf-wrapped-aux-callproxybrzone-4"]], "triqs.gf.tools.make_delta": [[1215, "triqs-gf-tools-make-delta"]], "triqs.gf.wrapped_aux.CallProxyBrZone_1.__init__": [[1224, "triqs-gf-wrapped-aux-callproxybrzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_3.__init__": [[1228, "triqs-gf-wrapped-aux-callproxybrzone-3-init"]], "triqs.gf.wrapped_aux": [[1220, "module-triqs.gf.wrapped_aux"]], "triqs.gf.tools.transpose": [[1218, "triqs-gf-tools-transpose"]], "triqs.gf.tools.read_gf_from_txt": [[1217, "triqs-gf-tools-read-gf-from-txt"]], "triqs.gf.wrapped_aux.CallProxyBrZone_2": [[1225, "triqs-gf-wrapped-aux-callproxybrzone-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_0": [[1221, "triqs-gf-wrapped-aux-callproxybrzone-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_3": [[1227, "triqs-gf-wrapped-aux-callproxybrzone-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_1": [[1223, "triqs-gf-wrapped-aux-callproxybrzone-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.__init__": [[1236, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.__init__": [[1238, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.__init__": [[1234, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.__init__": [[1232, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2": [[1235, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_4.__init__": [[1230, "triqs-gf-wrapped-aux-callproxybrzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4": [[1239, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1": [[1243, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.__init__": [[1244, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.__init__": [[1242, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0": [[1241, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1": [[1233, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0": [[1231, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3": [[1237, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.__init__": [[1240, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2": [[1259, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4": [[1249, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.__init__": [[1254, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R": [[1257, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-1-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1": [[1255, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.__init__": [[1246, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.__init__": [[1258, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R": [[1253, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-0-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3": [[1247, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2": [[1245, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0": [[1251, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.__init__": [[1252, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.__init__": [[1256, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.__init__": [[1248, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.__init__": [[1250, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R": [[1265, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-3-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.__init__": [[1274, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3": [[1263, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.__init__": [[1272, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1": [[1273, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.__init__": [[1266, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R": [[1261, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-2-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.__init__": [[1268, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R": [[1269, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-4-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.__init__": [[1264, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4": [[1267, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.__init__": [[1270, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0": [[1271, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.__init__": [[1262, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.__init__": [[1260, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.__init__": [[1286, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.__init__": [[1288, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0": [[1281, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.__init__": [[1284, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3": [[1277, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4": [[1289, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1": [[1283, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.__init__": [[1278, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.__init__": [[1276, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.__init__": [[1280, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.__init__": [[1282, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4": [[1279, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2": [[1285, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3": [[1287, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2": [[1275, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.__init__": [[1296, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_0": [[1301, "triqs-gf-wrapped-aux-callproxycyclat-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_1": [[1303, "triqs-gf-wrapped-aux-callproxycyclat-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0": [[1291, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1": [[1293, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.__init__": [[1292, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.__init__": [[1294, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2": [[1295, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_0.__init__": [[1302, "triqs-gf-wrapped-aux-callproxycyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.__init__": [[1298, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.__init__": [[1290, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_1.__init__": [[1304, "triqs-gf-wrapped-aux-callproxycyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3": [[1297, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4": [[1299, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.__init__": [[1300, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3": [[1317, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.__init__": [[1316, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_2": [[1305, "triqs-gf-wrapped-aux-callproxycyclat-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1": [[1313, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.__init__": [[1318, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_3.__init__": [[1308, "triqs-gf-wrapped-aux-callproxycyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_2.__init__": [[1306, "triqs-gf-wrapped-aux-callproxycyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_4": [[1309, "triqs-gf-wrapped-aux-callproxycyclat-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0": [[1311, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.__init__": [[1314, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4": [[1319, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_4.__init__": [[1310, "triqs-gf-wrapped-aux-callproxycyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2": [[1315, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_3": [[1307, "triqs-gf-wrapped-aux-callproxycyclat-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.__init__": [[1312, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.__init__": [[1332, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4": [[1329, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R": [[1333, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-0-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.__init__": [[1334, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1": [[1323, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.__init__": [[1330, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3": [[1327, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.__init__": [[1326, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.__init__": [[1328, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0": [[1321, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.__init__": [[1322, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0": [[1331, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.__init__": [[1324, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2": [[1325, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.__init__": [[1320, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2": [[1339, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1": [[1335, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R": [[1337, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-1-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.__init__": [[1336, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.__init__": [[1346, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.__init__": [[1344, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.__init__": [[1342, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R": [[1341, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-2-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R": [[1345, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-3-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R": [[1349, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-4-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3": [[1343, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4": [[1347, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.__init__": [[1338, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.__init__": [[1340, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.__init__": [[1348, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2": [[1355, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.__init__": [[1352, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.__init__": [[1360, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0": [[1361, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.__init__": [[1354, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3": [[1357, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1": [[1363, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1": [[1353, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.__init__": [[1356, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.__init__": [[1358, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.__init__": [[1362, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.__init__": [[1364, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0": [[1351, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.__init__": [[1350, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4": [[1359, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4": [[1369, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.__init__": [[1370, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.__init__": [[1376, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.__init__": [[1368, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.__init__": [[1372, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3": [[1377, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3": [[1367, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2": [[1365, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0": [[1371, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1": [[1373, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.__init__": [[1366, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.__init__": [[1374, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4": [[1379, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.__init__": [[1378, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2": [[1375, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-2"]], "triqs.gf.wrapped_aux.CallProxyDLR_1.__init__": [[1384, "triqs-gf-wrapped-aux-callproxydlr-1-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_1": [[1383, "triqs-gf-wrapped-aux-callproxydlr-1"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0": [[1391, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyDLR_4.__init__": [[1390, "triqs-gf-wrapped-aux-callproxydlr-4-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_0": [[1381, "triqs-gf-wrapped-aux-callproxydlr-0"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1": [[1393, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyDLR_4": [[1389, "triqs-gf-wrapped-aux-callproxydlr-4"]], "triqs.gf.wrapped_aux.CallProxyDLR_0.__init__": [[1382, "triqs-gf-wrapped-aux-callproxydlr-0-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.__init__": [[1394, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_3.__init__": [[1388, "triqs-gf-wrapped-aux-callproxydlr-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.__init__": [[1380, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-4-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_2": [[1385, "triqs-gf-wrapped-aux-callproxydlr-2"]], "triqs.gf.wrapped_aux.CallProxyDLR_2.__init__": [[1386, "triqs-gf-wrapped-aux-callproxydlr-2-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.__init__": [[1392, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_3": [[1387, "triqs-gf-wrapped-aux-callproxydlr-3"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1": [[1403, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4": [[1399, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.__init__": [[1396, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3": [[1407, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.__init__": [[1398, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.__init__": [[1406, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2": [[1405, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.__init__": [[1408, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.__init__": [[1400, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3": [[1397, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4": [[1409, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.__init__": [[1402, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2": [[1395, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.__init__": [[1404, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0": [[1401, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyImFreq_4": [[1419, "triqs-gf-wrapped-aux-callproxyimfreq-4"]], "triqs.gf.wrapped_aux.CallProxyImFreq_4.__init__": [[1420, "triqs-gf-wrapped-aux-callproxyimfreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.__init__": [[1410, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_2.__init__": [[1416, "triqs-gf-wrapped-aux-callproxyimfreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_3.__init__": [[1418, "triqs-gf-wrapped-aux-callproxyimfreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_1": [[1413, "triqs-gf-wrapped-aux-callproxyimfreq-1"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.__init__": [[1422, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1": [[1423, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyImFreq_2": [[1415, "triqs-gf-wrapped-aux-callproxyimfreq-2"]], "triqs.gf.wrapped_aux.CallProxyImFreq_3": [[1417, "triqs-gf-wrapped-aux-callproxyimfreq-3"]], "triqs.gf.wrapped_aux.CallProxyImFreq_0.__init__": [[1412, "triqs-gf-wrapped-aux-callproxyimfreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0": [[1421, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.__init__": [[1424, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_1.__init__": [[1414, "triqs-gf-wrapped-aux-callproxyimfreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_0": [[1411, "triqs-gf-wrapped-aux-callproxyimfreq-0"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2": [[1425, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.__init__": [[1428, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3": [[1427, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4": [[1439, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1": [[1433, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.__init__": [[1430, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3": [[1437, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4": [[1429, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.__init__": [[1436, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.__init__": [[1434, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.__init__": [[1426, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0": [[1431, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2": [[1435, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.__init__": [[1438, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.__init__": [[1432, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_1": [[1445, "triqs-gf-wrapped-aux-callproxyimtime-1"]], "triqs.gf.wrapped_aux.CallProxyImTime_1_R": [[1447, "triqs-gf-wrapped-aux-callproxyimtime-1-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_2_R": [[1451, "triqs-gf-wrapped-aux-callproxyimtime-2-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_2_R.__init__": [[1452, "triqs-gf-wrapped-aux-callproxyimtime-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_2.__init__": [[1450, "triqs-gf-wrapped-aux-callproxyimtime-2-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_0_R.__init__": [[1444, "triqs-gf-wrapped-aux-callproxyimtime-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_3": [[1453, "triqs-gf-wrapped-aux-callproxyimtime-3"]], "triqs.gf.wrapped_aux.CallProxyImTime_3.__init__": [[1454, "triqs-gf-wrapped-aux-callproxyimtime-3-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_2": [[1449, "triqs-gf-wrapped-aux-callproxyimtime-2"]], "triqs.gf.wrapped_aux.CallProxyImTime_0": [[1441, "triqs-gf-wrapped-aux-callproxyimtime-0"]], "triqs.gf.wrapped_aux.CallProxyImTime_0_R": [[1443, "triqs-gf-wrapped-aux-callproxyimtime-0-r"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.__init__": [[1440, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_0.__init__": [[1442, "triqs-gf-wrapped-aux-callproxyimtime-0-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_1_R.__init__": [[1448, "triqs-gf-wrapped-aux-callproxyimtime-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_1.__init__": [[1446, "triqs-gf-wrapped-aux-callproxyimtime-1-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_3_R.__init__": [[1456, "triqs-gf-wrapped-aux-callproxyimtime-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.__init__": [[1462, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.__init__": [[1464, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2": [[1469, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyImTime_4_R": [[1459, "triqs-gf-wrapped-aux-callproxyimtime-4-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0": [[1461, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyImTime_3_R": [[1455, "triqs-gf-wrapped-aux-callproxyimtime-3-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1": [[1465, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.__init__": [[1468, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_4_R.__init__": [[1460, "triqs-gf-wrapped-aux-callproxyimtime-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.__init__": [[1466, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R": [[1467, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-1-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R": [[1463, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-0-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_4": [[1457, "triqs-gf-wrapped-aux-callproxyimtime-4"]], "triqs.gf.wrapped_aux.CallProxyImTime_4.__init__": [[1458, "triqs-gf-wrapped-aux-callproxyimtime-4-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R": [[1471, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-2-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.__init__": [[1482, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.__init__": [[1472, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.__init__": [[1476, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4": [[1477, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R": [[1475, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-3-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.__init__": [[1480, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.__init__": [[1474, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.__init__": [[1478, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.__init__": [[1484, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R": [[1483, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-0-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R": [[1479, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-4-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3": [[1473, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.__init__": [[1470, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0": [[1481, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1": [[1485, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.__init__": [[1496, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3": [[1493, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4": [[1497, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.__init__": [[1498, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R": [[1499, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-4-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R": [[1495, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-3-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R": [[1487, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-1-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.__init__": [[1486, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.__init__": [[1488, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R": [[1491, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-2-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2": [[1489, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.__init__": [[1494, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.__init__": [[1492, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.__init__": [[1490, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_0.__init__": [[1502, "triqs-gf-wrapped-aux-callproxylegendre-0-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_0": [[1501, "triqs-gf-wrapped-aux-callproxylegendre-0"]], "triqs.gf.wrapped_aux.CallProxyLegendre_4": [[1509, "triqs-gf-wrapped-aux-callproxylegendre-4"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.__init__": [[1514, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_4.__init__": [[1510, "triqs-gf-wrapped-aux-callproxylegendre-4-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_1": [[1503, "triqs-gf-wrapped-aux-callproxylegendre-1"]], "triqs.gf.wrapped_aux.CallProxyLegendre_2": [[1505, "triqs-gf-wrapped-aux-callproxylegendre-2"]], "triqs.gf.wrapped_aux.CallProxyLegendre_3": [[1507, "triqs-gf-wrapped-aux-callproxylegendre-3"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.__init__": [[1500, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_1.__init__": [[1504, "triqs-gf-wrapped-aux-callproxylegendre-1-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.__init__": [[1512, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0": [[1511, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyLegendre_3.__init__": [[1508, "triqs-gf-wrapped-aux-callproxylegendre-3-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_2.__init__": [[1506, "triqs-gf-wrapped-aux-callproxylegendre-2-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1": [[1513, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1": [[1523, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.__init__": [[1520, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3": [[1517, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2": [[1525, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.__init__": [[1518, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.__init__": [[1522, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2": [[1515, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.__init__": [[1526, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.__init__": [[1528, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.__init__": [[1524, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0": [[1521, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4": [[1529, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4": [[1519, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3": [[1527, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.__init__": [[1516, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_3": [[1537, "triqs-gf-wrapped-aux-callproxyrefreq-3"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1": [[1543, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyReFreq_4": [[1539, "triqs-gf-wrapped-aux-callproxyrefreq-4"]], "triqs.gf.wrapped_aux.CallProxyReFreq_0.__init__": [[1532, "triqs-gf-wrapped-aux-callproxyrefreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_1.__init__": [[1534, "triqs-gf-wrapped-aux-callproxyrefreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.__init__": [[1530, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_0": [[1531, "triqs-gf-wrapped-aux-callproxyrefreq-0"]], "triqs.gf.wrapped_aux.CallProxyReFreq_2.__init__": [[1536, "triqs-gf-wrapped-aux-callproxyrefreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_3.__init__": [[1538, "triqs-gf-wrapped-aux-callproxyrefreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0": [[1541, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyReFreq_4.__init__": [[1540, "triqs-gf-wrapped-aux-callproxyrefreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.__init__": [[1542, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.__init__": [[1544, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_2": [[1535, "triqs-gf-wrapped-aux-callproxyrefreq-2"]], "triqs.gf.wrapped_aux.CallProxyReFreq_1": [[1533, "triqs-gf-wrapped-aux-callproxyrefreq-1"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.__init__": [[1546, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.__init__": [[1548, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.__init__": [[1558, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2": [[1555, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2": [[1545, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3": [[1547, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.__init__": [[1550, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3": [[1557, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.__init__": [[1554, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.__init__": [[1552, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0": [[1551, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4": [[1549, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4": [[1559, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1": [[1553, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.__init__": [[1556, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0": [[1571, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.__init__": [[1560, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_2": [[1565, "triqs-gf-wrapped-aux-callproxyretime-2"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.__init__": [[1572, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_3.__init__": [[1568, "triqs-gf-wrapped-aux-callproxyretime-3-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_4": [[1569, "triqs-gf-wrapped-aux-callproxyretime-4"]], "triqs.gf.wrapped_aux.CallProxyReTime_1.__init__": [[1564, "triqs-gf-wrapped-aux-callproxyretime-1-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_0.__init__": [[1562, "triqs-gf-wrapped-aux-callproxyretime-0-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_0": [[1561, "triqs-gf-wrapped-aux-callproxyretime-0"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1": [[1573, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyReTime_2.__init__": [[1566, "triqs-gf-wrapped-aux-callproxyretime-2-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_4.__init__": [[1570, "triqs-gf-wrapped-aux-callproxyretime-4-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_3": [[1567, "triqs-gf-wrapped-aux-callproxyretime-3"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.__init__": [[1574, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_1": [[1563, "triqs-gf-wrapped-aux-callproxyretime-1"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4": [[1579, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.__init__": [[1586, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.__init__": [[1576, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.__init__": [[1580, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2": [[1585, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0": [[1581, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1": [[1583, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.__init__": [[1582, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.__init__": [[1588, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3": [[1587, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2": [[1575, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3": [[1577, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.__init__": [[1584, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4": [[1589, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.__init__": [[1578, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-3-init"]], "triqs.lattice.bz_patch": [[1593, "module-triqs.lattice.bz_patch"]], "triqs.lattice.lattice_tools.BravaisLattice.ndim": [[1602, "triqs-lattice-lattice-tools-bravaislattice-ndim"]], "triqs.lattice.lattice_tools.BravaisLattice": [[1598, "triqs-lattice-lattice-tools-bravaislattice"]], "triqs.lattice.lattice_tools.BravaisLattice.lattice_to_real_coordinates": [[1600, "triqs-lattice-lattice-tools-bravaislattice-lattice-to-real-coordinates"]], "triqs.lattice.bz_patch.BZPatch.__init__": [[1595, "triqs-lattice-bz-patch-bzpatch-init"]], "triqs.lattice.lattice_tools.BravaisLattice.orbital_positions": [[1604, "triqs-lattice-lattice-tools-bravaislattice-orbital-positions"]], "triqs.lattice.lattice_tools": [[1597, "module-triqs.lattice.lattice_tools"]], "triqs.lattice.lattice_tools.BravaisLattice.orbital_names": [[1603, "triqs-lattice-lattice-tools-bravaislattice-orbital-names"]], "triqs.lattice": [[1592, "module-triqs.lattice"]], "triqs.lattice.lattice_tools.BravaisLattice.__init__": [[1599, "triqs-lattice-lattice-tools-bravaislattice-init"]], "triqs.lattice.lattice_tools.BravaisLattice.n_orbitals": [[1601, "triqs-lattice-lattice-tools-bravaislattice-n-orbitals"]], "triqs.lattice.bz_patch.BZPatch": [[1594, "triqs-lattice-bz-patch-bzpatch"]], "triqs.lattice.bz_patch.BZPatch.dos": [[1596, "triqs-lattice-bz-patch-bzpatch-dos"]], "triqs.gf.wrapped_aux.set_from_gf_data_mul_LR": [[1591, "triqs-gf-wrapped-aux-set-from-gf-data-mul-lr"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.__init__": [[1590, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-4-init"]], "triqs.lattice.lattice_tools.TightBinding.lattice_to_real_coordinates": [[1617, "triqs-lattice-lattice-tools-tightbinding-lattice-to-real-coordinates"]], "triqs.lattice.lattice_tools.BrillouinZone.units": [[1610, "triqs-lattice-lattice-tools-brillouinzone-units"]], "triqs.lattice.lattice_tools.TightBinding.overlap_mat_vec": [[1618, "triqs-lattice-lattice-tools-tightbinding-overlap-mat-vec"]], "triqs.lattice.lattice_tools.dos": [[1619, "triqs-lattice-lattice-tools-dos"]], "triqs.lattice.lattice_tools.TightBinding": [[1611, "triqs-lattice-lattice-tools-tightbinding"]], "triqs.lattice.lattice_tools.TightBinding.lattice": [[1616, "triqs-lattice-lattice-tools-tightbinding-lattice"]], "triqs.lattice.lattice_tools.BrillouinZone.__init__": [[1607, "triqs-lattice-lattice-tools-brillouinzone-init"]], "triqs.lattice.lattice_tools.TightBinding.__init__": [[1612, "triqs-lattice-lattice-tools-tightbinding-init"]], "triqs.lattice.lattice_tools.TightBinding.dispersion": [[1613, "triqs-lattice-lattice-tools-tightbinding-dispersion"]], "triqs.lattice.lattice_tools.TightBinding.fourier": [[1615, "triqs-lattice-lattice-tools-tightbinding-fourier"]], "triqs.lattice.lattice_tools.BravaisLattice.units": [[1605, "triqs-lattice-lattice-tools-bravaislattice-units"]], "triqs.lattice.lattice_tools.TightBinding.displ_vec": [[1614, "triqs-lattice-lattice-tools-tightbinding-displ-vec"]], "triqs.lattice.lattice_tools.BrillouinZone": [[1606, "triqs-lattice-lattice-tools-brillouinzone"]], "triqs.lattice.lattice_tools.BrillouinZone.lattice": [[1608, "triqs-lattice-lattice-tools-brillouinzone-lattice"]], "triqs.lattice.lattice_tools.BrillouinZone.ndim": [[1609, "triqs-lattice-lattice-tools-brillouinzone-ndim"]], "triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_L_to_SL": [[1628, "triqs-lattice-super-lattice-tbsuperlattice-change-coordinates-l-to-sl"]], "triqs.lattice.point.LatticePoint.__init__": [[1623, "triqs-lattice-point-latticepoint-init"]], "triqs.lattice.super_lattice.TBSuperLattice.cluster_sites": [[1630, "triqs-lattice-super-lattice-tbsuperlattice-cluster-sites"]], "triqs.lattice.super_lattice.TBSuperLattice.__init__": [[1627, "triqs-lattice-super-lattice-tbsuperlattice-init"]], "triqs.lattice.lattice_tools.dos_patch": [[1620, "triqs-lattice-lattice-tools-dos-patch"]], "triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_SL_to_L": [[1629, "triqs-lattice-super-lattice-tbsuperlattice-change-coordinates-sl-to-l"]], "triqs.lattice.super_lattice.TBSuperLattice": [[1626, "triqs-lattice-super-lattice-tbsuperlattice"]], "triqs.lattice.super_lattice.TBSuperLattice.fourier": [[1633, "triqs-lattice-super-lattice-tbsuperlattice-fourier"]], "triqs.lattice.super_lattice.TBSuperLattice.get_kmesh": [[1634, "triqs-lattice-super-lattice-tbsuperlattice-get-kmesh"]], "triqs.lattice.point.LatticePoint.value": [[1624, "triqs-lattice-point-latticepoint-value"]], "triqs.lattice.point.LatticePoint": [[1622, "triqs-lattice-point-latticepoint"]], "triqs.lattice.super_lattice": [[1625, "module-triqs.lattice.super_lattice"]], "triqs.lattice.super_lattice.TBSuperLattice.dispersion": [[1631, "triqs-lattice-super-lattice-tbsuperlattice-dispersion"]], "triqs.lattice.super_lattice.TBSuperLattice.fold": [[1632, "triqs-lattice-super-lattice-tbsuperlattice-fold"]], "triqs.lattice.point": [[1621, "module-triqs.lattice.point"]], "triqs.lattice.super_lattice.TBSuperLattice.pack_index_site_orbital": [[1642, "triqs-lattice-super-lattice-tbsuperlattice-pack-index-site-orbital"]], "triqs.lattice.super_lattice.TBSuperLattice.lattice_to_real_coordinates": [[1637, "triqs-lattice-super-lattice-tbsuperlattice-lattice-to-real-coordinates"]], "triqs.lattice.super_lattice.TBSuperLattice.orbital_names": [[1640, "triqs-lattice-super-lattice-tbsuperlattice-orbital-names"]], "triqs.lattice.super_lattice.TBSuperLattice.orbital_positions": [[1641, "triqs-lattice-super-lattice-tbsuperlattice-orbital-positions"]], "triqs.lattice.super_lattice.TBSuperLattice.units": [[1643, "triqs-lattice-super-lattice-tbsuperlattice-units"]], "triqs.lattice.super_lattice.TBSuperLattice.unpack_index_site_orbital": [[1644, "triqs-lattice-super-lattice-tbsuperlattice-unpack-index-site-orbital"]], "triqs.lattice.super_lattice.TBSuperLattice.n_orbitals": [[1638, "triqs-lattice-super-lattice-tbsuperlattice-n-orbitals"]], "triqs.lattice.super_lattice.TBSuperLattice.ndim": [[1639, "triqs-lattice-super-lattice-tbsuperlattice-ndim"]], "triqs.lattice.tight_binding.TBLattice.__init__": [[1647, "triqs-lattice-tight-binding-tblattice-init"]], "triqs.lattice.super_lattice.TBSuperLattice.hoppings": [[1636, "triqs-lattice-super-lattice-tbsuperlattice-hoppings"]], "triqs.lattice.tight_binding.TBLattice.dispersion": [[1648, "triqs-lattice-tight-binding-tblattice-dispersion"]], "triqs.lattice.tight_binding": [[1645, "module-triqs.lattice.tight_binding"]], "triqs.lattice.tight_binding.TBLattice.fourier": [[1649, "triqs-lattice-tight-binding-tblattice-fourier"]], "triqs.lattice.tight_binding.TBLattice": [[1646, "triqs-lattice-tight-binding-tblattice"]], "triqs.lattice.super_lattice.TBSuperLattice.get_rmesh": [[1635, "triqs-lattice-super-lattice-tbsuperlattice-get-rmesh"]], "triqs.lattice.tight_binding.TBLattice.orbital_positions": [[1657, "triqs-lattice-tight-binding-tblattice-orbital-positions"]], "triqs.lattice.utils.TB_from_pythTB": [[1662, "triqs-lattice-utils-tb-from-pythtb"]], "triqs.lattice.tight_binding.dos": [[1659, "triqs-lattice-tight-binding-dos"]], "triqs.lattice.utils.TB_from_wannier90": [[1663, "triqs-lattice-utils-tb-from-wannier90"]], "triqs.lattice.tight_binding.TBLattice.n_orbitals": [[1654, "triqs-lattice-tight-binding-tblattice-n-orbitals"]], "triqs.lattice.tight_binding.TBLattice.orbital_names": [[1656, "triqs-lattice-tight-binding-tblattice-orbital-names"]], "triqs.lattice.tight_binding.TBLattice.hoppings": [[1652, "triqs-lattice-tight-binding-tblattice-hoppings"]], "triqs.lattice.tight_binding.TBLattice.get_rmesh": [[1651, "triqs-lattice-tight-binding-tblattice-get-rmesh"]], "triqs.lattice.utils.TB_to_sympy": [[1664, "triqs-lattice-utils-tb-to-sympy"]], "triqs.lattice.tight_binding.TBLattice.ndim": [[1655, "triqs-lattice-tight-binding-tblattice-ndim"]], "triqs.lattice.utils": [[1661, "module-triqs.lattice.utils"]], "triqs.lattice.tight_binding.TBLattice.units": [[1658, "triqs-lattice-tight-binding-tblattice-units"]], "triqs.lattice.tight_binding.dos_patch": [[1660, "triqs-lattice-tight-binding-dos-patch"]], "triqs.lattice.tight_binding.TBLattice.get_kmesh": [[1650, "triqs-lattice-tight-binding-tblattice-get-kmesh"]], "triqs.lattice.tight_binding.TBLattice.lattice_to_real_coordinates": [[1653, "triqs-lattice-tight-binding-tblattice-lattice-to-real-coordinates"]], "triqs.operators.operators.Operator.is_zero": [[1674, "triqs-operators-operators-operator-is-zero"]], "triqs.operators.operators.c": [[1676, "triqs-operators-operators-c"]], "triqs.operators": [[1669, "module-triqs.operators"]], "triqs.lattice.utils.k_space_path": [[1666, "triqs-lattice-utils-k-space-path"]], "triqs.operators.operators.Operator.imag": [[1673, "triqs-operators-operators-operator-imag"]], "triqs.operators.operators.Operator": [[1671, "triqs-operators-operators-operator"]], "triqs.operators.operators.Operator.__init__": [[1672, "triqs-operators-operators-operator-init"]], "triqs.operators.operators.Operator.real": [[1675, "triqs-operators-operators-operator-real"]], "triqs.operators.operators.is_op_hermitian": [[1679, "triqs-operators-operators-is-op-hermitian"]], "triqs.lattice.utils.parse_lattice_vectors_from_wannier90_wout": [[1668, "triqs-lattice-utils-parse-lattice-vectors-from-wannier90-wout"]], "triqs.lattice.utils.extend_wannier90_to_spin": [[1665, "triqs-lattice-utils-extend-wannier90-to-spin"]], "triqs.operators.operators": [[1670, "module-triqs.operators.operators"]], "triqs.operators.operators.c_dag": [[1677, "triqs-operators-operators-c-dag"]], "triqs.operators.operators.dagger": [[1678, "triqs-operators-operators-dagger"]], "triqs.lattice.utils.parse_hopping_from_wannier90_hr_dat": [[1667, "triqs-lattice-utils-parse-hopping-from-wannier90-hr-dat"]], "triqs.operators.util": [[1681, "module-triqs.operators.util"]], "triqs.operators.util.U_matrix.angular_matrix_element": [[1686, "triqs-operators-util-u-matrix-angular-matrix-element"]], "triqs.operators.util.U_matrix.reduce_4index_to_2index": [[1691, "triqs-operators-util-u-matrix-reduce-4index-to-2index"]], "triqs.operators.util.U_matrix.radial_integrals_to_U_J": [[1690, "triqs-operators-util-u-matrix-radial-integrals-to-u-j"]], "triqs.operators.util.U_matrix.subarray": [[1693, "triqs-operators-util-u-matrix-subarray"]], "triqs.operators.util.U_matrix.cubic_names": [[1688, "triqs-operators-util-u-matrix-cubic-names"]], "triqs.operators.util.U_matrix.clebsch_gordan": [[1687, "triqs-operators-util-u-matrix-clebsch-gordan"]], "triqs.operators.util.U_matrix.spherical_to_cubic": [[1692, "triqs-operators-util-u-matrix-spherical-to-cubic"]], "triqs.operators.util.U_matrix": [[1682, "module-triqs.operators.util.U_matrix"]], "triqs.operators.util.U_matrix.eg_submatrix": [[1689, "triqs-operators-util-u-matrix-eg-submatrix"]], "triqs.operators.operators.n": [[1680, "triqs-operators-operators-n"]], "triqs.operators.util.U_matrix.U_J_to_radial_integrals": [[1683, "triqs-operators-util-u-matrix-u-j-to-radial-integrals"]], "triqs.operators.util.U_matrix.t2g_submatrix": [[1694, "triqs-operators-util-u-matrix-t2g-submatrix"]], "triqs.operators.util.U_matrix.U_matrix_slater": [[1685, "triqs-operators-util-u-matrix-u-matrix-slater"]], "triqs.operators.util.U_matrix.U_matrix_kanamori": [[1684, "triqs-operators-util-u-matrix-u-matrix-kanamori"]], "triqs.operators.util.hamiltonians.diagonal_part": [[1708, "triqs-operators-util-hamiltonians-diagonal-part"]], "triqs.operators.util.U_matrix.three_j_symbol": [[1695, "triqs-operators-util-u-matrix-three-j-symbol"]], "triqs.operators.util.extractors.dict_to_matrix": [[1699, "triqs-operators-util-extractors-dict-to-matrix"]], "triqs.operators.util.extractors": [[1697, "module-triqs.operators.util.extractors"]], "triqs.operators.util.extractors.op_from_block_matrix": [[1703, "triqs-operators-util-extractors-op-from-block-matrix"]], "triqs.operators.util.extractors.block_matrix_from_op": [[1698, "triqs-operators-util-extractors-block-matrix-from-op"]], "triqs.operators.util.extractors.quartic_terms": [[1705, "triqs-operators-util-extractors-quartic-terms"]], "triqs.operators.util.hamiltonians.backward_compat": [[1707, "triqs-operators-util-hamiltonians-backward-compat"]], "triqs.operators.util.extractors.extract_h_dict": [[1702, "triqs-operators-util-extractors-extract-h-dict"]], "triqs.operators.util.extractors.quadratic_terms": [[1704, "triqs-operators-util-extractors-quadratic-terms"]], "triqs.operators.util.extractors.extract_U_dict4": [[1701, "triqs-operators-util-extractors-extract-u-dict4"]], "triqs.operators.util.U_matrix.transform_U_matrix": [[1696, "triqs-operators-util-u-matrix-transform-u-matrix"]], "triqs.operators.util.hamiltonians": [[1706, "module-triqs.operators.util.hamiltonians"]], "triqs.operators.util.extractors.extract_U_dict2": [[1700, "triqs-operators-util-extractors-extract-u-dict2"]], "triqs.operators.util.hamiltonians.h_int_density": [[1709, "triqs-operators-util-hamiltonians-h-int-density"]], "triqs.operators.util.observables.LS_op": [[1715, "triqs-operators-util-observables-ls-op"]], "triqs.operators.util.hamiltonians.make_operator_real": [[1712, "triqs-operators-util-hamiltonians-make-operator-real"]], "triqs.operators.util.observables.check_backward_compat": [[1720, "triqs-operators-util-observables-check-backward-compat"]], "triqs.operators.util.hamiltonians.h_int_slater": [[1711, "triqs-operators-util-hamiltonians-h-int-slater"]], "triqs.operators.util.observables.S2_op": [[1718, "triqs-operators-util-observables-s2-op"]], "triqs.operators.util.observables.S_op": [[1719, "triqs-operators-util-observables-s-op"]], "triqs.operators.util.op_struct.get_mkind": [[1722, "triqs-operators-util-op-struct-get-mkind"]], "triqs.plot": [[1724, "module-triqs.plot"]], "triqs.operators.util.op_struct": [[1721, "module-triqs.operators.util.op_struct"]], "triqs.operators.util.observables": [[1713, "module-triqs.operators.util.observables"]], "triqs.operators.util.observables.L_op": [[1716, "triqs-operators-util-observables-l-op"]], "triqs.operators.util.op_struct.set_operator_structure": [[1723, "triqs-operators-util-op-struct-set-operator-structure"]], "triqs.operators.util.observables.L2_op": [[1714, "triqs-operators-util-observables-l2-op"]], "triqs.operators.util.hamiltonians.h_int_kanamori": [[1710, "triqs-operators-util-hamiltonians-h-int-kanamori"]], "triqs.operators.util.observables.N_op": [[1717, "triqs-operators-util-observables-n-op"]], "triqs.plot.protocol.plot_protocol_apply": [[1732, "triqs-plot-protocol-plot-protocol-apply"]], "triqs.random_generator": [[1733, "module-triqs.random_generator"]], "triqs.random_generator.random_generator.random_generator_names_list": [[1737, "triqs-random-generator-random-generator-random-generator-names-list"]], "triqs.plot.mpl_interface": [[1725, "module-triqs.plot.mpl_interface"]], "triqs.stat.histogram": [[1739, "module-triqs.stat.histogram"]], "triqs.plot.mpl_interface.use_amsmath": [[1729, "triqs-plot-mpl-interface-use-amsmath"]], "triqs.stat": [[1738, "module-triqs.stat"]], "triqs.plot.mpl_interface.oploti": [[1727, "triqs-plot-mpl-interface-oploti"]], "triqs.plot.mpl_interface.oplotr": [[1728, "triqs-plot-mpl-interface-oplotr"]], "triqs.plot.mpl_interface.oplot": [[1726, "triqs-plot-mpl-interface-oplot"]], "triqs.random_generator.RandomGenerator": [[1734, "triqs-random-generator-randomgenerator"]], "triqs.plot.protocol.clip_array": [[1731, "triqs-plot-protocol-clip-array"]], "triqs.random_generator.random_generator": [[1736, "module-triqs.random_generator.random_generator"]], "triqs.plot.protocol": [[1730, "module-triqs.plot.protocol"]], "triqs.random_generator.RandomGenerator.__init__": [[1735, "triqs-random-generator-randomgenerator-init"]], "triqs.stat.histograms": [[1741, "module-triqs.stat.histograms"]], "triqs.stat.histograms.cdf": [[1750, "triqs-stat-histograms-cdf"]], "triqs.stat.histograms.Histogram.n_data_pts": [[1748, "triqs-stat-histograms-histogram-n-data-pts"]], "triqs.stat.histograms.Histogram.limits": [[1746, "triqs-stat-histograms-histogram-limits"]], "triqs.stat.histogram.plot": [[1740, "triqs-stat-histogram-plot"]], "triqs.stat.histograms.Histogram.clear": [[1744, "triqs-stat-histograms-histogram-clear"]], "triqs.stat.histograms.Histogram": [[1742, "triqs-stat-histograms-histogram"]], "triqs.sumk.sumk_discrete.SumkDiscrete": [[1754, "triqs-sumk-sumk-discrete-sumkdiscrete"]], "triqs.stat.histograms.Histogram.data": [[1745, "triqs-stat-histograms-histogram-data"]], "triqs.sumk.sumk_discrete": [[1753, "module-triqs.sumk.sumk_discrete"]], "triqs.stat.histograms.Histogram.mesh_point": [[1747, "triqs-stat-histograms-histogram-mesh-point"]], "triqs.stat.histograms.Histogram.__init__": [[1743, "triqs-stat-histograms-histogram-init"]], "triqs.sumk": [[1752, "module-triqs.sumk"]], "triqs.stat.histograms.Histogram.n_lost_pts": [[1749, "triqs-stat-histograms-histogram-n-lost-pts"]], "triqs.stat.histograms.pdf": [[1751, "triqs-stat-histograms-pdf"]], "triqs.utility.bound_and_bisect": [[1767, "module-triqs.utility.bound_and_bisect"]], "triqs.sumk.sumk_discrete_from_lattice": [[1759, "module-triqs.sumk.sumk_discrete_from_lattice"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.Recompute_Grid": [[1762, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-recompute-grid"]], "triqs.sumk.sumk_discrete.SumkDiscrete.n_kpts": [[1757, "triqs-sumk-sumk-discrete-sumkdiscrete-n-kpts"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.GFBlocIndices": [[1761, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-gfblocindices"]], "triqs.utility.bound_and_bisect.determine_bounds": [[1769, "triqs-utility-bound-and-bisect-determine-bounds"]], "triqs.sumk.sumk_discrete.SumkDiscrete.resize_arrays": [[1758, "triqs-sumk-sumk-discrete-sumkdiscrete-resize-arrays"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice": [[1760, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice"]], "triqs.sumk.sumk_discrete.SumkDiscrete.GFBlocIndices": [[1755, "triqs-sumk-sumk-discrete-sumkdiscrete-gfblocindices"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.n_kpts": [[1764, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-n-kpts"]], "triqs.utility": [[1766, "module-triqs.utility"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.resize_arrays": [[1765, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-resize-arrays"]], "triqs.sumk.sumk_discrete.SumkDiscrete.__init__": [[1756, "triqs-sumk-sumk-discrete-sumkdiscrete-init"]], "triqs.utility.bound_and_bisect.bound_and_bisect": [[1768, "triqs-utility-bound-and-bisect-bound-and-bisect"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.__init__": [[1763, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-init"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack": [[1784, "triqs-utility-dist-on-nodes-distributiononnodesonestack"]], "triqs.utility.comparison_tests.assert_block2_gfs_are_close": [[1774, "triqs-utility-comparison-tests-assert-block2-gfs-are-close"]], "triqs.utility.dist_on_nodes.DistributionOnNodes.run": [[1783, "triqs-utility-dist-on-nodes-distributiononnodes-run"]], "triqs.utility.comparison_tests.assert_arrays_are_close": [[1773, "triqs-utility-comparison-tests-assert-arrays-are-close"]], "triqs.utility.comparison_tests.assert_block_gfs_are_close": [[1775, "triqs-utility-comparison-tests-assert-block-gfs-are-close"]], "triqs.utility.comparison_tests.assert_array_close_to_scalar": [[1772, "triqs-utility-comparison-tests-assert-array-close-to-scalar"]], "triqs.utility.comparison_tests": [[1771, "module-triqs.utility.comparison_tests"]], "triqs.utility.dist_on_nodes.DistributionOnNodes.__init__": [[1782, "triqs-utility-dist-on-nodes-distributiononnodes-init"]], "triqs.utility.comparison_tests.assert_gfs_are_close": [[1776, "triqs-utility-comparison-tests-assert-gfs-are-close"]], "triqs.utility.dist_on_nodes": [[1779, "module-triqs.utility.dist_on_nodes"]], "triqs.utility.dist_on_nodes.DistributionOnNodes.SleepTime": [[1781, "triqs-utility-dist-on-nodes-distributiononnodes-sleeptime"]], "triqs.utility.dist_on_nodes.DistributionOnNodes": [[1780, "triqs-utility-dist-on-nodes-distributiononnodes"]], "triqs.utility.dichotomy": [[1777, "module-triqs.utility.dichotomy"]], "triqs.utility.capture_stdout": [[1770, "module-triqs.utility.capture_stdout"]], "triqs.utility.dichotomy.dichotomy": [[1778, "triqs-utility-dichotomy-dichotomy"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.finished": [[1787, "triqs-utility-dist-on-nodes-distributiononnodesonestack-finished"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.SleepTime": [[1792, "triqs-utility-dist-on-nodes-distributiononnodestest-sleeptime"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest": [[1791, "triqs-utility-dist-on-nodes-distributiononnodestest"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.treate": [[1790, "triqs-utility-dist-on-nodes-distributiononnodesonestack-treate"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.result": [[1788, "triqs-utility-dist-on-nodes-distributiononnodesonestack-result"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.result": [[1795, "triqs-utility-dist-on-nodes-distributiononnodestest-result"]], "triqs.utility.h5diff": [[1799, "module-triqs.utility.h5diff"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.run": [[1796, "triqs-utility-dist-on-nodes-distributiononnodestest-run"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.finished": [[1794, "triqs-utility-dist-on-nodes-distributiononnodestest-finished"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.__init__": [[1793, "triqs-utility-dist-on-nodes-distributiononnodestest-init"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.SleepTime": [[1785, "triqs-utility-dist-on-nodes-distributiononnodesonestack-sleeptime"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.__init__": [[1786, "triqs-utility-dist-on-nodes-distributiononnodesonestack-init"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.run": [[1789, "triqs-utility-dist-on-nodes-distributiononnodesonestack-run"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.treate": [[1798, "triqs-utility-dist-on-nodes-distributiononnodestest-treate"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.the_function": [[1797, "triqs-utility-dist-on-nodes-distributiononnodestest-the-function"]], "triqs.utility.mpi_mpi4py.is_master_node": [[1808, "triqs-utility-mpi-mpi4py-is-master-node"]], "triqs.utility.mpi.check_for_mpi": [[1803, "triqs-utility-mpi-check-for-mpi"]], "Returns:": [[1803, "returns"]], "triqs.utility.mpi_mpi4py.report": [[1813, "triqs-utility-mpi-mpi4py-report"]], "triqs.utility.mpi_mpi4py.recv": [[1812, "triqs-utility-mpi-mpi4py-recv"]], "triqs.utility.h5diff.h5diff": [[1801, "triqs-utility-h5diff-h5diff"]], "triqs.utility.mpi": [[1802, "module-triqs.utility.mpi"]], "triqs.utility.h5diff.compare": [[1800, "triqs-utility-h5diff-compare"]], "triqs.utility.mpi_mpi4py.myprint_err": [[1810, "triqs-utility-mpi-mpi4py-myprint-err"]], "triqs.utility.mpi_mpi4py.myprint_out": [[1811, "triqs-utility-mpi-mpi4py-myprint-out"]], "triqs.utility.mpi_mpi4py": [[1804, "module-triqs.utility.mpi_mpi4py"]], "triqs.utility.mpi_mpi4py.master_gets_host_names": [[1809, "triqs-utility-mpi-mpi4py-master-gets-host-names"]], "triqs.utility.mpi_mpi4py.send": [[1814, "triqs-utility-mpi-mpi4py-send"]], "triqs.utility.mpi_mpi4py.barrier": [[1806, "triqs-utility-mpi-mpi4py-barrier"]], "triqs.utility.mpi_mpi4py.bcast": [[1807, "triqs-utility-mpi-mpi4py-bcast"]], "triqs.utility.mpi_mpi4py.all_reduce": [[1805, "triqs-utility-mpi-mpi4py-all-reduce"]], "triqs.utility.mpi_nompi.myprint_err": [[1824, "triqs-utility-mpi-nompi-myprint-err"]], "triqs.utility.mpi_nompi.recv": [[1826, "triqs-utility-mpi-nompi-recv"]], "triqs.utility.mpi_nompi.all_reduce": [[1819, "triqs-utility-mpi-nompi-all-reduce"]], "triqs.utility.mpi_mpi4py.slice_array": [[1815, "triqs-utility-mpi-mpi4py-slice-array"]], "triqs.utility.mpi_mpi4py.slice_sup": [[1817, "triqs-utility-mpi-mpi4py-slice-sup"]], "triqs.utility.mpi_nompi.is_master_node": [[1822, "triqs-utility-mpi-nompi-is-master-node"]], "triqs.utility.mpi_nompi.master_gets_host_names": [[1823, "triqs-utility-mpi-nompi-master-gets-host-names"]], "triqs.utility.mpi_nompi.report": [[1827, "triqs-utility-mpi-nompi-report"]], "triqs.utility.mpi_nompi.slice_array": [[1829, "triqs-utility-mpi-nompi-slice-array"]], "triqs.utility.mpi_nompi": [[1818, "module-triqs.utility.mpi_nompi"]], "triqs.utility.mpi_nompi.send": [[1828, "triqs-utility-mpi-nompi-send"]], "triqs.utility.mpi_nompi.myprint_out": [[1825, "triqs-utility-mpi-nompi-myprint-out"]], "triqs.utility.mpi_nompi.barrier": [[1820, "triqs-utility-mpi-nompi-barrier"]], "triqs.utility.mpi_mpi4py.slice_inf": [[1816, "triqs-utility-mpi-mpi4py-slice-inf"]], "triqs.utility.mpi_nompi.bcast": [[1821, "triqs-utility-mpi-nompi-bcast"]], "triqs.utility.redirect.T.daemon": [[1833, "triqs-utility-redirect-t-daemon"]], "triqs.utility.redirect.T.setDaemon": [[1842, "triqs-utility-redirect-t-setdaemon"]], "triqs.utility.redirect.T.join": [[1838, "triqs-utility-redirect-t-join"]], "triqs.utility.redirect": [[1830, "module-triqs.utility.redirect"]], "triqs.utility.redirect.T.ident": [[1835, "triqs-utility-redirect-t-ident"]], "triqs.utility.redirect.T.name": [[1839, "triqs-utility-redirect-t-name"]], "triqs.utility.redirect.T.setName": [[1843, "triqs-utility-redirect-t-setname"]], "triqs.utility.redirect.T.native_id": [[1840, "triqs-utility-redirect-t-native-id"]], "triqs.utility.redirect.T.run": [[1841, "triqs-utility-redirect-t-run"]], "triqs.utility.redirect.T.is_alive": [[1837, "triqs-utility-redirect-t-is-alive"]], "triqs.utility.redirect.T.getName": [[1834, "triqs-utility-redirect-t-getname"]], "triqs.utility.redirect.T.__init__": [[1832, "triqs-utility-redirect-t-init"]], "triqs.utility.redirect.T": [[1831, "triqs-utility-redirect-t"]], "triqs.utility.redirect.T.start": [[1844, "triqs-utility-redirect-t-start"]], "triqs.utility.redirect.T.isDaemon": [[1836, "triqs-utility-redirect-t-isdaemon"]], "Prerequisites for the TRIQS Compilation on Mac OS X": [[1854, "prerequisites-for-the-triqs-compilation-on-mac-os-x"]], "Installation of the dependencies": [[1854, "installation-of-the-dependencies"]], "Python Virtual Environments": [[1855, "python-virtual-environments"]], "Compiling a package from source": [[1855, "compiling-a-package-from-source"]], "Frequently-asked questions": [[1848, "frequently-asked-questions"]], "Q: How do I write my GF data to text files, e.g. to plot using other plotting tools?": [[1848, "q-how-do-i-write-my-gf-data-to-text-files-e-g-to-plot-using-other-plotting-tools"]], "Q: How do I save the triqs hash and script for debugging purposes?": [[1848, "q-how-do-i-save-the-triqs-hash-and-script-for-debugging-purposes"]], "triqs.utility.redirect.T.stop": [[1845, "triqs-utility-redirect-t-stop"]], "Unix environment variables": [[1852, "unix-environment-variables"]], "Common environment variables": [[1852, "common-environment-variables"]], "Environment variables for software developement": [[1852, "environment-variables-for-software-developement"]], "Environment variables affecting OpenMP": [[1852, "environment-variables-affecting-openmp"]], "User guide": [[1859, "user-guide"]], "Why use TRIQS?": [[1859, "why-use-triqs"]], "Python Tutorials": [[1859, "python-tutorials"]], "A quick tour in C++": [[1859, "a-quick-tour-in-c"]], "triqs.utility.redirect.start_redirect": [[1846, "triqs-utility-redirect-start-redirect"]], "Installing required libraries on Ubuntu": [[1857, "installing-required-libraries-on-ubuntu"]], "Issues": [[1857, "issues"]], "triqs.utility.redirect.stop_redirect": [[1847, "triqs-utility-redirect-stop-redirect"]], "Packaged Versions of TRIQS": [[1850, "packaged-versions-of-triqs"]], "Ubuntu Debian packages": [[1850, "ubuntu-debian-packages"]], "Anaconda": [[1850, "anaconda"]], "Docker": [[1850, "docker"]], "Apptainer": [[1850, "apptainer"]], "Binder": [[1850, "binder"]], "Compiling TRIQS from source using EasyBuild": [[1850, "compiling-triqs-from-source-using-easybuild"]], "Compiling TRIQS from source (Advanced)": [[1850, "compiling-triqs-from-source-advanced"]], "Prerequisites": [[1850, "prerequisites"]], "Installation steps": [[1850, "installation-steps"]], "Environment setup": [[1850, "environment-setup"]], "Further reading": [[1850, "further-reading"]], "Welcome": [[1849, "welcome"]], "TRIQS 3.3": [[1849, null]], "TRIQS applications": [[1849, "triqs-applications"]], "Core libraries": [[1849, "core-libraries"]], "Numerical Algorithms": [[1849, "numerical-algorithms"]], "TRIQS Community": [[1849, "triqs-community"]], "Where to start?": [[1849, "where-to-start"]], "A complete list of requirements": [[1856, "a-complete-list-of-requirements"]], "C++ compilers": [[1856, "c-compilers"]], "Tools and Libraries": [[1856, "tools-and-libraries"]], "Building the TRIQS documentation": [[1856, "building-the-triqs-documentation"]], "Using the clang compiler": [[1851, "using-the-clang-compiler"]], "Get and install clang on linux": [[1851, "get-and-install-clang-on-linux"]], "libclang": [[1851, "libclang"]], "Customizing your installation": [[1853, "customizing-your-installation"]], "cmake options": [[1853, "cmake-options"]], "Guide for porting your application to TRIQS 3.0 and Python 3": [[1858, "guide-for-porting-your-application-to-triqs-3-0-and-python-3"]], "Preparation": [[1858, "preparation"]], "Port your Python files to Python 3": [[1858, "port-your-python-files-to-python-3"]], "Porting IPython Notebooks": [[1858, "porting-ipython-notebooks"]], "Floor division": [[1858, "floor-division"]], "Porting to TRIQS 3.0": [[1858, "porting-to-triqs-3-0"]], "Regenerate desc files": [[1858, "regenerate-desc-files"]], "Update app4triqs skeleton": [[1858, "update-app4triqs-skeleton"]], "Final Steps": [[1858, "final-steps"]], "Matsubara Green\u2019s functions": [[1862, "matsubara-green-s-functions"]], "Creation of a simple Green\u2019s function G(i\\omega)": [[1862, "creation-of-a-simple-green-s-function-g-i-omega"]], "Two-frequency Green\u2019s function G(i\\omega,i\\nu)": [[1862, "two-frequency-green-s-function-g-i-omega-i-nu"]], "Imaginary-time Green\u2019s functions G(\\tau)": [[1862, "imaginary-time-green-s-functions-g-tau"]], "Real-time Green\u2019s functions G(t)": [[1862, "real-time-green-s-functions-g-t"]], "Creation of a two real time GF G(t,t')": [[1862, "creation-of-a-two-real-time-gf-g-t-t"]], "How to fill a GF with placeholders": [[1862, "how-to-fill-a-gf-with-placeholders"]], "How to interpolate the GF value at a point of the domain": [[1862, "how-to-interpolate-the-gf-value-at-a-point-of-the-domain"]], "Dynamical mean-field theory on a Bethe lattice": [[1869, "dynamical-mean-field-theory-on-a-bethe-lattice"]], "Multidimensional arrays": [[1860, "multidimensional-arrays"]], "Declaring and printing an array": [[1860, "declaring-and-printing-an-array"]], "Simple operations": [[1860, "simple-operations"]], "HDF5 Archiving": [[1860, "hdf5-archiving"]], "Views: ranges and slices": [[1860, "views-ranges-and-slices"]], "Matrices and vectors": [[1860, "matrices-and-vectors"]], "Defining through a lazy expression": [[1860, "defining-through-a-lazy-expression"]], "Linear algebra": [[1860, "linear-algebra"]], "Map and fold": [[1860, "map-and-fold"]], "det_manip: Determinant manipulations for CTQMC": [[1861, "det-manip-determinant-manipulations-for-ctqmc"]], "Creation of an empty det_manip class": [[1861, "creation-of-an-empty-det-manip-class"]], "Creation of a non empty det_manip class": [[1861, "creation-of-a-non-empty-det-manip-class"]], "Get information about a det_manip class": [[1861, "get-information-about-a-det-manip-class"]], "Add a line and a column": [[1861, "add-a-line-and-a-column"]], "Remove a line and a column": [[1861, "remove-a-line-and-a-column"]], "Add two lines and two columns": [[1861, "add-two-lines-and-two-columns"]], "Remove two lines and two columns": [[1861, "remove-two-lines-and-two-columns"]], "Remove/add the one/two last lines and columns": [[1861, "remove-add-the-one-two-last-lines-and-columns"]], "Replace one line and column": [[1861, "replace-one-line-and-column"]], "A tight-binding model on a square lattice": [[1872, "a-tight-binding-model-on-a-square-lattice"]], "Profiling in C++ and Python": [[1866, "profiling-in-c-and-python"]], "Writing you own C++ code with TRIQS": [[1867, "writing-you-own-c-code-with-triqs"]], "A simple C++ project, with its tests and documentation": [[1867, "a-simple-c-project-with-its-tests-and-documentation"]], "A mixed C++/Python project": [[1867, "a-mixed-c-python-project"]], "Using TRIQS in your own C++ project": [[1865, "using-triqs-in-your-own-c-project"]], "Model DMFT": [[1871, "model-dmft"]], "Basics": [[1868, "basics"]], "Green\u2019s function and HDF5 files": [[1863, "green-s-function-and-hdf5-files"]], "Conventions for TRIQS applications": [[1864, "conventions-for-triqs-applications"]], "Source structure": [[1864, "source-structure"]], "Install structure": [[1864, "install-structure"]], "Build structure": [[1864, "build-structure"]], "Learn more about Python, ipython and the notebook": [[1870, "learn-more-about-python-ipython-and-the-notebook"]], "Version compatibility": [[1910, "version-compatibility"]], "TRIQS version numbering": [[1910, "triqs-version-numbering"]], "TRIQS applications version numbering": [[1910, "triqs-applications-version-numbering"]], "How to determine the version of the installed TRIQS library": [[1910, "how-to-determine-the-version-of-the-installed-triqs-library"]], "Two-particle Response": [[1909, "two-particle-response"]], "mpi::monitor::operator=": [[137, "mpi-monitor-operator"]], "mpi::monitor::finalize_communications": [[136, "mpi-monitor-finalize-communications"]], "mpi::mpi_broadcast": [[140, "mpi-mpi-broadcast"]], "mpi::mpi_gather": [[141, "mpi-mpi-gather"]], "Returns": [[141, "returns"], [139, "returns"], [12, "returns"], [13, "returns"], [19, "returns"], [16, "returns"], [18, "returns"], [21, "returns"], [24, "returns"], [29, "returns"], [31, "returns"], [30, "returns"], [32, "returns"], [33, "returns"], [34, "returns"], [36, "returns"], [40, "returns"], [44, "returns"], [47, "returns"], [51, "returns"], [48, "returns"], [46, "returns"], [57, "returns"], [52, "returns"], [58, "returns"], [63, "returns"], [65, "returns"], [68, "returns"], [74, "returns"], [70, "returns"], [71, "returns"], [78, "returns"], [81, "returns"], [76, "returns"], [83, "returns"], [86, "returns"], [93, "returns"], [89, "returns"], [92, "returns"], [95, "returns"], [98, "returns"], [100, "returns"], [102, "returns"], [106, "returns"], [113, "returns"], [114, "returns"], [120, "returns"], [122, "returns"], [121, "returns"], [125, "returns"], [127, "returns"], [126, "returns"], [131, "returns"], [135, "returns"], [132, "returns"], [130, "returns"], [142, "returns"], [144, "returns"], [149, "returns"], [153, "returns"], [151, "returns"], [156, "returns"], [155, "returns"], [158, "returns"], [157, "returns"], [163, "returns"], [170, "returns"], [171, "returns"], [172, "returns"], [182, "returns"], [181, "returns"], [183, "returns"], [189, "returns"], [184, "returns"], [187, "returns"], [186, "returns"], [188, "returns"], [185, "returns"], [190, "returns"], [255, "returns"], [254, "returns"], [256, "returns"], [257, "returns"], [302, "returns"], [301, "returns"], [300, "returns"], [314, "returns"], [315, "returns"], [317, "returns"], [327, "returns"], [326, "returns"], [328, "returns"], [331, "returns"], [330, "returns"], [334, "returns"], [339, "returns"], [338, "returns"], [342, "returns"], [343, "returns"], [347, "returns"], [348, "returns"], [350, "returns"], [349, "returns"], [346, "returns"], [363, "returns"], [362, "returns"], [361, "returns"], [359, "returns"], [367, "returns"], [364, "returns"], [369, "returns"], [375, "returns"], [371, "returns"], [373, "returns"], [374, "returns"], [372, "returns"], [380, "returns"], [377, "returns"], [386, "returns"], [384, "returns"], [387, "returns"], [383, "returns"], [385, "returns"], [382, "returns"], [393, "returns"], [389, "returns"], [396, "returns"], [394, "returns"], [395, "returns"], [399, "returns"], [404, "returns"], [402, "returns"], [400, "returns"], [401, "returns"], [407, "returns"], [414, "returns"], [428, "returns"], [431, "returns"], [430, "returns"], [452, "returns"], [453, "returns"], [459, "returns"], [454, "returns"], [455, "returns"], [458, "returns"], [457, "returns"], [456, "returns"], [460, "returns"], [462, "returns"], [466, "returns"], [471, "returns"], [470, "returns"], [469, "returns"], [473, "returns"], [475, "returns"], [474, "returns"], [476, "returns"], [477, "returns"], [479, "returns"], [481, "returns"], [482, "returns"], [480, "returns"], [483, "returns"], [478, "returns"], [484, "returns"], [487, "returns"], [485, "returns"], [486, "returns"]], "mpi::monitor::root_check_nodes_and_bcast": [[139, "mpi-monitor-root-check-nodes-and-bcast"]], "mpi::monitor::request_emergency_stop": [[138, "mpi-monitor-request-emergency-stop"]], "itertools::enum_iter": [[14, "itertools-enum-iter"]], "Public members": [[14, "public-members"], [20, "public-members"], [35, "public-members"], [42, "public-members"], [62, "public-members"], [64, "public-members"], [72, "public-members"], [77, "public-members"], [84, "public-members"], [90, "public-members"], [96, "public-members"], [101, "public-members"], [128, "public-members"], [242, "public-members"]], "Member functions": [[14, "member-functions"], [20, "member-functions"], [28, "member-functions"], [35, "member-functions"], [42, "member-functions"], [49, "member-functions"], [64, "member-functions"], [72, "member-functions"], [77, "member-functions"], [84, "member-functions"], [90, "member-functions"], [96, "member-functions"], [101, "member-functions"], [115, "member-functions"], [123, "member-functions"], [128, "member-functions"], [133, "member-functions"], [154, "member-functions"], [192, "member-functions"], [242, "member-functions"], [259, "member-functions"], [271, "member-functions"], [283, "member-functions"], [325, "member-functions"], [340, "member-functions"], [351, "member-functions"], [357, "member-functions"], [366, "member-functions"], [378, "member-functions"], [390, "member-functions"], [406, "member-functions"], [432, "member-functions"], [442, "member-functions"], [449, "member-functions"], [463, "member-functions"], [540, "member-functions"], [539, "member-functions"], [521, "member-functions"]], "Classes": [[11, "classes"], [108, "classes"], [152, "classes"], [191, "classes"], [240, "classes"], [324, "classes"], [405, "classes"], [448, "classes"]], "Functions": [[11, "functions"], [108, "functions"], [152, "functions"], [240, "functions"], [324, "functions"], [405, "functions"], [448, "functions"]], "itertools::chunk_range": [[12, "itertools-chunk-range"]], "itertools::enum_iter::constructor": [[15, "itertools-enum-iter-constructor"]], "itertools::distance": [[13, "itertools-distance"]], "itertools::enumerate": [[19, "itertools-enumerate"]], "itertools::enum_iter::increment": [[17, "itertools-enum-iter-increment"]], "itertools::enumerated": [[20, "itertools-enumerated"]], "itertools::enum_iter::dereference": [[16, "itertools-enum-iter-dereference"]], "itertools::enum_iter::operator==": [[18, "itertools-enum-iter-operator"]], "itertools::enumerated::begin": [[21, "itertools-enumerated-begin"]], "itertools::enumerated::operator==": [[25, "itertools-enumerated-operator"]], "itertools::foreach": [[26, "itertools-foreach"]], "itertools::enumerated::cbegin": [[22, "itertools-enumerated-cbegin"]], "itertools::enumerated::cend": [[23, "itertools-enumerated-cend"]], "itertools::enumerated::end": [[24, "itertools-enumerated-end"]], "itertools::iterator_facade": [[27, "itertools-iterator-facade"]], "itertools::iterator_facade": [[28, "itertools-iterator-facade-iter-value-std-forward-iterator-tag-reference-difference"]], "itertools::iterator_facade::operator*": [[29, "itertools-iterator-facade-iter-value-std-forward-iterator-tag-reference-difference-operator"]], "itertools::iterator_facade::operator->": [[31, "itertools-iterator-facade-iter-value-std-forward-iterator-tag-reference-difference-operator"]], "itertools::iterator_facade::operator++": [[30, "itertools-iterator-facade-iter-value-std-forward-iterator-tag-reference-difference-operator"]], "itertools::make_product": [[32, "itertools-make-product"]], "itertools::make_sentinel": [[33, "itertools-make-sentinel"]], "itertools::make_vector_from_range": [[34, "itertools-make-vector-from-range"]], "itertools::multiplied": [[35, "itertools-multiplied"]], "itertools::multiplied::constructor": [[39, "itertools-multiplied-constructor"]], "itertools::multiplied::cbegin": [[37, "itertools-multiplied-cbegin"]], "itertools::multiplied::begin": [[36, "itertools-multiplied-begin"]], "itertools::multiplied::cend": [[38, "itertools-multiplied-cend"]], "itertools::multiplied::end": [[40, "itertools-multiplied-end"]], "itertools::prod_iter::increment": [[45, "itertools-prod-iter-increment"]], "itertools::prod_iter::constructor": [[43, "itertools-prod-iter-constructor"]], "itertools::prod_iter": [[42, "itertools-prod-iter"]], "itertools::multiplied::operator==": [[41, "itertools-multiplied-operator"]], "itertools::prod_iter::dereference": [[44, "itertools-prod-iter-dereference"]], "itertools::product": [[47, "itertools-product"]], "itertools::range::begin": [[50, "itertools-range-begin"]], "itertools::range::cbegin": [[51, "itertools-range-cbegin"]], "itertools::range": [[49, "itertools-range"]], "Non Member functions": [[49, "non-member-functions"], [192, "non-member-functions"], [242, "non-member-functions"], [259, "non-member-functions"], [271, "non-member-functions"], [283, "non-member-functions"], [325, "non-member-functions"], [340, "non-member-functions"], [357, "non-member-functions"], [366, "non-member-functions"], [378, "non-member-functions"], [390, "non-member-functions"], [406, "non-member-functions"], [463, "non-member-functions"], [539, "non-member-functions"]], "itertools::product_range": [[48, "itertools-product-range"]], "itertools::prod_iter::operator==": [[46, "itertools-prod-iter-operator"]], "itertools::range::constructor": [[53, "itertools-range-constructor"]], "itertools::range::operator+": [[57, "itertools-range-operator"]], "itertools::range::end": [[54, "itertools-range-end"]], "itertools::range::cend": [[52, "itertools-range-cend"]], "itertools::range::last": [[56, "itertools-range-last"]], "itertools::range::first": [[55, "itertools-range-first"]], "itertools::range::operator<<": [[58, "itertools-range-operator"]], "itertools::range::size": [[60, "itertools-range-size"]], "itertools::sentinel_t": [[62, "itertools-sentinel-t"]], "itertools::range::step": [[61, "itertools-range-step"]], "itertools::slice": [[63, "itertools-slice"]], "itertools::range::operator==": [[59, "itertools-range-operator"]], "itertools::sliced::cbegin": [[66, "itertools-sliced-cbegin"]], "itertools::sliced": [[64, "itertools-sliced"]], "itertools::sliced::begin": [[65, "itertools-sliced-begin"]], "itertools::sliced::end": [[68, "itertools-sliced-end"]], "itertools::sliced::cend": [[67, "itertools-sliced-cend"]], "itertools::sliced::operator==": [[69, "itertools-sliced-operator"]], "itertools::stride_iter::increment": [[75, "itertools-stride-iter-increment"]], "itertools::stride_iter::dereference": [[74, "itertools-stride-iter-dereference"]], "itertools::sliced::size": [[70, "itertools-sliced-size"]], "itertools::stride": [[71, "itertools-stride"]], "itertools::stride_iter": [[72, "itertools-stride-iter"]], "itertools::stride_iter::constructor": [[73, "itertools-stride-iter-constructor"]], "itertools::strided": [[77, "itertools-strided"]], "itertools::strided::begin": [[78, "itertools-strided-begin"]], "itertools::strided::cbegin": [[79, "itertools-strided-cbegin"]], "itertools::strided::end": [[81, "itertools-strided-end"]], "itertools::stride_iter::operator==": [[76, "itertools-stride-iter-operator"]], "itertools::strided::cend": [[80, "itertools-strided-cend"]], "itertools::transform_iter::increment": [[87, "itertools-transform-iter-increment"]], "itertools::transform": [[83, "itertools-transform"]], "itertools::transform_iter::dereference": [[86, "itertools-transform-iter-dereference"]], "itertools::transform_iter::constructor": [[85, "itertools-transform-iter-constructor"]], "itertools::transform_iter": [[84, "itertools-transform-iter"]], "itertools::strided::operator==": [[82, "itertools-strided-operator"]], "itertools::transformed::begin": [[91, "itertools-transformed-begin"]], "itertools::transformed::cend": [[93, "itertools-transformed-cend"]], "itertools::transform_iter::operator==": [[89, "itertools-transform-iter-operator"]], "itertools::transformed::cbegin": [[92, "itertools-transformed-cbegin"]], "itertools::transform_iter::operator=": [[88, "itertools-transform-iter-operator"]], "itertools::transformed": [[90, "itertools-transformed"]], "itertools::zip_iter": [[96, "itertools-zip-iter"]], "itertools::zip_iter::constructor": [[97, "itertools-zip-iter-constructor"]], "itertools::zip_iter::increment": [[99, "itertools-zip-iter-increment"]], "itertools::zip": [[95, "itertools-zip"]], "itertools::transformed::end": [[94, "itertools-transformed-end"]], "itertools::zip_iter::dereference": [[98, "itertools-zip-iter-dereference"]], "itertools::zip_iter::operator==": [[100, "itertools-zip-iter-operator"]], "itertools::zipped::cbegin": [[103, "itertools-zipped-cbegin"]], "itertools::zipped": [[101, "itertools-zipped"]], "itertools::zipped::constructor": [[105, "itertools-zipped-constructor"]], "itertools::zipped::cend": [[104, "itertools-zipped-cend"]], "itertools::zipped::begin": [[102, "itertools-zipped-begin"]], "mpi::all_reduce": [[110, "mpi-all-reduce"]], "itertools::zipped::end": [[106, "itertools-zipped-end"]], "mpi::all_gather": [[109, "mpi-all-gather"]], "itertools::zipped::operator==": [[107, "itertools-zipped-operator"]], "mpi::all_reduce_in_place": [[111, "mpi-all-reduce-in-place"]], "mpi::chunk": [[113, "mpi-chunk"]], "mpi::communicator::abort": [[116, "mpi-communicator-abort"]], "mpi::broadcast": [[112, "mpi-broadcast"]], "mpi::communicator": [[115, "mpi-communicator"]], "mpi::communicator::barrier": [[117, "mpi-communicator-barrier"]], "mpi::chunk_length": [[114, "mpi-chunk-length"]], "mpi::communicator::get": [[119, "mpi-communicator-get"]], "mpi::communicator::rank": [[120, "mpi-communicator-rank"]], "mpi::communicator::constructor": [[118, "mpi-communicator-constructor"]], "mpi::communicator::split": [[122, "mpi-communicator-split"]], "mpi::environment": [[123, "mpi-environment"]], "mpi::communicator::size": [[121, "mpi-communicator-size"]], "mpi::gather": [[125, "mpi-gather"]], "mpi::lazy::invoke": [[129, "mpi-lazy-invoke"]], "mpi::is_initialized": [[127, "mpi-is-initialized"]], "mpi::get_mpi_type": [[126, "mpi-get-mpi-type"]], "mpi::environment::constructor": [[124, "mpi-environment-constructor"]], "mpi::lazy": [[128, "mpi-lazy"]], "mpi::map_C_function": [[131, "mpi-map-c-function"]], "mpi::monitor::constructor": [[134, "mpi-monitor-constructor"]], "mpi::monitor": [[133, "mpi-monitor"]], "mpi::monitor::emergency_occured": [[135, "mpi-monitor-emergency-occured"]], "mpi::map_add": [[132, "mpi-map-add"]], "mpi::lazy::shape": [[130, "mpi-lazy-shape"]], "mpi::mpi_type": [[145, "mpi-mpi-type"]], "mpi::mpi_reduce_in_place": [[143, "mpi-mpi-reduce-in-place"]], "mpi::mpi_type": [[146, "mpi-mpi-type-constt"]], "mpi::mpi_reduce": [[142, "mpi-mpi-reduce"]], "mpi::mpi_scatter": [[144, "mpi-mpi-scatter"]], "mpi::mpi_type>": [[147, "mpi-mpi-type-std-tuple-t"]], "mpi::reduce_in_place": [[150, "mpi-reduce-in-place"]], "mpi::reduce": [[149, "mpi-reduce"]], "triqs::atom_diag::act": [[153, "triqs-atom-diag-act"]], "triqs::atom_diag": [[152, "triqs-atom-diag"]], "Type aliases": [[152, "type-aliases"], [240, "type-aliases"], [324, "type-aliases"]], "mpi::mpi_type_from_tie": [[148, "mpi-mpi-type-from-tie"]], "mpi::scatter": [[151, "mpi-scatter"]], "triqs::atom_diag::atom_diag::c_matrix": [[156, "triqs-atom-diag-atom-diag-c-matrix"]], "triqs::atom_diag::atom_diag": [[154, "triqs-atom-diag-atom-diag"]], "triqs::atom_diag::atom_diag::c_connection": [[155, "triqs-atom-diag-atom-diag-c-connection"]], "triqs::atom_diag::atom_diag::constructor": [[159, "triqs-atom-diag-atom-diag-constructor"]], "triqs::atom_diag::atom_diag::cdag_matrix": [[158, "triqs-atom-diag-atom-diag-cdag-matrix"]], "triqs::atom_diag::atom_diag::cdag_connection": [[157, "triqs-atom-diag-atom-diag-cdag-connection"]], "triqs::atom_diag::atom_diag::get_energies": [[163, "triqs-atom-diag-atom-diag-get-energies"]], "triqs::atom_diag::atom_diag::get_eigenvalue": [[162, "triqs-atom-diag-atom-diag-get-eigenvalue"]], "triqs::atom_diag::atom_diag::get_fock_states": [[164, "triqs-atom-diag-atom-diag-get-fock-states"]], "triqs::atom_diag::atom_diag::get_fops": [[165, "triqs-atom-diag-atom-diag-get-fops"]], "triqs::atom_diag::atom_diag::flatten_subspace_index": [[160, "triqs-atom-diag-atom-diag-flatten-subspace-index"]], "triqs::atom_diag::atom_diag::get_eigensystems": [[161, "triqs-atom-diag-atom-diag-get-eigensystems"]], "triqs::atom_diag::atom_diag::get_matrix_element_of_monomial": [[170, "triqs-atom-diag-atom-diag-get-matrix-element-of-monomial"]], "triqs::atom_diag::atom_diag::get_h_atomic": [[169, "triqs-atom-diag-atom-diag-get-h-atomic"]], "triqs::atom_diag::atom_diag::get_full_hilbert_space_dim": [[167, "triqs-atom-diag-atom-diag-get-full-hilbert-space-dim"]], "triqs::atom_diag::atom_diag::get_full_hilbert_space": [[166, "triqs-atom-diag-atom-diag-get-full-hilbert-space"]], "triqs::atom_diag::atom_diag::get_op_mat": [[171, "triqs-atom-diag-atom-diag-get-op-mat"]], "triqs::atom_diag::atom_diag::get_gs_energy": [[168, "triqs-atom-diag-atom-diag-get-gs-energy"]], "triqs::atom_diag::atom_diag::get_vacuum_state": [[177, "triqs-atom-diag-atom-diag-get-vacuum-state"]], "triqs::atom_diag::atom_diag::get_subspace_dims": [[174, "triqs-atom-diag-atom-diag-get-subspace-dims"]], "triqs::atom_diag::atom_diag::get_quantum_numbers": [[172, "triqs-atom-diag-atom-diag-get-quantum-numbers"]], "triqs::atom_diag::atom_diag::get_unitary_matrix": [[176, "triqs-atom-diag-atom-diag-get-unitary-matrix"]], "triqs::atom_diag::atom_diag::get_unitary_matrices": [[175, "triqs-atom-diag-atom-diag-get-unitary-matrices"]], "triqs::atom_diag::atom_diag::get_subspace_dim": [[173, "triqs-atom-diag-atom-diag-get-subspace-dim"]], "triqs::atom_diag::atomic_g_iw": [[182, "triqs-atom-diag-atomic-g-iw"]], "triqs::atom_diag::atom_diag::index_range_of_subspace": [[179, "triqs-atom-diag-atom-diag-index-range-of-subspace"]], "triqs::atom_diag::atom_diag::n_subspaces": [[180, "triqs-atom-diag-atom-diag-n-subspaces"]], "triqs::atom_diag::atom_diag::get_vacuum_subspace_index": [[178, "triqs-atom-diag-atom-diag-get-vacuum-subspace-index"]], "triqs::atom_diag::atomic_density_matrix": [[181, "triqs-atom-diag-atomic-density-matrix"]], "triqs::atom_diag::atomic_g_l": [[183, "triqs-atom-diag-atomic-g-l"]], "triqs::atom_diag::quantum_number_eigenvalues_checked": [[189, "triqs-atom-diag-quantum-number-eigenvalues-checked"]], "triqs::atom_diag::atomic_g_lehmann": [[184, "triqs-atom-diag-atomic-g-lehmann"]], "triqs::atom_diag::partition_function": [[187, "triqs-atom-diag-partition-function"]], "triqs::atom_diag::atomic_g_w": [[186, "triqs-atom-diag-atomic-g-w"]], "triqs::atom_diag::quantum_number_eigenvalues": [[188, "triqs-atom-diag-quantum-number-eigenvalues"]], "triqs::atom_diag::atomic_g_tau": [[185, "triqs-atom-diag-atomic-g-tau"]], "triqs::det_manip::det_manip::change_col": [[193, "triqs-det-manip-det-manip-change-col"]], "triqs::det_manip::det_manip::change_row": [[194, "triqs-det-manip-det-manip-change-row"]], "triqs::det_manip::det_manip::clear": [[195, "triqs-det-manip-det-manip-clear"]], "triqs::atom_diag::trace_rho_op": [[190, "triqs-atom-diag-trace-rho-op"]], "triqs::det_manip": [[191, "triqs-det-manip"]], "triqs::det_manip::det_manip": [[192, "triqs-det-manip-det-manip"]], "triqs::det_manip::det_manip::get_n_operations_before_check": [[200, "triqs-det-manip-det-manip-get-n-operations-before-check"]], "triqs::det_manip::det_manip::complete_operation": [[196, "triqs-det-manip-det-manip-complete-operation"]], "triqs::det_manip::det_manip::get_precision_error": [[201, "triqs-det-manip-det-manip-get-precision-error"]], "triqs::det_manip::det_manip::constructor": [[197, "triqs-det-manip-det-manip-constructor"]], "triqs::det_manip::det_manip::determinant": [[198, "triqs-det-manip-det-manip-determinant"]], "triqs::det_manip::det_manip::get_function": [[199, "triqs-det-manip-det-manip-get-function"]], "triqs::det_manip::det_manip::get_x_internal_order": [[205, "triqs-det-manip-det-manip-get-x-internal-order"]], "triqs::det_manip::det_manip::get_x": [[204, "triqs-det-manip-det-manip-get-x"]], "triqs::det_manip::det_manip::get_y_internal_order": [[207, "triqs-det-manip-det-manip-get-y-internal-order"]], "triqs::det_manip::det_manip::get_singular_threshold": [[203, "triqs-det-manip-det-manip-get-singular-threshold"]], "triqs::det_manip::det_manip::get_y": [[206, "triqs-det-manip-det-manip-get-y"]], "triqs::det_manip::det_manip::get_precision_warning": [[202, "triqs-det-manip-det-manip-get-precision-warning"]], "triqs::det_manip::det_manip::insert2_at_end": [[212, "triqs-det-manip-det-manip-insert2-at-end"]], "triqs::det_manip::det_manip::insert_at_end": [[213, "triqs-det-manip-det-manip-insert-at-end"]], "triqs::det_manip::det_manip::insert": [[210, "triqs-det-manip-det-manip-insert"]], "triqs::det_manip::det_manip::insert2": [[211, "triqs-det-manip-det-manip-insert2"]], "triqs::det_manip::det_manip::h5_write": [[209, "triqs-det-manip-det-manip-h5-write"]], "triqs::det_manip::det_manip::h5_read": [[208, "triqs-det-manip-det-manip-h5-read"]], "triqs::det_manip::det_manip::inverse_matrix": [[214, "triqs-det-manip-det-manip-inverse-matrix"]], "triqs::det_manip::det_manip::remove": [[219, "triqs-det-manip-det-manip-remove"]], "triqs::det_manip::det_manip::reject_last_try": [[218, "triqs-det-manip-det-manip-reject-last-try"]], "triqs::det_manip::det_manip::is_singular": [[216, "triqs-det-manip-det-manip-is-singular"]], "triqs::det_manip::det_manip::inverse_matrix_internal_order": [[215, "triqs-det-manip-det-manip-inverse-matrix-internal-order"]], "triqs::det_manip::det_manip::matrix": [[217, "triqs-det-manip-det-manip-matrix"]], "triqs::det_manip::det_manip::reserve": [[223, "triqs-det-manip-det-manip-reserve"]], "triqs::det_manip::det_manip::set_n_operations_before_check": [[225, "triqs-det-manip-det-manip-set-n-operations-before-check"]], "triqs::det_manip::det_manip::remove_at_end": [[222, "triqs-det-manip-det-manip-remove-at-end"]], "triqs::det_manip::det_manip::roll_matrix": [[224, "triqs-det-manip-det-manip-roll-matrix"]], "triqs::det_manip::det_manip::remove2": [[220, "triqs-det-manip-det-manip-remove2"]], "triqs::det_manip::det_manip::remove2_at_end": [[221, "triqs-det-manip-det-manip-remove2-at-end"]], "triqs::det_manip::det_manip::set_precision_error": [[226, "triqs-det-manip-det-manip-set-precision-error"]], "triqs::det_manip::det_manip::swap_row": [[231, "triqs-det-manip-det-manip-swap-row"]], "triqs::det_manip::det_manip::set_singular_threshold": [[228, "triqs-det-manip-det-manip-set-singular-threshold"]], "triqs::det_manip::det_manip::swap_col": [[230, "triqs-det-manip-det-manip-swap-col"]], "triqs::det_manip::det_manip::set_precision_warning": [[227, "triqs-det-manip-det-manip-set-precision-warning"]], "triqs::det_manip::det_manip::size": [[229, "triqs-det-manip-det-manip-size"]], "triqs::det_manip::det_manip::try_change_col": [[232, "triqs-det-manip-det-manip-try-change-col"]], "triqs::det_manip::det_manip::try_change_col_row": [[233, "triqs-det-manip-det-manip-try-change-col-row"]], "triqs::det_manip::det_manip::try_refill": [[237, "triqs-det-manip-det-manip-try-refill"]], "triqs::det_manip::det_manip::try_insert": [[235, "triqs-det-manip-det-manip-try-insert"]], "triqs::det_manip::det_manip::try_change_row": [[234, "triqs-det-manip-det-manip-try-change-row"]], "triqs::det_manip::det_manip::try_insert_k": [[236, "triqs-det-manip-det-manip-try-insert-k"]], "triqs::gfs::": [[241, "triqs-gfs-deduction-guide-for-block-gf"]], "triqs::det_manip::det_manip::try_remove": [[238, "triqs-det-manip-det-manip-try-remove"]], "triqs::gfs": [[240, "triqs-gfs"]], "triqs::gfs::block_gf::block_names": [[243, "triqs-gfs-block-gf-block-names"]], "triqs::gfs::block_gf": [[242, "triqs-gfs-block-gf"]], "triqs::det_manip::det_manip::try_remove_k": [[239, "triqs-det-manip-det-manip-try-remove-k"]], "triqs::gfs::block_gf::h5_read": [[247, "triqs-gfs-block-gf-h5-read"]], "triqs::gfs::block_gf::h5_write": [[248, "triqs-gfs-block-gf-h5-write"]], "triqs::gfs::block_gf::hdf5_format": [[249, "triqs-gfs-block-gf-hdf5-format"]], "triqs::gfs::block_gf::constructor": [[245, "triqs-gfs-block-gf-constructor"]], "triqs::gfs::block_gf::block_sizes": [[244, "triqs-gfs-block-gf-block-sizes"]], "triqs::gfs::block_gf::data": [[246, "triqs-gfs-block-gf-data"]], "triqs::gfs::fit_tail": [[255, "triqs-gfs-fit-tail"]], "triqs::gfs::density": [[252, "triqs-gfs-density"]], "triqs::gfs::block_gf::operator=": [[251, "triqs-gfs-block-gf-operator"]], "triqs::gfs::block_gf::operator()": [[250, "triqs-gfs-block-gf-operator"]], "triqs::gfs::fit_hermitian_tail": [[254, "triqs-gfs-fit-hermitian-tail"]], "triqs::gfs::fit_gf_dlr": [[253, "triqs-gfs-fit-gf-dlr"]], "triqs::gfs::gf::constructor": [[260, "triqs-gfs-gf-constructor"]], "triqs::gfs::gf": [[259, "triqs-gfs-gf"]], "Accessors": [[259, "accessors"], [271, "accessors"], [283, "accessors"]], "triqs::gfs::flatten_2d": [[256, "triqs-gfs-flatten-2d"]], "triqs::gfs::get_mesh": [[258, "triqs-gfs-get-mesh"]], "triqs::gfs::gf::data": [[261, "triqs-gfs-gf-data"]], "triqs::gfs::flatten_gf_2d": [[257, "triqs-gfs-flatten-gf-2d"]], "triqs::gfs::gf::operator<<": [[267, "triqs-gfs-gf-operator"]], "triqs::gfs::gf::h5_write": [[264, "triqs-gfs-gf-h5-write"]], "triqs::gfs::gf::mesh": [[266, "triqs-gfs-gf-mesh"]], "triqs::gfs::gf::hdf5_format": [[265, "triqs-gfs-gf-hdf5-format"]], "triqs::gfs::gf::h5_read": [[263, "triqs-gfs-gf-h5-read"]], "triqs::gfs::gf::data_shape": [[262, "triqs-gfs-gf-data-shape"]], "triqs::gfs::gf::operator=": [[268, "triqs-gfs-gf-operator"]], "triqs::gfs::gf_const_view::constructor": [[272, "triqs-gfs-gf-const-view-constructor"]], "triqs::gfs::gf::target_indices": [[269, "triqs-gfs-gf-target-indices"]], "triqs::gfs::gf_const_view": [[271, "triqs-gfs-gf-const-view"]], "triqs::gfs::gf_const_view::data": [[273, "triqs-gfs-gf-const-view-data"]], "triqs::gfs::gf::target_shape": [[270, "triqs-gfs-gf-target-shape"]], "triqs::gfs::gf_const_view::mesh": [[278, "triqs-gfs-gf-const-view-mesh"]], "triqs::gfs::gf_const_view::hdf5_format": [[277, "triqs-gfs-gf-const-view-hdf5-format"]], "triqs::gfs::gf_const_view::h5_write": [[276, "triqs-gfs-gf-const-view-h5-write"]], "triqs::gfs::gf_const_view::operator<<": [[279, "triqs-gfs-gf-const-view-operator"]], "triqs::gfs::gf_const_view::data_shape": [[274, "triqs-gfs-gf-const-view-data-shape"]], "triqs::gfs::gf_const_view::h5_read": [[275, "triqs-gfs-gf-const-view-h5-read"]], "triqs::gfs::gf_view::data": [[285, "triqs-gfs-gf-view-data"]], "triqs::gfs::gf_const_view::rebind": [[280, "triqs-gfs-gf-const-view-rebind"]], "triqs::gfs::gf_const_view::target_indices": [[281, "triqs-gfs-gf-const-view-target-indices"]], "triqs::gfs::gf_view::constructor": [[284, "triqs-gfs-gf-view-constructor"]], "triqs::gfs::gf_const_view::target_shape": [[282, "triqs-gfs-gf-const-view-target-shape"]], "triqs::gfs::gf_view": [[283, "triqs-gfs-gf-view"]], "triqs::gfs::gf_view::data_shape": [[286, "triqs-gfs-gf-view-data-shape"]], "triqs::gfs::gf_view::hdf5_format": [[289, "triqs-gfs-gf-view-hdf5-format"]], "triqs::gfs::gf_view::h5_write": [[288, "triqs-gfs-gf-view-h5-write"]], "triqs::gfs::gf_view::mesh": [[290, "triqs-gfs-gf-view-mesh"]], "triqs::gfs::gf_view::h5_read": [[287, "triqs-gfs-gf-view-h5-read"]], "triqs::gfs::gf_view::operator<<": [[291, "triqs-gfs-gf-view-operator"]], "triqs::gfs::h5_read_gf_struct": [[296, "triqs-gfs-h5-read-gf-struct"]], "triqs::gfs::imag": [[297, "triqs-gfs-imag"]], "triqs::gfs::gf_view::operator=": [[292, "triqs-gfs-gf-view-operator"]], "triqs::gfs::gf_view::target_shape": [[295, "triqs-gfs-gf-view-target-shape"]], "triqs::gfs::gf_view::rebind": [[293, "triqs-gfs-gf-view-rebind"]], "triqs::gfs::gf_view::target_indices": [[294, "triqs-gfs-gf-view-target-indices"]], "triqs::gfs::inverse": [[299, "triqs-gfs-inverse"]], "triqs::gfs::is_gf_real_in_tau": [[302, "triqs-gfs-is-gf-real-in-tau"]], "triqs::gfs::make_block2_gf": [[303, "triqs-gfs-make-block2-gf"]], "triqs::gfs::impl_tag": [[298, "triqs-gfs-impl-tag"]], "triqs::gfs::is_gf_real": [[301, "triqs-gfs-is-gf-real"]], "triqs::gfs::is_gf_hermitian": [[300, "triqs-gfs-is-gf-hermitian"]], "triqs::gfs::make_gf_dlr_imfreq": [[307, "triqs-gfs-make-gf-dlr-imfreq"]], "triqs::gfs::make_block_gf": [[304, "triqs-gfs-make-block-gf"]], "triqs::gfs::make_block_gf_view": [[305, "triqs-gfs-make-block-gf-view"]], "triqs::gfs::make_gf_dlr": [[306, "triqs-gfs-make-gf-dlr"]], "triqs::gfs::make_gf_from_fourier": [[309, "triqs-gfs-make-gf-from-fourier"]], "triqs::gfs::make_gf_dlr_imtime": [[308, "triqs-gfs-make-gf-dlr-imtime"]], "triqs::gfs::make_gf_imtime": [[313, "triqs-gfs-make-gf-imtime"]], "triqs::gfs::make_gf_from_inverse_fourier": [[310, "triqs-gfs-make-gf-from-inverse-fourier"]], "triqs::gfs::make_hermitian": [[314, "triqs-gfs-make-hermitian"]], "triqs::gfs::make_real_in_tau": [[315, "triqs-gfs-make-real-in-tau"]], "triqs::gfs::make_gf_from_real_gf": [[311, "triqs-gfs-make-gf-from-real-gf"]], "triqs::gfs::make_gf_imfreq": [[312, "triqs-gfs-make-gf-imfreq"]], "triqs::gfs::real": [[319, "triqs-gfs-real"]], "triqs::gfs::positive_freq_view": [[318, "triqs-gfs-positive-freq-view"]], "triqs::gfs::reinterpret_scalar_valued_gf_as_matrix_valued": [[320, "triqs-gfs-reinterpret-scalar-valued-gf-as-matrix-valued"]], "triqs::gfs::make_zero_tail": [[316, "triqs-gfs-make-zero-tail"]], "triqs::gfs::mpi_reduce": [[317, "triqs-gfs-mpi-reduce"]], "triqs::gfs::tau_L2_norm": [[321, "triqs-gfs-tau-l2-norm"]], "triqs::gfs::unflatten_gf_2d": [[323, "triqs-gfs-unflatten-gf-2d"]], "triqs::gfs::unflatten_2d": [[322, "triqs-gfs-unflatten-2d"]], "triqs::hilbert_space::fundamental_operator_set::cbegin": [[327, "triqs-hilbert-space-fundamental-operator-set-cbegin"]], "triqs::hilbert_space::fundamental_operator_set::begin": [[326, "triqs-hilbert-space-fundamental-operator-set-begin"]], "triqs::hilbert_space::fundamental_operator_set": [[325, "triqs-hilbert-space-fundamental-operator-set"]], "triqs::hilbert_space": [[324, "triqs-hilbert-space"]], "triqs::hilbert_space::fundamental_operator_set::h5_read_attribute": [[332, "triqs-hilbert-space-fundamental-operator-set-h5-read-attribute"]], "triqs::hilbert_space::fundamental_operator_set::cend": [[328, "triqs-hilbert-space-fundamental-operator-set-cend"]], "triqs::hilbert_space::fundamental_operator_set::h5_write_attribute": [[333, "triqs-hilbert-space-fundamental-operator-set-h5-write-attribute"]], "triqs::hilbert_space::fundamental_operator_set::constructor": [[329, "triqs-hilbert-space-fundamental-operator-set-constructor"]], "triqs::hilbert_space::fundamental_operator_set::end": [[331, "triqs-hilbert-space-fundamental-operator-set-end"]], "triqs::hilbert_space::fundamental_operator_set::data": [[330, "triqs-hilbert-space-fundamental-operator-set-data"]], "triqs::hilbert_space::fundamental_operator_set::insert": [[335, "triqs-hilbert-space-fundamental-operator-set-insert"]], "triqs::hilbert_space::fundamental_operator_set::has_indices": [[334, "triqs-hilbert-space-fundamental-operator-set-has-indices"]], "triqs::hilbert_space::fundamental_operator_set::size": [[339, "triqs-hilbert-space-fundamental-operator-set-size"]], "triqs::hilbert_space::fundamental_operator_set::operator==": [[337, "triqs-hilbert-space-fundamental-operator-set-operator"]], "triqs::hilbert_space::fundamental_operator_set::insert_from_indices_t": [[336, "triqs-hilbert-space-fundamental-operator-set-insert-from-indices-t"]], "triqs::hilbert_space::fundamental_operator_set::operator[]": [[338, "triqs-hilbert-space-fundamental-operator-set-operator"]], "triqs::hilbert_space::hilbert_space": [[340, "triqs-hilbert-space-hilbert-space"]], "triqs::hilbert_space::hilbert_space::get_fock_state": [[342, "triqs-hilbert-space-hilbert-space-get-fock-state"]], "triqs::hilbert_space::hilbert_space::h5_read": [[344, "triqs-hilbert-space-hilbert-space-h5-read"]], "triqs::hilbert_space::hilbert_space::constructor": [[341, "triqs-hilbert-space-hilbert-space-constructor"]], "triqs::hilbert_space::hilbert_space::h5_write": [[345, "triqs-hilbert-space-hilbert-space-h5-write"]], "triqs::hilbert_space::hilbert_space::get_state_index": [[343, "triqs-hilbert-space-hilbert-space-get-state-index"]], "triqs::hilbert_space::hilbert_space::hdf5_format": [[347, "triqs-hilbert-space-hilbert-space-hdf5-format"]], "triqs::hilbert_space::hilbert_space::operator!=": [[348, "triqs-hilbert-space-hilbert-space-operator"]], "triqs::hilbert_space::hilbert_space::size": [[350, "triqs-hilbert-space-hilbert-space-size"]], "triqs::hilbert_space::imperative_operator": [[351, "triqs-hilbert-space-imperative-operator"]], "triqs::hilbert_space::hilbert_space::operator==": [[349, "triqs-hilbert-space-hilbert-space-operator"]], "triqs::hilbert_space::hilbert_space::has_state": [[346, "triqs-hilbert-space-hilbert-space-has-state"]], "triqs::hilbert_space::imperative_operator::operator()": [[354, "triqs-hilbert-space-imperative-operator-operator"]], "triqs::hilbert_space::space_partition": [[357, "triqs-hilbert-space-space-partition"]], "triqs::hilbert_space::imperative_operator::is_empty": [[353, "triqs-hilbert-space-imperative-operator-is-empty"]], "triqs::hilbert_space::make_zero_state": [[356, "triqs-hilbert-space-make-zero-state"]], "triqs::hilbert_space::imperative_operator::update": [[355, "triqs-hilbert-space-imperative-operator-update"]], "triqs::hilbert_space::imperative_operator::constructor": [[352, "triqs-hilbert-space-imperative-operator-constructor"]], "triqs::hilbert_space::space_partition::merge_subspaces": [[363, "triqs-hilbert-space-space-partition-merge-subspaces"]], "triqs::hilbert_space::space_partition::constructor": [[358, "triqs-hilbert-space-space-partition-constructor"]], "triqs::hilbert_space::space_partition::lookup_basis_state": [[362, "triqs-hilbert-space-space-partition-lookup-basis-state"]], "triqs::hilbert_space::space_partition::foreach": [[360, "triqs-hilbert-space-space-partition-foreach"]], "triqs::hilbert_space::space_partition::get_matrix_elements": [[361, "triqs-hilbert-space-space-partition-get-matrix-elements"]], "triqs::hilbert_space::space_partition::find_mappings": [[359, "triqs-hilbert-space-space-partition-find-mappings"]], "triqs::hilbert_space::state::constructor": [[368, "triqs-hilbert-space-state-hilbertspace-scalartype-false-constructor"]], "triqs::hilbert_space::state::amplitudes": [[367, "triqs-hilbert-space-state-hilbertspace-scalartype-false-amplitudes"]], "triqs::hilbert_space::space_partition::n_subspaces": [[364, "triqs-hilbert-space-space-partition-n-subspaces"]], "triqs::hilbert_space::state": [[365, "triqs-hilbert-space-state"]], "triqs::hilbert_space::state": [[366, "triqs-hilbert-space-state-hilbertspace-scalartype-false"]], "triqs::hilbert_space::state::dot_product": [[369, "triqs-hilbert-space-state-hilbertspace-scalartype-false-dot-product"]], "triqs::hilbert_space::state::operator-=": [[375, "triqs-hilbert-space-state-hilbertspace-scalartype-false-operator"]], "triqs::hilbert_space::state::get_hilbert": [[371, "triqs-hilbert-space-state-hilbertspace-scalartype-false-get-hilbert"]], "triqs::hilbert_space::state::foreach": [[370, "triqs-hilbert-space-state-hilbertspace-scalartype-false-foreach"]], "triqs::hilbert_space::state::operator*=": [[373, "triqs-hilbert-space-state-hilbertspace-scalartype-false-operator"]], "triqs::hilbert_space::state::operator+=": [[374, "triqs-hilbert-space-state-hilbertspace-scalartype-false-operator"]], "triqs::hilbert_space::state::operator()": [[372, "triqs-hilbert-space-state-hilbertspace-scalartype-false-operator"]], "triqs::hilbert_space::state::dot_product": [[380, "triqs-hilbert-space-state-hilbertspace-scalartype-true-dot-product"]], "triqs::hilbert_space::state::constructor": [[379, "triqs-hilbert-space-state-hilbertspace-scalartype-true-constructor"]], "triqs::hilbert_space::state::foreach": [[381, "triqs-hilbert-space-state-hilbertspace-scalartype-true-foreach"]], "triqs::hilbert_space::state::size": [[377, "triqs-hilbert-space-state-hilbertspace-scalartype-false-size"]], "triqs::hilbert_space::state": [[378, "triqs-hilbert-space-state-hilbertspace-scalartype-true"]], "triqs::hilbert_space::state::set_hilbert": [[376, "triqs-hilbert-space-state-hilbertspace-scalartype-false-set-hilbert"]], "triqs::hilbert_space::state::operator+=": [[386, "triqs-hilbert-space-state-hilbertspace-scalartype-true-operator"]], "triqs::hilbert_space::state::operator()": [[384, "triqs-hilbert-space-state-hilbertspace-scalartype-true-operator"]], "triqs::hilbert_space::state::operator-=": [[387, "triqs-hilbert-space-state-hilbertspace-scalartype-true-operator"]], "triqs::hilbert_space::state::nterms": [[383, "triqs-hilbert-space-state-hilbertspace-scalartype-true-nterms"]], "triqs::hilbert_space::state::operator*=": [[385, "triqs-hilbert-space-state-hilbertspace-scalartype-true-operator"]], "triqs::hilbert_space::state::get_hilbert": [[382, "triqs-hilbert-space-state-hilbertspace-scalartype-true-get-hilbert"]], "triqs::hilbert_space::sub_hilbert_space::add_fock_state": [[391, "triqs-hilbert-space-sub-hilbert-space-add-fock-state"]], "triqs::hilbert_space::sub_hilbert_space::constructor": [[392, "triqs-hilbert-space-sub-hilbert-space-constructor"]], "triqs::hilbert_space::sub_hilbert_space::get_all_fock_states": [[393, "triqs-hilbert-space-sub-hilbert-space-get-all-fock-states"]], "triqs::hilbert_space::state::set_hilbert": [[388, "triqs-hilbert-space-state-hilbertspace-scalartype-true-set-hilbert"]], "triqs::hilbert_space::state::size": [[389, "triqs-hilbert-space-state-hilbertspace-scalartype-true-size"]], "triqs::hilbert_space::sub_hilbert_space": [[390, "triqs-hilbert-space-sub-hilbert-space"]], "triqs::hilbert_space::sub_hilbert_space::h5_write": [[398, "triqs-hilbert-space-sub-hilbert-space-h5-write"]], "triqs::hilbert_space::sub_hilbert_space::get_state_index": [[396, "triqs-hilbert-space-sub-hilbert-space-get-state-index"]], "triqs::hilbert_space::sub_hilbert_space::get_fock_state": [[394, "triqs-hilbert-space-sub-hilbert-space-get-fock-state"]], "triqs::hilbert_space::sub_hilbert_space::get_index": [[395, "triqs-hilbert-space-sub-hilbert-space-get-index"]], "triqs::hilbert_space::sub_hilbert_space::has_state": [[399, "triqs-hilbert-space-sub-hilbert-space-has-state"]], "triqs::hilbert_space::sub_hilbert_space::h5_read": [[397, "triqs-hilbert-space-sub-hilbert-space-h5-read"]], "triqs::hilbert_space::sub_hilbert_space::size": [[404, "triqs-hilbert-space-sub-hilbert-space-size"]], "triqs::hilbert_space::sub_hilbert_space::operator==": [[402, "triqs-hilbert-space-sub-hilbert-space-operator"]], "triqs::hilbert_space::sub_hilbert_space::hdf5_format": [[400, "triqs-hilbert-space-sub-hilbert-space-hdf5-format"]], "triqs::hilbert_space::sub_hilbert_space::set_index": [[403, "triqs-hilbert-space-sub-hilbert-space-set-index"]], "triqs::mc_tools": [[405, "triqs-mc-tools"]], "triqs::hilbert_space::sub_hilbert_space::operator!=": [[401, "triqs-hilbert-space-sub-hilbert-space-operator"]], "triqs::mc_tools::mc_generic::accumulate": [[407, "triqs-mc-tools-mc-generic-accumulate"]], "triqs::mc_tools::mc_generic::clear_measures": [[411, "triqs-mc-tools-mc-generic-clear-measures"]], "triqs::mc_tools::mc_generic::add_measure_aux": [[409, "triqs-mc-tools-mc-generic-add-measure-aux"]], "triqs::mc_tools::mc_generic": [[406, "triqs-mc-tools-mc-generic"]], "triqs::mc_tools::mc_generic::add_move": [[410, "triqs-mc-tools-mc-generic-add-move"]], "triqs::mc_tools::mc_generic::add_measure": [[408, "triqs-mc-tools-mc-generic-add-measure"]], "triqs::mc_tools::mc_generic::collect_results": [[412, "triqs-mc-tools-mc-generic-collect-results"]], "triqs::mc_tools::mc_generic::get_accumulation_time": [[415, "triqs-mc-tools-mc-generic-get-accumulation-time"]], "triqs::mc_tools::mc_generic::get_config_id": [[417, "triqs-mc-tools-mc-generic-get-config-id"]], "triqs::mc_tools::mc_generic::constructor": [[413, "triqs-mc-tools-mc-generic-constructor"]], "triqs::mc_tools::mc_generic::get_acceptance_rates": [[414, "triqs-mc-tools-mc-generic-get-acceptance-rates"]], "triqs::mc_tools::mc_generic::get_accumulation_time_HHMMSS": [[416, "triqs-mc-tools-mc-generic-get-accumulation-time-hhmmss"]], "triqs::mc_tools::mc_generic::get_warmup_time": [[423, "triqs-mc-tools-mc-generic-get-warmup-time"]], "triqs::mc_tools::mc_generic::get_current_cycle_number": [[418, "triqs-mc-tools-mc-generic-get-current-cycle-number"]], "triqs::mc_tools::mc_generic::get_rng": [[421, "triqs-mc-tools-mc-generic-get-rng"]], "triqs::mc_tools::mc_generic::get_percent": [[420, "triqs-mc-tools-mc-generic-get-percent"]], "triqs::mc_tools::mc_generic::get_total_time": [[422, "triqs-mc-tools-mc-generic-get-total-time"]], "triqs::mc_tools::mc_generic::get_duration": [[419, "triqs-mc-tools-mc-generic-get-duration"]], "triqs::mc_tools::mc_generic::get_warmup_time_HHMMSS": [[424, "triqs-mc-tools-mc-generic-get-warmup-time-hhmmss"]], "triqs::mc_tools::mc_generic::run": [[428, "triqs-mc-tools-mc-generic-run"]], "triqs::mc_tools::mc_generic::h5_write": [[426, "triqs-mc-tools-mc-generic-h5-write"]], "triqs::mc_tools::mc_generic::set_after_cycle_duty": [[429, "triqs-mc-tools-mc-generic-set-after-cycle-duty"]], "triqs::mc_tools::mc_generic::rm_measure": [[427, "triqs-mc-tools-mc-generic-rm-measure"]], "triqs::mc_tools::mc_generic::h5_read": [[425, "triqs-mc-tools-mc-generic-h5-read"]], "triqs::mc_tools::mc_generic::warmup_and_accumulate": [[431, "triqs-mc-tools-mc-generic-warmup-and-accumulate"]], "triqs::mc_tools::move_set::add": [[434, "triqs-mc-tools-move-set-add"]], "triqs::mc_tools::mc_generic::warmup": [[430, "triqs-mc-tools-mc-generic-warmup"]], "triqs::mc_tools::move_set::attempt": [[435, "triqs-mc-tools-move-set-attempt"]], "triqs::mc_tools::move_set::accept": [[433, "triqs-mc-tools-move-set-accept"]], "triqs::mc_tools::move_set": [[432, "triqs-mc-tools-move-set"]], "triqs::mc_tools::move_set::get_statistics": [[440, "triqs-mc-tools-move-set-get-statistics"]], "triqs::mc_tools::move_set::constructor": [[438, "triqs-mc-tools-move-set-constructor"]], "triqs::mc_tools::move_set::collect_statistics": [[437, "triqs-mc-tools-move-set-collect-statistics"]], "triqs::mc_tools::move_set::clear_statistics": [[436, "triqs-mc-tools-move-set-clear-statistics"]], "triqs::mc_tools::move_set::reject": [[441, "triqs-mc-tools-move-set-reject"]], "triqs::mc_tools::move_set::get_acceptance_rates": [[439, "triqs-mc-tools-move-set-get-acceptance-rates"]], "triqs::mc_tools::random_generator::name": [[444, "triqs-mc-tools-random-generator-name"]], "triqs::mc_tools::random_generator_names": [[447, "triqs-mc-tools-random-generator-names"]], "triqs::mc_tools::random_generator::constructor": [[443, "triqs-mc-tools-random-generator-constructor"]], "triqs::mc_tools::random_generator::operator()": [[445, "triqs-mc-tools-random-generator-operator"]], "triqs::mc_tools::random_generator::preview": [[446, "triqs-mc-tools-random-generator-preview"]], "triqs::mc_tools::random_generator": [[442, "triqs-mc-tools-random-generator"]], "triqs::stat::accumulator": [[449, "triqs-stat-accumulator"]], "Logarithmic (Log) Binning": [[449, "logarithmic-log-binning"]], "Linear (Lin) Binning": [[449, "linear-lin-binning"]], "triqs::stat::accumulator::compress_linear_bins": [[450, "triqs-stat-accumulator-compress-linear-bins"]], "triqs::stat": [[448, "triqs-stat"]], "triqs::stat::accumulator::data_input_count": [[452, "triqs-stat-accumulator-data-input-count"]], "triqs::stat::accumulator::constructor": [[451, "triqs-stat-accumulator-constructor"]], "triqs::stat::accumulator::lin_bin_capacity": [[453, "triqs-stat-accumulator-lin-bin-capacity"]], "triqs::stat::accumulator::n_log_bins": [[459, "triqs-stat-accumulator-n-log-bins"]], "triqs::stat::accumulator::linear_bins": [[454, "triqs-stat-accumulator-linear-bins"]], "triqs::stat::accumulator::log_bin_errors": [[455, "triqs-stat-accumulator-log-bin-errors"]], "triqs::stat::accumulator::n_lin_bins_max": [[458, "triqs-stat-accumulator-n-lin-bins-max"]], "triqs::stat::accumulator::n_lin_bins": [[457, "triqs-stat-accumulator-n-lin-bins"]], "triqs::stat::accumulator::log_bin_errors_all_reduce": [[456, "triqs-stat-accumulator-log-bin-errors-all-reduce"]], "triqs::stat::accumulator::n_log_bins_max": [[460, "triqs-stat-accumulator-n-log-bins-max"]], "triqs::stat::histogram::clear": [[464, "triqs-stat-histogram-clear"]], "triqs::stat::accumulator::operator<<": [[461, "triqs-stat-accumulator-operator"]], "triqs::stat::histogram::constructor": [[465, "triqs-stat-histogram-constructor"]], "triqs::stat::cdf": [[462, "triqs-stat-cdf"]], "triqs::stat::histogram": [[463, "triqs-stat-histogram"]], "triqs::stat::histogram::data": [[466, "triqs-stat-histogram-data"]], "triqs::stat::histogram::h5_read": [[467, "triqs-stat-histogram-h5-read"]], "triqs::stat::histogram::mesh_point": [[471, "triqs-stat-histogram-mesh-point"]], "triqs::stat::histogram::limits": [[470, "triqs-stat-histogram-limits"]], "triqs::stat::histogram::h5_write": [[468, "triqs-stat-histogram-h5-write"]], "triqs::stat::histogram::hdf5_format": [[469, "triqs-stat-histogram-hdf5-format"]], "triqs::stat::histogram::mpi_reduce": [[473, "triqs-stat-histogram-mpi-reduce"]], "triqs::stat::histogram::n_lost_pts": [[475, "triqs-stat-histogram-n-lost-pts"]], "triqs::stat::histogram::n_data_pts": [[474, "triqs-stat-histogram-n-data-pts"]], "triqs::stat::histogram::operator+": [[476, "triqs-stat-histogram-operator"]], "triqs::stat::histogram::operator<<": [[477, "triqs-stat-histogram-operator"]], "triqs::stat::histogram::mpi_broadcast": [[472, "triqs-stat-histogram-mpi-broadcast"]], "triqs::stat::histogram::size": [[479, "triqs-stat-histogram-size"]], "triqs::stat::jackknife_mpi": [[481, "triqs-stat-jackknife-mpi"]], "triqs::stat::mean": [[482, "triqs-stat-mean"]], "triqs::stat::jackknife": [[480, "triqs-stat-jackknife"]], "triqs::stat::mean_and_err": [[483, "triqs-stat-mean-and-err"]], "triqs::stat::histogram::operator==": [[478, "triqs-stat-histogram-operator"]], "triqs::stat::mean_and_err_mpi": [[484, "triqs-stat-mean-and-err-mpi"]], "triqs::stat::tau_estimate_from_errors": [[487, "triqs-stat-tau-estimate-from-errors"]], "HDFArchive": [[498, "hdfarchive"]], "HDFArchiveGroup": [[498, "hdfarchivegroup"]], "HDFArchiveInert": [[498, "hdfarchiveinert"]], "Hdf-compliant objects": [[498, "hdf-compliant-objects"]], "How does a class become hdf-compliant?": [[498, "how-does-a-class-become-hdf-compliant"]], "Manipulations of determinants": [[512, "manipulations-of-determinants"]], "triqs::stat::mean_mpi": [[485, "triqs-stat-mean-mpi"]], "triqs::stat::pdf": [[486, "triqs-stat-pdf"]], "Two-particle self consistency (TPSC)": [[1907, "Two-particle-self-consistency-(TPSC)"], [1902, "Two-particle-self-consistency-(TPSC)"]], "Theory": [[1907, "Theory"], [1905, "Theory"], [1902, "Theory"], [1900, "Theory"]], "Behaviour of U_{sp} and U_{ch} vs.\u00a0U": [[1907, "Behaviour-of-U_{sp}-and-U_{ch}-vs.\u00a0U"], [1902, "Behaviour-of-U_{sp}-and-U_{ch}-vs.\u00a0U"]], "Note: weakness of RPA": [[1907, "Note:-weakness-of-RPA"], [1902, "Note:-weakness-of-RPA"]], "Finite temperature antiferromagnetism in two dimensional systems": [[1908, "Finite-temperature-antiferromagnetism-in-two-dimensional-systems"], [1903, "Finite-temperature-antiferromagnetism-in-two-dimensional-systems"]], "Mermin-Wagner theorem": [[1908, "Mermin-Wagner-theorem"], [1903, "Mermin-Wagner-theorem"]], "TPSC and the Mermin-Wagner theorem": [[1908, "TPSC-and-the-Mermin-Wagner-theorem"], [1903, "TPSC-and-the-Mermin-Wagner-theorem"]], "Code from previous notebooks": [[1908, "Code-from-previous-notebooks"], [1903, "Code-from-previous-notebooks"]], "\\chi_0 calculator for arbitrary \\beta": [[1908, "\\chi_0-calculator-for-arbitrary-\\beta"], [1903, "\\chi_0-calculator-for-arbitrary-\\beta"]], "RPA spin structure factor S_{RPA} as a function of temperature T": [[1908, "RPA-spin-structure-factor-S_{RPA}-as-a-function-of-temperature-T"], [1903, "RPA-spin-structure-factor-S_{RPA}-as-a-function-of-temperature-T"]], "TPSC spin structure factor S_{TPSC} as a function of temperature": [[1908, "TPSC-spin-structure-factor-S_{TPSC}-as-a-function-of-temperature"], [1903, "TPSC-spin-structure-factor-S_{TPSC}-as-a-function-of-temperature"]], "Questions": [[1908, "Questions"], [1903, "Questions"]], "Remarks": [[1908, "Remarks"], [1903, "Remarks"]], "The random phase approximation (RPA)": [[1901, "The-random-phase-approximation-(RPA)"], [1906, "The-random-phase-approximation-(RPA)"]], "RPA solver": [[1901, "RPA-solver"], [1906, "RPA-solver"]], "Fermions on the square lattice & perfect nesting": [[1904, "Fermions-on-the-square-lattice-&-perfect-nesting"], [1899, "Fermions-on-the-square-lattice-&-perfect-nesting"]], "Square lattice with nearest-neighbour hopping": [[1904, "Square-lattice-with-nearest-neighbour-hopping"], [1899, "Square-lattice-with-nearest-neighbour-hopping"]], "Non-interacting lattice Green\u2019s function": [[1904, "Non-interacting-lattice-Green\u2019s-function"], [1899, "Non-interacting-lattice-Green\u2019s-function"]], "Fermi surface nesting": [[1904, "Fermi-surface-nesting"], [1899, "Fermi-surface-nesting"]], "Susceptibility \\chi_0 of non-interacting fermions": [[1905, "Susceptibility-\\chi_0-of-non-interacting-fermions"], [1900, "Susceptibility-\\chi_0-of-non-interacting-fermions"]], "Fast calculation using Fourier transform": [[1905, "Fast-calculation-using-Fourier-transform"], [1900, "Fast-calculation-using-Fourier-transform"]], "Goals and questions": [[1905, "Goals-and-questions"], [1900, "Goals-and-questions"]], "Compute the susceptibility \\chi_0(\\mathbf{q}, i\\omega_n)": [[1905, "Compute-the-susceptibility-\\chi_0(\\mathbf{q},-i\\omega_n)"], [1900, "Compute-the-susceptibility-\\chi_0(\\mathbf{q},-i\\omega_n)"]], "Static susceptibility \\chi_0(\\mathbf{q}, \\omega=0) and perfect nesting": [[1905, "Static-susceptibility-\\chi_0(\\mathbf{q},-\\omega=0)-and-perfect-nesting"], [1900, "Static-susceptibility-\\chi_0(\\mathbf{q},-\\omega=0)-and-perfect-nesting"]], "Two-orbital Hubbard model": [[1896, "Two-orbital-Hubbard-model"], [1891, "Two-orbital-Hubbard-model"]], "Solution 1": [[1896, "Solution-1"], [1895, "Solution-1"]], "Solution 2": [[1896, "Solution-2"], [1895, "Solution-2"]], "J = 0.0": [[1896, "J-=-0.0"], [1896, "id1"]], "J = 0.1 U": [[1896, "J-=-0.1-U"], [1896, "id2"]], "J = 0.2 U": [[1896, "J-=-0.2-U"], [1896, "id3"]], "Conclusion of Exercise 2": [[1896, "Conclusion-of-Exercise-2"]], "Solution of exercise 3": [[1896, "Solution-of-exercise-3"]], "Conclusion of Exercise 3": [[1896, "Conclusion-of-Exercise-3"]], "Tutorial repository": [[1898, "tutorial-repository"]], "Valence-Bond DMFT solution of the Hubbard model": [[1897, "Valence-Bond-DMFT-solution-of-the-Hubbard-model"], [1892, "Valence-Bond-DMFT-solution-of-the-Hubbard-model"]], "Analyzing the precomputed results": [[1897, "Analyzing-the-precomputed-results"], [1892, "Analyzing-the-precomputed-results"]], "Single-orbital Hubbard model": [[1895, "Single-orbital-Hubbard-model"], [1890, "Single-orbital-Hubbard-model"]], "Solution 3": [[1895, "Solution-3"]], "Solution 4": [[1895, "Solution-4"]], "Solution 5": [[1895, "Solution-5"]], "Solution 6": [[1895, "Solution-6"]], "Tutorials": [[1893, "tutorials"]], "General reminder: Anderson impurity model and CTHYB solver": [[1889, "General-reminder:-Anderson-impurity-model-and-CTHYB-solver"]], "The TRIQS/CTHYB impurity solver": [[1889, "The-TRIQS/CTHYB-impurity-solver"]], "Setting up the impurity solver": [[1889, "Setting-up-the-impurity-solver"]], "Visualizing the imaginary time sampled G(\\tau)": [[1889, "Visualizing-the-imaginary-time-sampled-G(\\tau)"]], "Visualizing the Matsubara-frequency results": [[1889, "Visualizing-the-Matsubara-frequency-results"]], "A first DMFT calculation": [[1894, "A-first-DMFT-calculation"], [1888, "A-first-DMFT-calculation"]], "The iterated perturbation theory": [[1894, "The-iterated-perturbation-theory"], [1888, "The-iterated-perturbation-theory"]], "Dynamical mean-field theory": [[1894, "Dynamical-mean-field-theory"], [1888, "Dynamical-mean-field-theory"]], "Bethe lattice DMFT": [[1894, "Bethe-lattice-DMFT"], [1888, "Bethe-lattice-DMFT"]], "Visualizing the Mott transition": [[1894, "Visualizing-the-Mott-transition"], [1888, "Visualizing-the-Mott-transition"]], "Comparison with the literature": [[1894, "Comparison-with-the-literature"]], "Manipulating fermionic operators": [[1885, "Manipulating-fermionic-operators"]], "Fundamental operators": [[1885, "Fundamental-operators"]], "Number operator": [[1885, "Number-operator"]], "Operations with operators": [[1885, "Operations-with-operators"]], "Exact Diagonalization": [[1885, "Exact-Diagonalization"]], "TRIQS Green\u2019s functions": [[1883, "TRIQS-Green\u2019s-functions"], [1887, "TRIQS-Green\u2019s-functions"]], "Matrix-Valued Green\u2019s functions": [[1883, "Matrix-Valued-Green\u2019s-functions"], [1887, "Matrix-Valued-Green\u2019s-functions"]], "Block Green\u2019s functions": [[1883, "Block-Green\u2019s-functions"], [1887, "Block-Green\u2019s-functions"]], "Additional Initialization Descriptors": [[1883, "Additional-Initialization-Descriptors"], [1887, "Additional-Initialization-Descriptors"]], "Flat density of states": [[1883, "Flat-density-of-states"], [1887, "Flat-density-of-states"]], "Semi-circular density of states": [[1883, "Semi-circular-density-of-states"], [1887, "Semi-circular-density-of-states"]], "Imaginary-frequency Green\u2019s functions": [[1883, "Imaginary-frequency-Green\u2019s-functions"], [1887, "Imaginary-frequency-Green\u2019s-functions"]], "Arithmetic Operations": [[1883, "Arithmetic-Operations"], [1887, "Arithmetic-Operations"]], "Obtaining the density": [[1883, "Obtaining-the-density"], [1887, "Obtaining-the-density"]], "Compact meshes for imaginary time / frequency: DLR Green\u2019s function": [[1883, "Compact-meshes-for-imaginary-time-/-frequency:-DLR-Green\u2019s-function"], [1887, "Compact-meshes-for-imaginary-time-/-frequency:-DLR-Green\u2019s-function"]], "Pade analytical continuation": [[1883, "Pade-analytical-continuation"], [1887, "Pade-analytical-continuation"]], "Exercises": [[1883, "Exercises"], [1887, "Exercises"]], "HDF5 Archives": [[1884, "HDF5-Archives"]], "Writing to an archive": [[1884, "Writing-to-an-archive"]], "Reading from an archive": [[1884, "Reading-from-an-archive"]], "Introduction to multivariable Green\u2019s functions": [[1886, "Introduction-to-multivariable-Green\u2019s-functions"]], "Imports and parameters": [[1886, "Imports-and-parameters"]], "Constructing and Initializing a Lattice Green\u2019s function": [[1886, "Constructing-and-Initializing-a-Lattice-Green\u2019s-function"]], "Numpy Broadcasting": [[1886, "Numpy-Broadcasting"]], "Evaluate the Green function": [[1886, "Evaluate-the-Green-function"]], "Defining a Tight-Binding Hamiltonian": [[1886, "Defining-a-Tight-Binding-Hamiltonian"]], "Phase diagram exploration": [[1879, "Phase-diagram-exploration"], [1875, "Phase-diagram-exploration"]], "Comparison to Hubbard-I solution": [[1880, "Comparison-to-Hubbard-I-solution"], [1876, "Comparison-to-Hubbard-I-solution"]], "Advanced: Running a Full charge self-consistent DFT+DMFT calculation": [[1880, "Advanced:-Running-a-Full-charge-self-consistent-DFT+DMFT-calculation"], [1876, "Advanced:-Running-a-Full-charge-self-consistent-DFT+DMFT-calculation"]], "FermiSee": [[1878, "FermiSee"], [1874, "FermiSee"]], "Matplotlib Examples": [[1882, "Matplotlib-Examples"]], "Goal of this tutorial": [[1882, "Goal-of-this-tutorial"]], "Inline plots": [[1882, "Inline-plots"]], "Making the plot prettier": [[1882, "Making-the-plot-prettier"]], "Subplots": [[1882, "Subplots"]], "Histograms and text": [[1882, "Histograms-and-text"]], "Python-like approach to matplotlib": [[1882, "Python-like-approach-to-matplotlib"]], "More examples": [[1882, "More-examples"]], "Introducing python and the ipython notebook": [[1881, "Introducing-python-and-the-ipython-notebook"]], "Script mode": [[1881, "Script-mode"]], "Interactive shell mode": [[1881, "Interactive-shell-mode"]], "The ipython notebook": [[1881, "The-ipython-notebook"]], "A very short introduction to python": [[1881, "A-very-short-introduction-to-python"]], "Calculating": [[1881, "Calculating"]], "Simple loops / indentation": [[1881, "Simple-loops-/-indentation"]], "If statements": [[1881, "If-statements"]], "Defining a function": [[1881, "Defining-a-function"]], "Importing modules": [[1881, "Importing-modules"]], "Lists": [[1881, "Lists"]], "The numpy library": [[1881, "The-numpy-library"]], "Defining a new class": [[1881, "Defining-a-new-class"]], "Getting help": [[1881, "Getting-help"]], "TRIQS / solid_dmft tutorial": [[1877, "TRIQS-/-solid_dmft-tutorial"], [1873, "TRIQS-/-solid_dmft-tutorial"]], "0. Performing a DFT Quantum Espresso calculation and creating a Wannier Hamiltonian": [[1877, "0.-Performing-a-DFT-Quantum-Espresso-calculation-and-creating-a-Wannier-Hamiltonian"], [1873, "0.-Performing-a-DFT-Quantum-Espresso-calculation-and-creating-a-Wannier-Hamiltonian"]], "1. Creating a low-energy description of La_2CuO_4": [[1877, "1.-Creating-a-low-energy-description-of-La_2CuO_4"], [1873, "1.-Creating-a-low-energy-description-of-La_2CuO_4"]], "2. Run a one-shot DMFT calculation using solid_dmft": [[1877, "2.-Run-a-one-shot-DMFT-calculation-using-solid_dmft"], [1873, "2.-Run-a-one-shot-DMFT-calculation-using-solid_dmft"]], "3. Check convergence": [[1877, "3.-Check-convergence"], [1873, "3.-Check-convergence"]], "Reminder: The TRIQS BlockGf object": [[1877, "Reminder:-The-TRIQS-BlockGf-object"], [1873, "Reminder:-The-TRIQS-BlockGf-object"]], "Plot of the self-energy \u03a3": [[1877, "Plot-of-the-self-energy-\u03a3"], [1873, "Plot-of-the-self-energy-\u03a3"]], "4. Analytic continuation of the self-energy": [[1877, "4.-Analytic-continuation-of-the-self-energy"], [1873, "4.-Analytic-continuation-of-the-self-energy"]], "5. Plot Spectral Function": [[1877, "5.-Plot-Spectral-Function"], [1873, "5.-Plot-Spectral-Function"]], "Analytically continue the impurity Green\u2019s function": [[1877, "Analytically-continue-the-impurity-Green\u2019s-function"], [1873, "Analytically-continue-the-impurity-Green\u2019s-function"]], "6. Plot the Fermi slice at k_z = 0.0 using the solid_dmft post-processing tool": [[1877, "6.-Plot-the-Fermi-slice-at-k_z-=-0.0-using-the-solid_dmft-post-processing-tool"], [1873, "6.-Plot-the-Fermi-slice-at-k_z-=-0.0-using-the-solid_dmft-post-processing-tool"]], "This concludes the first tutorial. You may now continue with tutorial 02-FermiSee.": [[1877, "This-concludes-the-first-tutorial.-You-may-now-continue-with-tutorial-02-FermiSee."], [1873, "This-concludes-the-first-tutorial.-You-may-now-continue-with-tutorial-02-FermiSee."]], "Coefficient extraction": [[574, "coefficient-extraction"]], "Plotting protocols": [[578, "plotting-protocols"]], "mesh::imtime": [[540, "mesh-imtime"]], "The Monte Carlo loop": [[568, "the-monte-carlo-loop"]], "C++ variable names": [[568, "c-variable-names"]], "Monte Carlo loop and connection with moves and measures": [[568, "monte-carlo-loop-and-connection-with-moves-and-measures"]], "Full documentation/manual/triqs": [[566, "full-documentation-manual-triqs"], [513, "full-documentation-manual-triqs"]], "Python documentation": [[549, "python-documentation"]], "Tools for Monte Carlo": [[565, "tools-for-monte-carlo"]], "The blocks: matrix-valued Green\u2019s functions": [[543, "the-blocks-matrix-valued-green-s-functions"]], "Slicing": [[543, "slicing"]], "Bracket Accessor": [[543, "bracket-accessor"]], "Assignment: << or = operator": [[543, "assignment-or-operator"]], "Lazy expressions": [[543, "lazy-expressions"]], "Plot options": [[543, "plot-options"]], "Direct access to data points": [[543, "direct-access-to-data-points"]], "[gf>] Multiple variables": [[532, "gf-prod-x-y-multiple-variables"]], "Subscript operator": [[532, "subscript-operator"]], "Clef expressions": [[532, "clef-expressions"]], "Functional techniques": [[532, "functional-techniques"]], "C++ documentation": [[518, "c-documentation"]], "mesh::imfreq": [[539, "mesh-imfreq"]], "The det_manip class": [[513, "the-det-manip-class"]], "Parameter & construction": [[513, "parameter-construction"]], "Public types": [[513, "public-types"]], "Public member functions": [[513, "public-member-functions"]], "Under the hood \u2026": [[513, "under-the-hood"]], "[gf] Green function on Matsubara frequencies": [[527, "gf-imfreq-green-function-on-matsubara-frequencies"]], "gf and views": [[521, "gf-and-views"]], "Non-member functions": [[521, "non-member-functions"]]}, "indexentries": {"h5": [[496, "module-h5"]], "module": [[496, "module-h5"], [543, "index-0"]], "hdfarchive (class in h5)": [[498, "h5.HDFArchive"]], "hdfarchivegroup (built-in class)": [[498, "HDFArchiveGroup"]], "hdfarchiveinert (built-in class)": [[498, "HDFArchiveInert"]], "apply_on_leaves() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.apply_on_leaves"]], "built-in function": [[498, "register_class"]], "create_group() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.create_group"]], "get_raw() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.get_raw"]], "is_data() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.is_data"]], "is_group() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.is_group"]], "items() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.items"]], "keys() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.keys"]], "read_attr() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.read_attr"]], "register_class()": [[498, "register_class"]], "root_path() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.root_path"]], "update() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.update"]], "values() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.values"]], "lightweight exact diagonalization solver and tools": [[500, "index-0"]], "green's functions": [[543, "index-0"], [549, "index-0"]], "block green's function": [[543, "index-0"]], "gf_imfreq": [[543, "index-0"]], "gf_imtime": [[543, "index-0"]], "gf_legendre": [[543, "index-0"]], "gf_refreq": [[543, "index-0"]], "gf_retime": [[543, "index-0"]], "hilbert space tools": [[555, "index-0"]], "second-quantization operators": [[571, "index-0"]], "analysis": [[578, "index-0"]]}})
\ No newline at end of file
+Search.setIndex({"docnames": ["ChangeLog", "_templates/autosummary_class_template", "_templates/autosummary_module_template", "about", "applications", "contents", "contributing", "contributing/documentation", "contributing/pull_request", "documentation", "documentation/cpp_api/contents", "documentation/cpp_api/itertools", "documentation/cpp_api/itertools/chunk_range", "documentation/cpp_api/itertools/distance", "documentation/cpp_api/itertools/enum_iter", "documentation/cpp_api/itertools/enum_iter/constructor", "documentation/cpp_api/itertools/enum_iter/dereference", "documentation/cpp_api/itertools/enum_iter/increment", "documentation/cpp_api/itertools/enum_iter/operator==", "documentation/cpp_api/itertools/enumerate", "documentation/cpp_api/itertools/enumerated", "documentation/cpp_api/itertools/enumerated/begin", "documentation/cpp_api/itertools/enumerated/cbegin", "documentation/cpp_api/itertools/enumerated/cend", "documentation/cpp_api/itertools/enumerated/end", "documentation/cpp_api/itertools/enumerated/operator==", "documentation/cpp_api/itertools/foreach", "documentation/cpp_api/itertools/iterator_facade", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator*", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator->", "documentation/cpp_api/itertools/make_product", "documentation/cpp_api/itertools/make_sentinel", "documentation/cpp_api/itertools/make_vector_from_range", "documentation/cpp_api/itertools/multiplied", "documentation/cpp_api/itertools/multiplied/begin", "documentation/cpp_api/itertools/multiplied/cbegin", "documentation/cpp_api/itertools/multiplied/cend", "documentation/cpp_api/itertools/multiplied/constructor", "documentation/cpp_api/itertools/multiplied/end", "documentation/cpp_api/itertools/multiplied/operator==", "documentation/cpp_api/itertools/prod_iter", "documentation/cpp_api/itertools/prod_iter/constructor", "documentation/cpp_api/itertools/prod_iter/dereference", "documentation/cpp_api/itertools/prod_iter/increment", "documentation/cpp_api/itertools/prod_iter/operator==", "documentation/cpp_api/itertools/product", "documentation/cpp_api/itertools/product_range", "documentation/cpp_api/itertools/range", "documentation/cpp_api/itertools/range/begin", "documentation/cpp_api/itertools/range/cbegin", "documentation/cpp_api/itertools/range/cend", "documentation/cpp_api/itertools/range/constructor", "documentation/cpp_api/itertools/range/end", "documentation/cpp_api/itertools/range/first", "documentation/cpp_api/itertools/range/last", "documentation/cpp_api/itertools/range/operator+", "documentation/cpp_api/itertools/range/operator<<", "documentation/cpp_api/itertools/range/operator==", "documentation/cpp_api/itertools/range/size", "documentation/cpp_api/itertools/range/step", "documentation/cpp_api/itertools/sentinel_t", "documentation/cpp_api/itertools/slice", "documentation/cpp_api/itertools/sliced", "documentation/cpp_api/itertools/sliced/begin", "documentation/cpp_api/itertools/sliced/cbegin", "documentation/cpp_api/itertools/sliced/cend", "documentation/cpp_api/itertools/sliced/end", "documentation/cpp_api/itertools/sliced/operator==", "documentation/cpp_api/itertools/sliced/size", "documentation/cpp_api/itertools/stride", "documentation/cpp_api/itertools/stride_iter", "documentation/cpp_api/itertools/stride_iter/constructor", "documentation/cpp_api/itertools/stride_iter/dereference", "documentation/cpp_api/itertools/stride_iter/increment", "documentation/cpp_api/itertools/stride_iter/operator==", "documentation/cpp_api/itertools/strided", "documentation/cpp_api/itertools/strided/begin", "documentation/cpp_api/itertools/strided/cbegin", "documentation/cpp_api/itertools/strided/cend", "documentation/cpp_api/itertools/strided/end", "documentation/cpp_api/itertools/strided/operator==", "documentation/cpp_api/itertools/transform", "documentation/cpp_api/itertools/transform_iter", "documentation/cpp_api/itertools/transform_iter/constructor", "documentation/cpp_api/itertools/transform_iter/dereference", "documentation/cpp_api/itertools/transform_iter/increment", "documentation/cpp_api/itertools/transform_iter/operator=", "documentation/cpp_api/itertools/transform_iter/operator==", "documentation/cpp_api/itertools/transformed", "documentation/cpp_api/itertools/transformed/begin", "documentation/cpp_api/itertools/transformed/cbegin", "documentation/cpp_api/itertools/transformed/cend", "documentation/cpp_api/itertools/transformed/end", "documentation/cpp_api/itertools/zip", "documentation/cpp_api/itertools/zip_iter", "documentation/cpp_api/itertools/zip_iter/constructor", "documentation/cpp_api/itertools/zip_iter/dereference", "documentation/cpp_api/itertools/zip_iter/increment", "documentation/cpp_api/itertools/zip_iter/operator==", "documentation/cpp_api/itertools/zipped", "documentation/cpp_api/itertools/zipped/begin", "documentation/cpp_api/itertools/zipped/cbegin", "documentation/cpp_api/itertools/zipped/cend", "documentation/cpp_api/itertools/zipped/constructor", "documentation/cpp_api/itertools/zipped/end", "documentation/cpp_api/itertools/zipped/operator==", "documentation/cpp_api/mpi", "documentation/cpp_api/mpi/all_gather", "documentation/cpp_api/mpi/all_reduce", "documentation/cpp_api/mpi/all_reduce_in_place", "documentation/cpp_api/mpi/broadcast", "documentation/cpp_api/mpi/chunk", "documentation/cpp_api/mpi/chunk_length", "documentation/cpp_api/mpi/communicator", "documentation/cpp_api/mpi/communicator/abort", "documentation/cpp_api/mpi/communicator/barrier", "documentation/cpp_api/mpi/communicator/constructor", "documentation/cpp_api/mpi/communicator/get", "documentation/cpp_api/mpi/communicator/rank", "documentation/cpp_api/mpi/communicator/size", "documentation/cpp_api/mpi/communicator/split", "documentation/cpp_api/mpi/environment", "documentation/cpp_api/mpi/environment/constructor", "documentation/cpp_api/mpi/gather", "documentation/cpp_api/mpi/get_mpi_type", "documentation/cpp_api/mpi/is_initialized", "documentation/cpp_api/mpi/lazy", "documentation/cpp_api/mpi/lazy/invoke", "documentation/cpp_api/mpi/lazy/shape", "documentation/cpp_api/mpi/map_C_function", "documentation/cpp_api/mpi/map_add", "documentation/cpp_api/mpi/monitor", "documentation/cpp_api/mpi/monitor/constructor", "documentation/cpp_api/mpi/monitor/emergency_occured", "documentation/cpp_api/mpi/monitor/finalize_communications", "documentation/cpp_api/mpi/monitor/operator=", "documentation/cpp_api/mpi/monitor/request_emergency_stop", "documentation/cpp_api/mpi/monitor/root_check_nodes_and_bcast", "documentation/cpp_api/mpi/mpi_broadcast", "documentation/cpp_api/mpi/mpi_gather", "documentation/cpp_api/mpi/mpi_reduce", "documentation/cpp_api/mpi/mpi_reduce_in_place", "documentation/cpp_api/mpi/mpi_scatter", "documentation/cpp_api/mpi/mpi_type", "documentation/cpp_api/mpi/mpi_typeLTconstTGT", "documentation/cpp_api/mpi/mpi_typeLTstd::tupleLTT...GTGT", "documentation/cpp_api/mpi/mpi_type_from_tie", "documentation/cpp_api/mpi/reduce", "documentation/cpp_api/mpi/reduce_in_place", "documentation/cpp_api/mpi/scatter", "documentation/cpp_api/triqs/atom_diag", "documentation/cpp_api/triqs/atom_diag/act", "documentation/cpp_api/triqs/atom_diag/atom_diag", "documentation/cpp_api/triqs/atom_diag/atom_diag/c_connection", "documentation/cpp_api/triqs/atom_diag/atom_diag/c_matrix", "documentation/cpp_api/triqs/atom_diag/atom_diag/cdag_connection", "documentation/cpp_api/triqs/atom_diag/atom_diag/cdag_matrix", "documentation/cpp_api/triqs/atom_diag/atom_diag/constructor", "documentation/cpp_api/triqs/atom_diag/atom_diag/flatten_subspace_index", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_eigensystems", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_eigenvalue", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_energies", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_fock_states", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_fops", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_full_hilbert_space", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_full_hilbert_space_dim", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_gs_energy", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_h_atomic", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_matrix_element_of_monomial", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_op_mat", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_quantum_numbers", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_subspace_dim", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_subspace_dims", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_unitary_matrices", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_unitary_matrix", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_vacuum_state", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_vacuum_subspace_index", "documentation/cpp_api/triqs/atom_diag/atom_diag/index_range_of_subspace", "documentation/cpp_api/triqs/atom_diag/atom_diag/n_subspaces", "documentation/cpp_api/triqs/atom_diag/atomic_density_matrix", "documentation/cpp_api/triqs/atom_diag/atomic_g_iw", "documentation/cpp_api/triqs/atom_diag/atomic_g_l", "documentation/cpp_api/triqs/atom_diag/atomic_g_lehmann", "documentation/cpp_api/triqs/atom_diag/atomic_g_tau", "documentation/cpp_api/triqs/atom_diag/atomic_g_w", "documentation/cpp_api/triqs/atom_diag/partition_function", "documentation/cpp_api/triqs/atom_diag/quantum_number_eigenvalues", "documentation/cpp_api/triqs/atom_diag/quantum_number_eigenvalues_checked", "documentation/cpp_api/triqs/atom_diag/trace_rho_op", "documentation/cpp_api/triqs/det_manip", "documentation/cpp_api/triqs/det_manip/det_manip", "documentation/cpp_api/triqs/det_manip/det_manip/change_col", "documentation/cpp_api/triqs/det_manip/det_manip/change_row", "documentation/cpp_api/triqs/det_manip/det_manip/clear", "documentation/cpp_api/triqs/det_manip/det_manip/complete_operation", "documentation/cpp_api/triqs/det_manip/det_manip/constructor", "documentation/cpp_api/triqs/det_manip/det_manip/determinant", "documentation/cpp_api/triqs/det_manip/det_manip/get_function", "documentation/cpp_api/triqs/det_manip/det_manip/get_n_operations_before_check", "documentation/cpp_api/triqs/det_manip/det_manip/get_precision_error", "documentation/cpp_api/triqs/det_manip/det_manip/get_precision_warning", "documentation/cpp_api/triqs/det_manip/det_manip/get_singular_threshold", "documentation/cpp_api/triqs/det_manip/det_manip/get_x", "documentation/cpp_api/triqs/det_manip/det_manip/get_x_internal_order", "documentation/cpp_api/triqs/det_manip/det_manip/get_y", "documentation/cpp_api/triqs/det_manip/det_manip/get_y_internal_order", "documentation/cpp_api/triqs/det_manip/det_manip/h5_read", "documentation/cpp_api/triqs/det_manip/det_manip/h5_write", "documentation/cpp_api/triqs/det_manip/det_manip/insert", "documentation/cpp_api/triqs/det_manip/det_manip/insert2", "documentation/cpp_api/triqs/det_manip/det_manip/insert2_at_end", "documentation/cpp_api/triqs/det_manip/det_manip/insert_at_end", "documentation/cpp_api/triqs/det_manip/det_manip/inverse_matrix", "documentation/cpp_api/triqs/det_manip/det_manip/inverse_matrix_internal_order", "documentation/cpp_api/triqs/det_manip/det_manip/is_singular", "documentation/cpp_api/triqs/det_manip/det_manip/matrix", "documentation/cpp_api/triqs/det_manip/det_manip/reject_last_try", "documentation/cpp_api/triqs/det_manip/det_manip/remove", "documentation/cpp_api/triqs/det_manip/det_manip/remove2", "documentation/cpp_api/triqs/det_manip/det_manip/remove2_at_end", "documentation/cpp_api/triqs/det_manip/det_manip/remove_at_end", "documentation/cpp_api/triqs/det_manip/det_manip/reserve", "documentation/cpp_api/triqs/det_manip/det_manip/roll_matrix", "documentation/cpp_api/triqs/det_manip/det_manip/set_n_operations_before_check", "documentation/cpp_api/triqs/det_manip/det_manip/set_precision_error", "documentation/cpp_api/triqs/det_manip/det_manip/set_precision_warning", "documentation/cpp_api/triqs/det_manip/det_manip/set_singular_threshold", "documentation/cpp_api/triqs/det_manip/det_manip/size", "documentation/cpp_api/triqs/det_manip/det_manip/swap_col", "documentation/cpp_api/triqs/det_manip/det_manip/swap_row", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_col", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_col_row", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_row", "documentation/cpp_api/triqs/det_manip/det_manip/try_insert", "documentation/cpp_api/triqs/det_manip/det_manip/try_insert_k", "documentation/cpp_api/triqs/det_manip/det_manip/try_refill", "documentation/cpp_api/triqs/det_manip/det_manip/try_remove", "documentation/cpp_api/triqs/det_manip/det_manip/try_remove_k", "documentation/cpp_api/triqs/gfs", "documentation/cpp_api/triqs/gfs/", "documentation/cpp_api/triqs/gfs/block_gf", "documentation/cpp_api/triqs/gfs/block_gf/block_names", "documentation/cpp_api/triqs/gfs/block_gf/block_sizes", "documentation/cpp_api/triqs/gfs/block_gf/constructor", "documentation/cpp_api/triqs/gfs/block_gf/data", "documentation/cpp_api/triqs/gfs/block_gf/h5_read", "documentation/cpp_api/triqs/gfs/block_gf/h5_write", "documentation/cpp_api/triqs/gfs/block_gf/hdf5_format", "documentation/cpp_api/triqs/gfs/block_gf/operator()", "documentation/cpp_api/triqs/gfs/block_gf/operator=", "documentation/cpp_api/triqs/gfs/density", "documentation/cpp_api/triqs/gfs/fit_gf_dlr", "documentation/cpp_api/triqs/gfs/fit_hermitian_tail", "documentation/cpp_api/triqs/gfs/fit_tail", "documentation/cpp_api/triqs/gfs/flatten_2d", "documentation/cpp_api/triqs/gfs/flatten_gf_2d", "documentation/cpp_api/triqs/gfs/get_mesh", "documentation/cpp_api/triqs/gfs/gf", "documentation/cpp_api/triqs/gfs/gf/constructor", "documentation/cpp_api/triqs/gfs/gf/data", "documentation/cpp_api/triqs/gfs/gf/data_shape", "documentation/cpp_api/triqs/gfs/gf/h5_read", "documentation/cpp_api/triqs/gfs/gf/h5_write", "documentation/cpp_api/triqs/gfs/gf/hdf5_format", "documentation/cpp_api/triqs/gfs/gf/mesh", "documentation/cpp_api/triqs/gfs/gf/operator<<", "documentation/cpp_api/triqs/gfs/gf/operator=", "documentation/cpp_api/triqs/gfs/gf/target_indices", "documentation/cpp_api/triqs/gfs/gf/target_shape", "documentation/cpp_api/triqs/gfs/gf_const_view", "documentation/cpp_api/triqs/gfs/gf_const_view/constructor", "documentation/cpp_api/triqs/gfs/gf_const_view/data", "documentation/cpp_api/triqs/gfs/gf_const_view/data_shape", "documentation/cpp_api/triqs/gfs/gf_const_view/h5_read", "documentation/cpp_api/triqs/gfs/gf_const_view/h5_write", "documentation/cpp_api/triqs/gfs/gf_const_view/hdf5_format", "documentation/cpp_api/triqs/gfs/gf_const_view/mesh", "documentation/cpp_api/triqs/gfs/gf_const_view/operator<<", "documentation/cpp_api/triqs/gfs/gf_const_view/rebind", "documentation/cpp_api/triqs/gfs/gf_const_view/target_indices", "documentation/cpp_api/triqs/gfs/gf_const_view/target_shape", "documentation/cpp_api/triqs/gfs/gf_view", "documentation/cpp_api/triqs/gfs/gf_view/constructor", "documentation/cpp_api/triqs/gfs/gf_view/data", "documentation/cpp_api/triqs/gfs/gf_view/data_shape", "documentation/cpp_api/triqs/gfs/gf_view/h5_read", "documentation/cpp_api/triqs/gfs/gf_view/h5_write", "documentation/cpp_api/triqs/gfs/gf_view/hdf5_format", "documentation/cpp_api/triqs/gfs/gf_view/mesh", "documentation/cpp_api/triqs/gfs/gf_view/operator<<", "documentation/cpp_api/triqs/gfs/gf_view/operator=", "documentation/cpp_api/triqs/gfs/gf_view/rebind", "documentation/cpp_api/triqs/gfs/gf_view/target_indices", "documentation/cpp_api/triqs/gfs/gf_view/target_shape", "documentation/cpp_api/triqs/gfs/h5_read_gf_struct", "documentation/cpp_api/triqs/gfs/imag", "documentation/cpp_api/triqs/gfs/impl_tag", "documentation/cpp_api/triqs/gfs/inverse", "documentation/cpp_api/triqs/gfs/is_gf_hermitian", "documentation/cpp_api/triqs/gfs/is_gf_real", "documentation/cpp_api/triqs/gfs/is_gf_real_in_tau", "documentation/cpp_api/triqs/gfs/make_block2_gf", "documentation/cpp_api/triqs/gfs/make_block_gf", "documentation/cpp_api/triqs/gfs/make_block_gf_view", "documentation/cpp_api/triqs/gfs/make_gf_dlr", "documentation/cpp_api/triqs/gfs/make_gf_dlr_imfreq", "documentation/cpp_api/triqs/gfs/make_gf_dlr_imtime", "documentation/cpp_api/triqs/gfs/make_gf_from_fourier", "documentation/cpp_api/triqs/gfs/make_gf_from_inverse_fourier", "documentation/cpp_api/triqs/gfs/make_gf_from_real_gf", "documentation/cpp_api/triqs/gfs/make_gf_imfreq", "documentation/cpp_api/triqs/gfs/make_gf_imtime", "documentation/cpp_api/triqs/gfs/make_hermitian", "documentation/cpp_api/triqs/gfs/make_real_in_tau", "documentation/cpp_api/triqs/gfs/make_zero_tail", "documentation/cpp_api/triqs/gfs/mpi_reduce", "documentation/cpp_api/triqs/gfs/positive_freq_view", "documentation/cpp_api/triqs/gfs/real", "documentation/cpp_api/triqs/gfs/reinterpret_scalar_valued_gf_as_matrix_valued", "documentation/cpp_api/triqs/gfs/tau_L2_norm", "documentation/cpp_api/triqs/gfs/unflatten_2d", "documentation/cpp_api/triqs/gfs/unflatten_gf_2d", "documentation/cpp_api/triqs/hilbert_space", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/begin", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/cbegin", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/cend", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/constructor", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/data", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/end", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/h5_read_attribute", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/h5_write_attribute", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/has_indices", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/insert", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/insert_from_indices_t", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/operator==", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/operator[]", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/size", "documentation/cpp_api/triqs/hilbert_space/hilbert_space", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/constructor", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/get_fock_state", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/get_state_index", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/h5_read", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/h5_write", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/has_state", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/hdf5_format", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/operator!=", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/operator==", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/size", "documentation/cpp_api/triqs/hilbert_space/imperative_operator", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/constructor", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/is_empty", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/operator()", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/update", "documentation/cpp_api/triqs/hilbert_space/make_zero_state", "documentation/cpp_api/triqs/hilbert_space/space_partition", "documentation/cpp_api/triqs/hilbert_space/space_partition/constructor", "documentation/cpp_api/triqs/hilbert_space/space_partition/find_mappings", "documentation/cpp_api/triqs/hilbert_space/space_partition/foreach", "documentation/cpp_api/triqs/hilbert_space/space_partition/get_matrix_elements", "documentation/cpp_api/triqs/hilbert_space/space_partition/lookup_basis_state", "documentation/cpp_api/triqs/hilbert_space/space_partition/merge_subspaces", "documentation/cpp_api/triqs/hilbert_space/space_partition/n_subspaces", "documentation/cpp_api/triqs/hilbert_space/state", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/amplitudes", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/constructor", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/dot_product", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/foreach", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/get_hilbert", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator()", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator*=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator+=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator-=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/set_hilbert", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/size", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/constructor", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/dot_product", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/foreach", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/get_hilbert", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/nterms", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator()", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator*=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator+=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator-=", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/set_hilbert", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/size", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/add_fock_state", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/constructor", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_all_fock_states", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_fock_state", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_index", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_state_index", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/h5_read", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/h5_write", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/has_state", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/hdf5_format", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/operator!=", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/operator==", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/set_index", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/size", "documentation/cpp_api/triqs/mc_tools", "documentation/cpp_api/triqs/mc_tools/mc_generic", "documentation/cpp_api/triqs/mc_tools/mc_generic/accumulate", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_measure", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_measure_aux", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_move", "documentation/cpp_api/triqs/mc_tools/mc_generic/clear_measures", "documentation/cpp_api/triqs/mc_tools/mc_generic/collect_results", "documentation/cpp_api/triqs/mc_tools/mc_generic/constructor", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_acceptance_rates", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_accumulation_time", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_accumulation_time_HHMMSS", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_config_id", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_current_cycle_number", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_duration", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_percent", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_rng", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_total_time", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_warmup_time", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_warmup_time_HHMMSS", "documentation/cpp_api/triqs/mc_tools/mc_generic/h5_read", "documentation/cpp_api/triqs/mc_tools/mc_generic/h5_write", "documentation/cpp_api/triqs/mc_tools/mc_generic/rm_measure", "documentation/cpp_api/triqs/mc_tools/mc_generic/run", "documentation/cpp_api/triqs/mc_tools/mc_generic/set_after_cycle_duty", "documentation/cpp_api/triqs/mc_tools/mc_generic/warmup", "documentation/cpp_api/triqs/mc_tools/mc_generic/warmup_and_accumulate", "documentation/cpp_api/triqs/mc_tools/move_set", "documentation/cpp_api/triqs/mc_tools/move_set/accept", "documentation/cpp_api/triqs/mc_tools/move_set/add", "documentation/cpp_api/triqs/mc_tools/move_set/attempt", "documentation/cpp_api/triqs/mc_tools/move_set/clear_statistics", "documentation/cpp_api/triqs/mc_tools/move_set/collect_statistics", "documentation/cpp_api/triqs/mc_tools/move_set/constructor", "documentation/cpp_api/triqs/mc_tools/move_set/get_acceptance_rates", "documentation/cpp_api/triqs/mc_tools/move_set/get_statistics", "documentation/cpp_api/triqs/mc_tools/move_set/reject", "documentation/cpp_api/triqs/mc_tools/random_generator", "documentation/cpp_api/triqs/mc_tools/random_generator/constructor", "documentation/cpp_api/triqs/mc_tools/random_generator/name", "documentation/cpp_api/triqs/mc_tools/random_generator/operator()", "documentation/cpp_api/triqs/mc_tools/random_generator/preview", "documentation/cpp_api/triqs/mc_tools/random_generator_names", "documentation/cpp_api/triqs/stat", "documentation/cpp_api/triqs/stat/accumulator", "documentation/cpp_api/triqs/stat/accumulator/compress_linear_bins", "documentation/cpp_api/triqs/stat/accumulator/constructor", "documentation/cpp_api/triqs/stat/accumulator/data_input_count", "documentation/cpp_api/triqs/stat/accumulator/lin_bin_capacity", "documentation/cpp_api/triqs/stat/accumulator/linear_bins", "documentation/cpp_api/triqs/stat/accumulator/log_bin_errors", "documentation/cpp_api/triqs/stat/accumulator/log_bin_errors_all_reduce", "documentation/cpp_api/triqs/stat/accumulator/n_lin_bins", "documentation/cpp_api/triqs/stat/accumulator/n_lin_bins_max", "documentation/cpp_api/triqs/stat/accumulator/n_log_bins", "documentation/cpp_api/triqs/stat/accumulator/n_log_bins_max", "documentation/cpp_api/triqs/stat/accumulator/operator<<", "documentation/cpp_api/triqs/stat/cdf", "documentation/cpp_api/triqs/stat/histogram", "documentation/cpp_api/triqs/stat/histogram/clear", "documentation/cpp_api/triqs/stat/histogram/constructor", "documentation/cpp_api/triqs/stat/histogram/data", "documentation/cpp_api/triqs/stat/histogram/h5_read", "documentation/cpp_api/triqs/stat/histogram/h5_write", "documentation/cpp_api/triqs/stat/histogram/hdf5_format", "documentation/cpp_api/triqs/stat/histogram/limits", "documentation/cpp_api/triqs/stat/histogram/mesh_point", "documentation/cpp_api/triqs/stat/histogram/mpi_broadcast", "documentation/cpp_api/triqs/stat/histogram/mpi_reduce", "documentation/cpp_api/triqs/stat/histogram/n_data_pts", "documentation/cpp_api/triqs/stat/histogram/n_lost_pts", "documentation/cpp_api/triqs/stat/histogram/operator+", "documentation/cpp_api/triqs/stat/histogram/operator<<", "documentation/cpp_api/triqs/stat/histogram/operator==", "documentation/cpp_api/triqs/stat/histogram/size", "documentation/cpp_api/triqs/stat/jackknife", "documentation/cpp_api/triqs/stat/jackknife_mpi", "documentation/cpp_api/triqs/stat/mean", "documentation/cpp_api/triqs/stat/mean_and_err", "documentation/cpp_api/triqs/stat/mean_and_err_mpi", "documentation/cpp_api/triqs/stat/mean_mpi", "documentation/cpp_api/triqs/stat/pdf", "documentation/cpp_api/triqs/stat/tau_estimate_from_errors", "documentation/manual/contents", "documentation/manual/cpp2py/cfunction", "documentation/manual/cpp2py/class", "documentation/manual/cpp2py/contents", "documentation/manual/cpp2py/convert", "documentation/manual/cpp2py/module", "documentation/manual/cpp2py/principle", "documentation/manual/cpp2py/reference", "documentation/manual/hdf5/contents", "documentation/manual/hdf5/protocol", "documentation/manual/hdf5/ref", "documentation/manual/mpi/contents", "documentation/manual/triqs/atom_diag/contents", "documentation/manual/triqs/atom_diag/functions", "documentation/manual/triqs/clef/assign", "documentation/manual/triqs/clef/contents", "documentation/manual/triqs/clef/examples/contents", "documentation/manual/triqs/clef/examples/lazy_sum", "documentation/manual/triqs/clef/expressions_eval", "documentation/manual/triqs/clef/expressions_form", "documentation/manual/triqs/clef/function", "documentation/manual/triqs/clef/introduction", "documentation/manual/triqs/clef/overload", "documentation/manual/triqs/conventions", "documentation/manual/triqs/det_manip/contents", "documentation/manual/triqs/det_manip/det_manip", "documentation/manual/triqs/det_manip/implementation_notes", "documentation/manual/triqs/gfs/basic_notions/contents", "documentation/manual/triqs/gfs/c++/clef", "documentation/manual/triqs/gfs/c++/concepts", "documentation/manual/triqs/gfs/c++/contents", "documentation/manual/triqs/gfs/c++/fourier", "documentation/manual/triqs/gfs/c++/fourier_impl_notes", "documentation/manual/triqs/gfs/c++/gf_and_view", "documentation/manual/triqs/gfs/c++/gf_assign", "documentation/manual/triqs/gfs/c++/gf_block", "documentation/manual/triqs/gfs/c++/gf_call", "documentation/manual/triqs/gfs/c++/gf_constructors", "documentation/manual/triqs/gfs/c++/gf_data", "documentation/manual/triqs/gfs/c++/gf_imfreq", "documentation/manual/triqs/gfs/c++/gf_imtime", "documentation/manual/triqs/gfs/c++/gf_legendre", "documentation/manual/triqs/gfs/c++/gf_misc", "documentation/manual/triqs/gfs/c++/gf_part_eval_curry", "documentation/manual/triqs/gfs/c++/gf_product", "documentation/manual/triqs/gfs/c++/gf_refreq", "documentation/manual/triqs/gfs/c++/gf_reinterpret", "documentation/manual/triqs/gfs/c++/gf_retime", "documentation/manual/triqs/gfs/c++/gf_special", "documentation/manual/triqs/gfs/c++/gf_subscript", "documentation/manual/triqs/gfs/c++/implementation_notes", "documentation/manual/triqs/gfs/c++/matsubara_freq_mesh", "documentation/manual/triqs/gfs/c++/matsubara_imtime", "documentation/manual/triqs/gfs/c++/tail", "documentation/manual/triqs/gfs/contents", "documentation/manual/triqs/gfs/py/block", "documentation/manual/triqs/gfs/py/block/GfImFreq", "documentation/manual/triqs/gfs/py/block/GfImTime", "documentation/manual/triqs/gfs/py/block/GfLegendre", "documentation/manual/triqs/gfs/py/block/GfReFreq", "documentation/manual/triqs/gfs/py/block/GfReTime", "documentation/manual/triqs/gfs/py/contents", "documentation/manual/triqs/gfs/py/descriptors", "documentation/manual/triqs/gfs/py/full", "documentation/manual/triqs/gfs/py/tail", "documentation/manual/triqs/gfs/py/tools", "documentation/manual/triqs/gfs/py/transforms", "documentation/manual/triqs/hilbert_space/contents", "documentation/manual/triqs/hilbert_space/statevector_concept", "documentation/manual/triqs/lattice_tools/bravais", "documentation/manual/triqs/lattice_tools/contents", "documentation/manual/triqs/lattice_tools/dos", "documentation/manual/triqs/lattice_tools/hilbert", "documentation/manual/triqs/lattice_tools/sumk", "documentation/manual/triqs/lattice_tools/tightbinding", "documentation/manual/triqs/lattice_tools/tightbinding_and_example", "documentation/manual/triqs/mc_tools/concepts", "documentation/manual/triqs/mc_tools/contents", "documentation/manual/triqs/mc_tools/full_ref", "documentation/manual/triqs/mc_tools/ising", "documentation/manual/triqs/mc_tools/loop", "documentation/manual/triqs/mc_tools/random", "documentation/manual/triqs/mc_tools/tutorial", "documentation/manual/triqs/operators/contents", "documentation/manual/triqs/operators/operators", "documentation/manual/triqs/operators/util/U_matrix", "documentation/manual/triqs/operators/util/extractors", "documentation/manual/triqs/operators/util/hamiltonians", "documentation/manual/triqs/operators/util/observables", "documentation/manual/triqs/operators/util/op_struct", "documentation/manual/triqs/plotting_protocols/contents", "documentation/manual/triqs/plotting_protocols/fit/fit", "documentation/manual/triqs/plotting_protocols/plotting/plotting", "documentation/manual/triqs/provenance/contents", "documentation/manual/triqs/random_generator/contents", "documentation/manual/triqs/stat/contents", "documentation/manual/triqs/utilities/contents", "documentation/manual/triqs/utilities/exceptions", "documentation/manual/triqs/utilities/python_include_mess", "documentation/manual/triqs/utilities/tupletools", "documentation/python_api/triqs.atom_diag", "documentation/python_api/triqs.atom_diag.AtomDiag", "documentation/python_api/triqs.atom_diag.atom_diag", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.__init__", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.c_connection", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.c_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_connection", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.energies", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.flatten_subspace_index", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.fock_states", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.fops", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.full_hilbert_space_dim", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_eigenvalue", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dim", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dims", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.gs_energy", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.h_atomic", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.n_subspaces", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.quantum_numbers", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.unitary_matrices", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_state", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_subspace_index", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.__init__", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.c_connection", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.c_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.cdag_connection", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.cdag_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.energies", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.flatten_subspace_index", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.fock_states", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.fops", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.full_hilbert_space_dim", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_eigenvalue", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dim", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dims", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.gs_energy", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.h_atomic", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.n_subspaces", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.quantum_numbers", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.unitary_matrices", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_state", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_subspace_index", "documentation/python_api/triqs.atom_diag.atom_diag.act", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_density_matrix", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_iw", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_l", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_tau", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_w", "documentation/python_api/triqs.atom_diag.atom_diag.partition_function", "documentation/python_api/triqs.atom_diag.atom_diag.quantum_number_eigenvalues", "documentation/python_api/triqs.atom_diag.atom_diag.quantum_number_eigenvalues_checked", "documentation/python_api/triqs.atom_diag.atom_diag.trace_rho_op", "documentation/python_api/triqs.dos", "documentation/python_api/triqs.dos.dos", "documentation/python_api/triqs.dos.dos.DOS", "documentation/python_api/triqs.dos.dos.DOS.__init__", "documentation/python_api/triqs.dos.dos.DOS.copy", "documentation/python_api/triqs.dos.dos.DOS.density", "documentation/python_api/triqs.dos.dos.DOSFromFunction", "documentation/python_api/triqs.dos.dos.DOSFromFunction.__init__", "documentation/python_api/triqs.dos.dos.DOSFromFunction.copy", "documentation/python_api/triqs.dos.dos.DOSFromFunction.density", "documentation/python_api/triqs.dos.dos.dos_from_file", "documentation/python_api/triqs.dos.hilbert_transform", "documentation/python_api/triqs.dos.hilbert_transform.HilbertTransform", "documentation/python_api/triqs.dos.hilbert_transform.HilbertTransform.__init__", "documentation/python_api/triqs.fit", "documentation/python_api/triqs.fit.fit", "documentation/python_api/triqs.fit.fit.Fit", "documentation/python_api/triqs.fit.fit.Fit.__init__", "documentation/python_api/triqs.gf", "documentation/python_api/triqs.gf.backwd_compat", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.data", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.density", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.real", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.zero", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.data", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.density", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.real", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.zero", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.data", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.density", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.real", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.zero", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.data", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.density", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.real", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.zero", "documentation/python_api/triqs.gf.backwd_compat.gf_retime", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.__init__", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.conjugate", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.copy", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.copy_from", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.data", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.density", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.enforce_discontinuity", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail_on_window", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.from_L_G_R", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.imag", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.indices", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.inverse", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.invert", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_hermitian", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_real_in_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.mesh", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rank", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.real", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rebinning_tau", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_fourier", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imfreq", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imtime", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_legendre", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_pade", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_indices", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_rank", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_shape", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.tau_L2_norm", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.total_density", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.transpose", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.x_data_view", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.zero", "documentation/python_api/triqs.gf.block2_gf", "documentation/python_api/triqs.gf.block2_gf.Block2Gf", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.__init__", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.all_indices", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy_from", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy_selected_blocks", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.imag", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices1", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices2", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.n_blocks", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.real", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.view_selected_blocks", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.zero", "documentation/python_api/triqs.gf.block_gf", "documentation/python_api/triqs.gf.block_gf.BlockGf", "documentation/python_api/triqs.gf.block_gf.BlockGf.__init__", "documentation/python_api/triqs.gf.block_gf.BlockGf.all_indices", "documentation/python_api/triqs.gf.block_gf.BlockGf.beta", "documentation/python_api/triqs.gf.block_gf.BlockGf.conjugate", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy_from", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy_selected_blocks", "documentation/python_api/triqs.gf.block_gf.BlockGf.density", "documentation/python_api/triqs.gf.block_gf.BlockGf.imag", "documentation/python_api/triqs.gf.block_gf.BlockGf.indices", "documentation/python_api/triqs.gf.block_gf.BlockGf.inverse", "documentation/python_api/triqs.gf.block_gf.BlockGf.invert", "documentation/python_api/triqs.gf.block_gf.BlockGf.load", "documentation/python_api/triqs.gf.block_gf.BlockGf.mesh", "documentation/python_api/triqs.gf.block_gf.BlockGf.n_blocks", "documentation/python_api/triqs.gf.block_gf.BlockGf.real", "documentation/python_api/triqs.gf.block_gf.BlockGf.save", "documentation/python_api/triqs.gf.block_gf.BlockGf.total_density", "documentation/python_api/triqs.gf.block_gf.BlockGf.transpose", "documentation/python_api/triqs.gf.block_gf.BlockGf.view_selected_blocks", "documentation/python_api/triqs.gf.block_gf.BlockGf.zero", "documentation/python_api/triqs.gf.block_gf.call_factory_from_dict", "documentation/python_api/triqs.gf.block_gf.fix_gf_struct_type", "documentation/python_api/triqs.gf.descriptor_base", "documentation/python_api/triqs.gf.descriptor_base.Base", "documentation/python_api/triqs.gf.descriptor_base.Base.__init__", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.__init__", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.is_block_descriptor", "documentation/python_api/triqs.gf.descriptor_base.Const", "documentation/python_api/triqs.gf.descriptor_base.Const.__init__", "documentation/python_api/triqs.gf.descriptor_base.Function", "documentation/python_api/triqs.gf.descriptor_base.Function.__init__", "documentation/python_api/triqs.gf.descriptor_base.LazyCTX", "documentation/python_api/triqs.gf.descriptor_base.LazyCTX.__init__", "documentation/python_api/triqs.gf.descriptor_base.Omega_", "documentation/python_api/triqs.gf.descriptor_base.Omega_.__init__", "documentation/python_api/triqs.gf.descriptor_base.convert_scalar_to_const", "documentation/python_api/triqs.gf.descriptor_base.is_lazy", "documentation/python_api/triqs.gf.descriptor_base.is_scalar", "documentation/python_api/triqs.gf.descriptors", "documentation/python_api/triqs.gf.descriptors.Flat", "documentation/python_api/triqs.gf.descriptors.Flat.__init__", "documentation/python_api/triqs.gf.descriptors.Fourier", "documentation/python_api/triqs.gf.descriptors.Fourier.__init__", "documentation/python_api/triqs.gf.descriptors.Fourier.is_block_descriptor", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.__init__", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.is_block_descriptor", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.__init__", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.is_block_descriptor", "documentation/python_api/triqs.gf.descriptors.OneFermionInTime", "documentation/python_api/triqs.gf.descriptors.OneFermionInTime.__init__", "documentation/python_api/triqs.gf.descriptors.SemiCircular", "documentation/python_api/triqs.gf.descriptors.SemiCircular.__init__", "documentation/python_api/triqs.gf.descriptors.Wilson", "documentation/python_api/triqs.gf.descriptors.Wilson.__init__", "documentation/python_api/triqs.gf.descriptors.semi", "documentation/python_api/triqs.gf.dlr_crm_dyson_solver", "documentation/python_api/triqs.gf.dlr_crm_dyson_solver.minimize_dyson", "documentation/python_api/triqs.gf.gf", "documentation/python_api/triqs.gf.gf.AddMethod", "documentation/python_api/triqs.gf.gf.AddMethod.__init__", "documentation/python_api/triqs.gf.gf.AddMethod.mro", "documentation/python_api/triqs.gf.gf.CallProxyNone", "documentation/python_api/triqs.gf.gf.CallProxyNone.__init__", "documentation/python_api/triqs.gf.gf.Gf", "documentation/python_api/triqs.gf.gf.Gf.__init__", "documentation/python_api/triqs.gf.gf.Gf.conjugate", "documentation/python_api/triqs.gf.gf.Gf.copy", "documentation/python_api/triqs.gf.gf.Gf.copy_from", "documentation/python_api/triqs.gf.gf.Gf.data", "documentation/python_api/triqs.gf.gf.Gf.density", "documentation/python_api/triqs.gf.gf.Gf.enforce_discontinuity", "documentation/python_api/triqs.gf.gf.Gf.fit_hermitian_tail", "documentation/python_api/triqs.gf.gf.Gf.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.gf.Gf.fit_tail", "documentation/python_api/triqs.gf.gf.Gf.fit_tail_on_window", "documentation/python_api/triqs.gf.gf.Gf.from_L_G_R", "documentation/python_api/triqs.gf.gf.Gf.imag", "documentation/python_api/triqs.gf.gf.Gf.indices", "documentation/python_api/triqs.gf.gf.Gf.inverse", "documentation/python_api/triqs.gf.gf.Gf.invert", "documentation/python_api/triqs.gf.gf.Gf.is_gf_hermitian", "documentation/python_api/triqs.gf.gf.Gf.is_gf_real_in_tau", "documentation/python_api/triqs.gf.gf.Gf.mesh", "documentation/python_api/triqs.gf.gf.Gf.rank", "documentation/python_api/triqs.gf.gf.Gf.real", "documentation/python_api/triqs.gf.gf.Gf.rebinning_tau", "documentation/python_api/triqs.gf.gf.Gf.replace_by_tail", "documentation/python_api/triqs.gf.gf.Gf.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.gf.Gf.set_from_fourier", "documentation/python_api/triqs.gf.gf.Gf.set_from_imfreq", "documentation/python_api/triqs.gf.gf.Gf.set_from_imtime", "documentation/python_api/triqs.gf.gf.Gf.set_from_legendre", "documentation/python_api/triqs.gf.gf.Gf.set_from_pade", "documentation/python_api/triqs.gf.gf.Gf.target_indices", "documentation/python_api/triqs.gf.gf.Gf.target_rank", "documentation/python_api/triqs.gf.gf.Gf.target_shape", "documentation/python_api/triqs.gf.gf.Gf.tau_L2_norm", "documentation/python_api/triqs.gf.gf.Gf.total_density", "documentation/python_api/triqs.gf.gf.Gf.transpose", "documentation/python_api/triqs.gf.gf.Gf.x_data_view", "documentation/python_api/triqs.gf.gf.Gf.zero", "documentation/python_api/triqs.gf.gf.Idx", "documentation/python_api/triqs.gf.gf.Idx.__init__", "documentation/python_api/triqs.gf.gf.add_method_helper", "documentation/python_api/triqs.gf.gf.bckwd", "documentation/python_api/triqs.gf.gf.call_factory_from_dict", "documentation/python_api/triqs.gf.gf_factories", "documentation/python_api/triqs.gf.gf_factories.fit_gf_dlr", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr_imfreq", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr_imtime", "documentation/python_api/triqs.gf.gf_factories.make_gf_from_fourier", "documentation/python_api/triqs.gf.gf_factories.make_gf_imfreq", "documentation/python_api/triqs.gf.gf_factories.make_gf_imtime", "documentation/python_api/triqs.gf.gf_factories.make_hermitian", "documentation/python_api/triqs.gf.gf_factories.make_real_in_tau", "documentation/python_api/triqs.gf.gf_fnt", "documentation/python_api/triqs.gf.gf_fnt.density", "documentation/python_api/triqs.gf.gf_fnt.enforce_discontinuity", "documentation/python_api/triqs.gf.gf_fnt.fit_hermitian_tail", "documentation/python_api/triqs.gf.gf_fnt.fit_hermitian_tail_on_window", "documentation/python_api/triqs.gf.gf_fnt.fit_tail", "documentation/python_api/triqs.gf.gf_fnt.fit_tail_on_window", "documentation/python_api/triqs.gf.gf_fnt.is_gf_hermitian", "documentation/python_api/triqs.gf.gf_fnt.is_gf_real_in_tau", "documentation/python_api/triqs.gf.gf_fnt.rebinning_tau", "documentation/python_api/triqs.gf.gf_fnt.replace_by_tail", "documentation/python_api/triqs.gf.gf_fnt.replace_by_tail_in_fit_window", "documentation/python_api/triqs.gf.gf_fnt.set_from_fourier", "documentation/python_api/triqs.gf.gf_fnt.set_from_imfreq", "documentation/python_api/triqs.gf.gf_fnt.set_from_imtime", "documentation/python_api/triqs.gf.gf_fnt.set_from_legendre", "documentation/python_api/triqs.gf.gf_fnt.set_from_pade", "documentation/python_api/triqs.gf.gf_fnt.tau_L2_norm", "documentation/python_api/triqs.gf.lazy_expressions", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.__init__", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.copy", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.get_terminal", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.is_terminal", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.set_from", "documentation/python_api/triqs.gf.lazy_expressions.LazyExprTerminal", "documentation/python_api/triqs.gf.lazy_expressions.LazyExprTerminal.__init__", "documentation/python_api/triqs.gf.lazy_expressions.all_terminals", "documentation/python_api/triqs.gf.lazy_expressions.eval_expr", "documentation/python_api/triqs.gf.lazy_expressions.eval_expr_with_context", "documentation/python_api/triqs.gf.lazy_expressions.lazy_function", "documentation/python_api/triqs.gf.lazy_expressions.make_lazy", "documentation/python_api/triqs.gf.lazy_expressions.transform", "documentation/python_api/triqs.gf.map_block", "documentation/python_api/triqs.gf.matsubara_freq", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.__init__", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.imag", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.index", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.real", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.value", "documentation/python_api/triqs.gf.mesh_point", "documentation/python_api/triqs.gf.mesh_point.MeshPoint", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.__init__", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.imag", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.real", "documentation/python_api/triqs.gf.mesh_point.MeshValueGenerator", "documentation/python_api/triqs.gf.mesh_point.MeshValueGenerator.__init__", "documentation/python_api/triqs.gf.mesh_product", "documentation/python_api/triqs.gf.mesh_product.MeshProduct", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.__init__", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.components", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.copy", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.copy_from", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.rank", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.size_of_components", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.to_data_index", "documentation/python_api/triqs.gf.mesh_product.call_factory_from_dict", "documentation/python_api/triqs.gf.meshes", "documentation/python_api/triqs.gf.meshes.MeshBrZone", "documentation/python_api/triqs.gf.meshes.MeshBrZone.__init__", "documentation/python_api/triqs.gf.meshes.MeshBrZone.bz", "documentation/python_api/triqs.gf.meshes.MeshBrZone.closest_index", "documentation/python_api/triqs.gf.meshes.MeshBrZone.copy", "documentation/python_api/triqs.gf.meshes.MeshBrZone.copy_from", "documentation/python_api/triqs.gf.meshes.MeshBrZone.dims", "documentation/python_api/triqs.gf.meshes.MeshBrZone.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_index", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_value", "documentation/python_api/triqs.gf.meshes.MeshBrZone.units", "documentation/python_api/triqs.gf.meshes.MeshBrZone.values", "documentation/python_api/triqs.gf.meshes.MeshCycLat", "documentation/python_api/triqs.gf.meshes.MeshCycLat.__init__", "documentation/python_api/triqs.gf.meshes.MeshCycLat.copy", "documentation/python_api/triqs.gf.meshes.MeshCycLat.copy_from", "documentation/python_api/triqs.gf.meshes.MeshCycLat.dims", "documentation/python_api/triqs.gf.meshes.MeshCycLat.lattice", "documentation/python_api/triqs.gf.meshes.MeshCycLat.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_index", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_value", "documentation/python_api/triqs.gf.meshes.MeshCycLat.units", "documentation/python_api/triqs.gf.meshes.MeshCycLat.values", "documentation/python_api/triqs.gf.meshes.MeshDLR", "documentation/python_api/triqs.gf.meshes.MeshDLR.__init__", "documentation/python_api/triqs.gf.meshes.MeshDLR.beta", "documentation/python_api/triqs.gf.meshes.MeshDLR.copy", "documentation/python_api/triqs.gf.meshes.MeshDLR.copy_from", "documentation/python_api/triqs.gf.meshes.MeshDLR.eps", "documentation/python_api/triqs.gf.meshes.MeshDLR.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshDLR.statistic", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_index", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_value", "documentation/python_api/triqs.gf.meshes.MeshDLR.values", "documentation/python_api/triqs.gf.meshes.MeshDLR.w_max", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.__init__", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.beta", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.copy", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.copy_from", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.eps", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.statistic", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_index", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_value", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.values", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.w_max", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.__init__", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.beta", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.copy", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.copy_from", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.eps", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.statistic", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_index", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_value", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.values", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.w_max", "documentation/python_api/triqs.gf.meshes.MeshImFreq", "documentation/python_api/triqs.gf.meshes.MeshImFreq.__init__", "documentation/python_api/triqs.gf.meshes.MeshImFreq.beta", "documentation/python_api/triqs.gf.meshes.MeshImFreq.copy", "documentation/python_api/triqs.gf.meshes.MeshImFreq.copy_from", "documentation/python_api/triqs.gf.meshes.MeshImFreq.first_index", "documentation/python_api/triqs.gf.meshes.MeshImFreq.last_index", "documentation/python_api/triqs.gf.meshes.MeshImFreq.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshImFreq.n_iw", "documentation/python_api/triqs.gf.meshes.MeshImFreq.positive_only", "documentation/python_api/triqs.gf.meshes.MeshImFreq.set_tail_fit_parameters", "documentation/python_api/triqs.gf.meshes.MeshImFreq.statistic", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_index", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_value", "documentation/python_api/triqs.gf.meshes.MeshImFreq.values", "documentation/python_api/triqs.gf.meshes.MeshImTime", "documentation/python_api/triqs.gf.meshes.MeshImTime.__init__", "documentation/python_api/triqs.gf.meshes.MeshImTime.beta", "documentation/python_api/triqs.gf.meshes.MeshImTime.copy", "documentation/python_api/triqs.gf.meshes.MeshImTime.copy_from", "documentation/python_api/triqs.gf.meshes.MeshImTime.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshImTime.statistic", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_index", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_value", "documentation/python_api/triqs.gf.meshes.MeshImTime.values", "documentation/python_api/triqs.gf.meshes.MeshLegendre", "documentation/python_api/triqs.gf.meshes.MeshLegendre.__init__", "documentation/python_api/triqs.gf.meshes.MeshLegendre.beta", "documentation/python_api/triqs.gf.meshes.MeshLegendre.copy", "documentation/python_api/triqs.gf.meshes.MeshLegendre.copy_from", "documentation/python_api/triqs.gf.meshes.MeshLegendre.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshLegendre.statistic", "documentation/python_api/triqs.gf.meshes.MeshLegendre.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshLegendre.to_index", "documentation/python_api/triqs.gf.meshes.MeshReFreq", "documentation/python_api/triqs.gf.meshes.MeshReFreq.__init__", "documentation/python_api/triqs.gf.meshes.MeshReFreq.copy", "documentation/python_api/triqs.gf.meshes.MeshReFreq.copy_from", "documentation/python_api/triqs.gf.meshes.MeshReFreq.delta", "documentation/python_api/triqs.gf.meshes.MeshReFreq.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_index", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_value", "documentation/python_api/triqs.gf.meshes.MeshReFreq.values", "documentation/python_api/triqs.gf.meshes.MeshReFreq.w_max", "documentation/python_api/triqs.gf.meshes.MeshReFreq.w_min", "documentation/python_api/triqs.gf.meshes.MeshReTime", "documentation/python_api/triqs.gf.meshes.MeshReTime.__init__", "documentation/python_api/triqs.gf.meshes.MeshReTime.copy", "documentation/python_api/triqs.gf.meshes.MeshReTime.copy_from", "documentation/python_api/triqs.gf.meshes.MeshReTime.delta", "documentation/python_api/triqs.gf.meshes.MeshReTime.mesh_hash", "documentation/python_api/triqs.gf.meshes.MeshReTime.t_max", "documentation/python_api/triqs.gf.meshes.MeshReTime.t_min", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_data_index", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_index", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_value", "documentation/python_api/triqs.gf.meshes.MeshReTime.values", "documentation/python_api/triqs.gf.meshes.make_adjoint_mesh", "documentation/python_api/triqs.gf.plot", "documentation/python_api/triqs.gf.plot.bz", "documentation/python_api/triqs.gf.plot.bz.dist", "documentation/python_api/triqs.gf.plot.bz.generate_points", "documentation/python_api/triqs.gf.plot.bz.generate_points_on_path", "documentation/python_api/triqs.gf.plot.bz.length", "documentation/python_api/triqs.gf.plot.bz.make_plottable", "documentation/python_api/triqs.gf.plot.bz.plot", "documentation/python_api/triqs.gf.plot.bz.slice_on_path", "documentation/python_api/triqs.gf.plot.bz_x_x", "documentation/python_api/triqs.gf.plot.bz_x_x.plot", "documentation/python_api/triqs.gf.plot.bz_x_x.plottable_slice_along_path", "documentation/python_api/triqs.gf.plot.dispatcher", "documentation/python_api/triqs.gf.plot.one_var", "documentation/python_api/triqs.gf.plot.one_var.dlr_imfreq", "documentation/python_api/triqs.gf.plot.one_var.dlr_imtime", "documentation/python_api/triqs.gf.plot.one_var.imfreq", "documentation/python_api/triqs.gf.plot.one_var.imtime", "documentation/python_api/triqs.gf.plot.one_var.legendre", "documentation/python_api/triqs.gf.plot.one_var.refreq", "documentation/python_api/triqs.gf.plot.one_var.retime", "documentation/python_api/triqs.gf.plot.plot_base", "documentation/python_api/triqs.gf.plot.plot_base.plot_base", "documentation/python_api/triqs.gf.plot.select_indices", "documentation/python_api/triqs.gf.plot.select_indices.closest_point_in_line", "documentation/python_api/triqs.gf.plot.select_indices.closest_to", "documentation/python_api/triqs.gf.plot.select_indices.dist", "documentation/python_api/triqs.gf.plot.select_indices.pick_selection_vec", "documentation/python_api/triqs.gf.plot.select_indices.select_path_indices", "documentation/python_api/triqs.gf.tools", "documentation/python_api/triqs.gf.tools.conjugate", "documentation/python_api/triqs.gf.tools.delta", "documentation/python_api/triqs.gf.tools.discretize_bath", "documentation/python_api/triqs.gf.tools.dyson", "documentation/python_api/triqs.gf.tools.fit_legendre", "documentation/python_api/triqs.gf.tools.inverse", "documentation/python_api/triqs.gf.tools.make_delta", "documentation/python_api/triqs.gf.tools.make_zero_tail", "documentation/python_api/triqs.gf.tools.read_gf_from_txt", "documentation/python_api/triqs.gf.tools.transpose", "documentation/python_api/triqs.gf.tools.write_gf_to_txt", "documentation/python_api/triqs.gf.wrapped_aux", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.__init__", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.__init__", "documentation/python_api/triqs.gf.wrapped_aux.set_from_gf_data_mul_LR", "documentation/python_api/triqs.lattice", "documentation/python_api/triqs.lattice.bz_patch", "documentation/python_api/triqs.lattice.bz_patch.BZPatch", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.__init__", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.dos", "documentation/python_api/triqs.lattice.lattice_tools", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.__init__", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.lattice_to_real_coordinates", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.n_orbitals", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.ndim", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.orbital_names", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.orbital_positions", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.units", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.__init__", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.lattice", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.ndim", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.units", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.__init__", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.dispersion", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.displ_vec", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.fourier", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.lattice", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.lattice_to_real_coordinates", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.overlap_mat_vec", "documentation/python_api/triqs.lattice.lattice_tools.dos", "documentation/python_api/triqs.lattice.lattice_tools.dos_patch", "documentation/python_api/triqs.lattice.point", "documentation/python_api/triqs.lattice.point.LatticePoint", "documentation/python_api/triqs.lattice.point.LatticePoint.__init__", "documentation/python_api/triqs.lattice.point.LatticePoint.value", "documentation/python_api/triqs.lattice.super_lattice", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.__init__", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_L_to_SL", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_SL_to_L", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.cluster_sites", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.dispersion", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.fold", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.fourier", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.get_kmesh", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.get_rmesh", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.hoppings", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.lattice_to_real_coordinates", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.n_orbitals", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.ndim", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.orbital_names", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.orbital_positions", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.pack_index_site_orbital", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.units", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.unpack_index_site_orbital", "documentation/python_api/triqs.lattice.tight_binding", "documentation/python_api/triqs.lattice.tight_binding.TBLattice", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.__init__", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.dispersion", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.fourier", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.get_kmesh", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.get_rmesh", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.hoppings", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.lattice_to_real_coordinates", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.n_orbitals", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.ndim", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.orbital_names", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.orbital_positions", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.units", "documentation/python_api/triqs.lattice.tight_binding.dos", "documentation/python_api/triqs.lattice.tight_binding.dos_patch", "documentation/python_api/triqs.lattice.utils", "documentation/python_api/triqs.lattice.utils.TB_from_pythTB", "documentation/python_api/triqs.lattice.utils.TB_from_wannier90", "documentation/python_api/triqs.lattice.utils.TB_to_sympy", "documentation/python_api/triqs.lattice.utils.extend_wannier90_to_spin", "documentation/python_api/triqs.lattice.utils.k_space_path", "documentation/python_api/triqs.lattice.utils.parse_hopping_from_wannier90_hr_dat", "documentation/python_api/triqs.lattice.utils.parse_lattice_vectors_from_wannier90_wout", "documentation/python_api/triqs.operators", "documentation/python_api/triqs.operators.operators", "documentation/python_api/triqs.operators.operators.Operator", "documentation/python_api/triqs.operators.operators.Operator.__init__", "documentation/python_api/triqs.operators.operators.Operator.imag", "documentation/python_api/triqs.operators.operators.Operator.is_zero", "documentation/python_api/triqs.operators.operators.Operator.real", "documentation/python_api/triqs.operators.operators.c", "documentation/python_api/triqs.operators.operators.c_dag", "documentation/python_api/triqs.operators.operators.dagger", "documentation/python_api/triqs.operators.operators.is_op_hermitian", "documentation/python_api/triqs.operators.operators.n", "documentation/python_api/triqs.operators.util", "documentation/python_api/triqs.operators.util.U_matrix", "documentation/python_api/triqs.operators.util.U_matrix.U_J_to_radial_integrals", "documentation/python_api/triqs.operators.util.U_matrix.U_matrix_kanamori", "documentation/python_api/triqs.operators.util.U_matrix.U_matrix_slater", "documentation/python_api/triqs.operators.util.U_matrix.angular_matrix_element", "documentation/python_api/triqs.operators.util.U_matrix.clebsch_gordan", "documentation/python_api/triqs.operators.util.U_matrix.cubic_names", "documentation/python_api/triqs.operators.util.U_matrix.eg_submatrix", "documentation/python_api/triqs.operators.util.U_matrix.radial_integrals_to_U_J", "documentation/python_api/triqs.operators.util.U_matrix.reduce_4index_to_2index", "documentation/python_api/triqs.operators.util.U_matrix.spherical_to_cubic", "documentation/python_api/triqs.operators.util.U_matrix.subarray", "documentation/python_api/triqs.operators.util.U_matrix.t2g_submatrix", "documentation/python_api/triqs.operators.util.U_matrix.three_j_symbol", "documentation/python_api/triqs.operators.util.U_matrix.transform_U_matrix", "documentation/python_api/triqs.operators.util.extractors", "documentation/python_api/triqs.operators.util.extractors.block_matrix_from_op", "documentation/python_api/triqs.operators.util.extractors.dict_to_matrix", "documentation/python_api/triqs.operators.util.extractors.extract_U_dict2", "documentation/python_api/triqs.operators.util.extractors.extract_U_dict4", "documentation/python_api/triqs.operators.util.extractors.extract_h_dict", "documentation/python_api/triqs.operators.util.extractors.op_from_block_matrix", "documentation/python_api/triqs.operators.util.extractors.quadratic_terms", "documentation/python_api/triqs.operators.util.extractors.quartic_terms", "documentation/python_api/triqs.operators.util.hamiltonians", "documentation/python_api/triqs.operators.util.hamiltonians.backward_compat", "documentation/python_api/triqs.operators.util.hamiltonians.diagonal_part", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_density", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_kanamori", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_slater", "documentation/python_api/triqs.operators.util.hamiltonians.make_operator_real", "documentation/python_api/triqs.operators.util.observables", "documentation/python_api/triqs.operators.util.observables.L2_op", "documentation/python_api/triqs.operators.util.observables.LS_op", "documentation/python_api/triqs.operators.util.observables.L_op", "documentation/python_api/triqs.operators.util.observables.N_op", "documentation/python_api/triqs.operators.util.observables.S2_op", "documentation/python_api/triqs.operators.util.observables.S_op", "documentation/python_api/triqs.operators.util.observables.check_backward_compat", "documentation/python_api/triqs.operators.util.op_struct", "documentation/python_api/triqs.operators.util.op_struct.get_mkind", "documentation/python_api/triqs.operators.util.op_struct.set_operator_structure", "documentation/python_api/triqs.plot", "documentation/python_api/triqs.plot.mpl_interface", "documentation/python_api/triqs.plot.mpl_interface.oplot", "documentation/python_api/triqs.plot.mpl_interface.oploti", "documentation/python_api/triqs.plot.mpl_interface.oplotr", "documentation/python_api/triqs.plot.mpl_interface.use_amsmath", "documentation/python_api/triqs.plot.protocol", "documentation/python_api/triqs.plot.protocol.clip_array", "documentation/python_api/triqs.plot.protocol.plot_protocol_apply", "documentation/python_api/triqs.random_generator", "documentation/python_api/triqs.random_generator.RandomGenerator", "documentation/python_api/triqs.random_generator.RandomGenerator.__init__", "documentation/python_api/triqs.random_generator.random_generator", "documentation/python_api/triqs.random_generator.random_generator.random_generator_names_list", "documentation/python_api/triqs.stat", "documentation/python_api/triqs.stat.histogram", "documentation/python_api/triqs.stat.histogram.plot", "documentation/python_api/triqs.stat.histograms", "documentation/python_api/triqs.stat.histograms.Histogram", "documentation/python_api/triqs.stat.histograms.Histogram.__init__", "documentation/python_api/triqs.stat.histograms.Histogram.clear", "documentation/python_api/triqs.stat.histograms.Histogram.data", "documentation/python_api/triqs.stat.histograms.Histogram.limits", "documentation/python_api/triqs.stat.histograms.Histogram.mesh_point", "documentation/python_api/triqs.stat.histograms.Histogram.n_data_pts", "documentation/python_api/triqs.stat.histograms.Histogram.n_lost_pts", "documentation/python_api/triqs.stat.histograms.cdf", "documentation/python_api/triqs.stat.histograms.pdf", "documentation/python_api/triqs.sumk", "documentation/python_api/triqs.sumk.sumk_discrete", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.GFBlocIndices", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.__init__", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.n_kpts", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.resize_arrays", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.GFBlocIndices", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.Recompute_Grid", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.__init__", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.n_kpts", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.resize_arrays", "documentation/python_api/triqs.utility", "documentation/python_api/triqs.utility.bound_and_bisect", "documentation/python_api/triqs.utility.bound_and_bisect.bound_and_bisect", "documentation/python_api/triqs.utility.bound_and_bisect.determine_bounds", "documentation/python_api/triqs.utility.capture_stdout", "documentation/python_api/triqs.utility.comparison_tests", "documentation/python_api/triqs.utility.comparison_tests.assert_array_close_to_scalar", "documentation/python_api/triqs.utility.comparison_tests.assert_arrays_are_close", "documentation/python_api/triqs.utility.comparison_tests.assert_block2_gfs_are_close", "documentation/python_api/triqs.utility.comparison_tests.assert_block_gfs_are_close", "documentation/python_api/triqs.utility.comparison_tests.assert_gfs_are_close", "documentation/python_api/triqs.utility.dichotomy", "documentation/python_api/triqs.utility.dichotomy.dichotomy", "documentation/python_api/triqs.utility.dist_on_nodes", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.SleepTime", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.__init__", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.run", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.SleepTime", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.__init__", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.finished", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.result", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.run", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.treate", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.SleepTime", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.__init__", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.finished", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.result", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.run", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.the_function", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.treate", "documentation/python_api/triqs.utility.h5diff", "documentation/python_api/triqs.utility.h5diff.compare", "documentation/python_api/triqs.utility.h5diff.h5diff", "documentation/python_api/triqs.utility.mpi", "documentation/python_api/triqs.utility.mpi.check_for_mpi", "documentation/python_api/triqs.utility.mpi_mpi4py", "documentation/python_api/triqs.utility.mpi_mpi4py.all_reduce", "documentation/python_api/triqs.utility.mpi_mpi4py.barrier", "documentation/python_api/triqs.utility.mpi_mpi4py.bcast", "documentation/python_api/triqs.utility.mpi_mpi4py.is_master_node", "documentation/python_api/triqs.utility.mpi_mpi4py.master_gets_host_names", "documentation/python_api/triqs.utility.mpi_mpi4py.myprint_err", "documentation/python_api/triqs.utility.mpi_mpi4py.myprint_out", "documentation/python_api/triqs.utility.mpi_mpi4py.recv", "documentation/python_api/triqs.utility.mpi_mpi4py.report", "documentation/python_api/triqs.utility.mpi_mpi4py.send", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_array", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_inf", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_sup", "documentation/python_api/triqs.utility.mpi_nompi", "documentation/python_api/triqs.utility.mpi_nompi.all_reduce", "documentation/python_api/triqs.utility.mpi_nompi.barrier", "documentation/python_api/triqs.utility.mpi_nompi.bcast", "documentation/python_api/triqs.utility.mpi_nompi.is_master_node", "documentation/python_api/triqs.utility.mpi_nompi.master_gets_host_names", "documentation/python_api/triqs.utility.mpi_nompi.myprint_err", "documentation/python_api/triqs.utility.mpi_nompi.myprint_out", "documentation/python_api/triqs.utility.mpi_nompi.recv", "documentation/python_api/triqs.utility.mpi_nompi.report", "documentation/python_api/triqs.utility.mpi_nompi.send", "documentation/python_api/triqs.utility.mpi_nompi.slice_array", "documentation/python_api/triqs.utility.redirect", "documentation/python_api/triqs.utility.redirect.T", "documentation/python_api/triqs.utility.redirect.T.__init__", "documentation/python_api/triqs.utility.redirect.T.daemon", "documentation/python_api/triqs.utility.redirect.T.getName", "documentation/python_api/triqs.utility.redirect.T.ident", "documentation/python_api/triqs.utility.redirect.T.isDaemon", "documentation/python_api/triqs.utility.redirect.T.is_alive", "documentation/python_api/triqs.utility.redirect.T.join", "documentation/python_api/triqs.utility.redirect.T.name", "documentation/python_api/triqs.utility.redirect.T.native_id", "documentation/python_api/triqs.utility.redirect.T.run", "documentation/python_api/triqs.utility.redirect.T.setDaemon", "documentation/python_api/triqs.utility.redirect.T.setName", "documentation/python_api/triqs.utility.redirect.T.start", "documentation/python_api/triqs.utility.redirect.T.stop", "documentation/python_api/triqs.utility.redirect.start_redirect", "documentation/python_api/triqs.utility.redirect.stop_redirect", "faqs", "index", "install", "installation/clang", "installation/environment_vars", "installation/install_options", "installation/osx_install", "installation/python_virtualenv", "installation/requirements", "installation/ubuntu", "porting_to_triqs3", "userguide", "userguide/c++/arrays/tutorial", "userguide/c++/det_manip/tutorial", "userguide/c++/gfs/tutorial", "userguide/c++/hdf5/tutorial", "userguide/c++/using_the_lib/application_structure", "userguide/c++/using_the_lib/contents", "userguide/c++/using_the_lib/profiling", "userguide/c++/using_the_lib/triqs_library", "userguide/python/basics", "userguide/python/dmft_one_page", "userguide/python/external_resources", "userguide/python/model_dmft", "userguide/python/tight_binding", "userguide/python/tutorials/AbinitioDMFT/01-solid_dmft", "userguide/python/tutorials/AbinitioDMFT/02-FermiSee", "userguide/python/tutorials/AbinitioDMFT/03-phase-diagram-exploration", "userguide/python/tutorials/AbinitioDMFT/04-HubbardI-comparison", "userguide/python/tutorials/AbinitioDMFT/solutions/01s-solid_dmft", "userguide/python/tutorials/AbinitioDMFT/solutions/02s-FermiSee", "userguide/python/tutorials/AbinitioDMFT/solutions/03s-phase-diagram-exploration", "userguide/python/tutorials/AbinitioDMFT/solutions/04s-HubbardI-comparison", "userguide/python/tutorials/Basics/00a-Introducing_the_ipython_notebook", "userguide/python/tutorials/Basics/00b-Matplotlib_Examples", "userguide/python/tutorials/Basics/01-Greens_functions", "userguide/python/tutorials/Basics/02-Archiving_your_data", "userguide/python/tutorials/Basics/03-Operators", "userguide/python/tutorials/Basics/04-Multivariable_Green_functions", "userguide/python/tutorials/Basics/solutions/01s-Greens_functions", "userguide/python/tutorials/ModelDMFT/01-IPT_and_DMFT", "userguide/python/tutorials/ModelDMFT/02-Introduction_to_the_CTHYB_solver", "userguide/python/tutorials/ModelDMFT/03-Single-orbital_Hubbard_with_CTQMC", "userguide/python/tutorials/ModelDMFT/04-Two-orbital_Hubbard_with_CTQMC", "userguide/python/tutorials/ModelDMFT/05-VBDMFT_Hubbard", "userguide/python/tutorials/ModelDMFT/README", "userguide/python/tutorials/ModelDMFT/solutions/01s-IPT_and_DMFT", "userguide/python/tutorials/ModelDMFT/solutions/03s-Single-orbital_Hubbard_with_CTQMC", "userguide/python/tutorials/ModelDMFT/solutions/04s-Two-orbital_Hubbard_with_CTQMC", "userguide/python/tutorials/ModelDMFT/solutions/05s-VBDMFT_Hubbard", "userguide/python/tutorials/README", "userguide/python/tutorials/TwoParticleResponse/01-Fermi_surface_nesting", "userguide/python/tutorials/TwoParticleResponse/02-Lindhard", "userguide/python/tutorials/TwoParticleResponse/03-RPA", "userguide/python/tutorials/TwoParticleResponse/04-TPSC", "userguide/python/tutorials/TwoParticleResponse/05-TPSC_MerminWagner", "userguide/python/tutorials/TwoParticleResponse/solutions/01s-Fermi_surface_nesting", "userguide/python/tutorials/TwoParticleResponse/solutions/02s-Lindhard", "userguide/python/tutorials/TwoParticleResponse/solutions/03s-RPA", "userguide/python/tutorials/TwoParticleResponse/solutions/04s-TPSC", "userguide/python/tutorials/TwoParticleResponse/solutions/05s-TPSC_MerminWagner", "userguide/python/two_particle_response", "versions"], "filenames": ["ChangeLog.md", "_templates/autosummary_class_template.rst", "_templates/autosummary_module_template.rst", "about.rst", "applications.rst", "contents.rst", "contributing.rst", "contributing/documentation.rst", "contributing/pull_request.rst", "documentation.rst", "documentation/cpp_api/contents.rst", "documentation/cpp_api/itertools.rst", "documentation/cpp_api/itertools/chunk_range.rst", "documentation/cpp_api/itertools/distance.rst", "documentation/cpp_api/itertools/enum_iter.rst", "documentation/cpp_api/itertools/enum_iter/constructor.rst", "documentation/cpp_api/itertools/enum_iter/dereference.rst", "documentation/cpp_api/itertools/enum_iter/increment.rst", "documentation/cpp_api/itertools/enum_iter/operator==.rst", "documentation/cpp_api/itertools/enumerate.rst", "documentation/cpp_api/itertools/enumerated.rst", "documentation/cpp_api/itertools/enumerated/begin.rst", "documentation/cpp_api/itertools/enumerated/cbegin.rst", "documentation/cpp_api/itertools/enumerated/cend.rst", "documentation/cpp_api/itertools/enumerated/end.rst", "documentation/cpp_api/itertools/enumerated/operator==.rst", "documentation/cpp_api/itertools/foreach.rst", "documentation/cpp_api/itertools/iterator_facade.rst", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT.rst", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator*.rst", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator++.rst", "documentation/cpp_api/itertools/iterator_facadeLTIter,Value,std::forward_iterator_tag,Reference,DifferenceGT/operator->.rst", "documentation/cpp_api/itertools/make_product.rst", "documentation/cpp_api/itertools/make_sentinel.rst", "documentation/cpp_api/itertools/make_vector_from_range.rst", "documentation/cpp_api/itertools/multiplied.rst", "documentation/cpp_api/itertools/multiplied/begin.rst", "documentation/cpp_api/itertools/multiplied/cbegin.rst", "documentation/cpp_api/itertools/multiplied/cend.rst", "documentation/cpp_api/itertools/multiplied/constructor.rst", "documentation/cpp_api/itertools/multiplied/end.rst", "documentation/cpp_api/itertools/multiplied/operator==.rst", "documentation/cpp_api/itertools/prod_iter.rst", "documentation/cpp_api/itertools/prod_iter/constructor.rst", "documentation/cpp_api/itertools/prod_iter/dereference.rst", "documentation/cpp_api/itertools/prod_iter/increment.rst", "documentation/cpp_api/itertools/prod_iter/operator==.rst", "documentation/cpp_api/itertools/product.rst", "documentation/cpp_api/itertools/product_range.rst", "documentation/cpp_api/itertools/range.rst", "documentation/cpp_api/itertools/range/begin.rst", "documentation/cpp_api/itertools/range/cbegin.rst", "documentation/cpp_api/itertools/range/cend.rst", "documentation/cpp_api/itertools/range/constructor.rst", "documentation/cpp_api/itertools/range/end.rst", "documentation/cpp_api/itertools/range/first.rst", "documentation/cpp_api/itertools/range/last.rst", "documentation/cpp_api/itertools/range/operator+.rst", "documentation/cpp_api/itertools/range/operator<<.rst", "documentation/cpp_api/itertools/range/operator==.rst", "documentation/cpp_api/itertools/range/size.rst", "documentation/cpp_api/itertools/range/step.rst", "documentation/cpp_api/itertools/sentinel_t.rst", "documentation/cpp_api/itertools/slice.rst", "documentation/cpp_api/itertools/sliced.rst", "documentation/cpp_api/itertools/sliced/begin.rst", "documentation/cpp_api/itertools/sliced/cbegin.rst", "documentation/cpp_api/itertools/sliced/cend.rst", "documentation/cpp_api/itertools/sliced/end.rst", "documentation/cpp_api/itertools/sliced/operator==.rst", "documentation/cpp_api/itertools/sliced/size.rst", "documentation/cpp_api/itertools/stride.rst", "documentation/cpp_api/itertools/stride_iter.rst", "documentation/cpp_api/itertools/stride_iter/constructor.rst", "documentation/cpp_api/itertools/stride_iter/dereference.rst", "documentation/cpp_api/itertools/stride_iter/increment.rst", "documentation/cpp_api/itertools/stride_iter/operator==.rst", "documentation/cpp_api/itertools/strided.rst", "documentation/cpp_api/itertools/strided/begin.rst", "documentation/cpp_api/itertools/strided/cbegin.rst", "documentation/cpp_api/itertools/strided/cend.rst", "documentation/cpp_api/itertools/strided/end.rst", "documentation/cpp_api/itertools/strided/operator==.rst", "documentation/cpp_api/itertools/transform.rst", "documentation/cpp_api/itertools/transform_iter.rst", "documentation/cpp_api/itertools/transform_iter/constructor.rst", "documentation/cpp_api/itertools/transform_iter/dereference.rst", "documentation/cpp_api/itertools/transform_iter/increment.rst", "documentation/cpp_api/itertools/transform_iter/operator=.rst", "documentation/cpp_api/itertools/transform_iter/operator==.rst", "documentation/cpp_api/itertools/transformed.rst", "documentation/cpp_api/itertools/transformed/begin.rst", "documentation/cpp_api/itertools/transformed/cbegin.rst", "documentation/cpp_api/itertools/transformed/cend.rst", "documentation/cpp_api/itertools/transformed/end.rst", "documentation/cpp_api/itertools/zip.rst", "documentation/cpp_api/itertools/zip_iter.rst", "documentation/cpp_api/itertools/zip_iter/constructor.rst", "documentation/cpp_api/itertools/zip_iter/dereference.rst", "documentation/cpp_api/itertools/zip_iter/increment.rst", "documentation/cpp_api/itertools/zip_iter/operator==.rst", "documentation/cpp_api/itertools/zipped.rst", "documentation/cpp_api/itertools/zipped/begin.rst", "documentation/cpp_api/itertools/zipped/cbegin.rst", "documentation/cpp_api/itertools/zipped/cend.rst", "documentation/cpp_api/itertools/zipped/constructor.rst", "documentation/cpp_api/itertools/zipped/end.rst", "documentation/cpp_api/itertools/zipped/operator==.rst", "documentation/cpp_api/mpi.rst", "documentation/cpp_api/mpi/all_gather.rst", "documentation/cpp_api/mpi/all_reduce.rst", "documentation/cpp_api/mpi/all_reduce_in_place.rst", "documentation/cpp_api/mpi/broadcast.rst", "documentation/cpp_api/mpi/chunk.rst", "documentation/cpp_api/mpi/chunk_length.rst", "documentation/cpp_api/mpi/communicator.rst", "documentation/cpp_api/mpi/communicator/abort.rst", "documentation/cpp_api/mpi/communicator/barrier.rst", "documentation/cpp_api/mpi/communicator/constructor.rst", "documentation/cpp_api/mpi/communicator/get.rst", "documentation/cpp_api/mpi/communicator/rank.rst", "documentation/cpp_api/mpi/communicator/size.rst", "documentation/cpp_api/mpi/communicator/split.rst", "documentation/cpp_api/mpi/environment.rst", "documentation/cpp_api/mpi/environment/constructor.rst", "documentation/cpp_api/mpi/gather.rst", "documentation/cpp_api/mpi/get_mpi_type.rst", "documentation/cpp_api/mpi/is_initialized.rst", "documentation/cpp_api/mpi/lazy.rst", "documentation/cpp_api/mpi/lazy/invoke.rst", "documentation/cpp_api/mpi/lazy/shape.rst", "documentation/cpp_api/mpi/map_C_function.rst", "documentation/cpp_api/mpi/map_add.rst", "documentation/cpp_api/mpi/monitor.rst", "documentation/cpp_api/mpi/monitor/constructor.rst", "documentation/cpp_api/mpi/monitor/emergency_occured.rst", "documentation/cpp_api/mpi/monitor/finalize_communications.rst", "documentation/cpp_api/mpi/monitor/operator=.rst", "documentation/cpp_api/mpi/monitor/request_emergency_stop.rst", "documentation/cpp_api/mpi/monitor/root_check_nodes_and_bcast.rst", "documentation/cpp_api/mpi/mpi_broadcast.rst", "documentation/cpp_api/mpi/mpi_gather.rst", "documentation/cpp_api/mpi/mpi_reduce.rst", "documentation/cpp_api/mpi/mpi_reduce_in_place.rst", "documentation/cpp_api/mpi/mpi_scatter.rst", "documentation/cpp_api/mpi/mpi_type.rst", "documentation/cpp_api/mpi/mpi_typeLTconstTGT.rst", "documentation/cpp_api/mpi/mpi_typeLTstd::tupleLTT...GTGT.rst", "documentation/cpp_api/mpi/mpi_type_from_tie.rst", "documentation/cpp_api/mpi/reduce.rst", "documentation/cpp_api/mpi/reduce_in_place.rst", "documentation/cpp_api/mpi/scatter.rst", "documentation/cpp_api/triqs/atom_diag.rst", "documentation/cpp_api/triqs/atom_diag/act.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/c_connection.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/c_matrix.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/cdag_connection.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/cdag_matrix.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/constructor.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/flatten_subspace_index.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_eigensystems.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_eigenvalue.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_energies.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_fock_states.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_fops.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_full_hilbert_space.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_full_hilbert_space_dim.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_gs_energy.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_h_atomic.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_matrix_element_of_monomial.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_op_mat.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_quantum_numbers.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_subspace_dim.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_subspace_dims.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_unitary_matrices.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_unitary_matrix.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_vacuum_state.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/get_vacuum_subspace_index.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/index_range_of_subspace.rst", "documentation/cpp_api/triqs/atom_diag/atom_diag/n_subspaces.rst", "documentation/cpp_api/triqs/atom_diag/atomic_density_matrix.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_iw.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_l.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_lehmann.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_tau.rst", "documentation/cpp_api/triqs/atom_diag/atomic_g_w.rst", "documentation/cpp_api/triqs/atom_diag/partition_function.rst", "documentation/cpp_api/triqs/atom_diag/quantum_number_eigenvalues.rst", "documentation/cpp_api/triqs/atom_diag/quantum_number_eigenvalues_checked.rst", "documentation/cpp_api/triqs/atom_diag/trace_rho_op.rst", "documentation/cpp_api/triqs/det_manip.rst", "documentation/cpp_api/triqs/det_manip/det_manip.rst", "documentation/cpp_api/triqs/det_manip/det_manip/change_col.rst", "documentation/cpp_api/triqs/det_manip/det_manip/change_row.rst", "documentation/cpp_api/triqs/det_manip/det_manip/clear.rst", "documentation/cpp_api/triqs/det_manip/det_manip/complete_operation.rst", "documentation/cpp_api/triqs/det_manip/det_manip/constructor.rst", "documentation/cpp_api/triqs/det_manip/det_manip/determinant.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_function.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_n_operations_before_check.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_precision_error.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_precision_warning.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_singular_threshold.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_x.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_x_internal_order.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_y.rst", "documentation/cpp_api/triqs/det_manip/det_manip/get_y_internal_order.rst", "documentation/cpp_api/triqs/det_manip/det_manip/h5_read.rst", "documentation/cpp_api/triqs/det_manip/det_manip/h5_write.rst", "documentation/cpp_api/triqs/det_manip/det_manip/insert.rst", "documentation/cpp_api/triqs/det_manip/det_manip/insert2.rst", "documentation/cpp_api/triqs/det_manip/det_manip/insert2_at_end.rst", "documentation/cpp_api/triqs/det_manip/det_manip/insert_at_end.rst", "documentation/cpp_api/triqs/det_manip/det_manip/inverse_matrix.rst", "documentation/cpp_api/triqs/det_manip/det_manip/inverse_matrix_internal_order.rst", "documentation/cpp_api/triqs/det_manip/det_manip/is_singular.rst", "documentation/cpp_api/triqs/det_manip/det_manip/matrix.rst", "documentation/cpp_api/triqs/det_manip/det_manip/reject_last_try.rst", "documentation/cpp_api/triqs/det_manip/det_manip/remove.rst", "documentation/cpp_api/triqs/det_manip/det_manip/remove2.rst", "documentation/cpp_api/triqs/det_manip/det_manip/remove2_at_end.rst", "documentation/cpp_api/triqs/det_manip/det_manip/remove_at_end.rst", "documentation/cpp_api/triqs/det_manip/det_manip/reserve.rst", "documentation/cpp_api/triqs/det_manip/det_manip/roll_matrix.rst", "documentation/cpp_api/triqs/det_manip/det_manip/set_n_operations_before_check.rst", "documentation/cpp_api/triqs/det_manip/det_manip/set_precision_error.rst", "documentation/cpp_api/triqs/det_manip/det_manip/set_precision_warning.rst", "documentation/cpp_api/triqs/det_manip/det_manip/set_singular_threshold.rst", "documentation/cpp_api/triqs/det_manip/det_manip/size.rst", "documentation/cpp_api/triqs/det_manip/det_manip/swap_col.rst", "documentation/cpp_api/triqs/det_manip/det_manip/swap_row.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_col.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_col_row.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_change_row.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_insert.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_insert_k.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_refill.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_remove.rst", "documentation/cpp_api/triqs/det_manip/det_manip/try_remove_k.rst", "documentation/cpp_api/triqs/gfs.rst", "documentation/cpp_api/triqs/gfs/.rst", "documentation/cpp_api/triqs/gfs/block_gf.rst", "documentation/cpp_api/triqs/gfs/block_gf/block_names.rst", "documentation/cpp_api/triqs/gfs/block_gf/block_sizes.rst", "documentation/cpp_api/triqs/gfs/block_gf/constructor.rst", "documentation/cpp_api/triqs/gfs/block_gf/data.rst", "documentation/cpp_api/triqs/gfs/block_gf/h5_read.rst", "documentation/cpp_api/triqs/gfs/block_gf/h5_write.rst", "documentation/cpp_api/triqs/gfs/block_gf/hdf5_format.rst", "documentation/cpp_api/triqs/gfs/block_gf/operator().rst", "documentation/cpp_api/triqs/gfs/block_gf/operator=.rst", "documentation/cpp_api/triqs/gfs/density.rst", "documentation/cpp_api/triqs/gfs/fit_gf_dlr.rst", "documentation/cpp_api/triqs/gfs/fit_hermitian_tail.rst", "documentation/cpp_api/triqs/gfs/fit_tail.rst", "documentation/cpp_api/triqs/gfs/flatten_2d.rst", "documentation/cpp_api/triqs/gfs/flatten_gf_2d.rst", "documentation/cpp_api/triqs/gfs/get_mesh.rst", "documentation/cpp_api/triqs/gfs/gf.rst", "documentation/cpp_api/triqs/gfs/gf/constructor.rst", "documentation/cpp_api/triqs/gfs/gf/data.rst", "documentation/cpp_api/triqs/gfs/gf/data_shape.rst", "documentation/cpp_api/triqs/gfs/gf/h5_read.rst", "documentation/cpp_api/triqs/gfs/gf/h5_write.rst", "documentation/cpp_api/triqs/gfs/gf/hdf5_format.rst", "documentation/cpp_api/triqs/gfs/gf/mesh.rst", "documentation/cpp_api/triqs/gfs/gf/operator<<.rst", "documentation/cpp_api/triqs/gfs/gf/operator=.rst", "documentation/cpp_api/triqs/gfs/gf/target_indices.rst", "documentation/cpp_api/triqs/gfs/gf/target_shape.rst", "documentation/cpp_api/triqs/gfs/gf_const_view.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/constructor.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/data.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/data_shape.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/h5_read.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/h5_write.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/hdf5_format.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/mesh.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/operator<<.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/rebind.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/target_indices.rst", "documentation/cpp_api/triqs/gfs/gf_const_view/target_shape.rst", "documentation/cpp_api/triqs/gfs/gf_view.rst", "documentation/cpp_api/triqs/gfs/gf_view/constructor.rst", "documentation/cpp_api/triqs/gfs/gf_view/data.rst", "documentation/cpp_api/triqs/gfs/gf_view/data_shape.rst", "documentation/cpp_api/triqs/gfs/gf_view/h5_read.rst", "documentation/cpp_api/triqs/gfs/gf_view/h5_write.rst", "documentation/cpp_api/triqs/gfs/gf_view/hdf5_format.rst", "documentation/cpp_api/triqs/gfs/gf_view/mesh.rst", "documentation/cpp_api/triqs/gfs/gf_view/operator<<.rst", "documentation/cpp_api/triqs/gfs/gf_view/operator=.rst", "documentation/cpp_api/triqs/gfs/gf_view/rebind.rst", "documentation/cpp_api/triqs/gfs/gf_view/target_indices.rst", "documentation/cpp_api/triqs/gfs/gf_view/target_shape.rst", "documentation/cpp_api/triqs/gfs/h5_read_gf_struct.rst", "documentation/cpp_api/triqs/gfs/imag.rst", "documentation/cpp_api/triqs/gfs/impl_tag.rst", "documentation/cpp_api/triqs/gfs/inverse.rst", "documentation/cpp_api/triqs/gfs/is_gf_hermitian.rst", "documentation/cpp_api/triqs/gfs/is_gf_real.rst", "documentation/cpp_api/triqs/gfs/is_gf_real_in_tau.rst", "documentation/cpp_api/triqs/gfs/make_block2_gf.rst", "documentation/cpp_api/triqs/gfs/make_block_gf.rst", "documentation/cpp_api/triqs/gfs/make_block_gf_view.rst", "documentation/cpp_api/triqs/gfs/make_gf_dlr.rst", "documentation/cpp_api/triqs/gfs/make_gf_dlr_imfreq.rst", "documentation/cpp_api/triqs/gfs/make_gf_dlr_imtime.rst", "documentation/cpp_api/triqs/gfs/make_gf_from_fourier.rst", "documentation/cpp_api/triqs/gfs/make_gf_from_inverse_fourier.rst", "documentation/cpp_api/triqs/gfs/make_gf_from_real_gf.rst", "documentation/cpp_api/triqs/gfs/make_gf_imfreq.rst", "documentation/cpp_api/triqs/gfs/make_gf_imtime.rst", "documentation/cpp_api/triqs/gfs/make_hermitian.rst", "documentation/cpp_api/triqs/gfs/make_real_in_tau.rst", "documentation/cpp_api/triqs/gfs/make_zero_tail.rst", "documentation/cpp_api/triqs/gfs/mpi_reduce.rst", "documentation/cpp_api/triqs/gfs/positive_freq_view.rst", "documentation/cpp_api/triqs/gfs/real.rst", "documentation/cpp_api/triqs/gfs/reinterpret_scalar_valued_gf_as_matrix_valued.rst", "documentation/cpp_api/triqs/gfs/tau_L2_norm.rst", "documentation/cpp_api/triqs/gfs/unflatten_2d.rst", "documentation/cpp_api/triqs/gfs/unflatten_gf_2d.rst", "documentation/cpp_api/triqs/hilbert_space.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/begin.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/cbegin.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/cend.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/data.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/end.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/h5_read_attribute.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/h5_write_attribute.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/has_indices.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/insert.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/insert_from_indices_t.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/operator==.rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/operator[].rst", "documentation/cpp_api/triqs/hilbert_space/fundamental_operator_set/size.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/get_fock_state.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/get_state_index.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/h5_read.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/h5_write.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/has_state.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/hdf5_format.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/operator!=.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/operator==.rst", "documentation/cpp_api/triqs/hilbert_space/hilbert_space/size.rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator.rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/is_empty.rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/operator().rst", "documentation/cpp_api/triqs/hilbert_space/imperative_operator/update.rst", "documentation/cpp_api/triqs/hilbert_space/make_zero_state.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/find_mappings.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/foreach.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/get_matrix_elements.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/lookup_basis_state.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/merge_subspaces.rst", "documentation/cpp_api/triqs/hilbert_space/space_partition/n_subspaces.rst", "documentation/cpp_api/triqs/hilbert_space/state.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/amplitudes.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/dot_product.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/foreach.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/get_hilbert.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator().rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator*=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator+=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/operator-=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/set_hilbert.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,falseGT/size.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/dot_product.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/foreach.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/get_hilbert.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/nterms.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator().rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator*=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator+=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/operator-=.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/set_hilbert.rst", "documentation/cpp_api/triqs/hilbert_space/stateLTHilbertSpace,ScalarType,trueGT/size.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/add_fock_state.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/constructor.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_all_fock_states.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_fock_state.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_index.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/get_state_index.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/h5_read.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/h5_write.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/has_state.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/hdf5_format.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/operator!=.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/operator==.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/set_index.rst", "documentation/cpp_api/triqs/hilbert_space/sub_hilbert_space/size.rst", "documentation/cpp_api/triqs/mc_tools.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/accumulate.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_measure.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_measure_aux.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/add_move.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/clear_measures.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/collect_results.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/constructor.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_acceptance_rates.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_accumulation_time.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_accumulation_time_HHMMSS.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_config_id.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_current_cycle_number.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_duration.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_percent.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_rng.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_total_time.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_warmup_time.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/get_warmup_time_HHMMSS.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/h5_read.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/h5_write.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/rm_measure.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/run.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/set_after_cycle_duty.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/warmup.rst", "documentation/cpp_api/triqs/mc_tools/mc_generic/warmup_and_accumulate.rst", "documentation/cpp_api/triqs/mc_tools/move_set.rst", "documentation/cpp_api/triqs/mc_tools/move_set/accept.rst", "documentation/cpp_api/triqs/mc_tools/move_set/add.rst", "documentation/cpp_api/triqs/mc_tools/move_set/attempt.rst", "documentation/cpp_api/triqs/mc_tools/move_set/clear_statistics.rst", "documentation/cpp_api/triqs/mc_tools/move_set/collect_statistics.rst", "documentation/cpp_api/triqs/mc_tools/move_set/constructor.rst", "documentation/cpp_api/triqs/mc_tools/move_set/get_acceptance_rates.rst", "documentation/cpp_api/triqs/mc_tools/move_set/get_statistics.rst", "documentation/cpp_api/triqs/mc_tools/move_set/reject.rst", "documentation/cpp_api/triqs/mc_tools/random_generator.rst", "documentation/cpp_api/triqs/mc_tools/random_generator/constructor.rst", "documentation/cpp_api/triqs/mc_tools/random_generator/name.rst", "documentation/cpp_api/triqs/mc_tools/random_generator/operator().rst", "documentation/cpp_api/triqs/mc_tools/random_generator/preview.rst", "documentation/cpp_api/triqs/mc_tools/random_generator_names.rst", "documentation/cpp_api/triqs/stat.rst", "documentation/cpp_api/triqs/stat/accumulator.rst", "documentation/cpp_api/triqs/stat/accumulator/compress_linear_bins.rst", "documentation/cpp_api/triqs/stat/accumulator/constructor.rst", "documentation/cpp_api/triqs/stat/accumulator/data_input_count.rst", "documentation/cpp_api/triqs/stat/accumulator/lin_bin_capacity.rst", "documentation/cpp_api/triqs/stat/accumulator/linear_bins.rst", "documentation/cpp_api/triqs/stat/accumulator/log_bin_errors.rst", "documentation/cpp_api/triqs/stat/accumulator/log_bin_errors_all_reduce.rst", "documentation/cpp_api/triqs/stat/accumulator/n_lin_bins.rst", "documentation/cpp_api/triqs/stat/accumulator/n_lin_bins_max.rst", "documentation/cpp_api/triqs/stat/accumulator/n_log_bins.rst", "documentation/cpp_api/triqs/stat/accumulator/n_log_bins_max.rst", "documentation/cpp_api/triqs/stat/accumulator/operator<<.rst", "documentation/cpp_api/triqs/stat/cdf.rst", "documentation/cpp_api/triqs/stat/histogram.rst", "documentation/cpp_api/triqs/stat/histogram/clear.rst", "documentation/cpp_api/triqs/stat/histogram/constructor.rst", "documentation/cpp_api/triqs/stat/histogram/data.rst", "documentation/cpp_api/triqs/stat/histogram/h5_read.rst", "documentation/cpp_api/triqs/stat/histogram/h5_write.rst", "documentation/cpp_api/triqs/stat/histogram/hdf5_format.rst", "documentation/cpp_api/triqs/stat/histogram/limits.rst", "documentation/cpp_api/triqs/stat/histogram/mesh_point.rst", "documentation/cpp_api/triqs/stat/histogram/mpi_broadcast.rst", "documentation/cpp_api/triqs/stat/histogram/mpi_reduce.rst", "documentation/cpp_api/triqs/stat/histogram/n_data_pts.rst", "documentation/cpp_api/triqs/stat/histogram/n_lost_pts.rst", "documentation/cpp_api/triqs/stat/histogram/operator+.rst", "documentation/cpp_api/triqs/stat/histogram/operator<<.rst", "documentation/cpp_api/triqs/stat/histogram/operator==.rst", "documentation/cpp_api/triqs/stat/histogram/size.rst", "documentation/cpp_api/triqs/stat/jackknife.rst", "documentation/cpp_api/triqs/stat/jackknife_mpi.rst", "documentation/cpp_api/triqs/stat/mean.rst", "documentation/cpp_api/triqs/stat/mean_and_err.rst", "documentation/cpp_api/triqs/stat/mean_and_err_mpi.rst", "documentation/cpp_api/triqs/stat/mean_mpi.rst", "documentation/cpp_api/triqs/stat/pdf.rst", "documentation/cpp_api/triqs/stat/tau_estimate_from_errors.rst", "documentation/manual/contents.rst", "documentation/manual/cpp2py/cfunction.rst", "documentation/manual/cpp2py/class.rst", "documentation/manual/cpp2py/contents.rst", "documentation/manual/cpp2py/convert.rst", "documentation/manual/cpp2py/module.rst", "documentation/manual/cpp2py/principle.rst", "documentation/manual/cpp2py/reference.rst", "documentation/manual/hdf5/contents.rst", "documentation/manual/hdf5/protocol.rst", "documentation/manual/hdf5/ref.rst", "documentation/manual/mpi/contents.rst", "documentation/manual/triqs/atom_diag/contents.rst", "documentation/manual/triqs/atom_diag/functions.rst", "documentation/manual/triqs/clef/assign.rst", "documentation/manual/triqs/clef/contents.rst", "documentation/manual/triqs/clef/examples/contents.rst", "documentation/manual/triqs/clef/examples/lazy_sum.rst", "documentation/manual/triqs/clef/expressions_eval.rst", "documentation/manual/triqs/clef/expressions_form.rst", "documentation/manual/triqs/clef/function.rst", "documentation/manual/triqs/clef/introduction.rst", "documentation/manual/triqs/clef/overload.rst", "documentation/manual/triqs/conventions.rst", "documentation/manual/triqs/det_manip/contents.rst", "documentation/manual/triqs/det_manip/det_manip.rst", "documentation/manual/triqs/det_manip/implementation_notes.rst", "documentation/manual/triqs/gfs/basic_notions/contents.rst", "documentation/manual/triqs/gfs/c++/clef.rst", "documentation/manual/triqs/gfs/c++/concepts.rst", "documentation/manual/triqs/gfs/c++/contents.rst", "documentation/manual/triqs/gfs/c++/fourier.rst", "documentation/manual/triqs/gfs/c++/fourier_impl_notes.rst", "documentation/manual/triqs/gfs/c++/gf_and_view.rst", "documentation/manual/triqs/gfs/c++/gf_assign.rst", "documentation/manual/triqs/gfs/c++/gf_block.rst", "documentation/manual/triqs/gfs/c++/gf_call.rst", "documentation/manual/triqs/gfs/c++/gf_constructors.rst", "documentation/manual/triqs/gfs/c++/gf_data.rst", "documentation/manual/triqs/gfs/c++/gf_imfreq.rst", "documentation/manual/triqs/gfs/c++/gf_imtime.rst", "documentation/manual/triqs/gfs/c++/gf_legendre.rst", "documentation/manual/triqs/gfs/c++/gf_misc.rst", "documentation/manual/triqs/gfs/c++/gf_part_eval_curry.rst", "documentation/manual/triqs/gfs/c++/gf_product.rst", "documentation/manual/triqs/gfs/c++/gf_refreq.rst", "documentation/manual/triqs/gfs/c++/gf_reinterpret.rst", "documentation/manual/triqs/gfs/c++/gf_retime.rst", "documentation/manual/triqs/gfs/c++/gf_special.rst", "documentation/manual/triqs/gfs/c++/gf_subscript.rst", "documentation/manual/triqs/gfs/c++/implementation_notes.rst", "documentation/manual/triqs/gfs/c++/matsubara_freq_mesh.rst", "documentation/manual/triqs/gfs/c++/matsubara_imtime.rst", "documentation/manual/triqs/gfs/c++/tail.rst", "documentation/manual/triqs/gfs/contents.rst", "documentation/manual/triqs/gfs/py/block.rst", "documentation/manual/triqs/gfs/py/block/GfImFreq.rst", "documentation/manual/triqs/gfs/py/block/GfImTime.rst", "documentation/manual/triqs/gfs/py/block/GfLegendre.rst", "documentation/manual/triqs/gfs/py/block/GfReFreq.rst", "documentation/manual/triqs/gfs/py/block/GfReTime.rst", "documentation/manual/triqs/gfs/py/contents.rst", "documentation/manual/triqs/gfs/py/descriptors.rst", "documentation/manual/triqs/gfs/py/full.rst", "documentation/manual/triqs/gfs/py/tail.rst", "documentation/manual/triqs/gfs/py/tools.rst", "documentation/manual/triqs/gfs/py/transforms.rst", "documentation/manual/triqs/hilbert_space/contents.rst", "documentation/manual/triqs/hilbert_space/statevector_concept.rst", "documentation/manual/triqs/lattice_tools/bravais.rst", "documentation/manual/triqs/lattice_tools/contents.rst", "documentation/manual/triqs/lattice_tools/dos.rst", "documentation/manual/triqs/lattice_tools/hilbert.rst", "documentation/manual/triqs/lattice_tools/sumk.rst", "documentation/manual/triqs/lattice_tools/tightbinding.rst", "documentation/manual/triqs/lattice_tools/tightbinding_and_example.rst", "documentation/manual/triqs/mc_tools/concepts.rst", "documentation/manual/triqs/mc_tools/contents.rst", "documentation/manual/triqs/mc_tools/full_ref.rst", "documentation/manual/triqs/mc_tools/ising.rst", "documentation/manual/triqs/mc_tools/loop.rst", "documentation/manual/triqs/mc_tools/random.rst", "documentation/manual/triqs/mc_tools/tutorial.rst", "documentation/manual/triqs/operators/contents.rst", "documentation/manual/triqs/operators/operators.rst", "documentation/manual/triqs/operators/util/U_matrix.rst", "documentation/manual/triqs/operators/util/extractors.rst", "documentation/manual/triqs/operators/util/hamiltonians.rst", "documentation/manual/triqs/operators/util/observables.rst", "documentation/manual/triqs/operators/util/op_struct.rst", "documentation/manual/triqs/plotting_protocols/contents.rst", "documentation/manual/triqs/plotting_protocols/fit/fit.rst", "documentation/manual/triqs/plotting_protocols/plotting/plotting.rst", "documentation/manual/triqs/provenance/contents.rst", "documentation/manual/triqs/random_generator/contents.rst", "documentation/manual/triqs/stat/contents.rst", "documentation/manual/triqs/utilities/contents.rst", "documentation/manual/triqs/utilities/exceptions.rst", "documentation/manual/triqs/utilities/python_include_mess.rst", "documentation/manual/triqs/utilities/tupletools.rst", "documentation/python_api/triqs.atom_diag.rst", "documentation/python_api/triqs.atom_diag.AtomDiag.rst", "documentation/python_api/triqs.atom_diag.atom_diag.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.__init__.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.c_connection.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.c_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_connection.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.energies.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.flatten_subspace_index.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.fock_states.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.fops.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.full_hilbert_space_dim.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_eigenvalue.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dim.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dims.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.gs_energy.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.h_atomic.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.n_subspaces.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.quantum_numbers.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.unitary_matrices.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_state.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_subspace_index.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.__init__.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.c_connection.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.c_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.cdag_connection.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.cdag_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.energies.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.flatten_subspace_index.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.fock_states.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.fops.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.full_hilbert_space_dim.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_eigenvalue.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dim.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dims.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.gs_energy.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.h_atomic.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.n_subspaces.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.quantum_numbers.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.unitary_matrices.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_state.rst", "documentation/python_api/triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_subspace_index.rst", "documentation/python_api/triqs.atom_diag.atom_diag.act.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_density_matrix.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_iw.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_l.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_tau.rst", "documentation/python_api/triqs.atom_diag.atom_diag.atomic_g_w.rst", "documentation/python_api/triqs.atom_diag.atom_diag.partition_function.rst", "documentation/python_api/triqs.atom_diag.atom_diag.quantum_number_eigenvalues.rst", "documentation/python_api/triqs.atom_diag.atom_diag.quantum_number_eigenvalues_checked.rst", "documentation/python_api/triqs.atom_diag.atom_diag.trace_rho_op.rst", "documentation/python_api/triqs.dos.rst", "documentation/python_api/triqs.dos.dos.rst", "documentation/python_api/triqs.dos.dos.DOS.rst", "documentation/python_api/triqs.dos.dos.DOS.__init__.rst", "documentation/python_api/triqs.dos.dos.DOS.copy.rst", "documentation/python_api/triqs.dos.dos.DOS.density.rst", "documentation/python_api/triqs.dos.dos.DOSFromFunction.rst", "documentation/python_api/triqs.dos.dos.DOSFromFunction.__init__.rst", "documentation/python_api/triqs.dos.dos.DOSFromFunction.copy.rst", "documentation/python_api/triqs.dos.dos.DOSFromFunction.density.rst", "documentation/python_api/triqs.dos.dos.dos_from_file.rst", "documentation/python_api/triqs.dos.hilbert_transform.rst", "documentation/python_api/triqs.dos.hilbert_transform.HilbertTransform.rst", "documentation/python_api/triqs.dos.hilbert_transform.HilbertTransform.__init__.rst", "documentation/python_api/triqs.fit.rst", "documentation/python_api/triqs.fit.fit.rst", "documentation/python_api/triqs.fit.fit.Fit.rst", "documentation/python_api/triqs.fit.fit.Fit.__init__.rst", "documentation/python_api/triqs.gf.rst", "documentation/python_api/triqs.gf.backwd_compat.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imfreq.GfImFreq.zero.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_imtime.GfImTime.zero.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_legendre.GfLegendre.zero.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_refreq.GfReFreq.zero.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.__init__.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.conjugate.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.copy.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.copy_from.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.data.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.from_L_G_R.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.imag.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.inverse.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.invert.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.mesh.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.real.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.rebinning_tau.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_fourier.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imfreq.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imtime.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_legendre.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_pade.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_indices.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_rank.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.target_shape.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.tau_L2_norm.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.total_density.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.transpose.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.x_data_view.rst", "documentation/python_api/triqs.gf.backwd_compat.gf_retime.GfReTime.zero.rst", "documentation/python_api/triqs.gf.block2_gf.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.__init__.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.all_indices.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy_from.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.copy_selected_blocks.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.imag.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices1.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.indices2.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.n_blocks.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.real.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.view_selected_blocks.rst", "documentation/python_api/triqs.gf.block2_gf.Block2Gf.zero.rst", "documentation/python_api/triqs.gf.block_gf.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.__init__.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.all_indices.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.beta.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.conjugate.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy_from.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.copy_selected_blocks.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.density.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.imag.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.indices.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.inverse.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.invert.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.load.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.mesh.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.n_blocks.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.real.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.save.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.total_density.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.transpose.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.view_selected_blocks.rst", "documentation/python_api/triqs.gf.block_gf.BlockGf.zero.rst", "documentation/python_api/triqs.gf.block_gf.call_factory_from_dict.rst", "documentation/python_api/triqs.gf.block_gf.fix_gf_struct_type.rst", "documentation/python_api/triqs.gf.descriptor_base.rst", "documentation/python_api/triqs.gf.descriptor_base.Base.rst", "documentation/python_api/triqs.gf.descriptor_base.Base.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.rst", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.BaseBlock.is_block_descriptor.rst", "documentation/python_api/triqs.gf.descriptor_base.Const.rst", "documentation/python_api/triqs.gf.descriptor_base.Const.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.Function.rst", "documentation/python_api/triqs.gf.descriptor_base.Function.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.LazyCTX.rst", "documentation/python_api/triqs.gf.descriptor_base.LazyCTX.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.Omega_.rst", "documentation/python_api/triqs.gf.descriptor_base.Omega_.__init__.rst", "documentation/python_api/triqs.gf.descriptor_base.convert_scalar_to_const.rst", "documentation/python_api/triqs.gf.descriptor_base.is_lazy.rst", "documentation/python_api/triqs.gf.descriptor_base.is_scalar.rst", "documentation/python_api/triqs.gf.descriptors.rst", "documentation/python_api/triqs.gf.descriptors.Flat.rst", "documentation/python_api/triqs.gf.descriptors.Flat.__init__.rst", "documentation/python_api/triqs.gf.descriptors.Fourier.rst", "documentation/python_api/triqs.gf.descriptors.Fourier.__init__.rst", "documentation/python_api/triqs.gf.descriptors.Fourier.is_block_descriptor.rst", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.rst", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.__init__.rst", "documentation/python_api/triqs.gf.descriptors.LegendreToMatsubara.is_block_descriptor.rst", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.rst", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.__init__.rst", "documentation/python_api/triqs.gf.descriptors.MatsubaraToLegendre.is_block_descriptor.rst", "documentation/python_api/triqs.gf.descriptors.OneFermionInTime.rst", "documentation/python_api/triqs.gf.descriptors.OneFermionInTime.__init__.rst", "documentation/python_api/triqs.gf.descriptors.SemiCircular.rst", "documentation/python_api/triqs.gf.descriptors.SemiCircular.__init__.rst", "documentation/python_api/triqs.gf.descriptors.Wilson.rst", "documentation/python_api/triqs.gf.descriptors.Wilson.__init__.rst", "documentation/python_api/triqs.gf.descriptors.semi.rst", "documentation/python_api/triqs.gf.dlr_crm_dyson_solver.rst", "documentation/python_api/triqs.gf.dlr_crm_dyson_solver.minimize_dyson.rst", "documentation/python_api/triqs.gf.gf.rst", "documentation/python_api/triqs.gf.gf.AddMethod.rst", "documentation/python_api/triqs.gf.gf.AddMethod.__init__.rst", "documentation/python_api/triqs.gf.gf.AddMethod.mro.rst", "documentation/python_api/triqs.gf.gf.CallProxyNone.rst", "documentation/python_api/triqs.gf.gf.CallProxyNone.__init__.rst", "documentation/python_api/triqs.gf.gf.Gf.rst", "documentation/python_api/triqs.gf.gf.Gf.__init__.rst", "documentation/python_api/triqs.gf.gf.Gf.conjugate.rst", "documentation/python_api/triqs.gf.gf.Gf.copy.rst", "documentation/python_api/triqs.gf.gf.Gf.copy_from.rst", "documentation/python_api/triqs.gf.gf.Gf.data.rst", "documentation/python_api/triqs.gf.gf.Gf.density.rst", "documentation/python_api/triqs.gf.gf.Gf.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.gf.Gf.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.gf.Gf.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.gf.Gf.fit_tail.rst", "documentation/python_api/triqs.gf.gf.Gf.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.gf.Gf.from_L_G_R.rst", "documentation/python_api/triqs.gf.gf.Gf.imag.rst", "documentation/python_api/triqs.gf.gf.Gf.indices.rst", "documentation/python_api/triqs.gf.gf.Gf.inverse.rst", "documentation/python_api/triqs.gf.gf.Gf.invert.rst", "documentation/python_api/triqs.gf.gf.Gf.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.gf.Gf.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.gf.Gf.mesh.rst", "documentation/python_api/triqs.gf.gf.Gf.rank.rst", "documentation/python_api/triqs.gf.gf.Gf.real.rst", "documentation/python_api/triqs.gf.gf.Gf.rebinning_tau.rst", "documentation/python_api/triqs.gf.gf.Gf.replace_by_tail.rst", "documentation/python_api/triqs.gf.gf.Gf.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_fourier.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_imfreq.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_imtime.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_legendre.rst", "documentation/python_api/triqs.gf.gf.Gf.set_from_pade.rst", "documentation/python_api/triqs.gf.gf.Gf.target_indices.rst", "documentation/python_api/triqs.gf.gf.Gf.target_rank.rst", "documentation/python_api/triqs.gf.gf.Gf.target_shape.rst", "documentation/python_api/triqs.gf.gf.Gf.tau_L2_norm.rst", "documentation/python_api/triqs.gf.gf.Gf.total_density.rst", "documentation/python_api/triqs.gf.gf.Gf.transpose.rst", "documentation/python_api/triqs.gf.gf.Gf.x_data_view.rst", "documentation/python_api/triqs.gf.gf.Gf.zero.rst", "documentation/python_api/triqs.gf.gf.Idx.rst", "documentation/python_api/triqs.gf.gf.Idx.__init__.rst", "documentation/python_api/triqs.gf.gf.add_method_helper.rst", "documentation/python_api/triqs.gf.gf.bckwd.rst", "documentation/python_api/triqs.gf.gf.call_factory_from_dict.rst", "documentation/python_api/triqs.gf.gf_factories.rst", "documentation/python_api/triqs.gf.gf_factories.fit_gf_dlr.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr_imfreq.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_dlr_imtime.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_from_fourier.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_imfreq.rst", "documentation/python_api/triqs.gf.gf_factories.make_gf_imtime.rst", "documentation/python_api/triqs.gf.gf_factories.make_hermitian.rst", "documentation/python_api/triqs.gf.gf_factories.make_real_in_tau.rst", "documentation/python_api/triqs.gf.gf_fnt.rst", "documentation/python_api/triqs.gf.gf_fnt.density.rst", "documentation/python_api/triqs.gf.gf_fnt.enforce_discontinuity.rst", "documentation/python_api/triqs.gf.gf_fnt.fit_hermitian_tail.rst", "documentation/python_api/triqs.gf.gf_fnt.fit_hermitian_tail_on_window.rst", "documentation/python_api/triqs.gf.gf_fnt.fit_tail.rst", "documentation/python_api/triqs.gf.gf_fnt.fit_tail_on_window.rst", "documentation/python_api/triqs.gf.gf_fnt.is_gf_hermitian.rst", "documentation/python_api/triqs.gf.gf_fnt.is_gf_real_in_tau.rst", "documentation/python_api/triqs.gf.gf_fnt.rebinning_tau.rst", "documentation/python_api/triqs.gf.gf_fnt.replace_by_tail.rst", "documentation/python_api/triqs.gf.gf_fnt.replace_by_tail_in_fit_window.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_fourier.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_imfreq.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_imtime.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_legendre.rst", "documentation/python_api/triqs.gf.gf_fnt.set_from_pade.rst", "documentation/python_api/triqs.gf.gf_fnt.tau_L2_norm.rst", "documentation/python_api/triqs.gf.lazy_expressions.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.__init__.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.copy.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.get_terminal.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.is_terminal.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExpr.set_from.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExprTerminal.rst", "documentation/python_api/triqs.gf.lazy_expressions.LazyExprTerminal.__init__.rst", "documentation/python_api/triqs.gf.lazy_expressions.all_terminals.rst", "documentation/python_api/triqs.gf.lazy_expressions.eval_expr.rst", "documentation/python_api/triqs.gf.lazy_expressions.eval_expr_with_context.rst", "documentation/python_api/triqs.gf.lazy_expressions.lazy_function.rst", "documentation/python_api/triqs.gf.lazy_expressions.make_lazy.rst", "documentation/python_api/triqs.gf.lazy_expressions.transform.rst", "documentation/python_api/triqs.gf.map_block.rst", "documentation/python_api/triqs.gf.matsubara_freq.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.__init__.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.imag.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.index.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.real.rst", "documentation/python_api/triqs.gf.matsubara_freq.MatsubaraFreq.value.rst", "documentation/python_api/triqs.gf.mesh_point.rst", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.rst", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.__init__.rst", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.imag.rst", "documentation/python_api/triqs.gf.mesh_point.MeshPoint.real.rst", "documentation/python_api/triqs.gf.mesh_point.MeshValueGenerator.rst", "documentation/python_api/triqs.gf.mesh_point.MeshValueGenerator.__init__.rst", "documentation/python_api/triqs.gf.mesh_product.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.__init__.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.components.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.copy.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.copy_from.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.rank.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.size_of_components.rst", "documentation/python_api/triqs.gf.mesh_product.MeshProduct.to_data_index.rst", "documentation/python_api/triqs.gf.mesh_product.call_factory_from_dict.rst", "documentation/python_api/triqs.gf.meshes.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.bz.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.closest_index.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.dims.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.units.rst", "documentation/python_api/triqs.gf.meshes.MeshBrZone.values.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.dims.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.lattice.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.units.rst", "documentation/python_api/triqs.gf.meshes.MeshCycLat.values.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.eps.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.values.rst", "documentation/python_api/triqs.gf.meshes.MeshDLR.w_max.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.eps.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.values.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImFreq.w_max.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.eps.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.values.rst", "documentation/python_api/triqs.gf.meshes.MeshDLRImTime.w_max.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.first_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.last_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.n_iw.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.positive_only.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.set_tail_fit_parameters.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshImFreq.values.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshImTime.values.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.beta.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.statistic.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshLegendre.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.delta.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.values.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.w_max.rst", "documentation/python_api/triqs.gf.meshes.MeshReFreq.w_min.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.__init__.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.copy.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.copy_from.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.delta.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.mesh_hash.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.t_max.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.t_min.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_data_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_index.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.to_value.rst", "documentation/python_api/triqs.gf.meshes.MeshReTime.values.rst", "documentation/python_api/triqs.gf.meshes.make_adjoint_mesh.rst", "documentation/python_api/triqs.gf.plot.rst", "documentation/python_api/triqs.gf.plot.bz.rst", "documentation/python_api/triqs.gf.plot.bz.dist.rst", "documentation/python_api/triqs.gf.plot.bz.generate_points.rst", "documentation/python_api/triqs.gf.plot.bz.generate_points_on_path.rst", "documentation/python_api/triqs.gf.plot.bz.length.rst", "documentation/python_api/triqs.gf.plot.bz.make_plottable.rst", "documentation/python_api/triqs.gf.plot.bz.plot.rst", "documentation/python_api/triqs.gf.plot.bz.slice_on_path.rst", "documentation/python_api/triqs.gf.plot.bz_x_x.rst", "documentation/python_api/triqs.gf.plot.bz_x_x.plot.rst", "documentation/python_api/triqs.gf.plot.bz_x_x.plottable_slice_along_path.rst", "documentation/python_api/triqs.gf.plot.dispatcher.rst", "documentation/python_api/triqs.gf.plot.one_var.rst", "documentation/python_api/triqs.gf.plot.one_var.dlr_imfreq.rst", "documentation/python_api/triqs.gf.plot.one_var.dlr_imtime.rst", "documentation/python_api/triqs.gf.plot.one_var.imfreq.rst", "documentation/python_api/triqs.gf.plot.one_var.imtime.rst", "documentation/python_api/triqs.gf.plot.one_var.legendre.rst", "documentation/python_api/triqs.gf.plot.one_var.refreq.rst", "documentation/python_api/triqs.gf.plot.one_var.retime.rst", "documentation/python_api/triqs.gf.plot.plot_base.rst", "documentation/python_api/triqs.gf.plot.plot_base.plot_base.rst", "documentation/python_api/triqs.gf.plot.select_indices.rst", "documentation/python_api/triqs.gf.plot.select_indices.closest_point_in_line.rst", "documentation/python_api/triqs.gf.plot.select_indices.closest_to.rst", "documentation/python_api/triqs.gf.plot.select_indices.dist.rst", "documentation/python_api/triqs.gf.plot.select_indices.pick_selection_vec.rst", "documentation/python_api/triqs.gf.plot.select_indices.select_path_indices.rst", "documentation/python_api/triqs.gf.tools.rst", "documentation/python_api/triqs.gf.tools.conjugate.rst", "documentation/python_api/triqs.gf.tools.delta.rst", "documentation/python_api/triqs.gf.tools.discretize_bath.rst", "documentation/python_api/triqs.gf.tools.dyson.rst", "documentation/python_api/triqs.gf.tools.fit_legendre.rst", "documentation/python_api/triqs.gf.tools.inverse.rst", "documentation/python_api/triqs.gf.tools.make_delta.rst", "documentation/python_api/triqs.gf.tools.make_zero_tail.rst", "documentation/python_api/triqs.gf.tools.read_gf_from_txt.rst", "documentation/python_api/triqs.gf.tools.transpose.rst", "documentation/python_api/triqs.gf.tools.write_gf_to_txt.rst", "documentation/python_api/triqs.gf.wrapped_aux.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.rst", "documentation/python_api/triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.__init__.rst", "documentation/python_api/triqs.gf.wrapped_aux.set_from_gf_data_mul_LR.rst", "documentation/python_api/triqs.lattice.rst", "documentation/python_api/triqs.lattice.bz_patch.rst", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.rst", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.__init__.rst", "documentation/python_api/triqs.lattice.bz_patch.BZPatch.dos.rst", "documentation/python_api/triqs.lattice.lattice_tools.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.__init__.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.lattice_to_real_coordinates.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.n_orbitals.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.ndim.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.orbital_names.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.orbital_positions.rst", "documentation/python_api/triqs.lattice.lattice_tools.BravaisLattice.units.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.__init__.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.lattice.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.ndim.rst", "documentation/python_api/triqs.lattice.lattice_tools.BrillouinZone.units.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.__init__.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.dispersion.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.displ_vec.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.fourier.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.lattice.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.lattice_to_real_coordinates.rst", "documentation/python_api/triqs.lattice.lattice_tools.TightBinding.overlap_mat_vec.rst", "documentation/python_api/triqs.lattice.lattice_tools.dos.rst", "documentation/python_api/triqs.lattice.lattice_tools.dos_patch.rst", "documentation/python_api/triqs.lattice.point.rst", "documentation/python_api/triqs.lattice.point.LatticePoint.rst", "documentation/python_api/triqs.lattice.point.LatticePoint.__init__.rst", "documentation/python_api/triqs.lattice.point.LatticePoint.value.rst", "documentation/python_api/triqs.lattice.super_lattice.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.__init__.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_L_to_SL.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_SL_to_L.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.cluster_sites.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.dispersion.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.fold.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.fourier.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.get_kmesh.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.get_rmesh.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.hoppings.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.lattice_to_real_coordinates.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.n_orbitals.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.ndim.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.orbital_names.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.orbital_positions.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.pack_index_site_orbital.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.units.rst", "documentation/python_api/triqs.lattice.super_lattice.TBSuperLattice.unpack_index_site_orbital.rst", "documentation/python_api/triqs.lattice.tight_binding.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.__init__.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.dispersion.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.fourier.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.get_kmesh.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.get_rmesh.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.hoppings.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.lattice_to_real_coordinates.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.n_orbitals.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.ndim.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.orbital_names.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.orbital_positions.rst", "documentation/python_api/triqs.lattice.tight_binding.TBLattice.units.rst", "documentation/python_api/triqs.lattice.tight_binding.dos.rst", "documentation/python_api/triqs.lattice.tight_binding.dos_patch.rst", "documentation/python_api/triqs.lattice.utils.rst", "documentation/python_api/triqs.lattice.utils.TB_from_pythTB.rst", "documentation/python_api/triqs.lattice.utils.TB_from_wannier90.rst", "documentation/python_api/triqs.lattice.utils.TB_to_sympy.rst", "documentation/python_api/triqs.lattice.utils.extend_wannier90_to_spin.rst", "documentation/python_api/triqs.lattice.utils.k_space_path.rst", "documentation/python_api/triqs.lattice.utils.parse_hopping_from_wannier90_hr_dat.rst", "documentation/python_api/triqs.lattice.utils.parse_lattice_vectors_from_wannier90_wout.rst", "documentation/python_api/triqs.operators.rst", "documentation/python_api/triqs.operators.operators.rst", "documentation/python_api/triqs.operators.operators.Operator.rst", "documentation/python_api/triqs.operators.operators.Operator.__init__.rst", "documentation/python_api/triqs.operators.operators.Operator.imag.rst", "documentation/python_api/triqs.operators.operators.Operator.is_zero.rst", "documentation/python_api/triqs.operators.operators.Operator.real.rst", "documentation/python_api/triqs.operators.operators.c.rst", "documentation/python_api/triqs.operators.operators.c_dag.rst", "documentation/python_api/triqs.operators.operators.dagger.rst", "documentation/python_api/triqs.operators.operators.is_op_hermitian.rst", "documentation/python_api/triqs.operators.operators.n.rst", "documentation/python_api/triqs.operators.util.rst", "documentation/python_api/triqs.operators.util.U_matrix.rst", "documentation/python_api/triqs.operators.util.U_matrix.U_J_to_radial_integrals.rst", "documentation/python_api/triqs.operators.util.U_matrix.U_matrix_kanamori.rst", "documentation/python_api/triqs.operators.util.U_matrix.U_matrix_slater.rst", "documentation/python_api/triqs.operators.util.U_matrix.angular_matrix_element.rst", "documentation/python_api/triqs.operators.util.U_matrix.clebsch_gordan.rst", "documentation/python_api/triqs.operators.util.U_matrix.cubic_names.rst", "documentation/python_api/triqs.operators.util.U_matrix.eg_submatrix.rst", "documentation/python_api/triqs.operators.util.U_matrix.radial_integrals_to_U_J.rst", "documentation/python_api/triqs.operators.util.U_matrix.reduce_4index_to_2index.rst", "documentation/python_api/triqs.operators.util.U_matrix.spherical_to_cubic.rst", "documentation/python_api/triqs.operators.util.U_matrix.subarray.rst", "documentation/python_api/triqs.operators.util.U_matrix.t2g_submatrix.rst", "documentation/python_api/triqs.operators.util.U_matrix.three_j_symbol.rst", "documentation/python_api/triqs.operators.util.U_matrix.transform_U_matrix.rst", "documentation/python_api/triqs.operators.util.extractors.rst", "documentation/python_api/triqs.operators.util.extractors.block_matrix_from_op.rst", "documentation/python_api/triqs.operators.util.extractors.dict_to_matrix.rst", "documentation/python_api/triqs.operators.util.extractors.extract_U_dict2.rst", "documentation/python_api/triqs.operators.util.extractors.extract_U_dict4.rst", "documentation/python_api/triqs.operators.util.extractors.extract_h_dict.rst", "documentation/python_api/triqs.operators.util.extractors.op_from_block_matrix.rst", "documentation/python_api/triqs.operators.util.extractors.quadratic_terms.rst", "documentation/python_api/triqs.operators.util.extractors.quartic_terms.rst", "documentation/python_api/triqs.operators.util.hamiltonians.rst", "documentation/python_api/triqs.operators.util.hamiltonians.backward_compat.rst", "documentation/python_api/triqs.operators.util.hamiltonians.diagonal_part.rst", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_density.rst", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_kanamori.rst", "documentation/python_api/triqs.operators.util.hamiltonians.h_int_slater.rst", "documentation/python_api/triqs.operators.util.hamiltonians.make_operator_real.rst", "documentation/python_api/triqs.operators.util.observables.rst", "documentation/python_api/triqs.operators.util.observables.L2_op.rst", "documentation/python_api/triqs.operators.util.observables.LS_op.rst", "documentation/python_api/triqs.operators.util.observables.L_op.rst", "documentation/python_api/triqs.operators.util.observables.N_op.rst", "documentation/python_api/triqs.operators.util.observables.S2_op.rst", "documentation/python_api/triqs.operators.util.observables.S_op.rst", "documentation/python_api/triqs.operators.util.observables.check_backward_compat.rst", "documentation/python_api/triqs.operators.util.op_struct.rst", "documentation/python_api/triqs.operators.util.op_struct.get_mkind.rst", "documentation/python_api/triqs.operators.util.op_struct.set_operator_structure.rst", "documentation/python_api/triqs.plot.rst", "documentation/python_api/triqs.plot.mpl_interface.rst", "documentation/python_api/triqs.plot.mpl_interface.oplot.rst", "documentation/python_api/triqs.plot.mpl_interface.oploti.rst", "documentation/python_api/triqs.plot.mpl_interface.oplotr.rst", "documentation/python_api/triqs.plot.mpl_interface.use_amsmath.rst", "documentation/python_api/triqs.plot.protocol.rst", "documentation/python_api/triqs.plot.protocol.clip_array.rst", "documentation/python_api/triqs.plot.protocol.plot_protocol_apply.rst", "documentation/python_api/triqs.random_generator.rst", "documentation/python_api/triqs.random_generator.RandomGenerator.rst", "documentation/python_api/triqs.random_generator.RandomGenerator.__init__.rst", "documentation/python_api/triqs.random_generator.random_generator.rst", "documentation/python_api/triqs.random_generator.random_generator.random_generator_names_list.rst", "documentation/python_api/triqs.stat.rst", "documentation/python_api/triqs.stat.histogram.rst", "documentation/python_api/triqs.stat.histogram.plot.rst", "documentation/python_api/triqs.stat.histograms.rst", "documentation/python_api/triqs.stat.histograms.Histogram.rst", "documentation/python_api/triqs.stat.histograms.Histogram.__init__.rst", "documentation/python_api/triqs.stat.histograms.Histogram.clear.rst", "documentation/python_api/triqs.stat.histograms.Histogram.data.rst", "documentation/python_api/triqs.stat.histograms.Histogram.limits.rst", "documentation/python_api/triqs.stat.histograms.Histogram.mesh_point.rst", "documentation/python_api/triqs.stat.histograms.Histogram.n_data_pts.rst", "documentation/python_api/triqs.stat.histograms.Histogram.n_lost_pts.rst", "documentation/python_api/triqs.stat.histograms.cdf.rst", "documentation/python_api/triqs.stat.histograms.pdf.rst", "documentation/python_api/triqs.sumk.rst", "documentation/python_api/triqs.sumk.sumk_discrete.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.GFBlocIndices.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.__init__.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.n_kpts.rst", "documentation/python_api/triqs.sumk.sumk_discrete.SumkDiscrete.resize_arrays.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.GFBlocIndices.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.Recompute_Grid.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.__init__.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.n_kpts.rst", "documentation/python_api/triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.resize_arrays.rst", "documentation/python_api/triqs.utility.rst", "documentation/python_api/triqs.utility.bound_and_bisect.rst", "documentation/python_api/triqs.utility.bound_and_bisect.bound_and_bisect.rst", "documentation/python_api/triqs.utility.bound_and_bisect.determine_bounds.rst", "documentation/python_api/triqs.utility.capture_stdout.rst", "documentation/python_api/triqs.utility.comparison_tests.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_array_close_to_scalar.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_arrays_are_close.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_block2_gfs_are_close.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_block_gfs_are_close.rst", "documentation/python_api/triqs.utility.comparison_tests.assert_gfs_are_close.rst", "documentation/python_api/triqs.utility.dichotomy.rst", "documentation/python_api/triqs.utility.dichotomy.dichotomy.rst", "documentation/python_api/triqs.utility.dist_on_nodes.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.SleepTime.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.__init__.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodes.run.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.SleepTime.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.__init__.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.finished.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.result.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.run.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.treate.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.SleepTime.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.__init__.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.finished.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.result.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.run.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.the_function.rst", "documentation/python_api/triqs.utility.dist_on_nodes.DistributionOnNodesTest.treate.rst", "documentation/python_api/triqs.utility.h5diff.rst", "documentation/python_api/triqs.utility.h5diff.compare.rst", "documentation/python_api/triqs.utility.h5diff.h5diff.rst", "documentation/python_api/triqs.utility.mpi.rst", "documentation/python_api/triqs.utility.mpi.check_for_mpi.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.all_reduce.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.barrier.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.bcast.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.is_master_node.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.master_gets_host_names.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.myprint_err.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.myprint_out.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.recv.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.report.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.send.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_array.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_inf.rst", "documentation/python_api/triqs.utility.mpi_mpi4py.slice_sup.rst", "documentation/python_api/triqs.utility.mpi_nompi.rst", "documentation/python_api/triqs.utility.mpi_nompi.all_reduce.rst", "documentation/python_api/triqs.utility.mpi_nompi.barrier.rst", "documentation/python_api/triqs.utility.mpi_nompi.bcast.rst", "documentation/python_api/triqs.utility.mpi_nompi.is_master_node.rst", "documentation/python_api/triqs.utility.mpi_nompi.master_gets_host_names.rst", "documentation/python_api/triqs.utility.mpi_nompi.myprint_err.rst", "documentation/python_api/triqs.utility.mpi_nompi.myprint_out.rst", "documentation/python_api/triqs.utility.mpi_nompi.recv.rst", "documentation/python_api/triqs.utility.mpi_nompi.report.rst", "documentation/python_api/triqs.utility.mpi_nompi.send.rst", "documentation/python_api/triqs.utility.mpi_nompi.slice_array.rst", "documentation/python_api/triqs.utility.redirect.rst", "documentation/python_api/triqs.utility.redirect.T.rst", "documentation/python_api/triqs.utility.redirect.T.__init__.rst", "documentation/python_api/triqs.utility.redirect.T.daemon.rst", "documentation/python_api/triqs.utility.redirect.T.getName.rst", "documentation/python_api/triqs.utility.redirect.T.ident.rst", "documentation/python_api/triqs.utility.redirect.T.isDaemon.rst", "documentation/python_api/triqs.utility.redirect.T.is_alive.rst", "documentation/python_api/triqs.utility.redirect.T.join.rst", "documentation/python_api/triqs.utility.redirect.T.name.rst", "documentation/python_api/triqs.utility.redirect.T.native_id.rst", "documentation/python_api/triqs.utility.redirect.T.run.rst", "documentation/python_api/triqs.utility.redirect.T.setDaemon.rst", "documentation/python_api/triqs.utility.redirect.T.setName.rst", "documentation/python_api/triqs.utility.redirect.T.start.rst", "documentation/python_api/triqs.utility.redirect.T.stop.rst", "documentation/python_api/triqs.utility.redirect.start_redirect.rst", "documentation/python_api/triqs.utility.redirect.stop_redirect.rst", "faqs.rst", "index.rst", "install.rst", "installation/clang.rst", "installation/environment_vars.rst", "installation/install_options.rst", "installation/osx_install.rst", "installation/python_virtualenv.rst", "installation/requirements.rst", "installation/ubuntu.rst", "porting_to_triqs3.md", "userguide.rst", "userguide/c++/arrays/tutorial.rst", "userguide/c++/det_manip/tutorial.rst", "userguide/c++/gfs/tutorial.rst", "userguide/c++/hdf5/tutorial.rst", "userguide/c++/using_the_lib/application_structure.rst", "userguide/c++/using_the_lib/contents.rst", "userguide/c++/using_the_lib/profiling.rst", "userguide/c++/using_the_lib/triqs_library.rst", "userguide/python/basics.rst", "userguide/python/dmft_one_page.rst", "userguide/python/external_resources.rst", "userguide/python/model_dmft.rst", "userguide/python/tight_binding.rst", "userguide/python/tutorials/AbinitioDMFT/01-solid_dmft.ipynb", "userguide/python/tutorials/AbinitioDMFT/02-FermiSee.ipynb", "userguide/python/tutorials/AbinitioDMFT/03-phase-diagram-exploration.ipynb", "userguide/python/tutorials/AbinitioDMFT/04-HubbardI-comparison.ipynb", "userguide/python/tutorials/AbinitioDMFT/solutions/01s-solid_dmft.ipynb", "userguide/python/tutorials/AbinitioDMFT/solutions/02s-FermiSee.ipynb", "userguide/python/tutorials/AbinitioDMFT/solutions/03s-phase-diagram-exploration.ipynb", "userguide/python/tutorials/AbinitioDMFT/solutions/04s-HubbardI-comparison.ipynb", "userguide/python/tutorials/Basics/00a-Introducing_the_ipython_notebook.ipynb", "userguide/python/tutorials/Basics/00b-Matplotlib_Examples.ipynb", "userguide/python/tutorials/Basics/01-Greens_functions.ipynb", "userguide/python/tutorials/Basics/02-Archiving_your_data.ipynb", "userguide/python/tutorials/Basics/03-Operators.ipynb", "userguide/python/tutorials/Basics/04-Multivariable_Green_functions.ipynb", "userguide/python/tutorials/Basics/solutions/01s-Greens_functions.ipynb", "userguide/python/tutorials/ModelDMFT/01-IPT_and_DMFT.ipynb", "userguide/python/tutorials/ModelDMFT/02-Introduction_to_the_CTHYB_solver.ipynb", "userguide/python/tutorials/ModelDMFT/03-Single-orbital_Hubbard_with_CTQMC.ipynb", "userguide/python/tutorials/ModelDMFT/04-Two-orbital_Hubbard_with_CTQMC.ipynb", "userguide/python/tutorials/ModelDMFT/05-VBDMFT_Hubbard.ipynb", "userguide/python/tutorials/ModelDMFT/README.md", "userguide/python/tutorials/ModelDMFT/solutions/01s-IPT_and_DMFT.ipynb", "userguide/python/tutorials/ModelDMFT/solutions/03s-Single-orbital_Hubbard_with_CTQMC.ipynb", "userguide/python/tutorials/ModelDMFT/solutions/04s-Two-orbital_Hubbard_with_CTQMC.ipynb", "userguide/python/tutorials/ModelDMFT/solutions/05s-VBDMFT_Hubbard.ipynb", "userguide/python/tutorials/README.md", "userguide/python/tutorials/TwoParticleResponse/01-Fermi_surface_nesting.ipynb", "userguide/python/tutorials/TwoParticleResponse/02-Lindhard.ipynb", "userguide/python/tutorials/TwoParticleResponse/03-RPA.ipynb", "userguide/python/tutorials/TwoParticleResponse/04-TPSC.ipynb", "userguide/python/tutorials/TwoParticleResponse/05-TPSC_MerminWagner.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/01s-Fermi_surface_nesting.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/02s-Lindhard.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/03s-RPA.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/04s-TPSC.ipynb", "userguide/python/tutorials/TwoParticleResponse/solutions/05s-TPSC_MerminWagner.ipynb", "userguide/python/two_particle_response.rst", "versions.rst"], "titles": ["Changelog", "<no title>", "<no title>", "About TRIQS", "Applications based on TRIQS", "Table of contents", "Contributing", "How to contribute to documentation?", "How to make a pull request?", "Documentation", "<no title>", "itertools", "itertools::chunk_range", "itertools::distance", "itertools::enum_iter", "itertools::enum_iter::constructor", "itertools::enum_iter::dereference", "itertools::enum_iter::increment", "itertools::enum_iter::operator==", "itertools::enumerate", "itertools::enumerated", "itertools::enumerated::begin", "itertools::enumerated::cbegin", "itertools::enumerated::cend", "itertools::enumerated::end", "itertools::enumerated::operator==", "itertools::foreach", "itertools::iterator_facade", "itertools::iterator_facade<Iter,Value,std::forward_iterator_tag,Reference,Difference>", "itertools::iterator_facade<Iter,Value,std::forward_iterator_tag,Reference,Difference>::operator*", "itertools::iterator_facade<Iter,Value,std::forward_iterator_tag,Reference,Difference>::operator++", "itertools::iterator_facade<Iter,Value,std::forward_iterator_tag,Reference,Difference>::operator->", "itertools::make_product", "itertools::make_sentinel", "itertools::make_vector_from_range", "itertools::multiplied", "itertools::multiplied::begin", "itertools::multiplied::cbegin", "itertools::multiplied::cend", "itertools::multiplied::constructor", "itertools::multiplied::end", "itertools::multiplied::operator==", "itertools::prod_iter", "itertools::prod_iter::constructor", "itertools::prod_iter::dereference", "itertools::prod_iter::increment", "itertools::prod_iter::operator==", "itertools::product", "itertools::product_range", "itertools::range", "itertools::range::begin", "itertools::range::cbegin", "itertools::range::cend", "itertools::range::constructor", "itertools::range::end", "itertools::range::first", "itertools::range::last", "itertools::range::operator+", "itertools::range::operator<<", "itertools::range::operator==", "itertools::range::size", "itertools::range::step", "itertools::sentinel_t", "itertools::slice", "itertools::sliced", "itertools::sliced::begin", "itertools::sliced::cbegin", "itertools::sliced::cend", "itertools::sliced::end", "itertools::sliced::operator==", "itertools::sliced::size", "itertools::stride", "itertools::stride_iter", "itertools::stride_iter::constructor", "itertools::stride_iter::dereference", "itertools::stride_iter::increment", "itertools::stride_iter::operator==", "itertools::strided", "itertools::strided::begin", "itertools::strided::cbegin", "itertools::strided::cend", "itertools::strided::end", "itertools::strided::operator==", "itertools::transform", "itertools::transform_iter", "itertools::transform_iter::constructor", "itertools::transform_iter::dereference", "itertools::transform_iter::increment", "itertools::transform_iter::operator=", "itertools::transform_iter::operator==", "itertools::transformed", "itertools::transformed::begin", "itertools::transformed::cbegin", "itertools::transformed::cend", "itertools::transformed::end", "itertools::zip", "itertools::zip_iter", "itertools::zip_iter::constructor", "itertools::zip_iter::dereference", "itertools::zip_iter::increment", "itertools::zip_iter::operator==", "itertools::zipped", "itertools::zipped::begin", "itertools::zipped::cbegin", "itertools::zipped::cend", "itertools::zipped::constructor", "itertools::zipped::end", "itertools::zipped::operator==", "mpi", "mpi::all_gather", "mpi::all_reduce", "mpi::all_reduce_in_place", "mpi::broadcast", "mpi::chunk", "mpi::chunk_length", "mpi::communicator", "mpi::communicator::abort", "mpi::communicator::barrier", "mpi::communicator::constructor", "mpi::communicator::get", "mpi::communicator::rank", "mpi::communicator::size", "mpi::communicator::split", "mpi::environment", "mpi::environment::constructor", "mpi::gather", "mpi::get_mpi_type", "mpi::is_initialized", "mpi::lazy", "mpi::lazy::invoke", "mpi::lazy::shape", "mpi::map_C_function", "mpi::map_add", "mpi::monitor", "mpi::monitor::constructor", "mpi::monitor::emergency_occured", "mpi::monitor::finalize_communications", "mpi::monitor::operator=", "mpi::monitor::request_emergency_stop", "mpi::monitor::root_check_nodes_and_bcast", "mpi::mpi_broadcast", "mpi::mpi_gather", "mpi::mpi_reduce", "mpi::mpi_reduce_in_place", "mpi::mpi_scatter", "mpi::mpi_type", "mpi::mpi_type<constT>", "mpi::mpi_type<std::tuple<T\u2026>>", "mpi::mpi_type_from_tie", "mpi::reduce", "mpi::reduce_in_place", "mpi::scatter", "triqs::atom_diag", "triqs::atom_diag::act", "triqs::atom_diag::atom_diag", "triqs::atom_diag::atom_diag::c_connection", "triqs::atom_diag::atom_diag::c_matrix", "triqs::atom_diag::atom_diag::cdag_connection", "triqs::atom_diag::atom_diag::cdag_matrix", "triqs::atom_diag::atom_diag::constructor", "triqs::atom_diag::atom_diag::flatten_subspace_index", "triqs::atom_diag::atom_diag::get_eigensystems", "triqs::atom_diag::atom_diag::get_eigenvalue", "triqs::atom_diag::atom_diag::get_energies", "triqs::atom_diag::atom_diag::get_fock_states", "triqs::atom_diag::atom_diag::get_fops", "triqs::atom_diag::atom_diag::get_full_hilbert_space", "triqs::atom_diag::atom_diag::get_full_hilbert_space_dim", "triqs::atom_diag::atom_diag::get_gs_energy", "triqs::atom_diag::atom_diag::get_h_atomic", "triqs::atom_diag::atom_diag::get_matrix_element_of_monomial", "triqs::atom_diag::atom_diag::get_op_mat", "triqs::atom_diag::atom_diag::get_quantum_numbers", "triqs::atom_diag::atom_diag::get_subspace_dim", "triqs::atom_diag::atom_diag::get_subspace_dims", "triqs::atom_diag::atom_diag::get_unitary_matrices", "triqs::atom_diag::atom_diag::get_unitary_matrix", "triqs::atom_diag::atom_diag::get_vacuum_state", "triqs::atom_diag::atom_diag::get_vacuum_subspace_index", "triqs::atom_diag::atom_diag::index_range_of_subspace", "triqs::atom_diag::atom_diag::n_subspaces", "triqs::atom_diag::atomic_density_matrix", "triqs::atom_diag::atomic_g_iw", "triqs::atom_diag::atomic_g_l", "triqs::atom_diag::atomic_g_lehmann", "triqs::atom_diag::atomic_g_tau", "triqs::atom_diag::atomic_g_w", "triqs::atom_diag::partition_function", "triqs::atom_diag::quantum_number_eigenvalues", "triqs::atom_diag::quantum_number_eigenvalues_checked", "triqs::atom_diag::trace_rho_op", "triqs::det_manip", "triqs::det_manip::det_manip", "triqs::det_manip::det_manip::change_col", "triqs::det_manip::det_manip::change_row", "triqs::det_manip::det_manip::clear", "triqs::det_manip::det_manip::complete_operation", "triqs::det_manip::det_manip::constructor", "triqs::det_manip::det_manip::determinant", "triqs::det_manip::det_manip::get_function", "triqs::det_manip::det_manip::get_n_operations_before_check", "triqs::det_manip::det_manip::get_precision_error", "triqs::det_manip::det_manip::get_precision_warning", "triqs::det_manip::det_manip::get_singular_threshold", "triqs::det_manip::det_manip::get_x", "triqs::det_manip::det_manip::get_x_internal_order", "triqs::det_manip::det_manip::get_y", "triqs::det_manip::det_manip::get_y_internal_order", "triqs::det_manip::det_manip::h5_read", "triqs::det_manip::det_manip::h5_write", "triqs::det_manip::det_manip::insert", "triqs::det_manip::det_manip::insert2", "triqs::det_manip::det_manip::insert2_at_end", "triqs::det_manip::det_manip::insert_at_end", "triqs::det_manip::det_manip::inverse_matrix", "triqs::det_manip::det_manip::inverse_matrix_internal_order", "triqs::det_manip::det_manip::is_singular", "triqs::det_manip::det_manip::matrix", "triqs::det_manip::det_manip::reject_last_try", "triqs::det_manip::det_manip::remove", "triqs::det_manip::det_manip::remove2", "triqs::det_manip::det_manip::remove2_at_end", "triqs::det_manip::det_manip::remove_at_end", "triqs::det_manip::det_manip::reserve", "triqs::det_manip::det_manip::roll_matrix", "triqs::det_manip::det_manip::set_n_operations_before_check", "triqs::det_manip::det_manip::set_precision_error", "triqs::det_manip::det_manip::set_precision_warning", "triqs::det_manip::det_manip::set_singular_threshold", "triqs::det_manip::det_manip::size", "triqs::det_manip::det_manip::swap_col", "triqs::det_manip::det_manip::swap_row", "triqs::det_manip::det_manip::try_change_col", "triqs::det_manip::det_manip::try_change_col_row", "triqs::det_manip::det_manip::try_change_row", "triqs::det_manip::det_manip::try_insert", "triqs::det_manip::det_manip::try_insert_k", "triqs::det_manip::det_manip::try_refill", "triqs::det_manip::det_manip::try_remove", "triqs::det_manip::det_manip::try_remove_k", "triqs::gfs", "triqs::gfs::<deduction guide for block_gf>", "triqs::gfs::block_gf", "triqs::gfs::block_gf::block_names", "triqs::gfs::block_gf::block_sizes", "triqs::gfs::block_gf::constructor", "triqs::gfs::block_gf::data", "triqs::gfs::block_gf::h5_read", "triqs::gfs::block_gf::h5_write", "triqs::gfs::block_gf::hdf5_format", "triqs::gfs::block_gf::operator()", "triqs::gfs::block_gf::operator=", "triqs::gfs::density", "triqs::gfs::fit_gf_dlr", "triqs::gfs::fit_hermitian_tail", "triqs::gfs::fit_tail", "triqs::gfs::flatten_2d", "triqs::gfs::flatten_gf_2d", "triqs::gfs::get_mesh", "triqs::gfs::gf", "triqs::gfs::gf::constructor", "triqs::gfs::gf::data", "triqs::gfs::gf::data_shape", "triqs::gfs::gf::h5_read", "triqs::gfs::gf::h5_write", "triqs::gfs::gf::hdf5_format", "triqs::gfs::gf::mesh", "triqs::gfs::gf::operator<<", "triqs::gfs::gf::operator=", "triqs::gfs::gf::target_indices", "triqs::gfs::gf::target_shape", "triqs::gfs::gf_const_view", "triqs::gfs::gf_const_view::constructor", "triqs::gfs::gf_const_view::data", "triqs::gfs::gf_const_view::data_shape", "triqs::gfs::gf_const_view::h5_read", "triqs::gfs::gf_const_view::h5_write", "triqs::gfs::gf_const_view::hdf5_format", "triqs::gfs::gf_const_view::mesh", "triqs::gfs::gf_const_view::operator<<", "triqs::gfs::gf_const_view::rebind", "triqs::gfs::gf_const_view::target_indices", "triqs::gfs::gf_const_view::target_shape", "triqs::gfs::gf_view", "triqs::gfs::gf_view::constructor", "triqs::gfs::gf_view::data", "triqs::gfs::gf_view::data_shape", "triqs::gfs::gf_view::h5_read", "triqs::gfs::gf_view::h5_write", "triqs::gfs::gf_view::hdf5_format", "triqs::gfs::gf_view::mesh", "triqs::gfs::gf_view::operator<<", "triqs::gfs::gf_view::operator=", "triqs::gfs::gf_view::rebind", "triqs::gfs::gf_view::target_indices", "triqs::gfs::gf_view::target_shape", "triqs::gfs::h5_read_gf_struct", "triqs::gfs::imag", "triqs::gfs::impl_tag", "triqs::gfs::inverse", "triqs::gfs::is_gf_hermitian", "triqs::gfs::is_gf_real", "triqs::gfs::is_gf_real_in_tau", "triqs::gfs::make_block2_gf", "triqs::gfs::make_block_gf", "triqs::gfs::make_block_gf_view", "triqs::gfs::make_gf_dlr", "triqs::gfs::make_gf_dlr_imfreq", "triqs::gfs::make_gf_dlr_imtime", "triqs::gfs::make_gf_from_fourier", "triqs::gfs::make_gf_from_inverse_fourier", "triqs::gfs::make_gf_from_real_gf", "triqs::gfs::make_gf_imfreq", "triqs::gfs::make_gf_imtime", "triqs::gfs::make_hermitian", "triqs::gfs::make_real_in_tau", "triqs::gfs::make_zero_tail", "triqs::gfs::mpi_reduce", "triqs::gfs::positive_freq_view", "triqs::gfs::real", "triqs::gfs::reinterpret_scalar_valued_gf_as_matrix_valued", "triqs::gfs::tau_L2_norm", "triqs::gfs::unflatten_2d", "triqs::gfs::unflatten_gf_2d", "triqs::hilbert_space", "triqs::hilbert_space::fundamental_operator_set", "triqs::hilbert_space::fundamental_operator_set::begin", "triqs::hilbert_space::fundamental_operator_set::cbegin", "triqs::hilbert_space::fundamental_operator_set::cend", "triqs::hilbert_space::fundamental_operator_set::constructor", "triqs::hilbert_space::fundamental_operator_set::data", "triqs::hilbert_space::fundamental_operator_set::end", "triqs::hilbert_space::fundamental_operator_set::h5_read_attribute", "triqs::hilbert_space::fundamental_operator_set::h5_write_attribute", "triqs::hilbert_space::fundamental_operator_set::has_indices", "triqs::hilbert_space::fundamental_operator_set::insert", "triqs::hilbert_space::fundamental_operator_set::insert_from_indices_t", "triqs::hilbert_space::fundamental_operator_set::operator==", "triqs::hilbert_space::fundamental_operator_set::operator[]", "triqs::hilbert_space::fundamental_operator_set::size", "triqs::hilbert_space::hilbert_space", "triqs::hilbert_space::hilbert_space::constructor", "triqs::hilbert_space::hilbert_space::get_fock_state", "triqs::hilbert_space::hilbert_space::get_state_index", "triqs::hilbert_space::hilbert_space::h5_read", "triqs::hilbert_space::hilbert_space::h5_write", "triqs::hilbert_space::hilbert_space::has_state", "triqs::hilbert_space::hilbert_space::hdf5_format", "triqs::hilbert_space::hilbert_space::operator!=", "triqs::hilbert_space::hilbert_space::operator==", "triqs::hilbert_space::hilbert_space::size", "triqs::hilbert_space::imperative_operator", "triqs::hilbert_space::imperative_operator::constructor", "triqs::hilbert_space::imperative_operator::is_empty", "triqs::hilbert_space::imperative_operator::operator()", "triqs::hilbert_space::imperative_operator::update", "triqs::hilbert_space::make_zero_state", "triqs::hilbert_space::space_partition", "triqs::hilbert_space::space_partition::constructor", "triqs::hilbert_space::space_partition::find_mappings", "triqs::hilbert_space::space_partition::foreach", "triqs::hilbert_space::space_partition::get_matrix_elements", "triqs::hilbert_space::space_partition::lookup_basis_state", "triqs::hilbert_space::space_partition::merge_subspaces", "triqs::hilbert_space::space_partition::n_subspaces", "triqs::hilbert_space::state", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::amplitudes", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::constructor", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::dot_product", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::foreach", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::get_hilbert", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::operator()", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::operator*=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::operator+=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::operator-=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::set_hilbert", "triqs::hilbert_space::state<HilbertSpace,ScalarType,false>::size", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::constructor", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::dot_product", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::foreach", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::get_hilbert", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::nterms", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::operator()", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::operator*=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::operator+=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::operator-=", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::set_hilbert", "triqs::hilbert_space::state<HilbertSpace,ScalarType,true>::size", "triqs::hilbert_space::sub_hilbert_space", "triqs::hilbert_space::sub_hilbert_space::add_fock_state", "triqs::hilbert_space::sub_hilbert_space::constructor", "triqs::hilbert_space::sub_hilbert_space::get_all_fock_states", "triqs::hilbert_space::sub_hilbert_space::get_fock_state", "triqs::hilbert_space::sub_hilbert_space::get_index", "triqs::hilbert_space::sub_hilbert_space::get_state_index", "triqs::hilbert_space::sub_hilbert_space::h5_read", "triqs::hilbert_space::sub_hilbert_space::h5_write", "triqs::hilbert_space::sub_hilbert_space::has_state", "triqs::hilbert_space::sub_hilbert_space::hdf5_format", "triqs::hilbert_space::sub_hilbert_space::operator!=", "triqs::hilbert_space::sub_hilbert_space::operator==", "triqs::hilbert_space::sub_hilbert_space::set_index", "triqs::hilbert_space::sub_hilbert_space::size", "triqs::mc_tools", "triqs::mc_tools::mc_generic", "triqs::mc_tools::mc_generic::accumulate", "triqs::mc_tools::mc_generic::add_measure", "triqs::mc_tools::mc_generic::add_measure_aux", "triqs::mc_tools::mc_generic::add_move", "triqs::mc_tools::mc_generic::clear_measures", "triqs::mc_tools::mc_generic::collect_results", "triqs::mc_tools::mc_generic::constructor", "triqs::mc_tools::mc_generic::get_acceptance_rates", "triqs::mc_tools::mc_generic::get_accumulation_time", "triqs::mc_tools::mc_generic::get_accumulation_time_HHMMSS", "triqs::mc_tools::mc_generic::get_config_id", "triqs::mc_tools::mc_generic::get_current_cycle_number", "triqs::mc_tools::mc_generic::get_duration", "triqs::mc_tools::mc_generic::get_percent", "triqs::mc_tools::mc_generic::get_rng", "triqs::mc_tools::mc_generic::get_total_time", "triqs::mc_tools::mc_generic::get_warmup_time", "triqs::mc_tools::mc_generic::get_warmup_time_HHMMSS", "triqs::mc_tools::mc_generic::h5_read", "triqs::mc_tools::mc_generic::h5_write", "triqs::mc_tools::mc_generic::rm_measure", "triqs::mc_tools::mc_generic::run", "triqs::mc_tools::mc_generic::set_after_cycle_duty", "triqs::mc_tools::mc_generic::warmup", "triqs::mc_tools::mc_generic::warmup_and_accumulate", "triqs::mc_tools::move_set", "triqs::mc_tools::move_set::accept", "triqs::mc_tools::move_set::add", "triqs::mc_tools::move_set::attempt", "triqs::mc_tools::move_set::clear_statistics", "triqs::mc_tools::move_set::collect_statistics", "triqs::mc_tools::move_set::constructor", "triqs::mc_tools::move_set::get_acceptance_rates", "triqs::mc_tools::move_set::get_statistics", "triqs::mc_tools::move_set::reject", "triqs::mc_tools::random_generator", "triqs::mc_tools::random_generator::constructor", "triqs::mc_tools::random_generator::name", "triqs::mc_tools::random_generator::operator()", "triqs::mc_tools::random_generator::preview", "triqs::mc_tools::random_generator_names", "triqs::stat", "triqs::stat::accumulator", "triqs::stat::accumulator::compress_linear_bins", "triqs::stat::accumulator::constructor", "triqs::stat::accumulator::data_input_count", "triqs::stat::accumulator::lin_bin_capacity", "triqs::stat::accumulator::linear_bins", "triqs::stat::accumulator::log_bin_errors", "triqs::stat::accumulator::log_bin_errors_all_reduce", "triqs::stat::accumulator::n_lin_bins", "triqs::stat::accumulator::n_lin_bins_max", "triqs::stat::accumulator::n_log_bins", "triqs::stat::accumulator::n_log_bins_max", "triqs::stat::accumulator::operator<<", "triqs::stat::cdf", "triqs::stat::histogram", "triqs::stat::histogram::clear", "triqs::stat::histogram::constructor", "triqs::stat::histogram::data", "triqs::stat::histogram::h5_read", "triqs::stat::histogram::h5_write", "triqs::stat::histogram::hdf5_format", "triqs::stat::histogram::limits", "triqs::stat::histogram::mesh_point", "triqs::stat::histogram::mpi_broadcast", "triqs::stat::histogram::mpi_reduce", "triqs::stat::histogram::n_data_pts", "triqs::stat::histogram::n_lost_pts", "triqs::stat::histogram::operator+", "triqs::stat::histogram::operator<<", "triqs::stat::histogram::operator==", "triqs::stat::histogram::size", "triqs::stat::jackknife", "triqs::stat::jackknife_mpi", "triqs::stat::mean", "triqs::stat::mean_and_err", "triqs::stat::mean_and_err_mpi", "triqs::stat::mean_mpi", "triqs::stat::pdf", "triqs::stat::tau_estimate_from_errors", "<no title>", "The cfunction class", "The class_ class", "Cpp2Py: a C++/Python interfacing tool", "Convertion vs wrapping", "The module_ class", "General Principle", "Python API of the desc file", "[triqs/h5] The HDF5 format", "Solution 1. The class provides the transformation into a dict of hdf-compliant objects", "Reference documentation/manual", "triqs/MPI", "[triqs/atom_diag] Lightweight exact diagonalization solver and tools", "Utility functions for atom_diag", "Automatic assignment of containers", "[triqs/clef] Clef: Compile-time lazy expressions and functions", "More complex examples", "A lazy sum", "Evaluating CLEF expressions", "Forming CLEF expressions", "Transform CLEF expressions into functions", "Motivation: a little tour of CLEF", "Overloading functions and methods for CLEF arguments", "Notations and documentation conventions", "Manipulations of determinants", "The det_manip class", "How does it work ?", "Basic notions", "Interaction with CLEF expressions", "Concepts", "C++ documentation", "Fourier transforms", "Fourier: implementation notes", "gf and views", "Assignment", "[block_gf<T>] Block Green functions", "Operator()", "Constructors", "Data access", "[gf<imfreq>] Green function on Matsubara frequencies", "[gf<imtime>] Matsubara imaginary time", "[gf<legendre>] Legendre representation", "Misc", "Partial evaluation", "[gf<prod<X,Y,\u2026>>] Multiple variables", "[gf<refreq>] Real frequencies", "Target reinterpretation", "[gf<retime>] Real time", "Specializations", "Operator []", "Implementation notes", "mesh::imfreq", "mesh::imtime", "High-Frequency moments of the Green\u2019s function", "Green\u2019s functions", "The blocks: matrix-valued Green\u2019s functions", "[GfImFreq] Matsubara Green\u2019s function in imaginary frequencies", "[GfImTime] Matsubara Green\u2019s function in imaginary time", "[GfLegendre] Matsubara Green\u2019s function with Legendre polynomials", "[GfReFreq] Retarded Green\u2019s function in real frequencies", "[GfReTime] Retarded Green\u2019s function in real time", "Python documentation", "Descriptors", "BlockGf: The complete Green\u2019s function", "High-Frequency moments of the Green\u2019s function", "Tools for GFs", "Fourier and Legendre to Matsubara transforms", "[triqs/hilbert_space] Many-body states and Hilbert spaces", "StateVector Concept", "Bravais Lattice", "[triqs/lattice] Lattice tools", "Density of state and related tools", "Hilbert Transform", "Sums over Brillouin zone", "Free Fermions with tight binding hopping", "The BravaisLattice and TightBinding classes: definitions and example", "Concepts", "Tools for Monte Carlo", "Full documentation/manual/triqs", "Example: the Ising chain in a magnetic field", "Introduction", "Random number generator", "Tutorial", "[triqs/operators] Second-quantization operators and many-body Hamiltonians", "Second-quantization operators", "U matrix construction", "Coefficient extraction", "Hamiltonians", "Observables", "Helper functions", "Plotting protocols", "Fitting data", "Plotting TRIQS objects", "Reproducibility, provenance", "Random number generators", "[triqs/stat] Statistical Analysis", "[triqs/utility] Utilities: exceptions, tuple-tools, etc.", "1. Exceptions", "3. Python include warnings", "2. Tuple tools", "triqs.atom_diag", "triqs.atom_diag.AtomDiag", "triqs.atom_diag.atom_diag", "triqs.atom_diag.atom_diag.AtomDiagComplex", "triqs.atom_diag.atom_diag.AtomDiagComplex.__init__", "triqs.atom_diag.atom_diag.AtomDiagComplex.c_connection", "triqs.atom_diag.atom_diag.AtomDiagComplex.c_matrix", "triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_connection", "triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_matrix", "triqs.atom_diag.atom_diag.AtomDiagComplex.energies", "triqs.atom_diag.atom_diag.AtomDiagComplex.flatten_subspace_index", "triqs.atom_diag.atom_diag.AtomDiagComplex.fock_states", "triqs.atom_diag.atom_diag.AtomDiagComplex.fops", "triqs.atom_diag.atom_diag.AtomDiagComplex.full_hilbert_space_dim", "triqs.atom_diag.atom_diag.AtomDiagComplex.get_eigenvalue", "triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dim", "triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dims", "triqs.atom_diag.atom_diag.AtomDiagComplex.gs_energy", "triqs.atom_diag.atom_diag.AtomDiagComplex.h_atomic", "triqs.atom_diag.atom_diag.AtomDiagComplex.n_subspaces", "triqs.atom_diag.atom_diag.AtomDiagComplex.quantum_numbers", "triqs.atom_diag.atom_diag.AtomDiagComplex.unitary_matrices", "triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_state", "triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_subspace_index", "triqs.atom_diag.atom_diag.AtomDiagReal", "triqs.atom_diag.atom_diag.AtomDiagReal.__init__", "triqs.atom_diag.atom_diag.AtomDiagReal.c_connection", "triqs.atom_diag.atom_diag.AtomDiagReal.c_matrix", "triqs.atom_diag.atom_diag.AtomDiagReal.cdag_connection", "triqs.atom_diag.atom_diag.AtomDiagReal.cdag_matrix", "triqs.atom_diag.atom_diag.AtomDiagReal.energies", "triqs.atom_diag.atom_diag.AtomDiagReal.flatten_subspace_index", "triqs.atom_diag.atom_diag.AtomDiagReal.fock_states", "triqs.atom_diag.atom_diag.AtomDiagReal.fops", "triqs.atom_diag.atom_diag.AtomDiagReal.full_hilbert_space_dim", "triqs.atom_diag.atom_diag.AtomDiagReal.get_eigenvalue", "triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dim", "triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dims", "triqs.atom_diag.atom_diag.AtomDiagReal.gs_energy", "triqs.atom_diag.atom_diag.AtomDiagReal.h_atomic", "triqs.atom_diag.atom_diag.AtomDiagReal.n_subspaces", "triqs.atom_diag.atom_diag.AtomDiagReal.quantum_numbers", "triqs.atom_diag.atom_diag.AtomDiagReal.unitary_matrices", "triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_state", "triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_subspace_index", "triqs.atom_diag.atom_diag.act", "triqs.atom_diag.atom_diag.atomic_density_matrix", "triqs.atom_diag.atom_diag.atomic_g_iw", "triqs.atom_diag.atom_diag.atomic_g_l", "triqs.atom_diag.atom_diag.atomic_g_tau", "triqs.atom_diag.atom_diag.atomic_g_w", "triqs.atom_diag.atom_diag.partition_function", "triqs.atom_diag.atom_diag.quantum_number_eigenvalues", "triqs.atom_diag.atom_diag.quantum_number_eigenvalues_checked", "triqs.atom_diag.atom_diag.trace_rho_op", "triqs.dos", "triqs.dos.dos", "triqs.dos.dos.DOS", "triqs.dos.dos.DOS.__init__", "triqs.dos.dos.DOS.copy", "triqs.dos.dos.DOS.density", "triqs.dos.dos.DOSFromFunction", "triqs.dos.dos.DOSFromFunction.__init__", "triqs.dos.dos.DOSFromFunction.copy", "triqs.dos.dos.DOSFromFunction.density", "triqs.dos.dos.dos_from_file", "triqs.dos.hilbert_transform", "triqs.dos.hilbert_transform.HilbertTransform", "triqs.dos.hilbert_transform.HilbertTransform.__init__", "triqs.fit", "triqs.fit.fit", "triqs.fit.fit.Fit", "triqs.fit.fit.Fit.__init__", "triqs.gf", "triqs.gf.backwd_compat", "triqs.gf.backwd_compat.gf_imfreq", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.__init__", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.conjugate", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy_from", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.data", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.density", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.enforce_discontinuity", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail_on_window", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.from_L_G_R", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.imag", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.indices", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.inverse", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.invert", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_hermitian", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.mesh", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rank", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.real", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rebinning_tau", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_fourier", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imfreq", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imtime", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_legendre", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_pade", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_indices", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_rank", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_shape", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.tau_L2_norm", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.total_density", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.transpose", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.x_data_view", "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.zero", "triqs.gf.backwd_compat.gf_imtime", "triqs.gf.backwd_compat.gf_imtime.GfImTime", "triqs.gf.backwd_compat.gf_imtime.GfImTime.__init__", "triqs.gf.backwd_compat.gf_imtime.GfImTime.conjugate", "triqs.gf.backwd_compat.gf_imtime.GfImTime.copy", "triqs.gf.backwd_compat.gf_imtime.GfImTime.copy_from", "triqs.gf.backwd_compat.gf_imtime.GfImTime.data", "triqs.gf.backwd_compat.gf_imtime.GfImTime.density", "triqs.gf.backwd_compat.gf_imtime.GfImTime.enforce_discontinuity", "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail", "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail_on_window", "triqs.gf.backwd_compat.gf_imtime.GfImTime.from_L_G_R", "triqs.gf.backwd_compat.gf_imtime.GfImTime.imag", "triqs.gf.backwd_compat.gf_imtime.GfImTime.indices", "triqs.gf.backwd_compat.gf_imtime.GfImTime.inverse", "triqs.gf.backwd_compat.gf_imtime.GfImTime.invert", "triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_hermitian", "triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_imtime.GfImTime.mesh", "triqs.gf.backwd_compat.gf_imtime.GfImTime.rank", "triqs.gf.backwd_compat.gf_imtime.GfImTime.real", "triqs.gf.backwd_compat.gf_imtime.GfImTime.rebinning_tau", "triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail", "triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_fourier", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imfreq", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imtime", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_legendre", "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_pade", "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_indices", "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_rank", "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_shape", "triqs.gf.backwd_compat.gf_imtime.GfImTime.tau_L2_norm", "triqs.gf.backwd_compat.gf_imtime.GfImTime.total_density", "triqs.gf.backwd_compat.gf_imtime.GfImTime.transpose", "triqs.gf.backwd_compat.gf_imtime.GfImTime.x_data_view", "triqs.gf.backwd_compat.gf_imtime.GfImTime.zero", "triqs.gf.backwd_compat.gf_legendre", "triqs.gf.backwd_compat.gf_legendre.GfLegendre", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.__init__", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.conjugate", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy_from", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.data", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.density", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.enforce_discontinuity", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail_on_window", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.from_L_G_R", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.imag", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.indices", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.inverse", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.invert", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_hermitian", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.mesh", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.rank", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.real", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.rebinning_tau", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_fourier", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imfreq", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imtime", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_legendre", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_pade", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_indices", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_rank", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_shape", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.tau_L2_norm", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.total_density", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.transpose", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.x_data_view", "triqs.gf.backwd_compat.gf_legendre.GfLegendre.zero", "triqs.gf.backwd_compat.gf_refreq", "triqs.gf.backwd_compat.gf_refreq.GfReFreq", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.__init__", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.conjugate", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy_from", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.data", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.density", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.enforce_discontinuity", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail_on_window", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.from_L_G_R", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.imag", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.indices", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.inverse", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.invert", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_hermitian", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.mesh", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.rank", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.real", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.rebinning_tau", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_fourier", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imfreq", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imtime", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_legendre", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_pade", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_indices", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_rank", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_shape", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.tau_L2_norm", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.total_density", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.transpose", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.x_data_view", "triqs.gf.backwd_compat.gf_refreq.GfReFreq.zero", "triqs.gf.backwd_compat.gf_retime", "triqs.gf.backwd_compat.gf_retime.GfReTime", "triqs.gf.backwd_compat.gf_retime.GfReTime.__init__", "triqs.gf.backwd_compat.gf_retime.GfReTime.conjugate", "triqs.gf.backwd_compat.gf_retime.GfReTime.copy", "triqs.gf.backwd_compat.gf_retime.GfReTime.copy_from", "triqs.gf.backwd_compat.gf_retime.GfReTime.data", "triqs.gf.backwd_compat.gf_retime.GfReTime.density", "triqs.gf.backwd_compat.gf_retime.GfReTime.enforce_discontinuity", "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail", "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail_on_window", "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail", "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail_on_window", "triqs.gf.backwd_compat.gf_retime.GfReTime.from_L_G_R", "triqs.gf.backwd_compat.gf_retime.GfReTime.imag", "triqs.gf.backwd_compat.gf_retime.GfReTime.indices", "triqs.gf.backwd_compat.gf_retime.GfReTime.inverse", "triqs.gf.backwd_compat.gf_retime.GfReTime.invert", "triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_hermitian", "triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_real_in_tau", "triqs.gf.backwd_compat.gf_retime.GfReTime.mesh", "triqs.gf.backwd_compat.gf_retime.GfReTime.rank", "triqs.gf.backwd_compat.gf_retime.GfReTime.real", "triqs.gf.backwd_compat.gf_retime.GfReTime.rebinning_tau", "triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail", "triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail_in_fit_window", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_fourier", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imfreq", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imtime", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_legendre", "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_pade", "triqs.gf.backwd_compat.gf_retime.GfReTime.target_indices", "triqs.gf.backwd_compat.gf_retime.GfReTime.target_rank", "triqs.gf.backwd_compat.gf_retime.GfReTime.target_shape", "triqs.gf.backwd_compat.gf_retime.GfReTime.tau_L2_norm", "triqs.gf.backwd_compat.gf_retime.GfReTime.total_density", "triqs.gf.backwd_compat.gf_retime.GfReTime.transpose", "triqs.gf.backwd_compat.gf_retime.GfReTime.x_data_view", "triqs.gf.backwd_compat.gf_retime.GfReTime.zero", "triqs.gf.block2_gf", "triqs.gf.block2_gf.Block2Gf", "triqs.gf.block2_gf.Block2Gf.__init__", "triqs.gf.block2_gf.Block2Gf.all_indices", "triqs.gf.block2_gf.Block2Gf.copy", "triqs.gf.block2_gf.Block2Gf.copy_from", "triqs.gf.block2_gf.Block2Gf.copy_selected_blocks", "triqs.gf.block2_gf.Block2Gf.imag", "triqs.gf.block2_gf.Block2Gf.indices", "triqs.gf.block2_gf.Block2Gf.indices1", "triqs.gf.block2_gf.Block2Gf.indices2", "triqs.gf.block2_gf.Block2Gf.n_blocks", "triqs.gf.block2_gf.Block2Gf.real", "triqs.gf.block2_gf.Block2Gf.view_selected_blocks", "triqs.gf.block2_gf.Block2Gf.zero", "triqs.gf.block_gf", "triqs.gf.block_gf.BlockGf", "triqs.gf.block_gf.BlockGf.__init__", "triqs.gf.block_gf.BlockGf.all_indices", "triqs.gf.block_gf.BlockGf.beta", "triqs.gf.block_gf.BlockGf.conjugate", "triqs.gf.block_gf.BlockGf.copy", "triqs.gf.block_gf.BlockGf.copy_from", "triqs.gf.block_gf.BlockGf.copy_selected_blocks", "triqs.gf.block_gf.BlockGf.density", "triqs.gf.block_gf.BlockGf.imag", "triqs.gf.block_gf.BlockGf.indices", "triqs.gf.block_gf.BlockGf.inverse", "triqs.gf.block_gf.BlockGf.invert", "triqs.gf.block_gf.BlockGf.load", "triqs.gf.block_gf.BlockGf.mesh", "triqs.gf.block_gf.BlockGf.n_blocks", "triqs.gf.block_gf.BlockGf.real", "triqs.gf.block_gf.BlockGf.save", "triqs.gf.block_gf.BlockGf.total_density", "triqs.gf.block_gf.BlockGf.transpose", "triqs.gf.block_gf.BlockGf.view_selected_blocks", "triqs.gf.block_gf.BlockGf.zero", "triqs.gf.block_gf.call_factory_from_dict", "triqs.gf.block_gf.fix_gf_struct_type", "triqs.gf.descriptor_base", "triqs.gf.descriptor_base.Base", "triqs.gf.descriptor_base.Base.__init__", "triqs.gf.descriptor_base.BaseBlock", "triqs.gf.descriptor_base.BaseBlock.__init__", "triqs.gf.descriptor_base.BaseBlock.is_block_descriptor", "triqs.gf.descriptor_base.Const", "triqs.gf.descriptor_base.Const.__init__", "triqs.gf.descriptor_base.Function", "triqs.gf.descriptor_base.Function.__init__", "triqs.gf.descriptor_base.LazyCTX", "triqs.gf.descriptor_base.LazyCTX.__init__", "triqs.gf.descriptor_base.Omega_", "triqs.gf.descriptor_base.Omega_.__init__", "triqs.gf.descriptor_base.convert_scalar_to_const", "triqs.gf.descriptor_base.is_lazy", "triqs.gf.descriptor_base.is_scalar", "triqs.gf.descriptors", "triqs.gf.descriptors.Flat", "triqs.gf.descriptors.Flat.__init__", "triqs.gf.descriptors.Fourier", "triqs.gf.descriptors.Fourier.__init__", "triqs.gf.descriptors.Fourier.is_block_descriptor", "triqs.gf.descriptors.LegendreToMatsubara", "triqs.gf.descriptors.LegendreToMatsubara.__init__", "triqs.gf.descriptors.LegendreToMatsubara.is_block_descriptor", "triqs.gf.descriptors.MatsubaraToLegendre", "triqs.gf.descriptors.MatsubaraToLegendre.__init__", "triqs.gf.descriptors.MatsubaraToLegendre.is_block_descriptor", "triqs.gf.descriptors.OneFermionInTime", "triqs.gf.descriptors.OneFermionInTime.__init__", "triqs.gf.descriptors.SemiCircular", "triqs.gf.descriptors.SemiCircular.__init__", "triqs.gf.descriptors.Wilson", "triqs.gf.descriptors.Wilson.__init__", "triqs.gf.descriptors.semi", "triqs.gf.dlr_crm_dyson_solver", "triqs.gf.dlr_crm_dyson_solver.minimize_dyson", "triqs.gf.gf", "triqs.gf.gf.AddMethod", "triqs.gf.gf.AddMethod.__init__", "triqs.gf.gf.AddMethod.mro", "triqs.gf.gf.CallProxyNone", "triqs.gf.gf.CallProxyNone.__init__", "triqs.gf.gf.Gf", "triqs.gf.gf.Gf.__init__", "triqs.gf.gf.Gf.conjugate", "triqs.gf.gf.Gf.copy", "triqs.gf.gf.Gf.copy_from", "triqs.gf.gf.Gf.data", "triqs.gf.gf.Gf.density", "triqs.gf.gf.Gf.enforce_discontinuity", "triqs.gf.gf.Gf.fit_hermitian_tail", "triqs.gf.gf.Gf.fit_hermitian_tail_on_window", "triqs.gf.gf.Gf.fit_tail", "triqs.gf.gf.Gf.fit_tail_on_window", "triqs.gf.gf.Gf.from_L_G_R", "triqs.gf.gf.Gf.imag", "triqs.gf.gf.Gf.indices", "triqs.gf.gf.Gf.inverse", "triqs.gf.gf.Gf.invert", "triqs.gf.gf.Gf.is_gf_hermitian", "triqs.gf.gf.Gf.is_gf_real_in_tau", "triqs.gf.gf.Gf.mesh", "triqs.gf.gf.Gf.rank", "triqs.gf.gf.Gf.real", "triqs.gf.gf.Gf.rebinning_tau", "triqs.gf.gf.Gf.replace_by_tail", "triqs.gf.gf.Gf.replace_by_tail_in_fit_window", "triqs.gf.gf.Gf.set_from_fourier", "triqs.gf.gf.Gf.set_from_imfreq", "triqs.gf.gf.Gf.set_from_imtime", "triqs.gf.gf.Gf.set_from_legendre", "triqs.gf.gf.Gf.set_from_pade", "triqs.gf.gf.Gf.target_indices", "triqs.gf.gf.Gf.target_rank", "triqs.gf.gf.Gf.target_shape", "triqs.gf.gf.Gf.tau_L2_norm", "triqs.gf.gf.Gf.total_density", "triqs.gf.gf.Gf.transpose", "triqs.gf.gf.Gf.x_data_view", "triqs.gf.gf.Gf.zero", "triqs.gf.gf.Idx", "triqs.gf.gf.Idx.__init__", "triqs.gf.gf.add_method_helper", "triqs.gf.gf.bckwd", "triqs.gf.gf.call_factory_from_dict", "triqs.gf.gf_factories", "triqs.gf.gf_factories.fit_gf_dlr", "triqs.gf.gf_factories.make_gf_dlr", "triqs.gf.gf_factories.make_gf_dlr_imfreq", "triqs.gf.gf_factories.make_gf_dlr_imtime", "triqs.gf.gf_factories.make_gf_from_fourier", "triqs.gf.gf_factories.make_gf_imfreq", "triqs.gf.gf_factories.make_gf_imtime", "triqs.gf.gf_factories.make_hermitian", "triqs.gf.gf_factories.make_real_in_tau", "triqs.gf.gf_fnt", "triqs.gf.gf_fnt.density", "triqs.gf.gf_fnt.enforce_discontinuity", "triqs.gf.gf_fnt.fit_hermitian_tail", "triqs.gf.gf_fnt.fit_hermitian_tail_on_window", "triqs.gf.gf_fnt.fit_tail", "triqs.gf.gf_fnt.fit_tail_on_window", "triqs.gf.gf_fnt.is_gf_hermitian", "triqs.gf.gf_fnt.is_gf_real_in_tau", "triqs.gf.gf_fnt.rebinning_tau", "triqs.gf.gf_fnt.replace_by_tail", "triqs.gf.gf_fnt.replace_by_tail_in_fit_window", "triqs.gf.gf_fnt.set_from_fourier", "triqs.gf.gf_fnt.set_from_imfreq", "triqs.gf.gf_fnt.set_from_imtime", "triqs.gf.gf_fnt.set_from_legendre", "triqs.gf.gf_fnt.set_from_pade", "triqs.gf.gf_fnt.tau_L2_norm", "triqs.gf.lazy_expressions", "triqs.gf.lazy_expressions.LazyExpr", "triqs.gf.lazy_expressions.LazyExpr.__init__", "triqs.gf.lazy_expressions.LazyExpr.copy", "triqs.gf.lazy_expressions.LazyExpr.get_terminal", "triqs.gf.lazy_expressions.LazyExpr.is_terminal", "triqs.gf.lazy_expressions.LazyExpr.set_from", "triqs.gf.lazy_expressions.LazyExprTerminal", "triqs.gf.lazy_expressions.LazyExprTerminal.__init__", "triqs.gf.lazy_expressions.all_terminals", "triqs.gf.lazy_expressions.eval_expr", "triqs.gf.lazy_expressions.eval_expr_with_context", "triqs.gf.lazy_expressions.lazy_function", "triqs.gf.lazy_expressions.make_lazy", "triqs.gf.lazy_expressions.transform", "triqs.gf.map_block", "triqs.gf.matsubara_freq", "triqs.gf.matsubara_freq.MatsubaraFreq", "triqs.gf.matsubara_freq.MatsubaraFreq.__init__", "triqs.gf.matsubara_freq.MatsubaraFreq.imag", "triqs.gf.matsubara_freq.MatsubaraFreq.index", "triqs.gf.matsubara_freq.MatsubaraFreq.real", "triqs.gf.matsubara_freq.MatsubaraFreq.value", "triqs.gf.mesh_point", "triqs.gf.mesh_point.MeshPoint", "triqs.gf.mesh_point.MeshPoint.__init__", "triqs.gf.mesh_point.MeshPoint.imag", "triqs.gf.mesh_point.MeshPoint.real", "triqs.gf.mesh_point.MeshValueGenerator", "triqs.gf.mesh_point.MeshValueGenerator.__init__", "triqs.gf.mesh_product", "triqs.gf.mesh_product.MeshProduct", "triqs.gf.mesh_product.MeshProduct.__init__", "triqs.gf.mesh_product.MeshProduct.components", "triqs.gf.mesh_product.MeshProduct.copy", "triqs.gf.mesh_product.MeshProduct.copy_from", "triqs.gf.mesh_product.MeshProduct.rank", "triqs.gf.mesh_product.MeshProduct.size_of_components", "triqs.gf.mesh_product.MeshProduct.to_data_index", "triqs.gf.mesh_product.call_factory_from_dict", "triqs.gf.meshes", "triqs.gf.meshes.MeshBrZone", "triqs.gf.meshes.MeshBrZone.__init__", "triqs.gf.meshes.MeshBrZone.bz", "triqs.gf.meshes.MeshBrZone.closest_index", "triqs.gf.meshes.MeshBrZone.copy", "triqs.gf.meshes.MeshBrZone.copy_from", "triqs.gf.meshes.MeshBrZone.dims", "triqs.gf.meshes.MeshBrZone.mesh_hash", "triqs.gf.meshes.MeshBrZone.to_data_index", "triqs.gf.meshes.MeshBrZone.to_index", "triqs.gf.meshes.MeshBrZone.to_value", "triqs.gf.meshes.MeshBrZone.units", "triqs.gf.meshes.MeshBrZone.values", "triqs.gf.meshes.MeshCycLat", "triqs.gf.meshes.MeshCycLat.__init__", "triqs.gf.meshes.MeshCycLat.copy", "triqs.gf.meshes.MeshCycLat.copy_from", "triqs.gf.meshes.MeshCycLat.dims", "triqs.gf.meshes.MeshCycLat.lattice", "triqs.gf.meshes.MeshCycLat.mesh_hash", "triqs.gf.meshes.MeshCycLat.to_data_index", "triqs.gf.meshes.MeshCycLat.to_index", "triqs.gf.meshes.MeshCycLat.to_value", "triqs.gf.meshes.MeshCycLat.units", "triqs.gf.meshes.MeshCycLat.values", "triqs.gf.meshes.MeshDLR", "triqs.gf.meshes.MeshDLR.__init__", "triqs.gf.meshes.MeshDLR.beta", "triqs.gf.meshes.MeshDLR.copy", "triqs.gf.meshes.MeshDLR.copy_from", "triqs.gf.meshes.MeshDLR.eps", "triqs.gf.meshes.MeshDLR.mesh_hash", "triqs.gf.meshes.MeshDLR.statistic", "triqs.gf.meshes.MeshDLR.to_data_index", "triqs.gf.meshes.MeshDLR.to_index", "triqs.gf.meshes.MeshDLR.to_value", "triqs.gf.meshes.MeshDLR.values", "triqs.gf.meshes.MeshDLR.w_max", "triqs.gf.meshes.MeshDLRImFreq", "triqs.gf.meshes.MeshDLRImFreq.__init__", "triqs.gf.meshes.MeshDLRImFreq.beta", "triqs.gf.meshes.MeshDLRImFreq.copy", "triqs.gf.meshes.MeshDLRImFreq.copy_from", "triqs.gf.meshes.MeshDLRImFreq.eps", "triqs.gf.meshes.MeshDLRImFreq.mesh_hash", "triqs.gf.meshes.MeshDLRImFreq.statistic", "triqs.gf.meshes.MeshDLRImFreq.to_data_index", "triqs.gf.meshes.MeshDLRImFreq.to_index", "triqs.gf.meshes.MeshDLRImFreq.to_value", "triqs.gf.meshes.MeshDLRImFreq.values", "triqs.gf.meshes.MeshDLRImFreq.w_max", "triqs.gf.meshes.MeshDLRImTime", "triqs.gf.meshes.MeshDLRImTime.__init__", "triqs.gf.meshes.MeshDLRImTime.beta", "triqs.gf.meshes.MeshDLRImTime.copy", "triqs.gf.meshes.MeshDLRImTime.copy_from", "triqs.gf.meshes.MeshDLRImTime.eps", "triqs.gf.meshes.MeshDLRImTime.mesh_hash", "triqs.gf.meshes.MeshDLRImTime.statistic", "triqs.gf.meshes.MeshDLRImTime.to_data_index", "triqs.gf.meshes.MeshDLRImTime.to_index", "triqs.gf.meshes.MeshDLRImTime.to_value", "triqs.gf.meshes.MeshDLRImTime.values", "triqs.gf.meshes.MeshDLRImTime.w_max", "triqs.gf.meshes.MeshImFreq", "triqs.gf.meshes.MeshImFreq.__init__", "triqs.gf.meshes.MeshImFreq.beta", "triqs.gf.meshes.MeshImFreq.copy", "triqs.gf.meshes.MeshImFreq.copy_from", "triqs.gf.meshes.MeshImFreq.first_index", "triqs.gf.meshes.MeshImFreq.last_index", "triqs.gf.meshes.MeshImFreq.mesh_hash", "triqs.gf.meshes.MeshImFreq.n_iw", "triqs.gf.meshes.MeshImFreq.positive_only", "triqs.gf.meshes.MeshImFreq.set_tail_fit_parameters", "triqs.gf.meshes.MeshImFreq.statistic", "triqs.gf.meshes.MeshImFreq.to_data_index", "triqs.gf.meshes.MeshImFreq.to_index", "triqs.gf.meshes.MeshImFreq.to_value", "triqs.gf.meshes.MeshImFreq.values", "triqs.gf.meshes.MeshImTime", "triqs.gf.meshes.MeshImTime.__init__", "triqs.gf.meshes.MeshImTime.beta", "triqs.gf.meshes.MeshImTime.copy", "triqs.gf.meshes.MeshImTime.copy_from", "triqs.gf.meshes.MeshImTime.mesh_hash", "triqs.gf.meshes.MeshImTime.statistic", "triqs.gf.meshes.MeshImTime.to_data_index", "triqs.gf.meshes.MeshImTime.to_index", "triqs.gf.meshes.MeshImTime.to_value", "triqs.gf.meshes.MeshImTime.values", "triqs.gf.meshes.MeshLegendre", "triqs.gf.meshes.MeshLegendre.__init__", "triqs.gf.meshes.MeshLegendre.beta", "triqs.gf.meshes.MeshLegendre.copy", "triqs.gf.meshes.MeshLegendre.copy_from", "triqs.gf.meshes.MeshLegendre.mesh_hash", "triqs.gf.meshes.MeshLegendre.statistic", "triqs.gf.meshes.MeshLegendre.to_data_index", "triqs.gf.meshes.MeshLegendre.to_index", "triqs.gf.meshes.MeshReFreq", "triqs.gf.meshes.MeshReFreq.__init__", "triqs.gf.meshes.MeshReFreq.copy", "triqs.gf.meshes.MeshReFreq.copy_from", "triqs.gf.meshes.MeshReFreq.delta", "triqs.gf.meshes.MeshReFreq.mesh_hash", "triqs.gf.meshes.MeshReFreq.to_data_index", "triqs.gf.meshes.MeshReFreq.to_index", "triqs.gf.meshes.MeshReFreq.to_value", "triqs.gf.meshes.MeshReFreq.values", "triqs.gf.meshes.MeshReFreq.w_max", "triqs.gf.meshes.MeshReFreq.w_min", "triqs.gf.meshes.MeshReTime", "triqs.gf.meshes.MeshReTime.__init__", "triqs.gf.meshes.MeshReTime.copy", "triqs.gf.meshes.MeshReTime.copy_from", "triqs.gf.meshes.MeshReTime.delta", "triqs.gf.meshes.MeshReTime.mesh_hash", "triqs.gf.meshes.MeshReTime.t_max", "triqs.gf.meshes.MeshReTime.t_min", "triqs.gf.meshes.MeshReTime.to_data_index", "triqs.gf.meshes.MeshReTime.to_index", "triqs.gf.meshes.MeshReTime.to_value", "triqs.gf.meshes.MeshReTime.values", "triqs.gf.meshes.make_adjoint_mesh", "triqs.gf.plot", "triqs.gf.plot.bz", "triqs.gf.plot.bz.dist", "triqs.gf.plot.bz.generate_points", "triqs.gf.plot.bz.generate_points_on_path", "triqs.gf.plot.bz.length", "triqs.gf.plot.bz.make_plottable", "triqs.gf.plot.bz.plot", "triqs.gf.plot.bz.slice_on_path", "triqs.gf.plot.bz_x_x", "triqs.gf.plot.bz_x_x.plot", "triqs.gf.plot.bz_x_x.plottable_slice_along_path", "triqs.gf.plot.dispatcher", "triqs.gf.plot.one_var", "triqs.gf.plot.one_var.dlr_imfreq", "triqs.gf.plot.one_var.dlr_imtime", "triqs.gf.plot.one_var.imfreq", "triqs.gf.plot.one_var.imtime", "triqs.gf.plot.one_var.legendre", "triqs.gf.plot.one_var.refreq", "triqs.gf.plot.one_var.retime", "triqs.gf.plot.plot_base", "triqs.gf.plot.plot_base.plot_base", "triqs.gf.plot.select_indices", "triqs.gf.plot.select_indices.closest_point_in_line", "triqs.gf.plot.select_indices.closest_to", "triqs.gf.plot.select_indices.dist", "triqs.gf.plot.select_indices.pick_selection_vec", "triqs.gf.plot.select_indices.select_path_indices", "triqs.gf.tools", "triqs.gf.tools.conjugate", "triqs.gf.tools.delta", "triqs.gf.tools.discretize_bath", "triqs.gf.tools.dyson", "triqs.gf.tools.fit_legendre", "triqs.gf.tools.inverse", "triqs.gf.tools.make_delta", "triqs.gf.tools.make_zero_tail", "triqs.gf.tools.read_gf_from_txt", "triqs.gf.tools.transpose", "triqs.gf.tools.write_gf_to_txt", "triqs.gf.wrapped_aux", "triqs.gf.wrapped_aux.CallProxyBrZone_0", "triqs.gf.wrapped_aux.CallProxyBrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_1", "triqs.gf.wrapped_aux.CallProxyBrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_2", "triqs.gf.wrapped_aux.CallProxyBrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_3", "triqs.gf.wrapped_aux.CallProxyBrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_4", "triqs.gf.wrapped_aux.CallProxyBrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4", "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_0", "triqs.gf.wrapped_aux.CallProxyCycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_1", "triqs.gf.wrapped_aux.CallProxyCycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_2", "triqs.gf.wrapped_aux.CallProxyCycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_3", "triqs.gf.wrapped_aux.CallProxyCycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_4", "triqs.gf.wrapped_aux.CallProxyCycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4", "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_0", "triqs.gf.wrapped_aux.CallProxyDLR_0.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_1", "triqs.gf.wrapped_aux.CallProxyDLR_1.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_2", "triqs.gf.wrapped_aux.CallProxyDLR_2.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_3", "triqs.gf.wrapped_aux.CallProxyDLR_3.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_4", "triqs.gf.wrapped_aux.CallProxyDLR_4.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_0", "triqs.gf.wrapped_aux.CallProxyImFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_1", "triqs.gf.wrapped_aux.CallProxyImFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_2", "triqs.gf.wrapped_aux.CallProxyImFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_3", "triqs.gf.wrapped_aux.CallProxyImFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_4", "triqs.gf.wrapped_aux.CallProxyImFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_0", "triqs.gf.wrapped_aux.CallProxyImTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_0_R", "triqs.gf.wrapped_aux.CallProxyImTime_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_1", "triqs.gf.wrapped_aux.CallProxyImTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_1_R", "triqs.gf.wrapped_aux.CallProxyImTime_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_2", "triqs.gf.wrapped_aux.CallProxyImTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_2_R", "triqs.gf.wrapped_aux.CallProxyImTime_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_3", "triqs.gf.wrapped_aux.CallProxyImTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_3_R", "triqs.gf.wrapped_aux.CallProxyImTime_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_4", "triqs.gf.wrapped_aux.CallProxyImTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_4_R", "triqs.gf.wrapped_aux.CallProxyImTime_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R", "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_0", "triqs.gf.wrapped_aux.CallProxyLegendre_0.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_1", "triqs.gf.wrapped_aux.CallProxyLegendre_1.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_2", "triqs.gf.wrapped_aux.CallProxyLegendre_2.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_3", "triqs.gf.wrapped_aux.CallProxyLegendre_3.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_4", "triqs.gf.wrapped_aux.CallProxyLegendre_4.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_0", "triqs.gf.wrapped_aux.CallProxyReFreq_0.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_1", "triqs.gf.wrapped_aux.CallProxyReFreq_1.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_2", "triqs.gf.wrapped_aux.CallProxyReFreq_2.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_3", "triqs.gf.wrapped_aux.CallProxyReFreq_3.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_4", "triqs.gf.wrapped_aux.CallProxyReFreq_4.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_0", "triqs.gf.wrapped_aux.CallProxyReTime_0.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_1", "triqs.gf.wrapped_aux.CallProxyReTime_1.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_2", "triqs.gf.wrapped_aux.CallProxyReTime_2.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_3", "triqs.gf.wrapped_aux.CallProxyReTime_3.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_4", "triqs.gf.wrapped_aux.CallProxyReTime_4.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4", "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.__init__", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4", "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.__init__", "triqs.gf.wrapped_aux.set_from_gf_data_mul_LR", "triqs.lattice", "triqs.lattice.bz_patch", "triqs.lattice.bz_patch.BZPatch", "triqs.lattice.bz_patch.BZPatch.__init__", "triqs.lattice.bz_patch.BZPatch.dos", "triqs.lattice.lattice_tools", "triqs.lattice.lattice_tools.BravaisLattice", "triqs.lattice.lattice_tools.BravaisLattice.__init__", "triqs.lattice.lattice_tools.BravaisLattice.lattice_to_real_coordinates", "triqs.lattice.lattice_tools.BravaisLattice.n_orbitals", "triqs.lattice.lattice_tools.BravaisLattice.ndim", "triqs.lattice.lattice_tools.BravaisLattice.orbital_names", "triqs.lattice.lattice_tools.BravaisLattice.orbital_positions", "triqs.lattice.lattice_tools.BravaisLattice.units", "triqs.lattice.lattice_tools.BrillouinZone", "triqs.lattice.lattice_tools.BrillouinZone.__init__", "triqs.lattice.lattice_tools.BrillouinZone.lattice", "triqs.lattice.lattice_tools.BrillouinZone.ndim", "triqs.lattice.lattice_tools.BrillouinZone.units", "triqs.lattice.lattice_tools.TightBinding", "triqs.lattice.lattice_tools.TightBinding.__init__", "triqs.lattice.lattice_tools.TightBinding.dispersion", "triqs.lattice.lattice_tools.TightBinding.displ_vec", "triqs.lattice.lattice_tools.TightBinding.fourier", "triqs.lattice.lattice_tools.TightBinding.lattice", "triqs.lattice.lattice_tools.TightBinding.lattice_to_real_coordinates", "triqs.lattice.lattice_tools.TightBinding.overlap_mat_vec", "triqs.lattice.lattice_tools.dos", "triqs.lattice.lattice_tools.dos_patch", "triqs.lattice.point", "triqs.lattice.point.LatticePoint", "triqs.lattice.point.LatticePoint.__init__", "triqs.lattice.point.LatticePoint.value", "triqs.lattice.super_lattice", "triqs.lattice.super_lattice.TBSuperLattice", "triqs.lattice.super_lattice.TBSuperLattice.__init__", "triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_L_to_SL", "triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_SL_to_L", "triqs.lattice.super_lattice.TBSuperLattice.cluster_sites", "triqs.lattice.super_lattice.TBSuperLattice.dispersion", "triqs.lattice.super_lattice.TBSuperLattice.fold", "triqs.lattice.super_lattice.TBSuperLattice.fourier", "triqs.lattice.super_lattice.TBSuperLattice.get_kmesh", "triqs.lattice.super_lattice.TBSuperLattice.get_rmesh", "triqs.lattice.super_lattice.TBSuperLattice.hoppings", "triqs.lattice.super_lattice.TBSuperLattice.lattice_to_real_coordinates", "triqs.lattice.super_lattice.TBSuperLattice.n_orbitals", "triqs.lattice.super_lattice.TBSuperLattice.ndim", "triqs.lattice.super_lattice.TBSuperLattice.orbital_names", "triqs.lattice.super_lattice.TBSuperLattice.orbital_positions", "triqs.lattice.super_lattice.TBSuperLattice.pack_index_site_orbital", "triqs.lattice.super_lattice.TBSuperLattice.units", "triqs.lattice.super_lattice.TBSuperLattice.unpack_index_site_orbital", "triqs.lattice.tight_binding", "triqs.lattice.tight_binding.TBLattice", "triqs.lattice.tight_binding.TBLattice.__init__", "triqs.lattice.tight_binding.TBLattice.dispersion", "triqs.lattice.tight_binding.TBLattice.fourier", "triqs.lattice.tight_binding.TBLattice.get_kmesh", "triqs.lattice.tight_binding.TBLattice.get_rmesh", "triqs.lattice.tight_binding.TBLattice.hoppings", "triqs.lattice.tight_binding.TBLattice.lattice_to_real_coordinates", "triqs.lattice.tight_binding.TBLattice.n_orbitals", "triqs.lattice.tight_binding.TBLattice.ndim", "triqs.lattice.tight_binding.TBLattice.orbital_names", "triqs.lattice.tight_binding.TBLattice.orbital_positions", "triqs.lattice.tight_binding.TBLattice.units", "triqs.lattice.tight_binding.dos", "triqs.lattice.tight_binding.dos_patch", "triqs.lattice.utils", "triqs.lattice.utils.TB_from_pythTB", "triqs.lattice.utils.TB_from_wannier90", "triqs.lattice.utils.TB_to_sympy", "triqs.lattice.utils.extend_wannier90_to_spin", "triqs.lattice.utils.k_space_path", "triqs.lattice.utils.parse_hopping_from_wannier90_hr_dat", "triqs.lattice.utils.parse_lattice_vectors_from_wannier90_wout", "triqs.operators", "triqs.operators.operators", "triqs.operators.operators.Operator", "triqs.operators.operators.Operator.__init__", "triqs.operators.operators.Operator.imag", "triqs.operators.operators.Operator.is_zero", "triqs.operators.operators.Operator.real", "triqs.operators.operators.c", "triqs.operators.operators.c_dag", "triqs.operators.operators.dagger", "triqs.operators.operators.is_op_hermitian", "triqs.operators.operators.n", "triqs.operators.util", "triqs.operators.util.U_matrix", "triqs.operators.util.U_matrix.U_J_to_radial_integrals", "triqs.operators.util.U_matrix.U_matrix_kanamori", "triqs.operators.util.U_matrix.U_matrix_slater", "triqs.operators.util.U_matrix.angular_matrix_element", "triqs.operators.util.U_matrix.clebsch_gordan", "triqs.operators.util.U_matrix.cubic_names", "triqs.operators.util.U_matrix.eg_submatrix", "triqs.operators.util.U_matrix.radial_integrals_to_U_J", "triqs.operators.util.U_matrix.reduce_4index_to_2index", "triqs.operators.util.U_matrix.spherical_to_cubic", "triqs.operators.util.U_matrix.subarray", "triqs.operators.util.U_matrix.t2g_submatrix", "triqs.operators.util.U_matrix.three_j_symbol", "triqs.operators.util.U_matrix.transform_U_matrix", "triqs.operators.util.extractors", "triqs.operators.util.extractors.block_matrix_from_op", "triqs.operators.util.extractors.dict_to_matrix", "triqs.operators.util.extractors.extract_U_dict2", "triqs.operators.util.extractors.extract_U_dict4", "triqs.operators.util.extractors.extract_h_dict", "triqs.operators.util.extractors.op_from_block_matrix", "triqs.operators.util.extractors.quadratic_terms", "triqs.operators.util.extractors.quartic_terms", "triqs.operators.util.hamiltonians", "triqs.operators.util.hamiltonians.backward_compat", "triqs.operators.util.hamiltonians.diagonal_part", "triqs.operators.util.hamiltonians.h_int_density", "triqs.operators.util.hamiltonians.h_int_kanamori", "triqs.operators.util.hamiltonians.h_int_slater", "triqs.operators.util.hamiltonians.make_operator_real", "triqs.operators.util.observables", "triqs.operators.util.observables.L2_op", "triqs.operators.util.observables.LS_op", "triqs.operators.util.observables.L_op", "triqs.operators.util.observables.N_op", "triqs.operators.util.observables.S2_op", "triqs.operators.util.observables.S_op", "triqs.operators.util.observables.check_backward_compat", "triqs.operators.util.op_struct", "triqs.operators.util.op_struct.get_mkind", "triqs.operators.util.op_struct.set_operator_structure", "triqs.plot", "triqs.plot.mpl_interface", "triqs.plot.mpl_interface.oplot", "triqs.plot.mpl_interface.oploti", "triqs.plot.mpl_interface.oplotr", "triqs.plot.mpl_interface.use_amsmath", "triqs.plot.protocol", "triqs.plot.protocol.clip_array", "triqs.plot.protocol.plot_protocol_apply", "triqs.random_generator", "triqs.random_generator.RandomGenerator", "triqs.random_generator.RandomGenerator.__init__", "triqs.random_generator.random_generator", "triqs.random_generator.random_generator.random_generator_names_list", "triqs.stat", "triqs.stat.histogram", "triqs.stat.histogram.plot", "triqs.stat.histograms", "triqs.stat.histograms.Histogram", "triqs.stat.histograms.Histogram.__init__", "triqs.stat.histograms.Histogram.clear", "triqs.stat.histograms.Histogram.data", "triqs.stat.histograms.Histogram.limits", "triqs.stat.histograms.Histogram.mesh_point", "triqs.stat.histograms.Histogram.n_data_pts", "triqs.stat.histograms.Histogram.n_lost_pts", "triqs.stat.histograms.cdf", "triqs.stat.histograms.pdf", "triqs.sumk", "triqs.sumk.sumk_discrete", "triqs.sumk.sumk_discrete.SumkDiscrete", "triqs.sumk.sumk_discrete.SumkDiscrete.GFBlocIndices", "triqs.sumk.sumk_discrete.SumkDiscrete.__init__", "triqs.sumk.sumk_discrete.SumkDiscrete.n_kpts", "triqs.sumk.sumk_discrete.SumkDiscrete.resize_arrays", "triqs.sumk.sumk_discrete_from_lattice", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.GFBlocIndices", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.Recompute_Grid", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.__init__", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.n_kpts", "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.resize_arrays", "triqs.utility", "triqs.utility.bound_and_bisect", "triqs.utility.bound_and_bisect.bound_and_bisect", "triqs.utility.bound_and_bisect.determine_bounds", "triqs.utility.capture_stdout", "triqs.utility.comparison_tests", "triqs.utility.comparison_tests.assert_array_close_to_scalar", "triqs.utility.comparison_tests.assert_arrays_are_close", "triqs.utility.comparison_tests.assert_block2_gfs_are_close", "triqs.utility.comparison_tests.assert_block_gfs_are_close", "triqs.utility.comparison_tests.assert_gfs_are_close", "triqs.utility.dichotomy", "triqs.utility.dichotomy.dichotomy", "triqs.utility.dist_on_nodes", "triqs.utility.dist_on_nodes.DistributionOnNodes", "triqs.utility.dist_on_nodes.DistributionOnNodes.SleepTime", "triqs.utility.dist_on_nodes.DistributionOnNodes.__init__", "triqs.utility.dist_on_nodes.DistributionOnNodes.run", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.SleepTime", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.__init__", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.finished", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.result", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.run", "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.treate", "triqs.utility.dist_on_nodes.DistributionOnNodesTest", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.SleepTime", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.__init__", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.finished", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.result", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.run", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.the_function", "triqs.utility.dist_on_nodes.DistributionOnNodesTest.treate", "triqs.utility.h5diff", "triqs.utility.h5diff.compare", "triqs.utility.h5diff.h5diff", "triqs.utility.mpi", "triqs.utility.mpi.check_for_mpi", "triqs.utility.mpi_mpi4py", "triqs.utility.mpi_mpi4py.all_reduce", "triqs.utility.mpi_mpi4py.barrier", "triqs.utility.mpi_mpi4py.bcast", "triqs.utility.mpi_mpi4py.is_master_node", "triqs.utility.mpi_mpi4py.master_gets_host_names", "triqs.utility.mpi_mpi4py.myprint_err", "triqs.utility.mpi_mpi4py.myprint_out", "triqs.utility.mpi_mpi4py.recv", "triqs.utility.mpi_mpi4py.report", "triqs.utility.mpi_mpi4py.send", "triqs.utility.mpi_mpi4py.slice_array", "triqs.utility.mpi_mpi4py.slice_inf", "triqs.utility.mpi_mpi4py.slice_sup", "triqs.utility.mpi_nompi", "triqs.utility.mpi_nompi.all_reduce", "triqs.utility.mpi_nompi.barrier", "triqs.utility.mpi_nompi.bcast", "triqs.utility.mpi_nompi.is_master_node", "triqs.utility.mpi_nompi.master_gets_host_names", "triqs.utility.mpi_nompi.myprint_err", "triqs.utility.mpi_nompi.myprint_out", "triqs.utility.mpi_nompi.recv", "triqs.utility.mpi_nompi.report", "triqs.utility.mpi_nompi.send", "triqs.utility.mpi_nompi.slice_array", "triqs.utility.redirect", "triqs.utility.redirect.T", "triqs.utility.redirect.T.__init__", "triqs.utility.redirect.T.daemon", "triqs.utility.redirect.T.getName", "triqs.utility.redirect.T.ident", "triqs.utility.redirect.T.isDaemon", "triqs.utility.redirect.T.is_alive", "triqs.utility.redirect.T.join", "triqs.utility.redirect.T.name", "triqs.utility.redirect.T.native_id", "triqs.utility.redirect.T.run", "triqs.utility.redirect.T.setDaemon", "triqs.utility.redirect.T.setName", "triqs.utility.redirect.T.start", "triqs.utility.redirect.T.stop", "triqs.utility.redirect.start_redirect", "triqs.utility.redirect.stop_redirect", "Frequently-asked questions", "Welcome", "Installation", "Using the clang compiler", "Unix environment variables", "Customizing your installation", "Prerequisites for the TRIQS Compilation on Mac OS X", "Python Virtual Environments", "A complete list of requirements", "Installing required libraries on Ubuntu", "Guide for porting your application to TRIQS 3.0 and Python 3", "User guide", "Multidimensional arrays", "det_manip: Determinant manipulations for CTQMC", "Green\u2019s functions", "Green\u2019s function and HDF5 files", "Conventions for TRIQS applications", "Using TRIQS in your own C++ project", "Profiling in C++ and Python", "Writing you own C++ code with TRIQS", "Basics", "Dynamical mean-field theory on a Bethe lattice", "Learn more about Python, ipython and the notebook", "Model DMFT", "A tight-binding model on a square lattice", "TRIQS / solid_dmft tutorial", "FermiSee", "Phase diagram exploration", "Comparison to Hubbard-I solution", "TRIQS / solid_dmft tutorial", "FermiSee", "Phase diagram exploration", "Comparison to Hubbard-I solution", "Introducing python and the ipython notebook", "Matplotlib Examples", "TRIQS Green\u2019s functions", "HDF5 Archives", "Manipulating fermionic operators", "Introduction to multivariable Green\u2019s functions", "TRIQS Green\u2019s functions", "A first DMFT calculation", "General reminder: Anderson impurity model and CTHYB solver", "Single-orbital Hubbard model", "Two-orbital Hubbard model", "Valence-Bond DMFT solution of the Hubbard model", "Tutorials", "A first DMFT calculation", "Single-orbital Hubbard model", "Two-orbital Hubbard model", "Valence-Bond DMFT solution of the Hubbard model", "Tutorial repository", "Fermions on the square lattice & perfect nesting", "Susceptibility \\(\\chi_0\\) of non-interacting fermions", "The random phase approximation (RPA)", "Two-particle self consistency (TPSC)", "Finite temperature antiferromagnetism in two dimensional systems", "Fermions on the square lattice & perfect nesting", "Susceptibility \\(\\chi_0\\) of non-interacting fermions", "The random phase approximation (RPA)", "Two-particle self consistency (TPSC)", "Finite temperature antiferromagnetism in two dimensional systems", "Two-particle Response", "Version compatibility"], "terms": {"thi": [0, 3, 4, 6, 7, 8, 130, 154, 159, 177, 189, 197, 204, 206, 214, 217, 224, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 250, 292, 311, 325, 326, 331, 333, 334, 339, 342, 343, 346, 348, 349, 350, 351, 354, 360, 365, 373, 374, 375, 378, 385, 386, 387, 392, 393, 395, 396, 399, 403, 404, 414, 442, 449, 451, 453, 461, 463, 476, 490, 491, 492, 493, 494, 497, 498, 499, 500, 502, 503, 506, 507, 508, 510, 511, 512, 513, 514, 515, 517, 520, 521, 522, 523, 524, 527, 528, 529, 533, 535, 536, 537, 541, 543, 551, 553, 556, 558, 564, 567, 568, 569, 572, 574, 580, 581, 583, 586, 587, 661, 662, 935, 1092, 1105, 1201, 1210, 1211, 1742, 1780, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1840, 1841, 1842, 1843, 1844, 1848, 1849, 1850, 1852, 1854, 1855, 1856, 1858, 1859, 1860, 1861, 1862, 1867, 1868, 1869, 1871, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909], "describ": [0, 317, 351, 498, 499, 507, 520, 521, 525, 536, 541, 543, 550, 551, 567, 568, 569, 570, 580, 935, 1627, 1646, 1647, 1850, 1853, 1873, 1876, 1877, 1880, 1882, 1889, 1902, 1903, 1907, 1908], "main": [0, 19, 95, 254, 255, 260, 316, 450, 454, 457, 459, 461, 482, 483, 484, 485, 491, 496, 499, 500, 502, 506, 507, 508, 509, 510, 513, 516, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 555, 569, 570, 585, 587, 1833, 1849, 1859, 1860, 1861, 1862, 1863, 1867, 1873, 1877, 1879, 1890, 1895], "i": [0, 3, 5, 6, 7, 8, 18, 40, 46, 48, 86, 89, 114, 115, 117, 120, 121, 122, 154, 155, 156, 157, 158, 160, 162, 163, 168, 172, 177, 182, 189, 194, 197, 203, 204, 206, 210, 214, 215, 216, 217, 219, 224, 228, 230, 231, 233, 234, 235, 236, 238, 239, 250, 252, 254, 256, 257, 292, 300, 301, 302, 311, 314, 315, 317, 325, 329, 332, 334, 342, 348, 349, 351, 353, 358, 365, 368, 372, 379, 384, 394, 403, 407, 408, 410, 428, 430, 431, 432, 433, 434, 435, 442, 445, 449, 450, 451, 453, 455, 456, 457, 459, 461, 473, 476, 480, 481, 482, 485, 490, 491, 492, 493, 494, 496, 497, 498, 499, 500, 502, 503, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 531, 532, 533, 535, 537, 539, 541, 543, 544, 545, 546, 547, 548, 550, 551, 552, 553, 555, 556, 558, 559, 560, 562, 563, 564, 565, 567, 568, 569, 570, 571, 572, 573, 575, 576, 578, 579, 580, 581, 582, 583, 585, 586, 587, 594, 596, 598, 602, 605, 615, 617, 619, 623, 626, 641, 645, 646, 653, 655, 659, 660, 661, 662, 664, 669, 700, 703, 708, 739, 742, 747, 778, 781, 786, 817, 820, 825, 856, 862, 879, 891, 906, 929, 935, 942, 947, 978, 1017, 1018, 1023, 1054, 1079, 1092, 1105, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1210, 1211, 1213, 1215, 1611, 1626, 1632, 1664, 1666, 1674, 1679, 1684, 1685, 1696, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1719, 1727, 1731, 1756, 1768, 1778, 1780, 1806, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1842, 1843, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1858, 1859, 1860, 1861, 1864, 1865, 1866, 1867, 1869, 1870, 1873, 1874, 1875, 1877, 1878, 1879, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908, 1910], "patch": [0, 561, 1594, 1596, 1760, 1762, 1763, 1892, 1897, 1910], "releas": [0, 6, 490, 493, 581, 1848, 1849, 1850, 1867, 1910], "introduc": [0, 543, 580, 1858, 1859, 1868, 1873, 1876, 1877, 1880, 1883, 1886, 1887, 1889, 1902, 1907], "minor": [0, 1910], "restor": [0, 490, 493], "compat": [0, 5, 296, 551, 572, 665, 704, 743, 782, 821, 888, 897, 1858, 1873, 1877, 1879, 1889], "against": [0, 1850, 1855, 1858, 1883, 1887], "recent": [0, 1850, 1851, 1854, 1858], "numpi": [0, 497, 500, 543, 544, 545, 546, 547, 548, 550, 557, 563, 573, 576, 578, 580, 650, 660, 664, 700, 703, 739, 742, 778, 781, 817, 820, 856, 935, 942, 978, 1054, 1066, 1067, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1598, 1622, 1627, 1632, 1647, 1663, 1664, 1666, 1667, 1684, 1685, 1689, 1691, 1692, 1694, 1696, 1699, 1714, 1715, 1716, 1731, 1732, 1848, 1854, 1856, 1857, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "we": [0, 3, 6, 7, 181, 182, 183, 184, 185, 186, 187, 230, 231, 354, 358, 363, 459, 480, 481, 496, 498, 499, 500, 507, 508, 509, 510, 511, 512, 514, 517, 519, 520, 521, 527, 529, 531, 533, 535, 536, 541, 543, 544, 551, 553, 558, 563, 564, 567, 568, 570, 575, 576, 577, 579, 580, 581, 583, 585, 587, 1216, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1848, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1857, 1858, 1859, 1861, 1862, 1863, 1864, 1865, 1867, 1870, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "thank": [0, 8], "all": [0, 3, 4, 8, 42, 44, 98, 99, 100, 125, 141, 142, 143, 149, 150, 159, 161, 163, 168, 172, 174, 188, 189, 190, 204, 206, 218, 251, 257, 268, 300, 302, 317, 340, 352, 356, 359, 360, 370, 393, 410, 411, 414, 434, 439, 450, 451, 456, 463, 464, 473, 481, 484, 485, 490, 496, 497, 498, 499, 506, 513, 517, 519, 522, 523, 527, 528, 533, 535, 539, 543, 551, 553, 556, 568, 569, 570, 572, 575, 578, 580, 581, 586, 587, 589, 591, 597, 604, 605, 608, 612, 618, 625, 626, 629, 640, 641, 661, 662, 701, 740, 779, 818, 857, 886, 979, 1022, 1053, 1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1211, 1217, 1626, 1700, 1701, 1702, 1708, 1744, 1806, 1809, 1823, 1833, 1850, 1852, 1856, 1858, 1859, 1860, 1866, 1867, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "contributor": [0, 5], "nil": 0, "wentzel": [0, 3, 4], "find": [0, 3, 343, 359, 362, 396, 490, 500, 543, 567, 570, 1778, 1809, 1823, 1858, 1868, 1871, 1873, 1874, 1875, 1877, 1878, 1879, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1902, 1907, 1909], "below": [0, 203, 228, 300, 302, 438, 480, 481, 496, 498, 502, 508, 517, 521, 551, 568, 570, 575, 580, 585, 1712, 1853, 1855, 1856, 1858, 1864, 1867, 1873, 1874, 1877, 1878, 1881, 1882, 1883, 1886, 1887, 1891, 1892, 1895, 1896, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "an": [0, 4, 6, 9, 11, 33, 81, 113, 130, 135, 148, 159, 160, 245, 256, 302, 325, 329, 332, 333, 342, 344, 345, 351, 354, 358, 363, 390, 392, 397, 398, 408, 410, 413, 421, 451, 457, 459, 461, 477, 480, 481, 482, 483, 490, 493, 494, 496, 497, 498, 499, 500, 503, 506, 508, 510, 511, 513, 514, 516, 517, 519, 520, 523, 525, 527, 528, 531, 532, 533, 535, 537, 539, 541, 543, 545, 547, 550, 551, 552, 553, 554, 555, 556, 559, 560, 563, 568, 569, 570, 572, 574, 575, 576, 579, 580, 585, 589, 598, 619, 653, 659, 861, 876, 906, 935, 1022, 1062, 1063, 1074, 1075, 1079, 1087, 1088, 1092, 1100, 1101, 1105, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175, 1211, 1626, 1666, 1700, 1701, 1702, 1708, 1711, 1717, 1732, 1815, 1829, 1838, 1849, 1850, 1852, 1859, 1862, 1866, 1868, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1901, 1903, 1904, 1906, 1908, 1910], "item": [0, 496, 498, 1873, 1877], "list": [0, 3, 4, 164, 182, 183, 184, 185, 186, 190, 245, 365, 447, 449, 490, 492, 493, 497, 508, 513, 523, 544, 545, 546, 547, 548, 551, 553, 557, 559, 562, 563, 572, 573, 575, 576, 577, 580, 582, 589, 591, 599, 604, 612, 620, 625, 635, 636, 637, 638, 640, 641, 664, 703, 742, 781, 820, 860, 875, 935, 942, 1044, 1046, 1187, 1201, 1203, 1204, 1211, 1215, 1217, 1598, 1603, 1604, 1614, 1618, 1627, 1640, 1641, 1647, 1656, 1657, 1659, 1666, 1668, 1683, 1685, 1690, 1693, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1737, 1740, 1780, 1832, 1850, 1852, 1873, 1877, 1883, 1884, 1885, 1886, 1887, 1889], "backward": [0, 296, 665, 704, 743, 782, 821, 888, 897], "read": [0, 208, 247, 263, 275, 287, 332, 344, 397, 463, 466, 467, 490, 496, 497, 498, 539, 553, 556, 558, 572, 581, 653, 1217, 1663, 1745, 1848, 1860, 1863, 1873, 1877, 1879, 1890, 1891, 1895, 1896, 1899, 1900, 1901, 1904, 1905, 1906, 1910], "call": [0, 12, 30, 113, 115, 117, 123, 125, 127, 130, 149, 151, 159, 196, 218, 407, 428, 429, 430, 431, 435, 441, 442, 449, 490, 492, 493, 496, 497, 498, 499, 502, 506, 507, 508, 509, 510, 513, 516, 517, 519, 537, 541, 550, 564, 565, 568, 569, 570, 572, 579, 582, 587, 896, 984, 1780, 1803, 1832, 1833, 1838, 1844, 1850, 1855, 1858, 1861, 1862, 1867, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1887, 1888, 1890, 1894, 1895, 1896, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "dlr_imfreq": [0, 988, 1100, 1101, 1102], "dlr_imtim": [0, 987, 989, 1113, 1114, 1115], "946": 0, "alias": [0, 10, 523, 572], "complex_": 0, "float_": 0, "slack": [0, 6, 7, 1849], "workspac": [0, 6, 7, 1849], "signup": 0, "url": 0, "symmetr": [0, 314, 315, 573, 993, 994, 1079, 1092, 1105, 1664, 1685, 1869, 1890, 1891, 1895, 1896], "other": [0, 3, 5, 6, 18, 46, 76, 88, 89, 100, 205, 256, 257, 482, 483, 484, 485, 496, 497, 500, 503, 507, 511, 515, 518, 524, 559, 564, 570, 573, 576, 580, 581, 586, 589, 591, 612, 653, 942, 1059, 1070, 1083, 1096, 1109, 1122, 1138, 1149, 1157, 1169, 1685, 1696, 1714, 1715, 1716, 1849, 1850, 1855, 1860, 1861, 1867, 1873, 1874, 1877, 1878, 1881, 1883, 1885, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1903, 1904, 1905, 1908, 1910], "lehmann": [0, 182, 183, 184, 185, 186, 500, 1849, 1883, 1887], "represent": [0, 170, 171, 182, 183, 184, 185, 186, 253, 306, 307, 308, 489, 490, 493, 500, 517, 518, 521, 536, 539, 540, 542, 572, 574, 580, 636, 660, 935, 986, 987, 988, 989, 1079, 1092, 1105, 1849, 1876, 1880, 1883, 1886, 1887, 1903, 1908], "type": [0, 8, 9, 10, 11, 13, 14, 18, 19, 26, 32, 33, 34, 39, 42, 46, 47, 48, 62, 63, 71, 72, 83, 84, 89, 95, 96, 100, 105, 112, 113, 125, 126, 129, 131, 132, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 251, 254, 255, 260, 268, 272, 284, 296, 297, 300, 301, 302, 314, 315, 316, 319, 351, 354, 355, 356, 360, 365, 369, 370, 373, 374, 375, 380, 381, 385, 386, 387, 410, 442, 445, 451, 454, 455, 456, 461, 480, 481, 482, 483, 484, 485, 487, 490, 492, 493, 496, 497, 506, 507, 508, 510, 511, 517, 518, 526, 527, 528, 531, 533, 535, 542, 543, 544, 545, 546, 547, 548, 551, 553, 554, 555, 556, 559, 560, 570, 571, 573, 574, 575, 576, 577, 583, 587, 589, 646, 650, 653, 666, 667, 669, 670, 677, 679, 683, 684, 685, 694, 695, 696, 698, 699, 700, 705, 706, 708, 709, 716, 718, 722, 723, 724, 733, 734, 735, 737, 738, 739, 744, 745, 747, 748, 755, 757, 761, 762, 763, 772, 773, 774, 776, 777, 778, 783, 784, 786, 787, 794, 796, 800, 801, 802, 811, 812, 813, 815, 816, 817, 822, 823, 825, 826, 833, 835, 839, 840, 841, 850, 851, 852, 854, 855, 856, 876, 888, 897, 939, 942, 944, 945, 947, 948, 955, 957, 961, 962, 963, 972, 973, 974, 976, 977, 978, 1030, 1201, 1210, 1213, 1215, 1217, 1622, 1634, 1635, 1646, 1650, 1651, 1659, 1662, 1663, 1664, 1668, 1683, 1685, 1686, 1687, 1688, 1689, 1692, 1693, 1694, 1695, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1740, 1747, 1750, 1751, 1778, 1806, 1850, 1861, 1877, 1879, 1881, 1883, 1885, 1886, 1887, 1888, 1894, 1910], "extend": [0, 532, 572, 1663, 1890, 1892, 1895, 1897], "convers": [0, 554, 574], "routin": [0, 224, 232, 233, 234, 235, 236, 237, 238, 239, 499, 541, 583, 1873, 1877, 1886, 1899, 1900, 1902, 1904, 1905, 1907], "between": [0, 4, 11, 13, 53, 61, 223, 351, 357, 359, 363, 491, 498, 500, 511, 515, 518, 524, 528, 541, 555, 562, 563, 568, 1205, 1611, 1666, 1849, 1861, 1873, 1876, 1877, 1880, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1901, 1902, 1904, 1906, 1907, 1910], "exist": [0, 493, 498, 499, 1873, 1877, 1883, 1884, 1887, 1891, 1896, 1903, 1908], "add": [0, 7, 8, 235, 374, 375, 386, 387, 391, 432, 457, 476, 490, 493, 498, 500, 507, 509, 512, 520, 564, 567, 570, 581, 1626, 1663, 1848, 1850, 1852, 1854, 1855, 1864, 1876, 1880, 1881, 1882, 1885, 1895], "constrain": [0, 1849, 1901, 1906], "residu": [0, 935, 1849], "minim": [0, 553, 572, 660, 935, 1211, 1849, 1892, 1897], "crm": 0, "dyson": [0, 543, 551, 553, 935, 1849, 1876, 1880, 1883, 1887, 1888, 1894, 1895, 1899, 1904], "solver": [0, 5, 9, 154, 488, 571, 589, 590, 591, 612, 935, 1849, 1850, 1859, 1869, 1871, 1873, 1876, 1877, 1880, 1885, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1902, 1904, 1907], "intel": [0, 1851, 1852], "base": [0, 5, 11, 356, 365, 366, 378, 499, 541, 568, 571, 572, 661, 662, 937, 938, 1626, 1664, 1832, 1850, 1856, 1858, 1870, 1883, 1887, 1892, 1897, 1900, 1905, 1910], "our": [0, 3, 6, 7, 500, 503, 517, 570, 583, 1848, 1849, 1854, 1856, 1858, 1859, 1867, 1873, 1875, 1877, 1879, 1884, 1886, 1889, 1901, 1902, 1903, 1906, 1907, 1908], "continu": [0, 5, 459, 463, 547, 1742, 1850, 1854, 1859, 1876, 1879, 1880, 1888, 1890, 1895, 1900, 1903, 1905, 1908], "integr": [0, 462, 563, 573, 1667, 1683, 1685, 1690, 1750, 1840, 1850, 1870, 1875, 1876, 1879, 1880, 1903, 1908], "variou": [0, 3, 4, 11, 496, 505, 518, 521, 536, 543, 551, 559, 563, 572, 581, 587, 653, 1849, 1850, 1859, 1865, 1887, 1909], "sever": [0, 4, 191, 409, 496, 499, 512, 516, 523, 564, 570, 571, 581, 583, 875, 1850, 1854, 1856, 1883, 1887, 1890, 1891, 1895, 1896, 1903, 1908], "thoma": 0, "hahn": [0, 3], "alexand": 0, "hampel": [0, 3, 4], "dominik": 0, "kies": [0, 3], "h": [0, 3, 159, 344, 345, 348, 349, 358, 368, 379, 397, 398, 401, 402, 462, 467, 468, 472, 473, 477, 478, 486, 497, 498, 500, 507, 514, 555, 560, 570, 572, 573, 575, 586, 589, 591, 612, 1685, 1698, 1700, 1701, 1702, 1704, 1705, 1708, 1709, 1710, 1711, 1712, 1750, 1751, 1857, 1873, 1877, 1879, 1880, 1885, 1889, 1892, 1897, 1899, 1904], "l": [0, 3, 251, 260, 268, 284, 292, 300, 314, 355, 360, 370, 381, 503, 515, 520, 547, 556, 568, 572, 573, 575, 576, 582, 587, 676, 715, 754, 793, 832, 927, 928, 954, 1052, 1067, 1187, 1203, 1204, 1591, 1683, 1685, 1686, 1688, 1690, 1692, 1701, 1711, 1714, 1715, 1716, 1731, 1850, 1873, 1877, 1881, 1882, 1883, 1884, 1887, 1891, 1896], "nours": 0, "dylan": 0, "simon": [0, 3], "init_from_representative_data": 0, "get_representative_data": 0, "sym_grp": 0, "enabl": [0, 490, 493, 499, 510, 511, 586, 1849, 1850], "most": [0, 4, 491, 496, 498, 499, 515, 517, 551, 570, 572, 1844, 1850, 1851, 1854, 1873, 1877, 1883, 1887, 1903, 1908, 1910], "warn": [0, 9, 202, 204, 206, 214, 217, 227, 490, 510, 511, 513, 584, 1875, 1877, 1879, 1880, 1889, 1891, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "wpedant": 0, "wextra": 0, "wall": 0, "wfloat": 0, "wshadow": 0, "support": [0, 3, 4, 9, 473, 496, 498, 502, 543, 551, 553, 572, 586, 1217, 1732, 1856, 1857, 1870], "spherical_to_cub": [0, 573], "redund": 0, "make_matrix": 0, "unittest": 0, "assertequ": 0, "miss": [0, 1699, 1855, 1874, 1878, 1892, 1897], "cstdint": 0, "includ": [0, 3, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 493, 499, 500, 502, 506, 507, 508, 509, 510, 511, 513, 516, 517, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 555, 567, 569, 570, 583, 584, 585, 587, 1134, 1154, 1166, 1666, 1850, 1852, 1855, 1856, 1857, 1860, 1861, 1862, 1863, 1864, 1865, 1867, 1870, 1883, 1887, 1903, 1908, 1910], "see": [0, 4, 7, 8, 48, 207, 215, 325, 342, 357, 435, 438, 449, 499, 502, 507, 517, 532, 539, 551, 553, 568, 570, 572, 574, 580, 585, 935, 1213, 1835, 1837, 1840, 1850, 1861, 1862, 1866, 1867, 1870, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1882, 1883, 1884, 1885, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "915": 0, "replac": [0, 354, 498, 506, 514, 687, 688, 726, 727, 765, 766, 804, 805, 843, 844, 965, 966, 1005, 1006, 1850, 1851, 1858, 1859, 1876, 1883, 1887], "getargspec": 0, "getfullargspec": 0, "911": [0, 1896], "reproduc": [0, 9, 488, 544, 545, 546, 547, 548, 580, 1850, 1890, 1892, 1895, 1897, 1902, 1903, 1907, 1908], "failur": 0, "issue913": 0, "bug": [0, 3, 6, 8, 500, 1890, 1895, 1910], "gf_base_op": 0, "debug": [0, 5, 1853], "get_matrix_element_of_monomi": [0, 154], "llvm": [0, 1851, 1854, 1856], "18": [0, 254, 1877, 1887, 1896, 1899, 1904], "relat": [0, 514, 541, 558, 562, 563, 572, 573, 1613, 1631, 1648, 1685, 1696, 1849, 1867, 1870, 1883, 1885, 1886, 1887, 1888, 1892, 1894, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "26": [0, 1877, 1887, 1896], "unnam": 0, "placehold": [0, 254, 255, 502, 503, 506, 508, 509, 510, 516, 519, 523, 527, 528, 531, 532, 541, 1860, 1863], "_": [0, 1, 2, 480, 481, 494, 514, 515, 531, 563, 573, 576, 583, 1685, 1716, 1719, 1868, 1869, 1871, 1873, 1877, 1879, 1880, 1883, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908, 1909], "insuffici": 0, "reserv": [0, 192, 197, 525, 1832], "memori": [0, 223, 449, 498, 500, 516, 539, 1850, 1873, 1877, 1880, 1886, 1905], "try_insert": [0, 192, 210, 213, 513, 1861], "make_gf_": 0, "dlr_": 0, "imtim": [0, 185, 518, 519, 521, 531, 532, 536, 542, 544, 545, 547, 548, 637, 686, 689, 691, 725, 728, 730, 764, 767, 769, 803, 806, 808, 842, 845, 847, 964, 967, 969, 986, 990, 992, 1004, 1007, 1009, 1141, 1142, 1143, 1862], "imfreq": [0, 182, 252, 254, 255, 260, 311, 316, 511, 516, 518, 519, 521, 523, 525, 536, 537, 541, 542, 544, 545, 547, 548, 635, 672, 673, 674, 675, 681, 682, 687, 688, 689, 690, 692, 693, 711, 712, 713, 714, 720, 721, 726, 727, 728, 729, 731, 732, 750, 751, 752, 753, 759, 760, 765, 766, 767, 768, 770, 771, 789, 790, 791, 792, 798, 799, 804, 805, 806, 807, 809, 810, 828, 829, 830, 831, 837, 838, 843, 844, 845, 846, 848, 849, 950, 951, 952, 953, 959, 960, 965, 966, 967, 968, 970, 971, 990, 991, 993, 994, 996, 998, 999, 1000, 1001, 1002, 1003, 1005, 1006, 1007, 1008, 1010, 1011, 1130, 1131, 1132, 1862, 1863, 1887], "too": [0, 197, 378, 564, 581, 1875, 1877, 1879, 1890, 1895, 1903, 1908], "allow": [0, 4, 154, 351, 390, 490, 493, 496, 499, 500, 507, 517, 532, 541, 543, 553, 554, 555, 558, 565, 568, 569, 570, 571, 572, 574, 580, 583, 1079, 1092, 1105, 1211, 1726, 1849, 1850, 1852, 1858, 1859, 1860, 1861, 1863, 1870, 1873, 1877, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1892, 1897, 1902, 1903, 1907, 1908], "relev": [0, 1849, 1883, 1884, 1886, 1887, 1890, 1895], "input": [0, 4, 449, 461, 491, 520, 583, 935, 1632, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1885, 1888, 1889, 1894], "option": [0, 351, 354, 357, 428, 430, 431, 496, 499, 541, 542, 544, 545, 546, 547, 548, 549, 551, 553, 557, 571, 572, 573, 576, 581, 589, 591, 612, 664, 670, 700, 703, 709, 739, 742, 748, 778, 781, 787, 817, 820, 826, 856, 935, 942, 948, 978, 1128, 1211, 1212, 1598, 1666, 1684, 1685, 1689, 1692, 1694, 1696, 1714, 1715, 1716, 1726, 1727, 1728, 1778, 1838, 1850, 1855, 1866, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1883, 1885, 1887, 1890, 1895], "expos": [0, 492, 494, 523, 572, 582, 1646, 1849, 1865, 1883, 1887], "densiti": [0, 4, 181, 190, 240, 448, 486, 500, 541, 543, 544, 546, 550, 552, 558, 560, 568, 575, 580, 582, 634, 645, 698, 737, 776, 815, 854, 892, 916, 929, 930, 976, 1700, 1708, 1709, 1710, 1751, 1869, 1872, 1873, 1877, 1882, 1886, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "dlrimfreq": [0, 935], "dlrimtim": [0, 935], "bind": [0, 272, 558, 560, 563, 1611, 1626, 1646, 1662, 1663, 1664, 1851, 1856, 1873, 1877, 1879, 1880, 1899, 1904], "constructor": [0, 14, 35, 42, 49, 72, 84, 96, 101, 115, 123, 154, 192, 242, 259, 271, 283, 317, 325, 340, 351, 357, 366, 378, 390, 406, 432, 442, 449, 463, 490, 493, 498, 510, 513, 516, 517, 521, 539, 540, 551, 567, 570, 572, 875, 1832, 1839, 1841, 1881, 1887], "from": [0, 4, 5, 7, 8, 9, 11, 21, 32, 35, 88, 92, 101, 102, 131, 159, 170, 175, 176, 182, 183, 185, 186, 205, 208, 238, 245, 247, 260, 263, 275, 287, 303, 305, 329, 332, 340, 341, 344, 351, 352, 354, 365, 397, 449, 454, 455, 456, 467, 482, 483, 484, 485, 490, 491, 493, 494, 496, 497, 498, 499, 500, 508, 515, 517, 519, 520, 523, 525, 532, 539, 540, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 554, 558, 560, 561, 563, 564, 567, 568, 570, 572, 573, 574, 575, 576, 577, 579, 580, 582, 583, 585, 586, 587, 609, 630, 649, 650, 653, 655, 661, 662, 664, 703, 742, 781, 820, 860, 863, 875, 880, 921, 924, 935, 990, 996, 1210, 1215, 1217, 1663, 1664, 1683, 1690, 1693, 1697, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1762, 1778, 1780, 1833, 1841, 1848, 1849, 1851, 1852, 1854, 1858, 1860, 1862, 1863, 1867, 1869, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907, 1910], "basic": [0, 4, 9, 496, 497, 498, 503, 507, 517, 519, 542, 543, 565, 570, 578, 581, 1855, 1859, 1860, 1861, 1862, 1867, 1870, 1873, 1877, 1879, 1889, 1899, 1903, 1904, 1908], "algebra": [0, 513, 572, 1870, 1873, 1877, 1881], "meshlegendr": [0, 546, 742], "n_iw": [0, 182, 254, 255, 312, 316, 500, 519, 523, 635, 991, 1118, 1178, 1862, 1877, 1880, 1883, 1886, 1887, 1894, 1895, 1903, 1904, 1908], "meshimfreq": [0, 544, 553, 664, 935, 1178, 1195, 1211, 1215, 1883, 1886, 1887, 1894, 1895, 1899, 1903, 1904, 1908], "oplot": [0, 544, 545, 546, 547, 548, 554, 558, 579, 580, 1201, 1727, 1728, 1740, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "data": [0, 5, 9, 242, 251, 257, 259, 260, 262, 268, 271, 272, 274, 283, 284, 286, 292, 325, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 459, 463, 464, 467, 468, 474, 475, 480, 481, 482, 483, 484, 485, 492, 496, 497, 499, 512, 513, 520, 521, 522, 525, 531, 534, 537, 541, 542, 549, 551, 553, 572, 578, 664, 668, 686, 700, 703, 707, 725, 739, 742, 746, 764, 778, 781, 785, 803, 817, 820, 824, 842, 856, 865, 870, 883, 890, 942, 946, 964, 978, 1004, 1062, 1063, 1074, 1075, 1087, 1088, 1100, 1101, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175, 1206, 1211, 1213, 1217, 1744, 1748, 1749, 1860, 1870, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1886, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "access": [0, 28, 246, 266, 278, 290, 361, 367, 372, 384, 421, 463, 466, 517, 521, 537, 539, 542, 549, 556, 570, 1608, 1745, 1850, 1852, 1873, 1874, 1877, 1878, 1881, 1882, 1883, 1887, 1889, 1890, 1895], "matsubarafreq": 0, "code": [0, 4, 5, 7, 9, 115, 116, 262, 274, 286, 490, 491, 494, 498, 499, 502, 503, 523, 551, 564, 565, 568, 572, 574, 583, 585, 1849, 1850, 1851, 1856, 1859, 1863, 1864, 1865, 1866, 1873, 1875, 1876, 1877, 1880, 1881, 1888, 1890, 1891, 1895, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907], "simplif": 0, "In": [0, 3, 6, 7, 251, 268, 365, 373, 374, 375, 385, 386, 387, 449, 496, 498, 499, 506, 507, 508, 511, 513, 515, 517, 519, 520, 522, 523, 532, 536, 543, 551, 552, 564, 568, 569, 570, 571, 574, 580, 581, 583, 585, 586, 1780, 1850, 1851, 1852, 1854, 1855, 1862, 1866, 1867, 1869, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "gf_dlr": 0, "do": [0, 5, 6, 7, 8, 85, 181, 184, 185, 186, 187, 223, 490, 498, 499, 506, 507, 508, 510, 513, 520, 523, 528, 531, 543, 547, 555, 558, 560, 567, 568, 570, 575, 576, 577, 580, 581, 940, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1813, 1832, 1838, 1850, 1854, 1855, 1866, 1867, 1869, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1883, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1901, 1903, 1904, 1906, 1908, 1910], "compar": [0, 18, 46, 76, 89, 100, 478, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1887, 1890, 1892, 1894, 1895, 1897, 1901, 1902, 1906, 1907, 1908], "valu": [0, 9, 11, 12, 16, 27, 34, 44, 48, 51, 52, 53, 55, 56, 74, 84, 85, 86, 88, 89, 98, 141, 144, 172, 181, 184, 185, 186, 187, 188, 189, 204, 206, 237, 257, 315, 354, 369, 380, 427, 445, 449, 451, 463, 464, 480, 481, 490, 491, 493, 496, 497, 498, 500, 506, 507, 512, 513, 515, 517, 520, 521, 523, 524, 526, 527, 528, 529, 531, 532, 533, 535, 541, 542, 544, 545, 546, 547, 548, 549, 551, 553, 555, 556, 559, 563, 564, 572, 573, 574, 575, 576, 580, 640, 641, 646, 653, 664, 676, 699, 701, 703, 715, 738, 740, 742, 754, 777, 779, 781, 793, 816, 818, 820, 832, 855, 857, 940, 942, 954, 977, 979, 1037, 1038, 1064, 1076, 1089, 1102, 1115, 1132, 1143, 1154, 1162, 1166, 1176, 1201, 1211, 1213, 1627, 1647, 1664, 1667, 1683, 1684, 1685, 1689, 1690, 1692, 1694, 1711, 1714, 1715, 1716, 1731, 1742, 1744, 1768, 1778, 1833, 1852, 1861, 1873, 1875, 1876, 1877, 1879, 1880, 1886, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "coeffici": [0, 9, 183, 253, 306, 307, 308, 351, 354, 355, 515, 517, 541, 546, 552, 553, 554, 556, 571, 572, 573, 575, 671, 710, 749, 788, 827, 949, 986, 987, 988, 989, 997, 1079, 1216, 1673, 1675, 1687, 1697, 1702, 1712, 1861, 1883, 1887], "block_gf": [0, 182, 183, 185, 186, 240, 254, 255, 299, 304, 309, 310, 316, 317, 320, 518, 536, 542, 635, 636, 637, 638, 1887], "block": [0, 1, 2, 4, 156, 158, 159, 171, 182, 183, 184, 185, 186, 188, 189, 190, 245, 254, 255, 499, 500, 512, 515, 518, 521, 536, 542, 544, 545, 546, 547, 548, 549, 553, 554, 561, 575, 576, 577, 589, 591, 594, 596, 612, 615, 617, 697, 736, 775, 814, 853, 859, 860, 861, 862, 864, 866, 867, 868, 869, 871, 874, 875, 876, 879, 881, 882, 884, 886, 889, 894, 975, 1012, 1211, 1215, 1217, 1219, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1754, 1755, 1760, 1761, 1838, 1849, 1873, 1876, 1877, 1879, 1880, 1881, 1885, 1889, 1897], "size": [0, 49, 61, 64, 115, 154, 192, 195, 197, 223, 235, 236, 292, 303, 325, 329, 340, 341, 366, 378, 390, 449, 451, 459, 463, 480, 481, 484, 485, 500, 502, 513, 514, 515, 517, 520, 525, 539, 543, 555, 556, 560, 561, 580, 587, 700, 739, 778, 817, 856, 875, 978, 1050, 1754, 1760, 1861, 1862, 1879, 1883, 1885, 1887, 1889], "revert": 0, "order": [0, 4, 6, 7, 205, 207, 215, 256, 257, 325, 342, 365, 390, 453, 498, 499, 506, 508, 509, 516, 517, 519, 520, 524, 527, 528, 531, 533, 535, 541, 551, 553, 569, 570, 571, 572, 573, 574, 583, 587, 864, 871, 881, 894, 939, 1213, 1689, 1692, 1694, 1731, 1850, 1851, 1852, 1854, 1856, 1867, 1873, 1877, 1879, 1881, 1882, 1883, 1887, 1888, 1889, 1890, 1894, 1895, 1896, 1901, 1902, 1903, 1906, 1907, 1908, 1910], "hyb": [0, 159, 358, 1859, 1889], "fop": [0, 159, 337, 341, 342, 352, 500, 555, 589, 591, 612, 1885], "atomdiag": [0, 500, 1885], "ar": [0, 3, 4, 6, 7, 8, 76, 100, 159, 182, 183, 237, 256, 260, 305, 325, 348, 349, 354, 365, 378, 401, 402, 407, 431, 449, 451, 453, 459, 476, 478, 481, 483, 484, 491, 492, 493, 494, 496, 497, 498, 499, 500, 503, 506, 507, 508, 509, 511, 513, 514, 515, 516, 518, 520, 521, 523, 525, 527, 532, 537, 540, 541, 543, 544, 545, 546, 547, 548, 550, 551, 552, 553, 554, 555, 556, 559, 563, 568, 569, 570, 572, 573, 574, 575, 576, 577, 578, 581, 582, 583, 587, 653, 861, 875, 876, 1054, 1134, 1154, 1166, 1204, 1211, 1215, 1217, 1626, 1667, 1685, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1726, 1832, 1833, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1866, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1910], "real": [0, 186, 240, 297, 301, 311, 315, 451, 455, 456, 463, 500, 517, 518, 521, 523, 528, 536, 539, 541, 542, 543, 544, 545, 546, 549, 550, 553, 554, 557, 562, 570, 572, 573, 575, 576, 580, 589, 612, 638, 664, 670, 698, 703, 709, 737, 742, 748, 776, 781, 787, 815, 820, 826, 854, 942, 948, 976, 994, 1154, 1166, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1216, 1217, 1219, 1600, 1617, 1627, 1637, 1647, 1653, 1663, 1667, 1668, 1673, 1685, 1692, 1696, 1712, 1714, 1715, 1716, 1742, 1768, 1778, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "forc": [0, 1903, 1908], "unit": [0, 557, 558, 560, 562, 563, 1054, 1598, 1601, 1611, 1613, 1615, 1626, 1627, 1631, 1633, 1638, 1646, 1647, 1648, 1649, 1654, 1666, 1667, 1872, 1886, 1892, 1897, 1899, 1903, 1904, 1908], "merg": [0, 363], "both": [0, 8, 428, 449, 478, 514, 520, 522, 524, 531, 537, 539, 541, 543, 551, 583, 1079, 1134, 1154, 1166, 1664, 1768, 1850, 1858, 1859, 1873, 1875, 1877, 1879, 1880, 1883, 1887, 1888, 1890, 1892, 1894, 1895, 1897, 1898, 1899, 1902, 1904, 1907], "updat": [0, 6, 8, 351, 417, 496, 498, 512, 513, 514, 564, 567, 568, 580, 1850, 1861, 1869, 1873, 1877, 1892, 1897], "land": 0, "page": [0, 6, 7, 8, 499, 516, 521, 525, 537, 581, 1848, 1849, 1850, 1851, 1859, 1862, 1874, 1878], "public": [0, 3, 4, 1849, 1850], "corelib": 0, "numer": [0, 3, 4, 5, 572, 581, 1664, 1873, 1876, 1877, 1880, 1883, 1884, 1887, 1890, 1895, 1896, 1900, 1901, 1903, 1905, 1906, 1908], "algorithm": [0, 3, 4, 5, 9, 159, 357, 358, 363, 509, 512, 513, 514, 555, 564, 565, 568, 587, 589, 591, 612, 1883, 1885, 1887, 1889, 1890, 1895, 1896, 1902, 1907], "convert": [0, 9, 148, 355, 448, 490, 491, 493, 572, 573, 574, 575, 897, 1062, 1063, 1074, 1075, 1087, 1088, 1100, 1101, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175, 1662, 1663, 1685, 1699, 1712, 1858, 1873, 1877, 1883, 1887], "readm": 0, "markdown": 0, "conda": [0, 1850], "badg": 0, "openmp": [0, 4, 1856, 1899, 1904], "build": [0, 4, 272, 284, 325, 493, 497, 500, 507, 517, 523, 527, 528, 860, 875, 1626, 1849, 1850, 1851, 1853, 1855, 1857, 1858, 1865, 1867, 1873, 1877, 1887, 1892, 1897], "ubuntu": [0, 1851, 1854, 1855, 1866], "24": [0, 254, 1850, 1862, 1877, 1887, 1896], "04": [0, 1850, 1857, 1873, 1877, 1889, 1892, 1896, 1897, 1905], "nobl": [0, 1850], "distribut": [0, 445, 446, 448, 462, 494, 569, 1134, 1154, 1166, 1750, 1780, 1784, 1849, 1850, 1851, 1854, 1855, 1887, 1899, 1904], "googl": [0, 1849, 1851, 1866], "group": [0, 4, 163, 172, 208, 209, 247, 248, 263, 264, 275, 276, 287, 288, 296, 344, 345, 397, 398, 425, 426, 449, 467, 468, 496, 498, 551, 597, 608, 618, 629, 1832, 1849, 1873, 1877, 1884], "advertis": 0, "instead": [0, 413, 551, 561, 572, 573, 1684, 1762, 1834, 1836, 1842, 1843, 1850, 1873, 1877, 1883, 1886, 1887, 1895], "instruct": [0, 7, 581, 1850, 1851, 1854, 1855, 1876, 1880, 1890, 1895], "osx": [0, 1850], "venv": [0, 1855], "custom": [0, 499, 1850], "environ": [0, 494, 499, 567, 570, 1803, 1851, 1853, 1854, 1857, 1866, 1875, 1877, 1879, 1880, 1889, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "command": [0, 7, 8, 124, 491, 496, 554, 661, 662, 1850, 1852, 1854, 1855, 1858, 1866, 1873, 1877, 1881, 1882, 1884, 1890, 1895, 1910], "note": [0, 3, 449, 498, 506, 507, 510, 511, 514, 517, 518, 519, 537, 541, 542, 544, 545, 546, 547, 548, 551, 553, 570, 575, 579, 580, 586, 670, 676, 698, 699, 709, 715, 737, 738, 748, 754, 776, 777, 787, 793, 815, 816, 826, 832, 854, 855, 935, 942, 948, 954, 976, 977, 1217, 1850, 1851, 1865, 1870, 1873, 1877, 1881, 1882, 1883, 1884, 1887, 1888, 1891, 1894, 1895, 1896, 1901, 1903, 1906, 1908], "develop": [0, 3, 4, 6, 8, 494, 585, 1849, 1850, 1851, 1858, 1865, 1874, 1878, 1890, 1895], "duplic": [0, 1854], "941": 0, "nevanlinna": 0, "applic": [0, 3, 5, 1850, 1851, 1854, 1859, 1865, 1869, 1873, 1877, 1886, 1898], "section": [0, 7, 245, 260, 357, 507, 514, 517, 525, 536, 543, 567, 568, 570, 580, 587, 1849, 1873, 1874, 1876, 1877, 1878, 1880, 1889], "defin": [0, 155, 156, 157, 158, 365, 449, 450, 451, 454, 455, 456, 457, 459, 461, 480, 481, 483, 484, 485, 487, 490, 493, 498, 507, 510, 512, 514, 515, 517, 524, 540, 550, 551, 554, 555, 558, 560, 563, 567, 568, 570, 572, 573, 574, 580, 585, 586, 906, 935, 942, 1187, 1632, 1666, 1685, 1696, 1850, 1856, 1862, 1867, 1872, 1873, 1877, 1883, 1885, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "latex": [0, 511], "docstr": [0, 1856, 1885, 1886, 1887], "raw": [0, 583, 669, 708, 747, 786, 825, 947, 1858, 1873, 1877, 1879, 1889], "avoid": [0, 453, 490, 499, 510, 1850, 1873, 1877, 1883, 1887, 1890, 1895, 1903, 1908], "invalid": [0, 251, 268, 522, 1905], "escap": [0, 1, 2], "sequenc": [0, 325, 326, 327, 329, 334, 335, 336, 338, 342, 352, 520, 572, 574], "build_triq": [0, 1850, 1864], "sh": [0, 1850], "work": [0, 3, 7, 8, 9, 223, 260, 378, 494, 499, 509, 512, 544, 546, 550, 558, 581, 670, 709, 748, 787, 826, 916, 929, 948, 1850, 1852, 1854, 1855, 1858, 1860, 1873, 1877, 1882, 1883, 1887, 1890, 1891, 1895, 1896], "zsh": 0, "maco": 0, "k_space_path": [0, 1873, 1875, 1876, 1877, 1879, 1880, 1899, 1904, 1905, 1906], "layout": [0, 259, 260, 268, 271, 272, 283, 284, 292, 311], "html": [0, 7, 1873, 1877, 1899, 1904], "912": 0, "gpg": [0, 1850], "agent": [0, 1850], "numpydoc": [0, 1856], "sourc": [0, 3, 5, 7, 8, 352, 449, 489, 490, 493, 494, 498, 511, 544, 545, 546, 547, 548, 550, 551, 553, 559, 560, 561, 573, 575, 576, 577, 579, 581, 589, 645, 646, 647, 648, 649, 650, 653, 655, 656, 659, 660, 664, 665, 703, 704, 742, 743, 781, 782, 820, 821, 859, 860, 862, 863, 864, 871, 872, 874, 875, 878, 879, 880, 881, 882, 885, 886, 887, 891, 892, 893, 894, 895, 896, 897, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 912, 913, 914, 916, 917, 918, 919, 921, 922, 924, 925, 927, 928, 929, 930, 933, 935, 937, 938, 940, 941, 942, 943, 944, 945, 946, 948, 954, 957, 958, 976, 977, 978, 979, 980, 981, 982, 983, 984, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1022, 1023, 1024, 1025, 1026, 1027, 1030, 1031, 1037, 1038, 1041, 1042, 1044, 1045, 1047, 1048, 1050, 1051, 1052, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1189, 1190, 1191, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1203, 1204, 1205, 1206, 1207, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1594, 1595, 1596, 1622, 1623, 1626, 1627, 1628, 1629, 1630, 1632, 1642, 1644, 1646, 1647, 1648, 1649, 1650, 1651, 1653, 1659, 1660, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1707, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1722, 1723, 1726, 1727, 1728, 1729, 1731, 1732, 1740, 1754, 1756, 1757, 1758, 1760, 1762, 1763, 1768, 1769, 1772, 1773, 1774, 1775, 1776, 1778, 1780, 1783, 1784, 1786, 1787, 1788, 1789, 1790, 1791, 1797, 1800, 1801, 1803, 1805, 1806, 1807, 1808, 1809, 1812, 1813, 1814, 1815, 1816, 1817, 1819, 1820, 1821, 1822, 1823, 1826, 1827, 1828, 1829, 1831, 1832, 1841, 1845, 1846, 1847, 1851, 1854, 1865, 1867], "fail": [0, 498, 1778, 1888, 1894], "git": [0, 8, 581, 1850, 1857, 1858, 1877], "clone": [0, 490, 525, 1058, 1069, 1082, 1095, 1108, 1121, 1137, 1148, 1156, 1168, 1850], "attempt": [0, 407, 428, 430, 431, 432, 433, 438, 564, 567, 570, 1838, 1854, 1879], "when": [0, 6, 7, 8, 71, 317, 351, 407, 413, 428, 430, 431, 449, 451, 453, 457, 459, 490, 493, 498, 506, 510, 512, 513, 515, 519, 527, 528, 531, 533, 535, 537, 543, 551, 560, 569, 570, 585, 1666, 1700, 1701, 1702, 1784, 1832, 1833, 1835, 1838, 1849, 1852, 1858, 1864, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1884, 1887, 1888, 1889, 1890, 1894, 1895, 1900, 1901, 1903, 1905, 1906, 1908], "userguid": [0, 6], "tutori": [0, 5, 7, 9, 565, 580, 935, 1849, 1868, 1870, 1871, 1874, 1876, 1878, 1880, 1881, 1883, 1887, 1890, 1895, 1896, 1899, 1904, 1909], "directori": [0, 8, 498, 1850, 1852, 1853, 1855, 1857, 1858, 1867, 1873, 1874, 1877, 1878, 1890, 1895, 1896], "alreadi": [0, 493, 498, 510, 543, 568, 570, 1850, 1854, 1856, 1870, 1873, 1876, 1877, 1880, 1881, 1891, 1892, 1896, 1897], "present": [0, 494, 508, 543, 544, 545, 546, 547, 548, 551, 664, 703, 742, 781, 820, 1838, 1855, 1856, 1859], "bump": 0, "number": [0, 3, 5, 9, 11, 12, 13, 32, 48, 53, 60, 70, 71, 114, 124, 155, 156, 157, 158, 159, 172, 180, 182, 183, 185, 186, 188, 189, 200, 203, 225, 228, 303, 316, 339, 350, 364, 383, 404, 407, 417, 418, 421, 428, 430, 431, 442, 449, 450, 451, 452, 453, 457, 458, 459, 460, 463, 465, 474, 475, 476, 479, 488, 497, 498, 500, 507, 517, 520, 523, 528, 533, 541, 547, 553, 555, 556, 557, 559, 561, 564, 565, 567, 568, 570, 571, 572, 573, 575, 576, 577, 581, 583, 589, 591, 607, 608, 612, 628, 629, 640, 641, 649, 650, 684, 723, 762, 801, 840, 869, 889, 962, 1054, 1067, 1092, 1105, 1118, 1126, 1134, 1154, 1166, 1185, 1187, 1211, 1601, 1602, 1609, 1629, 1638, 1639, 1643, 1654, 1655, 1658, 1659, 1664, 1666, 1667, 1680, 1684, 1685, 1708, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1742, 1748, 1749, 1757, 1758, 1762, 1763, 1764, 1765, 1768, 1778, 1832, 1838, 1849, 1850, 1852, 1854, 1858, 1861, 1862, 1867, 1869, 1870, 1873, 1877, 1880, 1881, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1904, 1905], "gnuinstalldir": 0, "obtain": [0, 253, 354, 449, 494, 514, 520, 531, 553, 582, 583, 935, 986, 1211, 1849, 1862, 1873, 1877, 1885, 1886, 1888, 1889, 1894, 1895, 1902, 1907], "proper": [0, 3, 537, 541, 553, 1214, 1850, 1855, 1858, 1865], "libdir": 0, "locat": [0, 586, 1850, 1867], "boost": [0, 442, 443, 564, 572, 582, 1854, 1856], "import": [0, 493, 494, 497, 498, 500, 515, 543, 544, 545, 546, 547, 548, 550, 551, 554, 558, 560, 563, 572, 579, 580, 581, 582, 661, 662, 1848, 1849, 1850, 1852, 1864, 1869, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1884, 1885, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "target": [0, 8, 128, 129, 130, 241, 242, 245, 251, 257, 259, 260, 268, 269, 270, 271, 272, 280, 281, 282, 283, 284, 292, 293, 294, 295, 297, 300, 314, 319, 344, 397, 517, 521, 523, 525, 527, 528, 529, 531, 533, 535, 544, 545, 546, 547, 548, 664, 676, 694, 695, 696, 697, 703, 715, 733, 734, 735, 736, 742, 754, 772, 773, 774, 775, 781, 793, 811, 812, 813, 814, 820, 832, 850, 851, 852, 853, 875, 942, 954, 972, 973, 974, 975, 1012, 1778, 1832, 1841, 1849, 1873, 1877, 1887], "70": [0, 1856, 1873, 1877, 1896], "project": [0, 3, 4, 7, 365, 555, 1849, 1858, 1859, 1886], "languag": [0, 491, 496, 519, 525, 1849, 1851, 1856, 1858, 1870, 1881], "benchmark": 0, "branch": [0, 7, 8, 496, 1850, 1858], "unstabl": [0, 7, 8, 1850, 1858, 1873, 1877, 1883, 1887, 1899, 1900, 1904, 1905], "fmt": 0, "copi": [0, 8, 30, 85, 88, 137, 197, 204, 206, 214, 245, 260, 272, 284, 292, 303, 356, 358, 408, 410, 451, 490, 493, 507, 510, 513, 522, 523, 525, 537, 542, 545, 547, 548, 549, 556, 559, 572, 581, 587, 666, 668, 679, 699, 705, 707, 718, 738, 744, 746, 757, 777, 783, 785, 796, 816, 822, 824, 835, 855, 860, 863, 864, 875, 880, 881, 944, 946, 957, 977, 1048, 1850, 1864, 1873, 1874, 1875, 1877, 1878, 1879, 1886, 1887, 1892, 1894, 1895, 1897], "desc": [0, 9, 491], "file": [0, 4, 5, 7, 8, 9, 268, 491, 493, 494, 496, 498, 523, 532, 543, 551, 553, 558, 567, 570, 575, 581, 585, 586, 653, 1217, 1663, 1667, 1668, 1709, 1710, 1711, 1850, 1852, 1856, 1857, 1859, 1860, 1865, 1866, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1884, 1885, 1886, 1887, 1899, 1900, 1904, 1905, 1910], "macro": [0, 510, 585], "triqs_arrays_enforce_boundcheck": 0, "nda_debug": 0, "cpp2py_python_xxx": 0, "variabl": [0, 139, 463, 490, 499, 507, 508, 509, 514, 516, 517, 518, 521, 523, 524, 531, 534, 536, 542, 559, 570, 649, 669, 700, 708, 739, 747, 778, 786, 817, 825, 856, 947, 978, 1742, 1768, 1778, 1803, 1850, 1853, 1857, 1866, 1867, 1881, 1891, 1896], "python_xxx": 0, "relwithdebinfo": 0, "set": [0, 4, 9, 15, 21, 51, 52, 117, 155, 156, 157, 158, 159, 165, 225, 226, 227, 228, 325, 326, 329, 331, 332, 333, 334, 337, 339, 340, 341, 342, 356, 357, 368, 379, 390, 401, 402, 403, 407, 413, 428, 429, 430, 431, 451, 493, 498, 499, 500, 512, 516, 517, 519, 528, 537, 541, 543, 544, 545, 546, 547, 548, 554, 555, 556, 569, 570, 572, 574, 575, 577, 580, 581, 600, 621, 664, 676, 697, 701, 703, 715, 736, 740, 742, 754, 775, 779, 781, 793, 814, 818, 820, 832, 853, 857, 935, 942, 954, 975, 979, 1012, 1673, 1675, 1722, 1723, 1803, 1833, 1839, 1842, 1843, 1849, 1850, 1852, 1853, 1854, 1855, 1859, 1866, 1867, 1870, 1872, 1873, 1877, 1879, 1880, 1881, 1883, 1886, 1887, 1888, 1891, 1892, 1894, 1895, 1896, 1897, 1898], "polici": 0, "114": 0, "rpath": 0, "triqsconfig": [0, 1867], "docker": 0, "imag": [0, 240, 548, 572, 579, 580, 1848, 1850, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1892, 1894, 1895, 1896, 1897, 1904, 1905, 1907], "openblas_num_thread": [0, 1852], "mkl_num_thread": [0, 1852], "oneapi": 0, "2024": 0, "consist": [0, 4, 16, 126, 235, 236, 492, 493, 1859, 1869, 1873, 1877, 1879, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1901, 1903, 1906, 1908, 1909, 1910], "openbla": [0, 1852, 1854], "over": [0, 190, 456, 465, 476, 481, 484, 485, 498, 505, 517, 531, 537, 539, 543, 551, 555, 556, 558, 564, 570, 571, 583, 1780, 1815, 1829, 1858, 1862, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "liblapack": 0, "dockerfil": 0, "jenkinsfil": 0, "more": [0, 8, 9, 461, 480, 481, 492, 496, 499, 503, 506, 509, 510, 516, 517, 520, 524, 525, 527, 528, 532, 543, 551, 568, 570, 572, 579, 580, 581, 1844, 1848, 1849, 1850, 1851, 1854, 1855, 1859, 1861, 1862, 1866, 1872, 1873, 1874, 1877, 1878, 1883, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1899, 1903, 1904, 1908], "For": [0, 4, 348, 349, 357, 442, 449, 490, 492, 493, 498, 499, 506, 507, 508, 510, 511, 514, 515, 517, 520, 523, 524, 532, 541, 543, 544, 545, 546, 547, 548, 551, 564, 569, 570, 571, 572, 583, 585, 664, 703, 742, 781, 820, 897, 935, 1079, 1092, 1105, 1848, 1849, 1850, 1855, 1856, 1857, 1858, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1885, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "mode": [0, 543, 547, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1727, 1728, 1740, 1850, 1853, 1905], "sure": [0, 8, 1832, 1848, 1850, 1854, 1855, 1857, 1858, 1873, 1877, 1903, 1908], "run": [0, 7, 8, 329, 406, 407, 410, 419, 422, 430, 431, 434, 517, 567, 570, 581, 1663, 1806, 1832, 1837, 1844, 1849, 1850, 1852, 1854, 1855, 1858, 1859, 1866, 1871, 1875, 1879, 1881, 1882, 1884, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1904, 1905, 1906, 1908, 1910], "suffici": [0, 1850, 1883, 1887, 1901, 1906], "share": [0, 4, 1849, 1850], "arg": [0, 354, 490, 493, 544, 545, 546, 547, 548, 551, 589, 592, 613, 670, 671, 672, 673, 674, 675, 681, 682, 686, 687, 688, 689, 690, 691, 692, 693, 697, 698, 709, 710, 711, 712, 713, 714, 720, 721, 725, 726, 727, 728, 729, 730, 731, 732, 736, 737, 748, 749, 750, 751, 752, 753, 759, 760, 764, 765, 766, 767, 768, 769, 770, 771, 775, 776, 787, 788, 789, 790, 791, 792, 798, 799, 803, 804, 805, 806, 807, 808, 809, 810, 814, 815, 826, 827, 828, 829, 830, 831, 837, 838, 842, 843, 844, 845, 846, 847, 848, 849, 853, 854, 862, 879, 882, 892, 901, 902, 918, 919, 940, 941, 948, 949, 950, 951, 952, 953, 959, 960, 964, 965, 966, 967, 968, 969, 970, 971, 975, 976, 1014, 1015, 1055, 1068, 1080, 1093, 1106, 1119, 1135, 1146, 1155, 1167, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1599, 1607, 1612, 1631, 1633, 1648, 1649, 1672, 1735, 1743, 1832, 1841, 1885, 1886, 1887, 1903, 1907, 1908], "ncore": [0, 1850], "dockerbuild": 0, "builduid": 0, "configur": [0, 417, 430, 431, 449, 568, 570, 581, 1850, 1851, 1858, 1865, 1867, 1873, 1877], "error": [0, 9, 115, 116, 201, 226, 254, 255, 448, 449, 455, 456, 461, 480, 481, 483, 484, 487, 499, 502, 506, 541, 564, 575, 580, 585, 1711, 1838, 1851, 1857, 1873, 1877, 1889, 1895], "recommend": [0, 543, 551, 585, 1848, 1849, 1850, 1851, 1854, 1859, 1870, 1873, 1877, 1881, 1890, 1895], "virtualenv": 0, "synchron": [0, 115, 1806], "three": [0, 459, 480, 481, 499, 557, 563, 567, 570, 572, 573, 575, 1598, 1627, 1634, 1635, 1647, 1650, 1651, 1666, 1668, 1695, 1859, 1910], "symmetri": [0, 171, 254, 300, 515, 521, 525, 544, 551, 563, 1883, 1887, 1890, 1895, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "initi": [0, 153, 155, 156, 157, 158, 170, 316, 317, 354, 430, 431, 451, 519, 525, 541, 543, 546, 550, 553, 554, 561, 567, 568, 593, 594, 595, 596, 614, 615, 616, 617, 906, 1211, 1216, 1666, 1756, 1758, 1765, 1768, 1778, 1833, 1839, 1849, 1861, 1862, 1884, 1888, 1889, 1892, 1894, 1895, 1897, 1903, 1907, 1908], "overload": [0, 9, 21, 24, 32, 36, 40, 65, 68, 78, 81, 102, 106, 251, 489, 490, 493, 502, 503, 507, 508, 516, 517, 524, 571, 587], "wrap": [0, 9, 119, 122, 490, 491, 493, 494, 985, 995, 1220, 1851, 1864, 1873, 1877], "evalu": [0, 9, 217, 502, 503, 507, 508, 509, 510, 513, 517, 521, 525, 532, 540, 543, 562, 587, 687, 688, 726, 727, 765, 766, 804, 805, 843, 844, 965, 966, 1005, 1006, 1023, 1079, 1092, 1105, 1613, 1615, 1631, 1633, 1648, 1649, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1899, 1900, 1903, 1904, 1905, 1908], "concept": [0, 9, 251, 268, 365, 408, 410, 435, 510, 511, 513, 518, 519, 522, 527, 528, 533, 535, 542, 565, 570], "rais": [0, 498, 1700, 1701, 1702, 1833, 1838, 1844], "clang15": 0, "gcc12": 0, "john": 0, "bonini": 0, "kacper": 0, "cybi\u0144ski": 0, "philipp": 0, "dumitrescu": [0, 3], "olivi": 0, "gingra": 0, "collin": 0, "kariuki": 0, "igor": 0, "krivenko": [0, 3, 4], "harri": 0, "labollita": 0, "r\u00e9mi": 0, "lacroix": 0, "henri": 0, "menk": [0, 3], "parcollet": [0, 3], "hugo": [0, 553, 1213], "u": [0, 4, 6, 9, 39, 105, 461, 496, 497, 498, 499, 500, 502, 514, 515, 543, 553, 555, 560, 568, 571, 574, 575, 579, 1054, 1213, 1684, 1685, 1689, 1691, 1694, 1700, 1701, 1709, 1710, 1711, 1858, 1860, 1864, 1869, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1897, 1901, 1903, 1906, 1908], "r": [0, 19, 20, 25, 32, 34, 35, 41, 47, 63, 64, 69, 71, 77, 82, 83, 90, 95, 101, 107, 113, 435, 438, 498, 506, 513, 521, 541, 543, 553, 562, 563, 564, 579, 580, 582, 587, 676, 715, 754, 793, 832, 954, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1213, 1591, 1611, 1628, 1629, 1632, 1728, 1849, 1858, 1863, 1873, 1876, 1877, 1879, 1880, 1882, 1883, 1884, 1886, 1887, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1906, 1907, 1908], "strand": [0, 3, 553, 1213], "jie": 0, "xiong": 0, "interfac": [0, 9, 425, 426, 488, 496, 498, 499, 500, 543, 551, 572, 578, 1646, 1666, 1849, 1856, 1859, 1868, 1873, 1874, 1877, 1878, 1881, 1882, 1883, 1884, 1887], "summar": [0, 1858, 1873, 1877, 1882], "adjust": [0, 546, 559, 579, 649, 659, 671, 710, 749, 788, 827, 949, 997, 1858, 1889, 1903, 1907, 1908, 1910], "conveni": [0, 498, 523, 532, 541, 572, 579, 1858, 1883, 1887, 1890, 1895], "have": [0, 4, 6, 7, 8, 181, 184, 185, 186, 187, 218, 262, 274, 286, 401, 402, 451, 459, 480, 481, 483, 484, 496, 498, 499, 506, 507, 509, 510, 514, 515, 517, 522, 523, 524, 527, 531, 535, 541, 543, 551, 567, 568, 569, 570, 572, 575, 576, 577, 578, 579, 580, 581, 583, 863, 880, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1849, 1850, 1851, 1852, 1856, 1858, 1859, 1860, 1862, 1863, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1910], "you": [0, 3, 4, 6, 7, 8, 496, 508, 509, 515, 543, 551, 554, 565, 568, 569, 570, 581, 582, 1838, 1841, 1848, 1849, 1850, 1852, 1854, 1855, 1856, 1857, 1858, 1859, 1862, 1864, 1865, 1866, 1868, 1870, 1871, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910], "can": [0, 3, 4, 6, 7, 8, 11, 197, 251, 268, 325, 365, 378, 449, 451, 458, 460, 461, 490, 491, 493, 496, 497, 498, 499, 500, 502, 506, 507, 508, 510, 512, 515, 516, 517, 519, 521, 522, 524, 527, 528, 529, 531, 533, 535, 537, 539, 541, 543, 547, 550, 551, 554, 559, 560, 561, 564, 565, 567, 568, 569, 570, 571, 572, 573, 575, 579, 580, 581, 582, 583, 585, 586, 587, 649, 650, 653, 659, 665, 704, 743, 782, 821, 860, 935, 1023, 1079, 1092, 1105, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1632, 1664, 1685, 1754, 1760, 1762, 1803, 1838, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1862, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910], "download": [0, 1856, 1858, 1874, 1878], "top": [0, 8, 272, 284, 580, 1626, 1646, 1850, 1858, 1873, 1874, 1877, 1878, 1889], "level": [0, 413, 449, 499, 500, 570, 579, 1778, 1800, 1849, 1858, 1859, 1862, 1873, 1877, 1878, 1880, 1883, 1887, 1889, 1899, 1904], "your": [0, 4, 6, 7, 565, 569, 581, 1848, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1857, 1859, 1864, 1866, 1867, 1870, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1882, 1889, 1890, 1891, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "repositori": [0, 1850, 1858, 1859], "previous": [0, 433, 441, 1874, 1878, 1880], "gfindic": 0, "domain": [0, 259, 271, 283, 505, 518, 519, 521, 524, 539, 542, 650, 919, 922, 925, 1883, 1887, 1903, 1908], "directli": [0, 4, 6, 480, 481, 490, 493, 523, 541, 573, 935, 1685, 1849, 1850, 1866, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1884, 1886, 1887, 1890, 1892, 1895, 1897, 1899, 1900, 1904, 1905], "paramet": [0, 9, 453, 490, 493, 497, 498, 499, 501, 517, 518, 519, 520, 527, 528, 529, 533, 535, 542, 551, 553, 555, 557, 559, 560, 562, 564, 567, 570, 571, 573, 575, 576, 577, 579, 581, 587, 591, 612, 646, 650, 653, 656, 659, 660, 670, 676, 700, 709, 715, 739, 748, 754, 778, 787, 793, 817, 826, 832, 856, 907, 917, 919, 922, 925, 930, 932, 935, 942, 948, 954, 978, 1030, 1044, 1079, 1092, 1105, 1118, 1134, 1145, 1185, 1187, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1210, 1211, 1212, 1213, 1215, 1216, 1217, 1219, 1598, 1606, 1611, 1622, 1626, 1627, 1634, 1635, 1647, 1650, 1651, 1659, 1662, 1663, 1664, 1666, 1667, 1668, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1740, 1747, 1750, 1751, 1763, 1778, 1861, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1885, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897], "alwai": [0, 449, 457, 459, 507, 543, 570, 1832, 1838, 1854, 1873, 1877, 1880, 1902, 1907], "return": [0, 8, 9, 84, 160, 177, 178, 179, 199, 204, 205, 206, 207, 214, 215, 224, 232, 233, 234, 235, 236, 237, 238, 239, 251, 268, 292, 297, 311, 319, 354, 427, 433, 435, 445, 446, 447, 449, 490, 492, 493, 497, 498, 500, 501, 502, 506, 508, 509, 510, 513, 517, 519, 524, 527, 528, 533, 534, 535, 539, 541, 543, 544, 545, 546, 547, 548, 551, 553, 555, 556, 557, 559, 560, 561, 563, 564, 567, 570, 572, 573, 574, 575, 576, 577, 580, 585, 587, 589, 593, 595, 598, 610, 611, 614, 616, 619, 631, 632, 653, 666, 667, 670, 679, 698, 699, 700, 705, 706, 709, 718, 737, 738, 739, 744, 745, 748, 757, 776, 777, 778, 783, 784, 787, 796, 815, 816, 817, 822, 823, 826, 835, 854, 855, 856, 860, 862, 864, 871, 878, 879, 881, 882, 885, 893, 894, 935, 939, 944, 945, 948, 957, 976, 977, 978, 1017, 1018, 1023, 1185, 1187, 1201, 1203, 1204, 1205, 1209, 1210, 1211, 1213, 1214, 1215, 1216, 1217, 1218, 1603, 1604, 1628, 1634, 1635, 1650, 1651, 1659, 1662, 1663, 1664, 1666, 1667, 1668, 1673, 1675, 1678, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1731, 1740, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1755, 1757, 1761, 1764, 1768, 1778, 1780, 1815, 1829, 1834, 1836, 1837, 1838, 1855, 1860, 1861, 1862, 1881, 1886, 1888, 1894, 1902, 1903, 1907, 1908], "tick": [0, 1666, 1905, 1906], "third": [0, 553, 570, 1212, 1854, 1882], "argument": [0, 9, 124, 335, 354, 355, 360, 370, 381, 490, 492, 493, 499, 503, 505, 506, 508, 513, 524, 531, 541, 553, 561, 569, 570, 572, 573, 580, 587, 875, 942, 1214, 1688, 1755, 1761, 1768, 1780, 1832, 1838, 1841, 1873, 1877, 1881, 1882, 1883, 1887, 1889, 1903, 1908], "member": [0, 490, 514, 518, 536, 542, 550, 552, 555, 556, 570, 571, 1873, 1877, 1881, 1888, 1889, 1894, 1900, 1905], "block2gf": [0, 297, 319], "extract_mesh": 0, "get_mesh": [0, 240], "hamiltonian": [0, 9, 153, 154, 159, 169, 171, 177, 181, 184, 185, 186, 187, 357, 358, 361, 488, 500, 555, 562, 570, 572, 573, 589, 591, 606, 612, 627, 1611, 1646, 1663, 1664, 1685, 1700, 1701, 1702, 1869, 1874, 1876, 1878, 1879, 1880, 1885, 1889, 1891, 1892, 1895, 1896, 1897, 1899, 1904], "factori": [0, 571], "now": [0, 7, 8, 459, 500, 514, 517, 519, 543, 567, 569, 570, 1854, 1858, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1883, 1884, 1887, 1888, 1892, 1894, 1895, 1896, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "take": [0, 3, 4, 7, 297, 311, 319, 355, 360, 370, 381, 449, 480, 481, 499, 515, 521, 527, 528, 529, 533, 535, 541, 545, 547, 548, 558, 560, 565, 568, 570, 572, 573, 576, 580, 581, 699, 738, 777, 816, 855, 860, 977, 1201, 1626, 1664, 1685, 1688, 1689, 1692, 1694, 1714, 1715, 1716, 1778, 1848, 1860, 1869, 1873, 1876, 1877, 1880, 1882, 1888, 1889, 1891, 1894, 1895, 1896, 1900, 1902, 1905, 1907], "n_orb": [0, 500, 563, 573, 575, 576, 577, 1684, 1707, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1723, 1873, 1875, 1876, 1877, 1879, 1880, 1895], "orb_nam": [0, 500, 575, 576, 1707, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1720], "brzone": [0, 1062, 1063, 1064], "cyclat": [0, 1074, 1075, 1076], "dim": [0, 573, 700, 739, 778, 817, 856, 978, 1054, 1067, 1693, 1754, 1756, 1815, 1829, 1873, 1877, 1879, 1880], "period": [0, 528, 540, 567, 1054, 1067, 1635, 1651], "matrix": [0, 9, 156, 158, 170, 171, 175, 176, 181, 182, 183, 190, 191, 192, 197, 198, 214, 215, 223, 229, 235, 236, 238, 252, 358, 361, 363, 500, 502, 509, 512, 513, 514, 515, 517, 521, 525, 527, 528, 529, 533, 535, 542, 544, 545, 546, 547, 548, 549, 551, 553, 557, 560, 561, 562, 563, 571, 572, 574, 575, 576, 594, 596, 615, 617, 634, 670, 676, 679, 699, 709, 715, 718, 738, 748, 754, 757, 777, 787, 793, 796, 816, 826, 832, 835, 855, 948, 954, 957, 977, 996, 1054, 1065, 1077, 1213, 1215, 1591, 1598, 1605, 1610, 1611, 1615, 1633, 1649, 1684, 1685, 1686, 1689, 1691, 1692, 1693, 1694, 1696, 1700, 1701, 1709, 1710, 1711, 1714, 1715, 1716, 1754, 1760, 1860, 1861, 1862, 1873, 1877, 1886, 1890, 1895, 1899, 1904], "u_matrix": [0, 573, 575, 1711], "u_matrix_slat": [0, 573], "symbol": [0, 573, 1695, 1870, 1881, 1882], "print": [0, 440, 454, 500, 510, 551, 555, 563, 570, 572, 582, 1778, 1813, 1850, 1852, 1863, 1869, 1873, 1876, 1877, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1890, 1891, 1895, 1896, 1899, 1903, 1904, 1907, 1908], "sympi": [0, 1870], "express": [0, 9, 251, 262, 268, 274, 286, 368, 379, 488, 502, 505, 509, 510, 517, 518, 542, 549, 550, 551, 553, 572, 587, 918, 921, 924, 1017, 1018, 1022, 1027, 1214, 1851, 1858, 1870, 1883, 1885, 1887, 1892, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "898": 0, "invers": [0, 4, 181, 182, 183, 184, 185, 186, 187, 214, 215, 240, 322, 323, 500, 513, 514, 515, 520, 543, 547, 550, 551, 553, 567, 570, 579, 580, 877, 886, 935, 1030, 1079, 1092, 1105, 1118, 1134, 1145, 1644, 1848, 1860, 1861, 1862, 1863, 1869, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1891, 1894, 1895, 1896, 1897, 1899, 1901, 1903, 1904, 1906, 1908], "lazi": [0, 9, 11, 245, 251, 260, 268, 292, 317, 488, 499, 504, 507, 508, 510, 519, 542, 549, 553, 587, 918, 921, 924, 1214], "complex_t": 0, "optim": [0, 351, 516, 520, 553, 935, 1211, 1850, 1851, 1873, 1877, 1879, 1883, 1887, 1902, 1903, 1907, 1908], "interpolate_on_seg": 0, "onli": [0, 3, 7, 223, 260, 351, 352, 354, 357, 359, 363, 365, 449, 451, 453, 456, 463, 466, 473, 481, 490, 491, 493, 498, 500, 507, 509, 510, 511, 513, 514, 520, 523, 524, 531, 536, 539, 550, 553, 556, 559, 560, 561, 568, 570, 572, 573, 576, 580, 653, 670, 676, 698, 699, 709, 715, 737, 738, 748, 754, 776, 777, 787, 793, 815, 816, 826, 832, 854, 855, 865, 870, 875, 883, 888, 890, 916, 929, 935, 948, 954, 976, 977, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1213, 1632, 1684, 1714, 1715, 1716, 1745, 1755, 1761, 1778, 1833, 1834, 1839, 1852, 1856, 1860, 1873, 1876, 1877, 1880, 1883, 1886, 1887, 1888, 1889, 1894, 1895, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "boundari": [0, 463, 470, 1626, 1746], "free": [0, 7, 365, 506, 517, 518, 541, 543, 552, 556, 558, 559, 570, 571, 648, 652, 1849, 1872, 1873, 1874, 1877, 1878, 1903, 1908], "is_op_hermitian": 0, "hermit": [0, 541, 553, 993, 1213], "c2py": 0, "oplotr": 0, "oploti": 0, "477": 0, "obsolet": 0, "serial": [0, 543, 551, 571, 1850, 1857, 1875, 1877, 1879, 1880, 1889, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "global": [0, 1852], "count": [0, 463, 464, 491, 499, 1742, 1744, 1873, 1876, 1877, 1879, 1880], "accumul": [0, 406, 415, 428, 431, 448, 463, 464, 474, 476, 480, 481, 564, 567, 570, 583, 585, 891, 1744, 1748, 1889, 1896], "gfinterpol": 0, "closestmeshpoint": 0, "easybuild": [0, 5], "sha256": 0, "tarbal": 0, "cleanup": [0, 1854], "regener": 0, "gpl": [0, 3, 1849], "copyright": 0, "header": [0, 7, 9, 493, 494, 507, 569, 570, 586, 1852, 1856, 1865, 1867, 1907], "gcc": [0, 585, 586, 1851, 1856, 1857], "clang": [0, 494, 585, 1850, 1854, 1856, 1857], "format": [0, 3, 9, 463, 469, 488, 497, 498, 543, 544, 545, 546, 547, 548, 551, 553, 559, 580, 653, 1217, 1219, 1856, 1873, 1877, 1883, 1887, 1892, 1897], "gf_sym_grp": 0, "parallel": [0, 498, 564, 573, 1684, 1691, 1850, 1856, 1873, 1877, 1886, 1899, 1904], "valid": [0, 473, 511, 514, 524, 537, 572, 574, 576, 580, 587, 1714, 1715, 1716, 1861, 1903, 1908], "meshproduct": [0, 1873, 1877, 1879, 1886, 1899, 1904], "combin": [0, 550, 589, 591, 612, 916, 929, 1870, 1873, 1877, 1879, 1883, 1885, 1887, 1900, 1902, 1905, 1907], "k": [0, 300, 314, 498, 520, 531, 559, 561, 562, 563, 573, 575, 587, 1054, 1185, 1187, 1613, 1615, 1631, 1633, 1648, 1649, 1659, 1664, 1666, 1685, 1686, 1701, 1711, 1754, 1757, 1758, 1760, 1762, 1763, 1764, 1765, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "iw": [0, 537, 543, 553, 993, 994, 1178, 1210, 1219, 1883, 1886, 1887], "etc": [0, 4, 8, 9, 484, 485, 488, 496, 512, 581, 586, 1632, 1850, 1873, 1877, 1881, 1882, 1883, 1886, 1887], "idx": [0, 543, 1883, 1887, 1903, 1907, 1908], "tau": [0, 185, 252, 300, 311, 314, 321, 449, 487, 513, 515, 520, 528, 539, 545, 553, 576, 583, 700, 739, 778, 817, 856, 978, 994, 1079, 1105, 1211, 1215, 1719, 1873, 1875, 1877, 1879, 1883, 1887, 1888, 1894, 1900, 1902, 1905, 1907], "legendr": [0, 183, 500, 517, 518, 521, 536, 542, 543, 544, 545, 549, 553, 561, 636, 670, 671, 690, 691, 692, 698, 709, 710, 729, 730, 731, 737, 748, 749, 768, 769, 770, 776, 787, 788, 807, 808, 809, 815, 826, 827, 846, 847, 848, 854, 921, 922, 924, 948, 949, 968, 969, 970, 976, 997, 1008, 1009, 1010, 1145, 1152, 1153, 1213, 1754, 1760], "gf_view": [0, 240, 255, 260, 272, 280, 316, 518, 521, 523, 524, 525, 534, 537, 543, 544, 545, 546, 547, 548, 551, 671, 672, 674, 686, 687, 688, 689, 690, 691, 692, 693, 697, 710, 711, 713, 725, 726, 727, 728, 729, 730, 731, 732, 736, 749, 750, 752, 764, 765, 766, 767, 768, 769, 770, 771, 775, 788, 789, 791, 803, 804, 805, 806, 807, 808, 809, 810, 814, 827, 828, 830, 842, 843, 844, 845, 846, 847, 848, 849, 853, 949, 950, 952, 964, 965, 966, 967, 968, 969, 970, 971, 975, 990, 993, 994, 996, 997, 998, 1000, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012], "make_gf_from_fouri": [0, 240, 519, 1883, 1887], "time": [0, 4, 7, 9, 185, 253, 302, 306, 307, 308, 313, 315, 316, 407, 415, 416, 422, 423, 424, 428, 430, 431, 448, 449, 487, 488, 492, 500, 507, 509, 512, 514, 517, 518, 519, 521, 524, 536, 540, 542, 543, 544, 549, 553, 563, 568, 570, 572, 581, 583, 585, 637, 697, 736, 775, 814, 853, 919, 935, 975, 986, 987, 988, 989, 992, 1012, 1079, 1092, 1105, 1134, 1166, 1211, 1213, 1216, 1769, 1780, 1806, 1838, 1849, 1857, 1859, 1870, 1873, 1877, 1882, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1902, 1905, 1907], "transform": [0, 9, 11, 85, 86, 175, 176, 306, 307, 308, 312, 313, 314, 315, 496, 498, 503, 518, 520, 541, 542, 544, 545, 547, 548, 549, 550, 552, 557, 558, 559, 562, 572, 573, 576, 609, 630, 649, 655, 676, 689, 690, 691, 692, 715, 728, 729, 730, 731, 754, 767, 768, 769, 770, 793, 806, 807, 808, 809, 832, 845, 846, 847, 848, 916, 918, 919, 921, 922, 924, 925, 929, 954, 967, 968, 969, 970, 987, 988, 989, 990, 991, 992, 1007, 1008, 1009, 1010, 1600, 1615, 1617, 1633, 1637, 1649, 1653, 1685, 1692, 1696, 1714, 1715, 1716, 1856, 1886, 1889, 1897], "gf_expr": 0, "gf_unary_m_expr": 0, "regular_t": [0, 142], "set_from_pad": [0, 547, 1883, 1887, 1894, 1895, 1900, 1905], "scalar_valu": [0, 519, 521, 527, 528, 529, 531, 532, 533, 534, 535, 541, 544, 545, 547, 548, 681, 682, 689, 690, 691, 692, 693, 697, 720, 721, 728, 729, 730, 731, 732, 736, 759, 760, 767, 768, 769, 770, 771, 775, 798, 799, 806, 807, 808, 809, 810, 814, 837, 838, 845, 846, 847, 848, 849, 853, 959, 960, 967, 968, 969, 970, 971, 975, 986, 987, 988, 989, 990, 991, 992, 993, 994, 1002, 1003, 1007, 1008, 1009, 1010, 1011, 1012, 1862], "tensor_valu": [0, 257, 521, 532, 1862], "memorygf": [0, 323], "index_t": [0, 517, 537, 539, 1062, 1063, 1064, 1074, 1075, 1076, 1087, 1088, 1089, 1100, 1101, 1102, 1113, 1114, 1115, 1130, 1131, 1132, 1141, 1142, 1143, 1152, 1153, 1160, 1161, 1162, 1174, 1175, 1176], "product": [0, 4, 11, 32, 35, 36, 48, 170, 254, 255, 342, 369, 380, 500, 517, 518, 521, 532, 556, 572, 575, 578, 1044, 1708, 1851, 1862, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1886, 1890, 1895, 1900, 1905], "ad": [0, 235, 236, 410, 434, 451, 459, 461, 476, 496, 498, 500, 502, 512, 513, 514, 560, 570, 580, 581, 1778, 1850, 1861, 1869, 1873, 1877, 1881, 1882, 1883, 1885, 1887, 1900, 1903, 1905, 1908], "array_prior": 0, "so": [0, 223, 230, 231, 357, 449, 451, 494, 496, 506, 513, 532, 543, 551, 553, 564, 565, 568, 570, 579, 580, 581, 587, 659, 1213, 1838, 1864, 1866, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "rmul": 0, "prioriti": [0, 508], "ndarrai": [0, 544, 546, 553, 557, 669, 670, 676, 708, 709, 715, 747, 748, 754, 786, 787, 793, 825, 826, 832, 935, 947, 948, 954, 1054, 1067, 1211, 1598, 1626, 1627, 1647, 1666, 1667], "mul": 0, "multipl": [0, 335, 373, 385, 451, 480, 481, 483, 484, 485, 487, 516, 518, 524, 536, 542, 553, 556, 572, 578, 1217, 1627, 1647, 1667, 1839, 1856, 1873, 1877, 1883, 1887, 1892, 1897], "linear": [0, 155, 156, 157, 158, 450, 451, 453, 454, 457, 458, 461, 480, 481, 484, 485, 517, 528, 532, 533, 535, 539, 579, 583, 875, 935, 1060, 1185, 1187, 1634, 1650, 1849, 1873, 1877, 1878, 1881, 1883, 1886, 1887, 1899, 1900, 1901, 1904, 1905, 1906], "interpol": [0, 524, 527, 528, 533, 535, 540, 1187, 1873, 1877, 1886, 1899, 1900, 1904, 1905], "gtau": [0, 551, 1883, 1885, 1887], "store": [0, 18, 89, 99, 329, 358, 361, 363, 365, 449, 454, 480, 481, 496, 497, 498, 500, 507, 508, 515, 518, 520, 521, 526, 543, 544, 550, 551, 559, 572, 581, 583, 587, 645, 906, 1780, 1848, 1866, 1873, 1877, 1883, 1887, 1890, 1891, 1895, 1896, 1900, 1905, 1907], "diagon": [0, 9, 153, 154, 159, 171, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 359, 488, 515, 553, 575, 576, 577, 589, 590, 591, 612, 1210, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1876, 1880, 1883, 1887, 1891, 1896], "implement": [0, 4, 6, 242, 245, 298, 356, 357, 365, 366, 378, 497, 498, 502, 510, 511, 512, 515, 517, 518, 519, 528, 539, 542, 545, 547, 548, 555, 559, 565, 568, 569, 570, 572, 575, 580, 583, 587, 645, 676, 698, 699, 715, 737, 738, 754, 776, 777, 793, 815, 816, 832, 854, 855, 954, 976, 977, 1030, 1622, 1832, 1849, 1869, 1873, 1877, 1883, 1887, 1888, 1894, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "gfimfreq": [0, 542, 543, 545, 546, 547, 549, 551, 553, 554, 560, 579, 580, 1210, 1216, 1219, 1848, 1887], "gfimtim": [0, 542, 543, 549, 553, 554, 686, 764, 803, 842, 964, 1004, 1216, 1887], "yield": [0, 197, 553, 1212, 1883, 1887, 1888, 1889, 1894], "same": [0, 50, 54, 91, 94, 245, 260, 292, 401, 402, 461, 476, 477, 497, 498, 499, 506, 507, 508, 514, 517, 519, 523, 527, 528, 534, 541, 543, 551, 553, 554, 560, 568, 570, 572, 573, 575, 587, 665, 704, 743, 782, 821, 863, 864, 871, 880, 881, 894, 1079, 1092, 1105, 1217, 1689, 1692, 1694, 1709, 1710, 1726, 1727, 1728, 1780, 1838, 1839, 1844, 1864, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1883, 1887, 1890, 1891, 1895, 1896, 1899, 1900, 1904, 1905, 1910], "repr": [0, 544, 545, 546, 547, 548, 551, 1883, 1887], "g": [0, 5, 208, 209, 245, 247, 248, 252, 253, 254, 255, 257, 258, 260, 262, 263, 264, 272, 274, 275, 276, 280, 284, 286, 287, 288, 293, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 323, 425, 426, 443, 451, 467, 468, 490, 491, 492, 493, 496, 498, 499, 502, 503, 507, 511, 514, 515, 516, 517, 518, 519, 520, 521, 523, 524, 525, 527, 528, 529, 531, 532, 533, 535, 537, 539, 541, 543, 544, 545, 546, 547, 548, 550, 551, 552, 553, 560, 561, 563, 570, 575, 576, 577, 578, 579, 580, 581, 585, 659, 666, 667, 672, 673, 674, 675, 676, 679, 681, 682, 686, 687, 688, 697, 699, 705, 706, 711, 712, 713, 714, 715, 718, 720, 721, 725, 726, 727, 736, 738, 744, 745, 750, 751, 752, 753, 754, 757, 759, 760, 764, 765, 766, 775, 777, 783, 784, 789, 790, 791, 792, 793, 796, 798, 799, 803, 804, 805, 814, 816, 822, 823, 828, 829, 830, 831, 832, 835, 837, 838, 842, 843, 844, 853, 855, 860, 875, 892, 901, 902, 908, 909, 916, 918, 919, 921, 922, 924, 925, 929, 935, 944, 945, 950, 951, 952, 953, 954, 957, 959, 960, 964, 965, 966, 975, 977, 993, 994, 996, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1012, 1038, 1191, 1210, 1216, 1217, 1219, 1626, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1732, 1754, 1755, 1760, 1761, 1850, 1852, 1854, 1855, 1856, 1857, 1858, 1863, 1864, 1866, 1867, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908, 1910], "name": [0, 182, 183, 184, 185, 186, 245, 249, 265, 277, 289, 296, 332, 333, 344, 345, 347, 397, 398, 400, 408, 410, 413, 425, 426, 434, 439, 442, 443, 447, 463, 467, 468, 469, 490, 493, 496, 497, 498, 507, 513, 515, 543, 544, 545, 546, 547, 548, 550, 551, 553, 557, 558, 559, 560, 563, 570, 573, 575, 576, 577, 579, 580, 582, 585, 645, 646, 649, 650, 653, 660, 664, 703, 742, 781, 820, 860, 875, 896, 937, 938, 942, 984, 1025, 1052, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1215, 1217, 1594, 1595, 1598, 1603, 1627, 1640, 1647, 1656, 1659, 1660, 1663, 1688, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1737, 1768, 1778, 1800, 1809, 1823, 1832, 1834, 1843, 1858, 1864, 1869, 1872, 1873, 1876, 1877, 1880, 1883, 1884, 1885, 1887, 1889, 1891, 1894, 1895, 1896, 1899, 1904], "correspond": [0, 170, 232, 233, 234, 370, 381, 497, 498, 499, 513, 517, 521, 525, 531, 532, 539, 541, 543, 550, 551, 559, 563, 572, 574, 646, 653, 669, 700, 708, 739, 747, 778, 786, 817, 825, 856, 930, 947, 978, 1850, 1852, 1873, 1877, 1883, 1887, 1888, 1892, 1894, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "beta": [0, 181, 182, 183, 184, 185, 186, 187, 254, 255, 260, 316, 500, 513, 515, 516, 517, 519, 520, 523, 525, 527, 528, 531, 532, 539, 540, 541, 543, 544, 545, 546, 547, 548, 551, 553, 554, 560, 567, 570, 579, 580, 634, 635, 636, 637, 638, 639, 664, 670, 697, 703, 709, 736, 742, 748, 775, 781, 787, 814, 820, 826, 853, 948, 975, 1012, 1030, 1031, 1079, 1092, 1105, 1118, 1134, 1145, 1211, 1215, 1848, 1862, 1863, 1869, 1873, 1877, 1879, 1880, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "statist": [0, 9, 412, 448, 449, 480, 481, 488, 517, 520, 523, 544, 545, 546, 547, 548, 570, 664, 703, 742, 781, 820, 1030, 1031, 1079, 1092, 1105, 1118, 1134, 1145, 1742, 1877, 1883, 1886, 1887, 1889, 1904], "through": [0, 6, 8, 11, 514, 515, 520, 537, 541, 552, 556, 570, 572, 579, 1079, 1092, 1105, 1838, 1849, 1850, 1854, 1859, 1883, 1886, 1887, 1899, 1900, 1903, 1904, 1905, 1908], "meshpoint": [0, 518, 542, 543, 1079, 1092, 1105], "meshwithvalu": 0, "execut": [0, 128, 581, 1850, 1852, 1854, 1858, 1866, 1867, 1881], "index": [0, 15, 16, 17, 21, 63, 114, 155, 156, 157, 158, 160, 162, 170, 173, 179, 182, 183, 184, 185, 186, 326, 327, 329, 334, 335, 336, 338, 342, 343, 352, 360, 362, 370, 372, 381, 384, 390, 392, 394, 395, 396, 401, 402, 403, 471, 499, 517, 531, 532, 539, 543, 544, 545, 546, 547, 548, 555, 556, 563, 572, 573, 574, 575, 577, 594, 596, 598, 615, 617, 619, 859, 1030, 1037, 1038, 1051, 1057, 1062, 1063, 1064, 1074, 1075, 1076, 1079, 1087, 1088, 1089, 1092, 1100, 1101, 1102, 1105, 1113, 1114, 1115, 1130, 1131, 1132, 1141, 1142, 1143, 1152, 1153, 1160, 1161, 1162, 1174, 1175, 1176, 1203, 1622, 1623, 1644, 1684, 1685, 1689, 1691, 1694, 1696, 1699, 1700, 1701, 1702, 1711, 1722, 1747, 1873, 1877, 1883, 1885, 1887, 1889, 1899, 1904], "modulo": 0, "out": [0, 267, 279, 291, 322, 510, 523, 553, 1219, 1747, 1750, 1751, 1838, 1873, 1877, 1883, 1887, 1888, 1894], "mesh_hash": [0, 1037, 1038], "default": [0, 15, 25, 41, 43, 49, 59, 69, 73, 82, 85, 88, 97, 107, 122, 182, 183, 185, 186, 254, 255, 300, 302, 316, 317, 428, 465, 490, 493, 499, 521, 523, 527, 528, 529, 533, 535, 541, 551, 553, 557, 560, 561, 570, 572, 573, 580, 586, 635, 636, 637, 638, 660, 875, 935, 940, 1079, 1092, 1105, 1118, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1211, 1216, 1598, 1663, 1664, 1666, 1679, 1684, 1740, 1756, 1762, 1763, 1778, 1806, 1832, 1833, 1851, 1854, 1855, 1858, 1860, 1883, 1887, 1890, 1895], "construct": [0, 9, 15, 21, 35, 92, 101, 102, 118, 122, 123, 159, 165, 169, 182, 183, 185, 186, 245, 329, 341, 342, 351, 352, 368, 379, 392, 428, 442, 465, 490, 497, 498, 500, 508, 519, 521, 523, 525, 526, 544, 545, 546, 547, 548, 551, 553, 559, 560, 561, 563, 567, 568, 569, 571, 575, 579, 582, 583, 600, 606, 621, 627, 649, 650, 659, 664, 703, 742, 781, 820, 875, 1054, 1211, 1217, 1682, 1756, 1758, 1762, 1765, 1832, 1861, 1865, 1869, 1873, 1877, 1879, 1883, 1885, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1904, 1905], "zero": [0, 15, 21, 316, 341, 352, 451, 456, 457, 459, 551, 553, 556, 560, 563, 572, 1216, 1673, 1675, 1699, 1769, 1877, 1883, 1887, 1890, 1895, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "accessor": [0, 542, 549, 572], "micro": 0, "closest_mesh_pt": 0, "cluster_mesh": 0, "pass": [0, 116, 354, 451, 457, 459, 461, 480, 481, 498, 499, 500, 541, 569, 575, 580, 587, 1201, 1666, 1711, 1740, 1841, 1849, 1850, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1888, 1889, 1890, 1895, 1902], "window": [0, 186, 500, 539, 547, 548, 550, 579, 580, 673, 675, 700, 712, 714, 739, 751, 753, 778, 790, 792, 817, 829, 831, 856, 951, 953, 978, 999, 1001, 1154, 1166, 1873, 1876, 1877, 1879, 1880, 1883, 1884, 1887, 1894, 1895], "pair": [0, 12, 170, 182, 183, 184, 185, 186, 254, 255, 329, 363, 470, 483, 484, 499, 541, 556, 574, 575, 635, 636, 637, 638, 672, 673, 674, 675, 711, 712, 713, 714, 750, 751, 752, 753, 789, 790, 791, 792, 828, 829, 830, 831, 875, 950, 951, 952, 953, 998, 999, 1000, 1001, 1154, 1166, 1619, 1620, 1666, 1710, 1746, 1883, 1887, 1891, 1896, 1900, 1901, 1905, 1906], "float": [0, 497, 499, 544, 546, 547, 553, 557, 560, 573, 575, 582, 602, 623, 634, 635, 636, 637, 638, 639, 640, 641, 670, 681, 682, 693, 698, 709, 720, 721, 732, 737, 748, 759, 760, 771, 776, 787, 798, 799, 810, 815, 826, 837, 838, 849, 854, 935, 948, 959, 960, 971, 976, 986, 1002, 1003, 1011, 1079, 1092, 1105, 1118, 1128, 1134, 1145, 1154, 1166, 1211, 1215, 1598, 1627, 1647, 1664, 1666, 1668, 1679, 1684, 1685, 1689, 1691, 1694, 1696, 1700, 1701, 1702, 1712, 1740, 1747, 1806, 1838, 1858, 1883, 1886, 1887, 1905], "refreq": [0, 186, 518, 519, 521, 536, 542, 547, 638, 693, 732, 771, 810, 849, 971, 1011, 1160, 1161, 1162], "meshrefreq": [0, 544, 546, 547, 670, 709, 748, 781, 787, 826, 948, 1883, 1884, 1887, 1894, 1900, 1905], "n_l": [0, 183, 500, 636, 1892, 1897], "n_k": [0, 1054, 1634, 1650, 1873, 1875, 1876, 1877, 1879, 1880, 1886, 1899, 1903, 1904, 1908], "n_pt": [0, 559, 563, 649, 650, 1187], "ostream": [0, 49, 58, 267, 279, 291, 477, 510, 587], "retim": [0, 518, 519, 521, 531, 532, 536, 542, 1174, 1175, 1176, 1862], "t_min": [0, 1166], "t_max": [0, 1166], "omega_min": [0, 1873, 1877, 1879], "meshdlr": [0, 1092, 1105], "meshdlrimtim": [0, 1079, 1883, 1887], "meshdlrimfreq": [0, 1079, 1193, 1883, 1887], "plot": [0, 5, 9, 488, 542, 544, 545, 546, 547, 548, 549, 554, 558, 559, 563, 579, 582, 645, 659, 664, 703, 742, 781, 820, 942, 1666, 1856, 1870, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "protocol": [0, 9, 488, 498, 559, 645, 1186, 1189, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1726, 1740], "descriptor": [0, 498, 543, 547, 549, 580, 1864, 1873, 1875, 1876, 1877, 1879, 1880], "flatironinstitut": [0, 1850, 1874, 1878], "cppdlr": [0, 1849], "superlattic": [0, 1626, 1628, 1632], "after": [0, 407, 417, 428, 429, 430, 431, 490, 493, 513, 526, 568, 569, 570, 572, 1835, 1837, 1838, 1849, 1850, 1854, 1858, 1859, 1861, 1866, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1885, 1889, 1890, 1894, 1895], "latticepoint": 0, "bravais_lattic": [0, 563, 1072], "point_t": [0, 517, 524], "euclidean": 0, "distanc": [0, 11, 1205, 1666], "fals": [0, 125, 127, 135, 139, 141, 142, 143, 149, 150, 317, 324, 346, 348, 349, 359, 399, 401, 402, 408, 413, 473, 478, 489, 490, 493, 498, 500, 523, 551, 553, 555, 567, 572, 573, 575, 585, 615, 617, 633, 634, 642, 700, 739, 778, 817, 856, 860, 875, 887, 891, 978, 1079, 1092, 1105, 1201, 1204, 1207, 1211, 1626, 1627, 1632, 1663, 1664, 1684, 1698, 1700, 1701, 1702, 1711, 1833, 1873, 1877, 1880, 1886, 1887, 1897, 1899, 1903, 1904, 1908], "posit": [0, 254, 255, 311, 316, 318, 338, 463, 471, 539, 541, 557, 1118, 1126, 1598, 1604, 1626, 1627, 1629, 1630, 1641, 1647, 1657, 1747, 1861, 1900, 1902, 1905, 1907], "complete_refil": 0, "address": [0, 570, 583, 1849], "868": 0, "ksi": [0, 513], "should": [0, 3, 6, 8, 125, 141, 142, 143, 149, 150, 358, 363, 368, 379, 449, 451, 461, 493, 496, 498, 514, 515, 517, 525, 541, 553, 564, 567, 568, 570, 572, 573, 575, 576, 581, 1210, 1211, 1685, 1709, 1710, 1711, 1714, 1715, 1716, 1832, 1838, 1848, 1850, 1851, 1852, 1854, 1855, 1858, 1859, 1864, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1885, 1888, 1890, 1894, 1895, 1902, 1903, 1907, 1908], "current": [0, 3, 16, 45, 51, 52, 198, 229, 235, 236, 417, 418, 420, 451, 453, 457, 459, 496, 499, 512, 513, 515, 521, 570, 581, 676, 715, 754, 793, 832, 954, 1838, 1851, 1852, 1859, 1873, 1875, 1877, 1879, 1883, 1887], "insert": [0, 192, 235, 236, 325, 336, 463, 477, 500, 513, 555, 572, 1861, 1877, 1889, 1896, 1901, 1906], "iter": [0, 11, 13, 14, 15, 16, 17, 18, 21, 24, 27, 33, 36, 40, 42, 43, 44, 45, 46, 51, 52, 62, 65, 68, 72, 73, 74, 75, 76, 78, 81, 84, 85, 86, 87, 88, 89, 93, 96, 97, 98, 99, 100, 102, 106, 326, 327, 328, 331, 482, 483, 484, 485, 490, 498, 517, 539, 542, 549, 555, 556, 571, 861, 876, 1768, 1858, 1869, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1890, 1891, 1895, 1896], "rank": [0, 12, 112, 115, 125, 140, 141, 142, 143, 144, 149, 150, 151, 270, 282, 295, 300, 314, 472, 473, 484, 485, 499, 519, 521, 541, 544, 545, 546, 547, 548, 553, 567, 570, 664, 695, 703, 734, 742, 773, 781, 812, 820, 851, 875, 942, 973, 1079, 1092, 1105, 1217, 1806, 1850, 1852, 1873, 1877, 1887, 1889, 1896, 1901, 1906], "swap_row": [0, 192], "swap_coli": 0, "higher": [0, 4, 499, 532, 1856, 1873, 1877], "review": [0, 8, 1849, 1858, 1894, 1902, 1907], "pr": 0, "report": [0, 6, 412, 1768, 1840], "measur": [0, 407, 408, 409, 411, 412, 427, 428, 431, 449, 451, 453, 461, 487, 571, 583, 1201, 1873, 1875, 1876, 1877, 1879, 1880, 1889, 1890, 1892, 1895, 1896, 1897], "eta": [0, 547, 560, 655, 1873, 1874, 1876, 1877, 1878, 1880, 1883, 1887, 1889, 1896], "statu": [0, 1806], "messag": [0, 8, 202, 227, 585, 1849, 1851, 1857, 1858], "impl_tool": 0, "hpp": [0, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 493, 494, 499, 500, 502, 506, 507, 508, 509, 510, 511, 513, 516, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 555, 567, 569, 570, 574, 585, 586, 587, 1860, 1861, 1862, 1863, 1864, 1867, 1910], "its": [0, 3, 46, 51, 52, 97, 354, 363, 434, 442, 492, 496, 500, 507, 508, 514, 517, 518, 520, 521, 524, 525, 539, 543, 550, 551, 553, 556, 563, 570, 571, 572, 575, 587, 875, 993, 994, 1214, 1628, 1629, 1712, 1849, 1850, 1851, 1854, 1859, 1864, 1865, 1872, 1873, 1874, 1877, 1878, 1882, 1883, 1886, 1887, 1889, 1890, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "templat": [0, 6, 9, 11, 27, 109, 110, 111, 153, 188, 189, 190, 192, 237, 241, 242, 245, 253, 258, 299, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 317, 318, 320, 321, 322, 323, 329, 335, 366, 406, 408, 409, 432, 434, 445, 449, 501, 502, 507, 510, 513, 518, 522, 523, 527, 528, 529, 533, 535, 542, 555, 570, 571, 574, 587, 1856], "neg": [0, 407, 428, 431, 539, 541, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1840], "n_cycl": [0, 428, 567, 568, 569, 570, 1869, 1889, 1891, 1892, 1895, 1896, 1897], "until": [0, 407, 428, 430, 431, 453, 560, 568, 1778, 1837, 1838, 1888, 1889, 1894], "callback": [0, 407, 428, 430, 431, 567, 570], "signal": [0, 407, 428, 430, 431, 490, 493], "stop": [0, 135, 407, 428, 430, 431, 570, 1778, 1854], "679": 0, "dure": [0, 449, 490, 493, 496, 498, 506, 568, 583, 1806, 1850, 1858, 1873, 1877, 1890, 1895], "poll": [0, 117], "barrier": [0, 115], "reduc": [0, 142, 143, 150, 159, 251, 260, 268, 292, 317, 412, 456, 463, 473, 481, 484, 485, 497, 499, 543, 551, 567, 570, 573, 580, 587, 1664, 1691, 1874, 1878, 1889, 1895], "cpu": [0, 1806, 1850], "845": 0, "crai": 0, "mpich": 0, "layer": [0, 4, 296, 578, 581, 1726, 1849, 1873, 1877], "unrecogn": 0, "mpi_init": [0, 123, 127], "force_mpi_init": 0, "envvar": 0, "util": [0, 9, 488, 500, 543, 551, 567, 570, 572, 573, 574, 575, 576, 577, 585, 586, 587, 1850, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1892, 1897, 1905], "all_reduc": [0, 1879], "name_block_gener": [0, 551, 875, 1887], "620": 0, "callproxynon": 0, "throw": [0, 171, 196, 201, 226, 413, 476, 502, 585, 1862], "except": [0, 2, 9, 188, 189, 413, 488, 491, 498, 499, 507, 513, 1700, 1701, 1702, 1838, 1862, 1876, 1880], "846": 0, "assert": [0, 1886], "dimens": [0, 167, 173, 174, 256, 257, 348, 349, 377, 389, 451, 496, 499, 520, 532, 544, 545, 546, 547, 548, 557, 559, 563, 573, 601, 603, 604, 622, 624, 625, 664, 703, 742, 781, 820, 860, 942, 1054, 1060, 1067, 1071, 1602, 1609, 1626, 1634, 1635, 1639, 1643, 1650, 1651, 1655, 1658, 1659, 1693, 1756, 1877, 1883, 1886, 1887, 1899, 1901, 1903, 1904, 1906, 1908], "sigma": [0, 543, 551, 560, 561, 570, 573, 575, 576, 583, 655, 1684, 1685, 1696, 1709, 1710, 1711, 1716, 1717, 1719, 1754, 1755, 1760, 1761, 1869, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1882, 1883, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1903, 1908], "match": [0, 543, 1850, 1858, 1873, 1877], "hop": [0, 500, 553, 555, 558, 560, 561, 563, 575, 1211, 1215, 1611, 1626, 1627, 1646, 1647, 1663, 1664, 1667, 1710, 1754, 1760, 1872, 1877, 1886, 1891, 1896, 1900, 1902, 1903, 1905, 1907, 1908], "859": 0, "wannier90": [0, 573, 1663, 1667, 1668, 1689, 1692, 1694, 1873, 1877], "qe": [0, 573, 1689, 1692, 1694, 1873, 1877], "vasp": [0, 4, 573, 1689, 1692, 1694], "basi": [0, 171, 183, 342, 360, 362, 365, 368, 370, 379, 381, 390, 391, 393, 394, 401, 402, 500, 517, 555, 556, 557, 562, 563, 572, 573, 576, 1065, 1077, 1605, 1610, 1611, 1626, 1627, 1647, 1684, 1685, 1689, 1692, 1694, 1696, 1714, 1715, 1716, 1877, 1883, 1886, 1887, 1892, 1897, 1899, 1903, 1904, 1908], "860": 0, "result": [0, 3, 4, 29, 31, 86, 120, 121, 125, 128, 141, 142, 143, 144, 149, 150, 151, 163, 172, 412, 473, 490, 492, 493, 498, 502, 506, 508, 509, 517, 520, 531, 541, 551, 552, 559, 560, 564, 567, 572, 581, 587, 650, 1659, 1699, 1780, 1848, 1854, 1866, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1886, 1887, 1888, 1890, 1894, 1895, 1896, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "trace_rho_op": [0, 152, 500, 501], "rho": [0, 559, 560, 570, 645, 646, 650, 655, 656, 1883, 1887, 1894, 1895, 1897, 1899, 1904], "hermitian": [0, 357, 363, 541, 572, 673, 712, 751, 790, 829, 951, 999, 1679], "871": 0, "is_convert": 0, "block2_gf": [0, 303], "872": 0, "881": [0, 1887], "exampl": [0, 7, 8, 9, 268, 492, 496, 498, 502, 503, 506, 507, 509, 510, 511, 515, 516, 517, 518, 524, 525, 531, 542, 543, 549, 550, 554, 560, 565, 568, 569, 570, 571, 572, 573, 578, 581, 585, 587, 935, 1693, 1780, 1848, 1849, 1850, 1852, 1855, 1858, 1859, 1860, 1861, 1862, 1867, 1868, 1869, 1870, 1874, 1878, 1881, 1883, 1885, 1886, 1887, 1889, 1899, 1901, 1904, 1906], "907": 0, "arithmet": [0, 482, 483, 484, 485, 490, 507, 517, 543, 551, 572, 1030, 1622, 1856], "inplac": [0, 886], "propag": [0, 315, 1901, 1906], "figur": [0, 9, 568, 578, 1882, 1883, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1902, 1903, 1904, 1907, 1908], "histogram": [0, 448, 462, 486, 583, 1892, 1897], "via": [0, 6, 483, 484, 500, 543, 935, 1850, 1851, 1853, 1855, 1858, 1864, 1873, 1874, 1876, 1877, 1878, 1880], "shape": [0, 128, 260, 262, 270, 274, 282, 286, 295, 461, 497, 521, 525, 541, 544, 545, 546, 547, 548, 553, 557, 664, 670, 696, 703, 709, 735, 742, 748, 774, 781, 787, 813, 820, 826, 852, 942, 948, 974, 1054, 1067, 1211, 1215, 1598, 1663, 1666, 1731, 1848, 1862, 1876, 1880, 1887, 1899, 1904], "fit_hermitian": 0, "signatur": [0, 489, 490, 493, 499, 508, 544, 545, 546, 547, 548, 557, 562, 582, 587, 593, 594, 595, 596, 598, 602, 603, 604, 614, 615, 616, 617, 619, 623, 624, 625, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 671, 672, 673, 674, 675, 681, 682, 686, 687, 688, 689, 690, 691, 692, 693, 697, 710, 711, 712, 713, 714, 720, 721, 725, 726, 727, 728, 729, 730, 731, 732, 736, 749, 750, 751, 752, 753, 759, 760, 764, 765, 766, 767, 768, 769, 770, 771, 775, 788, 789, 790, 791, 792, 798, 799, 803, 804, 805, 806, 807, 808, 809, 810, 814, 827, 828, 829, 830, 831, 837, 838, 842, 843, 844, 845, 846, 847, 848, 849, 853, 949, 950, 951, 952, 953, 959, 960, 964, 965, 966, 967, 968, 969, 970, 971, 975, 986, 987, 988, 989, 990, 991, 992, 993, 994, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1057, 1058, 1059, 1062, 1063, 1064, 1066, 1069, 1070, 1074, 1075, 1076, 1078, 1082, 1083, 1087, 1088, 1089, 1090, 1095, 1096, 1100, 1101, 1102, 1103, 1108, 1109, 1113, 1114, 1115, 1116, 1121, 1122, 1123, 1124, 1127, 1128, 1130, 1131, 1132, 1133, 1137, 1138, 1141, 1142, 1143, 1144, 1148, 1149, 1152, 1153, 1156, 1157, 1160, 1161, 1162, 1163, 1168, 1169, 1174, 1175, 1176, 1177, 1178, 1591, 1600, 1613, 1615, 1617, 1619, 1620, 1631, 1633, 1637, 1648, 1649, 1653, 1674, 1676, 1677, 1678, 1679, 1680, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1737, 1744, 1747, 1750, 1751, 1879, 1885, 1886, 1887, 1899, 1901, 1904, 1905, 1906], "fit_hermitian_tail": [0, 240, 541, 935], "tb_from_pythtb": 0, "super": 0, "orbital_nam": [0, 557, 1627, 1646, 1647], "being": [0, 329, 354, 434, 451, 499, 512, 572, 573, 581, 1627, 1647, 1683, 1685, 1688, 1690, 1692, 1859, 1895], "where": [0, 5, 8, 34, 63, 235, 236, 449, 455, 456, 480, 481, 496, 506, 508, 513, 514, 515, 519, 526, 531, 532, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 558, 560, 563, 573, 580, 585, 660, 669, 708, 747, 786, 825, 861, 876, 916, 929, 947, 1054, 1211, 1215, 1667, 1685, 1768, 1832, 1848, 1854, 1858, 1859, 1864, 1867, 1872, 1873, 1877, 1883, 1886, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "scalar_wrap": 0, "captur": [0, 507, 1873, 1875, 1876, 1877, 1878, 1879, 1880, 1892, 1897], "refer": [0, 3, 4, 8, 9, 11, 27, 58, 332, 344, 352, 355, 367, 371, 372, 373, 374, 375, 376, 382, 384, 385, 386, 387, 388, 397, 466, 477, 490, 496, 537, 542, 543, 549, 568, 578, 583, 1745, 1850, 1855, 1859, 1860, 1861, 1862, 1864, 1873, 1877, 1892, 1897, 1899, 1904, 1910], "many_body_operator_r": [0, 572], "brillouin_zon": [0, 1056, 1666, 1899, 1904], "np": [0, 500, 547, 553, 1211, 1215, 1217, 1848, 1850, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1886, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "int": [0, 19, 30, 48, 95, 112, 114, 116, 120, 121, 122, 124, 125, 140, 141, 142, 143, 144, 149, 150, 151, 155, 156, 157, 158, 159, 160, 162, 164, 167, 170, 173, 174, 176, 179, 180, 182, 183, 185, 186, 214, 215, 224, 242, 244, 245, 253, 254, 255, 256, 257, 258, 260, 299, 303, 304, 306, 307, 308, 309, 310, 312, 313, 316, 317, 320, 322, 323, 329, 330, 335, 338, 339, 342, 343, 350, 372, 377, 383, 389, 392, 394, 395, 396, 403, 404, 407, 413, 417, 418, 428, 430, 431, 450, 451, 453, 454, 457, 458, 459, 460, 461, 465, 471, 472, 473, 482, 483, 484, 485, 492, 496, 497, 499, 500, 502, 506, 507, 508, 509, 510, 513, 516, 517, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 544, 545, 546, 547, 548, 550, 553, 555, 556, 563, 567, 569, 570, 572, 575, 576, 577, 585, 587, 589, 591, 593, 594, 595, 596, 598, 602, 603, 604, 612, 614, 615, 616, 617, 619, 623, 624, 625, 635, 636, 637, 638, 664, 673, 675, 684, 687, 693, 694, 695, 696, 703, 712, 714, 723, 726, 732, 733, 734, 735, 742, 751, 753, 762, 765, 771, 772, 773, 774, 781, 790, 792, 801, 804, 810, 811, 812, 813, 820, 829, 831, 840, 843, 849, 850, 851, 852, 875, 897, 916, 929, 942, 951, 953, 962, 965, 971, 972, 973, 974, 991, 992, 999, 1001, 1005, 1011, 1030, 1054, 1067, 1118, 1123, 1124, 1128, 1134, 1145, 1154, 1166, 1178, 1211, 1213, 1619, 1620, 1622, 1634, 1635, 1650, 1651, 1666, 1667, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1747, 1860, 1861, 1862, 1863, 1867, 1873, 1876, 1877, 1879, 1880, 1882, 1885, 1887, 1889, 1892, 1897, 1903, 1908], "h_int_kanamori": [0, 500, 575], "correct": [0, 480, 481, 502, 506, 507, 519, 523, 543, 570, 578, 1864, 1873, 1874, 1875, 1877, 1878, 1879], "static": [0, 4, 490, 569, 572, 1875, 1879, 1901, 1906], "pyref": 0, "lifetim": 0, "mai": [0, 496, 498, 500, 524, 537, 543, 551, 572, 580, 581, 587, 1835, 1839, 1841, 1850, 1854, 1855, 1883, 1887, 1907, 1910], "beyond": [0, 81, 496, 572, 1875, 1879], "interpret": [0, 1856, 1870, 1873, 1877, 1881], "mesh_point": [0, 463], "perfect": [0, 1854, 1859, 1909], "forward": [0, 354, 587, 1849], "properli": [0, 498, 510, 1632, 1858, 1873, 1877], "matsubara": [0, 182, 302, 306, 307, 308, 312, 315, 500, 517, 518, 521, 535, 536, 537, 539, 541, 542, 543, 547, 549, 550, 551, 553, 635, 670, 698, 709, 737, 748, 776, 787, 815, 826, 854, 921, 924, 925, 948, 976, 987, 988, 989, 991, 996, 1030, 1079, 1092, 1118, 1126, 1211, 1873, 1877, 1883, 1886, 1887, 1890, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "frequenc": [0, 182, 186, 254, 255, 307, 312, 316, 318, 500, 517, 518, 519, 521, 528, 535, 536, 539, 542, 543, 546, 549, 550, 551, 553, 638, 670, 698, 709, 737, 748, 776, 787, 815, 826, 854, 916, 929, 935, 948, 976, 988, 991, 1030, 1079, 1092, 1118, 1126, 1154, 1216, 1217, 1219, 1863, 1873, 1875, 1876, 1877, 1879, 1880, 1886, 1888, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "protect": [0, 1892, 1897], "mesh_point_t": [0, 517, 537, 539], "race": 0, "condit": [0, 480, 481, 482, 483, 484, 485, 507, 551, 572, 585, 1869, 1873, 1877, 1879, 1880, 1883, 1887, 1890, 1892, 1895, 1897, 1903, 1908], "logo": [0, 5], "keyword": [0, 511, 875, 1832, 1841, 1885, 1887, 1889, 1900, 1905], "simpl": [0, 3, 4, 7, 117, 154, 230, 231, 450, 457, 459, 461, 496, 498, 499, 500, 503, 507, 510, 511, 517, 543, 550, 551, 554, 558, 564, 565, 567, 570, 578, 580, 581, 582, 587, 659, 1803, 1850, 1854, 1855, 1856, 1861, 1865, 1869, 1873, 1877, 1883, 1886, 1887, 1888, 1891, 1894, 1896, 1900, 1901, 1905, 1906], "app": [0, 1874, 1878], "891": 0, "singular": [0, 201, 202, 226, 227, 260, 521, 525, 527, 531, 537, 1903, 1908], "apptain": 0, "minimum": 0, "gmp": [0, 1854, 1856], "prerequisit": 0, "also": [0, 3, 4, 6, 7, 432, 476, 490, 493, 496, 499, 502, 506, 509, 517, 518, 523, 531, 532, 543, 551, 555, 561, 568, 570, 571, 572, 573, 1688, 1754, 1760, 1837, 1838, 1848, 1849, 1850, 1859, 1860, 1870, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "python3": [0, 1850, 1855, 1857, 1885, 1886, 1887], "simplifi": [0, 498, 499, 508, 523, 543, 551, 1873, 1877, 1885, 1899, 1904], "brew": [0, 1854], "intelllvm": [0, 1856], "2023": [0, 1856, 1875, 1877, 1879, 1880, 1889, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "lattice_tool": [0, 1886], "direct": [0, 246, 367, 480, 481, 500, 517, 521, 542, 549, 561, 563, 570, 1054, 1067, 1762, 1763, 1850, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "sphinxext": 0, "plot_direct": 0, "account": [0, 8, 520, 1664, 1877, 1879, 1880, 1901, 1906], "prefix": [0, 1854], "slightli": [0, 1851, 1852, 1883, 1887, 1890, 1895], "descript": [0, 4, 357, 494, 511, 513, 1594, 1852, 1856, 1883, 1887], "som": 0, "seri": [0, 463, 480, 481, 516, 517, 1664, 1742, 1859, 1868, 1871, 1899, 1904, 1909], "previou": [0, 218, 507, 514, 517, 543, 580, 586, 1848, 1858, 1869, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1889, 1891, 1896, 1900, 1901, 1902, 1905, 1906, 1907], "sampl": [0, 4, 358, 449, 459, 463, 465, 474, 475, 480, 481, 583, 1742, 1748, 1749, 1873, 1877, 1882, 1890, 1895], "22": [0, 508, 1850, 1857, 1877, 1883, 1887, 1896], "mention": [0, 300, 551, 568], "toctre": 0, "openmpi": [0, 1850, 1855, 1856, 1857], "dir": [0, 1663, 1850], "path": [0, 496, 497, 498, 563, 1183, 1184, 1187, 1190, 1207, 1663, 1666, 1852, 1854, 1855, 1864, 1873, 1874, 1877, 1878, 1879, 1880, 1891, 1896, 1899, 1900, 1901, 1904, 1905, 1906], "rst": [0, 7, 511, 1864], "filenam": [0, 493, 559, 653, 887, 891, 1667, 1668, 1848], "literalinclud": 0, "manual": [0, 5, 453, 491, 494, 496, 507, 523, 543, 547, 551, 563, 565, 568, 570, 572, 585, 1803, 1850, 1873, 1874, 1877, 1878, 1899, 1904, 1907], "latest": [0, 8, 1850, 1851, 1854, 1855, 1856, 1858, 1899, 1904], "findsanit": 0, "tsan": 0, "msan": 0, "disabl": [0, 510], "repo": 0, "9": [0, 245, 254, 255, 260, 510, 513, 567, 1856, 1858, 1861, 1877, 1879, 1880, 1881, 1882, 1886, 1887, 1892, 1895, 1896, 1897, 1904, 1907, 1908], "extract_flag": 0, "flag": [0, 7, 1850, 1852, 1853, 1866, 1875, 1876, 1879, 1880, 1884], "bench": 0, "dbuild_bench": 0, "ON": [0, 7, 1853], "linux": [0, 586, 1850, 1854], "pandoc": 0, "sphinx": [0, 7, 1856], "6": [0, 245, 254, 260, 268, 459, 484, 485, 509, 519, 547, 564, 587, 1664, 1856, 1861, 1875, 1876, 1879, 1880, 1881, 1882, 1883, 1886, 1887, 1890, 1894, 1896, 1897, 1899, 1900, 1904, 1905, 1907, 1908], "specifi": [0, 8, 12, 508, 551, 570, 573, 583, 1664, 1684, 1685, 1838, 1852, 1853, 1857, 1873, 1876, 1877, 1879, 1880, 1883, 1887], "lapack_root": 0, "13": [0, 19, 95, 301, 1877, 1879, 1886, 1887, 1891, 1896], "timeout": [0, 1838], "limit": [0, 4, 407, 428, 430, 431, 463, 516, 520, 524, 1856, 1873, 1875, 1877, 1879, 1900, 1901, 1903, 1905, 1906, 1908], "hour": [0, 416, 424, 570], "cc": [0, 1851, 1852, 1854], "cxx": [0, 1851, 1852, 1853, 1854, 1857, 1858, 1867], "atomdiagr": [0, 589, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642], "atomdiagcomplex": [0, 589], "small": [0, 7, 519, 555, 1832, 1850, 1851, 1858, 1859, 1873, 1875, 1877, 1879, 1880, 1883, 1885, 1887, 1890, 1895], "some": [0, 7, 205, 298, 363, 412, 490, 491, 494, 497, 499, 500, 502, 503, 506, 508, 509, 513, 515, 523, 524, 543, 551, 556, 568, 570, 571, 572, 581, 586, 1023, 1850, 1851, 1852, 1854, 1855, 1859, 1867, 1870, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1885, 1887, 1889, 1890, 1895, 1901, 1906, 1907], "a7a4cd": 0, "cplus_include_path": [0, 1850, 1852, 1857], "library_path": [0, 1852, 1854], "still": [0, 4, 503, 506, 511, 1838, 1851, 1854, 1873, 1877, 1882, 1891, 1895, 1896], "runtim": [0, 507, 572, 585, 1850], "clang13": 0, "n_tau": [0, 185, 313, 500, 519, 637, 992, 1134, 1877, 1880, 1883, 1885, 1887, 1889, 1894, 1895], "matsubara_domain": [0, 527], "field": [0, 9, 496, 556, 560, 565, 570, 572, 580, 655, 1859, 1873, 1877, 1879, 1880, 1883, 1887, 1892, 1897, 1900, 1903, 1905, 1908], "separ": [0, 365, 447, 551, 553, 564, 1213, 1844, 1852, 1855, 1873, 1877, 1883, 1887, 1901, 1902, 1903, 1906, 1907, 1908], "restructur": 0, "compon": [0, 500, 531, 532, 553, 573, 576, 1210, 1664, 1689, 1694, 1716, 1719, 1849, 1873, 1877, 1879, 1883, 1887, 1890, 1895, 1902, 1903, 1907, 1908], "peopl": 0, "who": 0, "contribut": [0, 5, 8, 1849, 1851, 1873, 1877, 1879, 1901, 1903, 1906, 1908], "sophi": 0, "beck": 0, "maxim": [0, 553, 1213, 1883, 1887], "charleboi": 0, "jonathan": 0, "karp": 0, "marku": 0, "richter": 0, "andrea": 0, "weh": 0, "rok": 0, "\u017eitko": 0, "respositori": [0, 1858], "wget": [0, 1858], "http": [0, 4, 8, 520, 935, 1848, 1850, 1858, 1868, 1871, 1881, 1899, 1904, 1909], "githubusercont": [0, 1858], "com": [0, 4, 8, 1848, 1850, 1858, 1868, 1871, 1873, 1877, 1909], "porting_tool": [0, 1858], "port_to_triqs3": [0, 1858], "chmod": [0, 1858], "x": [0, 19, 95, 109, 110, 111, 112, 125, 140, 142, 143, 149, 150, 151, 194, 197, 204, 210, 213, 233, 234, 235, 236, 237, 245, 260, 272, 280, 284, 303, 373, 385, 445, 450, 451, 454, 461, 498, 499, 502, 506, 508, 509, 510, 511, 512, 513, 515, 518, 520, 522, 531, 536, 537, 542, 547, 553, 556, 557, 562, 564, 570, 572, 573, 576, 579, 580, 583, 587, 659, 660, 669, 700, 708, 739, 747, 778, 786, 817, 825, 856, 914, 933, 947, 978, 980, 981, 1026, 1027, 1185, 1187, 1201, 1203, 1205, 1209, 1211, 1214, 1215, 1218, 1600, 1617, 1628, 1637, 1653, 1663, 1689, 1692, 1694, 1716, 1719, 1768, 1772, 1778, 1790, 1797, 1798, 1805, 1807, 1810, 1811, 1813, 1819, 1821, 1824, 1825, 1827, 1849, 1850, 1856, 1858, 1861, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1886, 1887, 1892, 1895, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1907, 1908], "befor": [0, 8, 30, 197, 200, 225, 251, 410, 434, 451, 515, 527, 528, 551, 570, 572, 586, 1832, 1833, 1837, 1838, 1850, 1851, 1854, 1855, 1859, 1861, 1873, 1874, 1877, 1878, 1883, 1885, 1887, 1888, 1889, 1890, 1895], "commit": [0, 8, 581, 1858], "them": [0, 8, 251, 268, 390, 413, 496, 502, 503, 506, 508, 515, 520, 523, 543, 551, 555, 561, 564, 572, 578, 581, 1756, 1758, 1765, 1849, 1858, 1859, 1873, 1874, 1877, 1878, 1881, 1882, 1883, 1887, 1889, 1890, 1894, 1895], "If": [0, 3, 4, 7, 8, 115, 117, 122, 203, 292, 351, 407, 408, 410, 428, 431, 449, 490, 493, 497, 498, 499, 502, 508, 509, 514, 517, 527, 528, 531, 533, 535, 543, 544, 545, 546, 547, 548, 550, 551, 553, 559, 560, 564, 568, 569, 570, 572, 573, 575, 576, 577, 653, 660, 664, 700, 703, 739, 742, 778, 781, 817, 820, 856, 875, 906, 935, 942, 978, 1023, 1211, 1626, 1666, 1684, 1700, 1701, 1702, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1768, 1780, 1832, 1849, 1850, 1852, 1854, 1855, 1856, 1857, 1858, 1859, 1862, 1864, 1866, 1867, 1873, 1874, 1877, 1878, 1883, 1884, 1887, 1888, 1889, 1891, 1894, 1895, 1896, 1903, 1908], "problem": [0, 4, 6, 9, 153, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 491, 498, 500, 515, 551, 567, 571, 583, 935, 1849, 1854, 1859, 1869, 1873, 1875, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1901, 1903, 1906, 1908], "feel": [0, 7, 1873, 1874, 1877, 1878], "contact": [0, 4, 6, 496, 1850], "open": [0, 6, 499, 543, 551, 580, 581, 1848, 1850, 1851, 1854, 1858, 1860, 1873, 1875, 1877, 1879, 1884, 1890, 1895], "discuss": [0, 4, 5, 517, 1849, 1873, 1877, 1888, 1890, 1894, 1895, 1903, 1908], "github": [0, 3, 4, 5, 7, 8, 1848, 1849, 1850, 1859, 1868, 1871, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1899, 1904, 1909], "wa": [0, 196, 449, 459, 461, 527, 585, 587, 1884, 1889, 1896, 1899, 1904], "possibl": [0, 3, 11, 292, 451, 490, 492, 493, 508, 509, 510, 513, 515, 541, 543, 564, 572, 875, 1856, 1886, 1887, 1899, 1900, 1902, 1904, 1905, 1907, 1910], "structur": [0, 4, 182, 183, 184, 185, 186, 329, 496, 498, 500, 507, 513, 515, 551, 560, 562, 570, 572, 575, 577, 863, 875, 880, 1611, 1699, 1723, 1849, 1865, 1867, 1873, 1877, 1880, 1883, 1885, 1886, 1887, 1889, 1890, 1895, 1900, 1905], "gfrefreq": [0, 542, 543, 548, 549, 550, 553, 1198, 1216, 1217, 1219, 1887, 1895], "d": [0, 3, 245, 457, 459, 490, 497, 498, 513, 514, 515, 543, 550, 551, 557, 558, 559, 560, 563, 569, 573, 645, 655, 676, 715, 754, 793, 832, 916, 917, 929, 930, 932, 954, 1598, 1683, 1685, 1689, 1690, 1692, 1694, 1699, 1860, 1861, 1872, 1873, 1877, 1879, 1881, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1895, 1897, 1900, 1903, 1905, 1908], "omega": [0, 182, 186, 254, 300, 302, 314, 315, 515, 520, 531, 541, 543, 549, 550, 552, 553, 560, 561, 579, 580, 655, 700, 739, 778, 817, 856, 907, 910, 916, 929, 978, 1211, 1754, 1760, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1888, 1890, 1892, 1894, 1895, 1897, 1899, 1903, 1904, 1906, 1908], "v": [0, 8, 9, 19, 140, 141, 142, 143, 144, 245, 256, 303, 304, 317, 329, 330, 455, 456, 482, 483, 484, 485, 491, 502, 507, 509, 510, 514, 519, 523, 553, 556, 563, 580, 1057, 1211, 1215, 1860, 1866, 1881, 1883, 1887, 1889, 1901, 1906], "featur": [0, 4, 5, 354, 491, 494, 503, 570, 586, 1850, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1886, 1890, 1895, 1899, 1900, 1904, 1905, 1910], "due": [0, 496, 551, 586, 1873, 1877, 1879, 1883, 1887, 1889], "lack": [0, 449, 1873, 1877], "complex": [0, 9, 153, 154, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 351, 356, 365, 378, 483, 484, 497, 499, 500, 503, 509, 510, 517, 520, 521, 527, 528, 529, 533, 535, 539, 544, 546, 547, 548, 553, 564, 570, 572, 573, 575, 576, 579, 580, 581, 591, 1030, 1211, 1685, 1692, 1696, 1711, 1714, 1715, 1716, 1873, 1877, 1881, 1883, 1887, 1889, 1901, 1902, 1903, 1906, 1907, 1908], "integ": [0, 11, 48, 49, 53, 114, 325, 329, 390, 445, 450, 492, 541, 543, 559, 569, 570, 573, 576, 582, 589, 591, 612, 653, 694, 733, 772, 811, 850, 972, 1054, 1067, 1626, 1627, 1647, 1664, 1683, 1684, 1685, 1686, 1687, 1688, 1690, 1692, 1695, 1714, 1715, 1716, 1778, 1835, 1840, 1858, 1885, 1886], "target_shap": [0, 259, 271, 283, 541, 544, 545, 546, 547, 548, 664, 670, 676, 703, 709, 715, 742, 748, 754, 781, 787, 793, 820, 826, 832, 942, 948, 954, 1873, 1877, 1879, 1880, 1883, 1884, 1886, 1887, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "The": [0, 3, 9, 50, 54, 91, 94, 116, 117, 120, 121, 125, 142, 149, 151, 155, 156, 157, 158, 159, 164, 165, 166, 169, 171, 173, 181, 182, 183, 184, 185, 186, 187, 188, 189, 197, 223, 235, 236, 251, 254, 255, 259, 260, 268, 271, 280, 283, 292, 293, 300, 302, 314, 315, 316, 317, 325, 330, 332, 333, 354, 355, 360, 365, 368, 370, 379, 381, 408, 410, 414, 415, 416, 417, 418, 419, 420, 422, 423, 424, 427, 428, 429, 430, 431, 435, 442, 443, 449, 451, 453, 455, 456, 461, 463, 473, 480, 481, 488, 491, 492, 494, 495, 498, 499, 502, 503, 506, 507, 508, 510, 511, 512, 515, 516, 517, 518, 519, 521, 522, 523, 524, 525, 527, 528, 529, 530, 532, 533, 535, 537, 539, 540, 541, 542, 544, 545, 546, 547, 548, 549, 550, 552, 553, 554, 556, 557, 558, 561, 562, 565, 569, 571, 572, 573, 575, 576, 577, 579, 580, 581, 582, 583, 585, 587, 599, 600, 603, 606, 620, 621, 624, 627, 634, 635, 636, 637, 638, 639, 645, 646, 649, 650, 659, 664, 679, 683, 684, 695, 696, 699, 700, 703, 718, 722, 723, 734, 735, 738, 739, 742, 757, 761, 762, 773, 774, 777, 778, 781, 796, 800, 801, 812, 813, 816, 817, 820, 835, 839, 840, 851, 852, 855, 856, 875, 910, 916, 918, 921, 924, 935, 942, 957, 961, 962, 973, 974, 977, 978, 1030, 1044, 1054, 1056, 1067, 1072, 1079, 1092, 1105, 1154, 1166, 1201, 1210, 1211, 1216, 1217, 1219, 1598, 1606, 1611, 1616, 1622, 1626, 1634, 1635, 1640, 1641, 1646, 1650, 1651, 1656, 1657, 1664, 1684, 1685, 1689, 1691, 1692, 1694, 1696, 1699, 1700, 1701, 1702, 1708, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1740, 1742, 1754, 1760, 1763, 1833, 1835, 1839, 1841, 1849, 1850, 1851, 1852, 1853, 1854, 1856, 1858, 1859, 1860, 1861, 1862, 1863, 1865, 1870, 1871, 1874, 1876, 1878, 1879, 1880, 1882, 1883, 1884, 1885, 1886, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1909, 1910], "aforement": 0, "deprect": 0, "goe": [0, 556, 570, 1873, 1874, 1877, 1878, 1895], "along": [0, 494, 515, 563, 581, 1666, 1867, 1873, 1877, 1899, 1900, 1901, 1904, 1905, 1906], "often": [0, 197, 461, 583, 586, 1883, 1886, 1887, 1910], "kind": [0, 3, 245, 520, 532, 581, 1876, 1880], "up": [0, 224, 300, 301, 334, 338, 407, 428, 430, 431, 435, 449, 450, 451, 457, 476, 499, 500, 516, 551, 555, 560, 567, 575, 576, 577, 860, 875, 1191, 1679, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1806, 1849, 1850, 1855, 1859, 1869, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1885, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1908], "dn": [0, 500], "word": [0, 500, 515, 564, 1883, 1887, 1900, 1905, 1910], "ask": [0, 5, 7, 1849, 1850, 1858], "provid": [0, 3, 4, 6, 7, 154, 159, 171, 316, 351, 357, 365, 428, 449, 496, 498, 499, 502, 506, 518, 519, 520, 523, 524, 532, 537, 541, 552, 555, 556, 560, 565, 570, 571, 572, 573, 575, 576, 577, 579, 581, 583, 585, 875, 935, 1666, 1685, 1696, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1849, 1850, 1851, 1854, 1858, 1859, 1870, 1873, 1877, 1881, 1883, 1885, 1886, 1887, 1889, 1890, 1892, 1893, 1895, 1897, 1900, 1905], "each": [0, 26, 164, 254, 329, 354, 355, 359, 407, 413, 417, 428, 429, 430, 431, 450, 463, 482, 483, 484, 485, 492, 498, 499, 513, 517, 521, 525, 537, 551, 553, 555, 559, 561, 564, 572, 573, 574, 580, 581, 587, 599, 620, 697, 736, 775, 814, 853, 875, 975, 1012, 1054, 1067, 1071, 1187, 1215, 1627, 1635, 1647, 1651, 1659, 1666, 1693, 1742, 1762, 1763, 1769, 1780, 1850, 1852, 1858, 1873, 1877, 1879, 1883, 1886, 1887, 1889, 1890, 1892, 1895, 1897, 1899, 1900, 1904, 1905], "correspondingli": [0, 541], "gf_struct_t": [0, 182, 183, 184, 185, 186, 245, 296, 329, 500, 635, 636, 637, 638, 1698, 1699, 1703], "ha": [0, 3, 73, 127, 135, 139, 196, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 302, 351, 407, 428, 430, 431, 449, 451, 457, 459, 491, 492, 496, 497, 498, 499, 502, 506, 507, 513, 514, 515, 516, 517, 520, 532, 536, 537, 543, 551, 553, 560, 567, 569, 570, 580, 1213, 1646, 1784, 1803, 1835, 1838, 1839, 1840, 1848, 1849, 1851, 1854, 1857, 1858, 1866, 1870, 1873, 1875, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "std": [0, 11, 12, 13, 19, 27, 32, 34, 40, 43, 46, 48, 49, 58, 63, 70, 71, 73, 84, 95, 97, 115, 126, 140, 141, 142, 143, 144, 159, 161, 163, 164, 170, 172, 174, 175, 186, 188, 189, 197, 204, 205, 206, 207, 208, 209, 216, 223, 236, 239, 241, 244, 245, 247, 248, 249, 254, 255, 263, 264, 265, 267, 270, 275, 276, 277, 279, 282, 287, 288, 289, 291, 295, 296, 304, 318, 329, 332, 333, 335, 342, 344, 345, 347, 351, 352, 356, 363, 365, 378, 393, 397, 398, 400, 407, 408, 409, 410, 413, 414, 425, 426, 428, 429, 430, 431, 434, 439, 440, 443, 444, 445, 447, 450, 454, 455, 456, 457, 459, 467, 468, 469, 470, 477, 480, 481, 482, 483, 484, 485, 490, 491, 499, 502, 506, 507, 508, 509, 510, 513, 517, 523, 527, 528, 531, 541, 555, 564, 567, 569, 570, 572, 574, 585, 587, 635, 636, 637, 638, 672, 673, 674, 675, 711, 712, 713, 714, 750, 751, 752, 753, 789, 790, 791, 792, 828, 829, 830, 831, 950, 951, 952, 953, 998, 999, 1000, 1001, 1057, 1128, 1619, 1620, 1860, 1861, 1862, 1863, 1867], "vector": [0, 11, 19, 34, 95, 140, 141, 142, 143, 144, 153, 159, 161, 163, 164, 172, 174, 175, 177, 188, 189, 195, 197, 204, 205, 206, 207, 223, 236, 239, 241, 244, 245, 254, 255, 304, 328, 329, 330, 331, 352, 365, 366, 367, 393, 432, 454, 455, 456, 466, 480, 481, 482, 483, 484, 485, 499, 502, 507, 509, 512, 513, 514, 523, 555, 556, 557, 562, 563, 567, 572, 576, 589, 591, 597, 608, 610, 612, 618, 629, 631, 1054, 1057, 1065, 1077, 1598, 1605, 1610, 1611, 1613, 1614, 1615, 1626, 1627, 1631, 1633, 1647, 1648, 1649, 1663, 1664, 1666, 1667, 1668, 1716, 1719, 1861, 1877, 1881, 1885, 1886, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "variant": [0, 328, 331, 541, 572], "long": [0, 12, 53, 55, 56, 57, 60, 61, 114, 117, 155, 157, 178, 193, 194, 197, 204, 206, 210, 211, 219, 220, 223, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 270, 282, 295, 312, 313, 325, 328, 331, 378, 465, 474, 475, 490, 493, 496, 499, 500, 517, 537, 570, 572, 585, 1057, 1855, 1873, 1877, 1891, 1896, 1903, 1908], "effect": [0, 480, 481, 513, 517, 544, 545, 546, 547, 548, 551, 664, 703, 742, 781, 820, 1873, 1875, 1877, 1879, 1883, 1887, 1889, 1892, 1897, 1900, 1905], "particular": [0, 3, 164, 251, 268, 496, 499, 511, 513, 551, 574, 583, 587, 1850, 1852, 1855, 1858, 1864, 1892, 1897, 1903, 1908], "cthyb": [0, 4, 935, 1850, 1859, 1869, 1871, 1873, 1876, 1877, 1880, 1890, 1895], "tprf": [0, 1886, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907], "dft_tool": [0, 4, 1873, 1877], "gf_mesh": [0, 537, 683, 722, 761, 800, 839, 961], "were": [0, 4, 452, 1873, 1877, 1884, 1899, 1904], "further": [0, 449, 451, 459, 537, 543, 1854, 1857, 1873, 1877, 1888, 1892, 1894, 1897], "regroup": [0, 512], "cyclic_lattic": 0, "cartesian_product": 0, "prod": [0, 518, 521, 531, 536, 537, 542, 1862, 1873, 1877, 1879, 1880], "kept": [0, 435, 451, 564, 1902, 1907], "mean": [0, 448, 449, 480, 481, 483, 484, 485, 499, 511, 521, 524, 527, 528, 529, 533, 535, 537, 541, 543, 544, 545, 546, 547, 548, 551, 567, 568, 570, 572, 581, 583, 1832, 1859, 1867, 1873, 1877, 1879, 1880, 1881, 1883, 1884, 1886, 1887, 1892, 1897, 1903, 1908], "auto": [0, 16, 19, 23, 24, 29, 31, 32, 34, 38, 40, 44, 48, 74, 83, 86, 93, 94, 95, 98, 104, 106, 109, 110, 113, 125, 130, 149, 151, 159, 253, 254, 255, 256, 257, 258, 260, 262, 269, 274, 281, 286, 294, 299, 306, 307, 308, 309, 310, 312, 313, 316, 320, 321, 322, 323, 354, 416, 424, 448, 449, 450, 452, 454, 455, 456, 480, 481, 482, 483, 484, 485, 487, 490, 493, 496, 500, 502, 506, 507, 508, 509, 516, 517, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 537, 541, 555, 572, 587, 589, 591, 612, 697, 736, 775, 814, 853, 975, 1012, 1858, 1860, 1862, 1863, 1885, 1889, 1896, 1897, 1907], "m": [0, 3, 198, 214, 245, 259, 260, 268, 271, 272, 280, 283, 284, 292, 293, 299, 309, 310, 320, 408, 410, 427, 433, 434, 451, 512, 513, 514, 517, 519, 520, 525, 563, 567, 570, 573, 1041, 1042, 1079, 1092, 1105, 1178, 1684, 1855, 1862, 1877, 1882, 1883, 1887, 1899, 1900, 1901, 1904, 1905, 1906], "brillouin": [0, 517, 558, 1054, 1606, 1634, 1646, 1650, 1666, 1760, 1886, 1888, 1892, 1894, 1897, 1899, 1900, 1901, 1904, 1905, 1906], "zone": [0, 517, 558, 1054, 1606, 1634, 1646, 1650, 1666, 1760, 1886, 1888, 1892, 1894, 1897, 1899, 1900, 1901, 1904, 1905, 1906], "tag": [0, 27, 245, 251, 260, 268, 292, 298, 317, 496, 497, 498, 507, 527, 528, 529, 531, 533, 535, 1027], "associ": [0, 302, 315, 370, 371, 376, 377, 381, 382, 388, 389, 498, 537, 562, 1079, 1092, 1105, 1606, 1611, 1646, 1868, 1870, 1871, 1883, 1886, 1887, 1892, 1897, 1909], "those": [0, 3, 498, 499, 575, 1708, 1849, 1855, 1881, 1886, 1889], "occurr": 0, "latter": [0, 1851, 1873, 1875, 1877, 1879], "appli": [0, 11, 26, 83, 86, 354, 355, 360, 370, 381, 480, 481, 499, 556, 572, 1201, 1732, 1864, 1901, 1906], "short": [0, 541, 552, 570, 1859, 1868, 1891, 1896], "repres": [0, 11, 36, 325, 493, 517, 523, 572, 574, 580, 1145, 1840, 1841, 1862, 1877, 1883, 1887, 1892, 1897], "help": [0, 3, 8, 564, 578, 581, 1664, 1854, 1858, 1859, 1902, 1907], "t": [0, 3, 34, 109, 110, 111, 112, 125, 126, 129, 131, 132, 140, 141, 142, 143, 144, 145, 146, 148, 149, 150, 151, 299, 303, 304, 309, 310, 311, 317, 320, 334, 338, 445, 449, 451, 454, 455, 456, 461, 480, 481, 487, 492, 497, 499, 510, 514, 515, 518, 519, 520, 524, 536, 542, 543, 550, 555, 558, 560, 561, 562, 563, 568, 570, 573, 574, 576, 580, 587, 697, 700, 736, 739, 775, 778, 814, 817, 853, 856, 975, 978, 1012, 1611, 1685, 1692, 1696, 1714, 1715, 1716, 1762, 1763, 1849, 1869, 1872, 1873, 1877, 1882, 1883, 1886, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "abov": [0, 3, 497, 510, 541, 543, 551, 563, 568, 570, 578, 1726, 1873, 1877, 1879, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "doe": [0, 9, 171, 224, 232, 233, 234, 235, 236, 237, 238, 239, 410, 434, 494, 496, 506, 507, 508, 512, 513, 517, 519, 543, 551, 568, 570, 581, 1092, 1105, 1858, 1859, 1873, 1875, 1876, 1877, 1878, 1879, 1880, 1883, 1886, 1887, 1888, 1890, 1891, 1894, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "ani": [0, 3, 7, 8, 232, 233, 234, 235, 236, 237, 238, 239, 260, 297, 301, 312, 313, 319, 368, 379, 449, 496, 497, 498, 499, 502, 506, 507, 508, 510, 511, 514, 517, 524, 551, 565, 570, 572, 575, 580, 581, 585, 991, 992, 1731, 1841, 1849, 1850, 1855, 1862, 1867, 1873, 1877, 1879, 1883, 1884, 1886, 1887, 1900, 1905], "avail": [0, 4, 447, 451, 519, 543, 569, 572, 582, 935, 1737, 1835, 1850, 1851, 1852, 1854, 1859, 1899, 1904], "op": [0, 110, 111, 142, 143, 149, 150, 153, 171, 188, 189, 190, 317, 352, 354, 359, 473, 499, 513, 572, 633, 640, 641, 642, 1678, 1679, 1805, 1819, 1879], "write": [0, 5, 9, 49, 128, 209, 248, 264, 276, 288, 333, 345, 398, 463, 468, 494, 496, 497, 498, 499, 507, 513, 514, 517, 521, 532, 539, 551, 553, 556, 564, 565, 567, 572, 1219, 1859, 1860, 1865, 1868, 1873, 1877, 1879, 1883, 1886, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "linalg": [0, 1860, 1886], "part": [0, 3, 7, 297, 302, 318, 319, 390, 409, 449, 451, 457, 458, 459, 460, 461, 499, 506, 513, 517, 543, 558, 564, 570, 572, 575, 673, 675, 677, 685, 712, 714, 716, 724, 751, 753, 755, 763, 790, 792, 794, 802, 829, 831, 833, 841, 865, 870, 883, 890, 935, 951, 953, 955, 963, 999, 1001, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1646, 1673, 1675, 1700, 1701, 1702, 1708, 1712, 1848, 1854, 1859, 1860, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1882, 1883, 1887, 1890, 1892, 1895, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "modul": [0, 2, 492, 493, 494, 498, 543, 551, 558, 572, 573, 574, 575, 581, 582, 588, 643, 657, 661, 662, 1179, 1592, 1669, 1681, 1724, 1733, 1738, 1752, 1766, 1780, 1837, 1850, 1852, 1858, 1864, 1873, 1877, 1884, 1885, 1886], "simul": [0, 449, 496, 568, 583, 1889, 1896], "serv": [0, 449, 463, 1742], "dual": [0, 449], "purpos": [0, 5, 449, 499, 512, 517, 525, 531, 556, 564, 572, 587, 1834, 1839, 1883, 1887, 1891, 1896, 1899, 1900, 1904, 1905], "perform": [0, 197, 205, 253, 268, 292, 314, 315, 317, 358, 363, 442, 449, 476, 481, 508, 509, 514, 519, 553, 570, 583, 986, 1211, 1849, 1850, 1861, 1883, 1885, 1887, 1888, 1891, 1894, 1896, 1900, 1905], "logarithm": [0, 451, 459, 460, 461, 1883, 1887, 1903, 1908], "bin": [0, 448, 450, 451, 453, 454, 455, 456, 457, 458, 459, 460, 461, 463, 465, 471, 476, 479, 480, 481, 487, 553, 559, 583, 1213, 1659, 1740, 1742, 1747, 1852, 1854, 1855, 1889, 1892, 1897], "which": [0, 6, 131, 203, 205, 228, 245, 351, 390, 432, 449, 450, 451, 454, 473, 480, 481, 487, 490, 492, 494, 497, 498, 499, 500, 506, 507, 511, 513, 517, 519, 523, 539, 541, 543, 551, 556, 561, 565, 567, 568, 569, 570, 572, 573, 574, 575, 576, 580, 581, 583, 587, 650, 660, 700, 739, 778, 817, 856, 875, 942, 978, 1685, 1708, 1709, 1710, 1711, 1714, 1715, 1716, 1762, 1778, 1780, 1850, 1855, 1856, 1857, 1858, 1860, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1886, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1910], "estim": [0, 449, 480, 481, 487, 583, 1873, 1877, 1895, 1903, 1908], "correl": [0, 9, 448, 449, 487, 1849, 1859, 1873, 1877, 1889, 1890, 1895, 1896, 1900, 1903, 1905, 1908], "b": [0, 4, 170, 245, 304, 445, 457, 459, 465, 470, 471, 490, 493, 498, 511, 514, 523, 540, 572, 573, 579, 580, 676, 715, 754, 793, 832, 954, 1181, 1182, 1204, 1591, 1685, 1696, 1746, 1747, 1769, 1773, 1774, 1775, 1776, 1800, 1849, 1860, 1867, 1881, 1882, 1884, 1892, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "compress": [0, 449, 450, 451, 453, 496], "process": [0, 8, 9, 12, 112, 113, 115, 125, 139, 140, 141, 142, 143, 144, 149, 150, 151, 499, 1850, 1856, 1879, 1881], "design": [0, 449, 513, 570, 1859, 1901, 1906], "flexibl": [0, 449, 491, 1849], "either": [0, 218, 365, 449, 453, 496, 500, 520, 539, 553, 554, 568, 569, 570, 572, 573, 582, 1211, 1215, 1664, 1685, 1838, 1849, 1851, 1853, 1859, 1873, 1877, 1881, 1891, 1896, 1910], "log": [0, 448, 459, 487, 547, 581, 1848, 1850, 1873, 1877], "lin": 0, "turn": [0, 4, 33, 449, 451, 457, 459, 461, 1853, 1883, 1887, 1902, 1907], "off": [0, 451, 457, 459, 461, 515, 550, 575, 576, 577, 916, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1853, 1873, 1877, 1882, 1907], "differ": [0, 11, 27, 205, 365, 449, 455, 456, 484, 485, 491, 492, 514, 551, 554, 564, 567, 568, 570, 572, 587, 1849, 1851, 1852, 1859, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1887, 1888, 1889, 1891, 1894, 1895, 1896, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907], "case": [0, 171, 254, 255, 261, 273, 285, 351, 491, 499, 506, 508, 510, 517, 519, 522, 524, 531, 543, 563, 570, 1850, 1855, 1858, 1865, 1869, 1873, 1877, 1880, 1883, 1886, 1887, 1888, 1889, 1891, 1892, 1894, 1896, 1897, 1901, 1902, 1906, 1907], "purposefulli": [0, 449], "fulli": [0, 315, 573, 575, 1684, 1711, 1873, 1877], "automat": [0, 9, 197, 357, 358, 363, 410, 434, 451, 453, 491, 492, 500, 503, 509, 516, 524, 527, 532, 541, 543, 551, 555, 564, 569, 570, 581, 585, 587, 1626, 1850, 1852, 1867, 1873, 1877, 1889], "user": [0, 5, 6, 7, 205, 351, 449, 461, 498, 500, 507, 513, 523, 541, 555, 564, 572, 573, 583, 1664, 1685, 1849, 1850, 1851, 1852, 1854, 1858, 1870, 1881, 1888, 1889, 1894, 1895], "choic": [0, 568, 1664, 1854, 1873, 1877, 1881], "calcul": [0, 11, 64, 237, 369, 380, 448, 449, 480, 481, 482, 483, 484, 485, 509, 520, 527, 541, 543, 544, 546, 552, 555, 559, 564, 570, 572, 573, 581, 583, 648, 652, 670, 697, 709, 736, 748, 775, 787, 814, 826, 853, 935, 948, 975, 1012, 1666, 1684, 1685, 1686, 1687, 1695, 1780, 1849, 1850, 1859, 1861, 1871, 1874, 1875, 1878, 1879, 1883, 1884, 1885, 1886, 1887, 1889, 1891, 1892, 1896, 1897, 1901, 1902, 1906, 1907, 1909], "standard": [0, 9, 191, 448, 449, 455, 456, 480, 481, 483, 484, 487, 496, 499, 508, 512, 517, 522, 543, 551, 572, 575, 578, 580, 581, 587, 1841, 1850, 1851, 1856, 1870, 1873, 1877, 1889, 1899, 1904], "singl": [0, 257, 451, 453, 500, 532, 544, 545, 546, 547, 548, 553, 556, 570, 670, 676, 698, 699, 709, 715, 737, 738, 748, 754, 776, 777, 787, 793, 815, 816, 826, 832, 854, 855, 948, 954, 976, 977, 1217, 1219, 1859, 1869, 1871, 1873, 1877, 1880, 1882, 1883, 1887, 1889, 1891, 1892, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "thread": [0, 456, 484, 485, 1832, 1833, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1852, 1889, 1896], "well": [0, 3, 378, 449, 463, 492, 496, 499, 507, 556, 563, 564, 568, 570, 572, 583, 1726, 1742, 1850, 1870, 1873, 1877, 1888, 1894, 1899, 1904], "jackknif": [0, 448, 481, 583], "throughout": 0, "care": [0, 515, 564, 565, 568, 570, 1858, 1873, 1877, 1895, 1903, 1908], "been": [0, 3, 4, 127, 135, 196, 407, 428, 430, 431, 457, 459, 461, 506, 514, 516, 532, 570, 572, 580, 1803, 1835, 1838, 1840, 1848, 1849, 1857, 1858, 1866, 1890, 1891, 1895, 1896, 1900, 1905], "taken": [0, 497, 498, 515, 520, 570, 1841, 1858], "stabl": [0, 512, 1850, 1851, 1854], "especi": [0, 7, 1851, 1867], "comput": [0, 4, 128, 188, 189, 190, 252, 357, 407, 428, 430, 431, 433, 449, 476, 487, 499, 500, 506, 507, 512, 517, 520, 527, 531, 543, 544, 546, 550, 551, 553, 558, 560, 561, 564, 567, 568, 570, 573, 576, 581, 583, 585, 640, 641, 642, 655, 670, 679, 698, 709, 718, 737, 748, 757, 776, 787, 796, 815, 826, 835, 854, 948, 957, 976, 996, 1210, 1596, 1626, 1629, 1685, 1714, 1715, 1716, 1754, 1760, 1762, 1780, 1784, 1849, 1850, 1854, 1855, 1856, 1859, 1870, 1872, 1873, 1877, 1883, 1887, 1890, 1895, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "varianc": 0, "mostli": [0, 1873, 1877, 1879, 1880], "two": [0, 11, 13, 14, 42, 53, 61, 72, 84, 96, 230, 231, 236, 256, 348, 349, 360, 369, 370, 380, 381, 401, 402, 449, 450, 455, 456, 476, 491, 494, 496, 498, 508, 511, 512, 513, 514, 519, 520, 528, 543, 547, 551, 553, 555, 556, 563, 567, 570, 572, 573, 587, 660, 859, 860, 1027, 1212, 1666, 1684, 1689, 1691, 1694, 1800, 1849, 1850, 1858, 1859, 1866, 1871, 1873, 1876, 1877, 1879, 1880, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1904, 1905, 1906, 1910], "welford": 0, "binned_seri": 0, "ts_observ": 0, "observ": [0, 9, 188, 189, 480, 481, 500, 555, 571, 572, 583, 1873, 1875, 1876, 1877, 1879, 1880, 1892, 1895, 1897, 1899, 1904], "unchang": [0, 531, 1023, 1861, 1888, 1894], "found": [0, 3, 4, 268, 362, 497, 502, 506, 510, 572, 1778, 1849, 1860, 1872, 1873, 1874, 1877, 1878, 1879, 1889, 1890, 1894, 1895, 1896], "io": [0, 4, 267, 279, 291, 1850, 1873, 1876, 1877, 1880, 1881, 1899, 1904], "content": [0, 498, 516, 1864, 1877, 1880, 1884, 1889, 1910], "To": [0, 3, 205, 496, 498, 504, 514, 520, 543, 551, 560, 581, 1660, 1803, 1849, 1850, 1852, 1854, 1855, 1858, 1870, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1883, 1884, 1886, 1887, 1889, 1890, 1895, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "fit": [0, 9, 253, 254, 255, 520, 527, 552, 553, 578, 580, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 935, 951, 953, 986, 999, 1001, 1213, 1873, 1874, 1877, 1878], "given": [0, 4, 11, 35, 49, 83, 101, 115, 132, 159, 160, 176, 188, 189, 205, 256, 257, 316, 334, 335, 336, 338, 340, 341, 342, 343, 346, 356, 357, 359, 360, 362, 363, 396, 399, 442, 449, 463, 465, 480, 481, 490, 493, 498, 500, 508, 510, 512, 517, 534, 541, 543, 551, 553, 555, 557, 559, 560, 561, 563, 572, 573, 574, 575, 576, 577, 579, 587, 598, 619, 640, 641, 648, 652, 659, 896, 984, 1027, 1079, 1092, 1105, 1191, 1211, 1212, 1215, 1216, 1598, 1606, 1628, 1629, 1632, 1634, 1635, 1650, 1651, 1679, 1684, 1685, 1699, 1712, 1714, 1715, 1716, 1722, 1723, 1731, 1732, 1742, 1762, 1768, 1780, 1784, 1815, 1829, 1839, 1851, 1858, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1896, 1897, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907, 1910], "hybrid": [0, 500, 553, 575, 1210, 1211, 1215, 1859, 1873, 1877, 1880, 1883, 1887, 1889], "imaginari": [0, 185, 186, 253, 302, 306, 307, 308, 313, 315, 500, 518, 521, 523, 527, 535, 536, 540, 542, 543, 547, 549, 553, 554, 572, 575, 637, 677, 697, 716, 736, 755, 775, 794, 814, 833, 853, 935, 955, 975, 986, 987, 988, 989, 992, 1012, 1092, 1105, 1134, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1211, 1213, 1216, 1219, 1675, 1712, 1848, 1849, 1873, 1876, 1877, 1879, 1880, 1886, 1890, 1892, 1894, 1895, 1897, 1900, 1904, 1905], "discretize_bath": [0, 553], "delta_in": [0, 553, 1211], "site": [0, 553, 563, 567, 1211, 1629, 1630, 1850, 1874, 1878, 1885, 1886, 1887, 1889, 1892, 1897, 1903, 1908], "nb": [0, 197, 224, 230, 231, 260, 262, 274, 286, 410, 434, 510, 517, 524, 553, 1211, 1215, 1780], "energi": [0, 163, 168, 186, 500, 553, 559, 563, 567, 605, 626, 935, 1079, 1092, 1105, 1211, 1212, 1215, 1659, 1848, 1874, 1875, 1876, 1878, 1879, 1880, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1903, 1908], "scipi": [0, 553, 578, 579, 935, 1211, 1854, 1856, 1857, 1870, 1873, 1875, 1876, 1877, 1879, 1880, 1902, 1903, 1907, 1908], "bfg": [0, 553, 1211], "basin": 0, "nelder": [0, 553, 1211], "mead": [0, 553, 1211], "inform": [0, 499, 519, 521, 525, 527, 528, 541, 570, 581, 1848, 1849, 1850, 1855, 1866, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1887, 1888, 1889, 1894, 1900, 1905], "make_delta": [0, 553], "axi": [0, 540, 545, 546, 554, 580, 1201, 1873, 1876, 1877, 1880, 1882, 1883, 1887, 1888, 1889, 1890, 1894, 1895, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "arbitrari": [0, 517, 520, 541, 572, 1079, 1092, 1105], "gradient": [0, 4], "guess": [0, 553, 579, 659, 660, 1211, 1768, 1769, 1778, 1869, 1891, 1892, 1895, 1896, 1897], "complet": [0, 3, 9, 193, 194, 210, 211, 212, 213, 219, 220, 221, 222, 224, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 502, 503, 508, 510, 513, 523, 524, 529, 542, 549, 570, 585, 1849, 1850, 1854, 1860, 1861, 1869, 1883, 1887, 1895, 1902, 1907], "first": [0, 6, 7, 8, 11, 12, 13, 40, 46, 49, 51, 53, 63, 224, 256, 326, 327, 369, 380, 457, 476, 482, 483, 484, 485, 494, 498, 499, 511, 517, 519, 520, 527, 528, 531, 532, 539, 541, 551, 555, 558, 559, 560, 564, 568, 569, 570, 572, 580, 586, 653, 860, 867, 935, 1778, 1815, 1829, 1848, 1849, 1850, 1855, 1859, 1860, 1866, 1869, 1871, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1890, 1891, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "lim_": [0, 553, 1211, 1895], "inf": 0, "delta": [0, 480, 481, 514, 520, 553, 559, 583, 645, 1211, 1215, 1778, 1889, 1892, 1897, 1899, 1904], "ci": 0, "setup": [0, 1855, 1873, 1877], "adresssanit": 0, "undefinedbehaviorsanit": 0, "catch": [0, 585], "e": [0, 3, 4, 5, 40, 46, 86, 155, 156, 157, 158, 168, 216, 252, 254, 255, 260, 262, 274, 286, 300, 301, 302, 443, 451, 490, 491, 492, 493, 496, 497, 498, 499, 502, 503, 507, 509, 511, 512, 515, 517, 518, 519, 520, 521, 523, 524, 528, 537, 541, 543, 544, 545, 546, 547, 548, 550, 551, 552, 553, 560, 563, 570, 572, 575, 576, 577, 578, 579, 580, 581, 585, 605, 626, 659, 681, 682, 720, 721, 759, 760, 798, 799, 837, 838, 860, 862, 875, 879, 929, 935, 959, 960, 1002, 1003, 1201, 1217, 1626, 1666, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1732, 1850, 1851, 1852, 1854, 1855, 1856, 1858, 1860, 1864, 1866, 1867, 1873, 1877, 1879, 1880, 1882, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1896, 1899, 1900, 1901, 1904, 1905, 1906, 1910], "bound": [0, 201, 202, 226, 227, 509, 650, 1768, 1769, 1778], "undefin": [0, 292, 490, 493], "behavior": [0, 515, 1849, 1852, 1858, 1875, 1879, 1895, 1903, 1908], "danger": [0, 587], "earli": 0, "navig": [0, 1873, 1877], "done": [0, 196, 200, 225, 407, 410, 420, 428, 431, 434, 450, 500, 513, 551, 568, 570, 579, 659, 1858, 1873, 1876, 1877, 1880, 1882, 1883, 1887, 1890, 1895, 1903, 1908], "vertic": [0, 1902, 1907], "sidebar": 0, "left": [0, 224, 465, 480, 481, 487, 502, 553, 567, 676, 715, 754, 793, 832, 954, 1211, 1833, 1873, 1877, 1883, 1887, 1890, 1895, 1899, 1902, 1903, 1904, 1907, 1908], "addition": [0, 480, 481, 570, 1883, 1887], "broken": [0, 1901, 1903, 1906, 1908], "could": [0, 7, 506, 519, 551, 568, 1875, 1877, 1879, 1880, 1889, 1890, 1895, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "deploi": 0, "pleas": [0, 4, 6, 8, 496, 537, 1848, 1849, 1850, 1855, 1857, 1858, 1903, 1908], "tight": [0, 558, 560, 563, 1611, 1626, 1646, 1662, 1663, 1664, 1873, 1877, 1879, 1880, 1899, 1904], "tight_bind": [0, 557, 558, 560, 562, 563, 1872, 1899, 1903, 1904, 1908], "dispers": [0, 562, 1877, 1879, 1886, 1892, 1897, 1899, 1900, 1904, 1905], "spectrum": [0, 186, 1874, 1878], "point": [0, 185, 186, 300, 302, 449, 451, 452, 464, 474, 475, 476, 480, 481, 517, 520, 521, 524, 526, 527, 528, 531, 532, 533, 535, 539, 540, 541, 542, 549, 550, 559, 560, 561, 563, 570, 572, 580, 585, 586, 649, 650, 660, 906, 935, 1038, 1054, 1066, 1067, 1078, 1079, 1090, 1103, 1105, 1116, 1133, 1134, 1144, 1163, 1166, 1177, 1185, 1187, 1203, 1204, 1626, 1628, 1629, 1659, 1664, 1666, 1744, 1748, 1749, 1754, 1757, 1758, 1760, 1762, 1763, 1764, 1765, 1780, 1784, 1838, 1858, 1869, 1870, 1873, 1875, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1889, 1892, 1897, 1899, 1900, 1901, 1904, 1905, 1906], "even": [0, 4, 457, 459, 496, 499, 508, 516, 559, 570, 581, 653, 1079, 1092, 1105, 1835, 1850, 1851, 1879, 1880, 1881, 1883, 1887, 1892, 1895, 1897, 1901, 1903, 1906, 1908], "equival": [0, 327, 328, 348, 349, 473, 491, 496, 498, 520, 524, 543, 551, 563, 587, 1862, 1886], "confus": 0, "addit": [0, 132, 374, 386, 451, 463, 496, 499, 511, 532, 537, 541, 556, 572, 585, 1850, 1852, 1853, 1856, 1873, 1877, 1882, 1890, 1895, 1900, 1905], "tb_from_wannier90": [0, 1873, 1875, 1876, 1877, 1879, 1880], "creat": [0, 4, 8, 11, 131, 204, 206, 214, 217, 256, 257, 316, 345, 351, 398, 451, 459, 480, 481, 492, 497, 498, 499, 513, 519, 543, 545, 546, 550, 553, 554, 572, 575, 576, 587, 589, 990, 1023, 1178, 1215, 1216, 1666, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1833, 1835, 1849, 1850, 1854, 1855, 1858, 1862, 1867, 1879, 1880, 1882, 1883, 1886, 1887, 1890, 1892, 1895, 1897], "output": [0, 7, 19, 95, 254, 255, 450, 454, 457, 459, 463, 477, 482, 483, 484, 485, 520, 570, 572, 583, 1632, 1663, 1664, 1850, 1873, 1874, 1877, 1878, 1889, 1890, 1895, 1897], "pythtb": [0, 1662], "tb_model": [0, 1662], "modern": [0, 1850, 1851, 1856], "icx": [0, 1856], "2021": [0, 4], "major": [0, 6, 1850, 1910], "One": [0, 496, 507, 551, 572, 942, 1666, 1852, 1860, 1866, 1873, 1876, 1877, 1880, 1883, 1887, 1888, 1892, 1894, 1895, 1897, 1901, 1906], "delta_tau": 0, "delta_iw": [0, 553, 1210], "802": 0, "filter_op": 0, "quadratic_term": 0, "quartic_term": 0, "block_matrix_from_op": 0, "op_from_block_matrix": 0, "local": [0, 4, 8, 543, 551, 560, 571, 575, 586, 1663, 1849, 1852, 1853, 1855, 1856, 1859, 1864, 1869, 1873, 1874, 1876, 1877, 1878, 1880, 1889, 1891, 1892, 1895, 1896, 1897, 1901, 1902, 1903, 1906, 1907, 1908], "mpi_boost": 0, "kroneck": 0, "ref": [0, 451, 453, 482, 483, 484, 485, 507, 517, 537, 587, 1864, 1873, 1877, 1883, 1887, 1892, 1897, 1899, 1904], "pade": [0, 547, 1888, 1890, 1894, 1895], "n_point": [0, 543, 544, 545, 546, 547, 548, 550, 551, 554, 561, 579, 580, 664, 693, 703, 732, 742, 771, 781, 810, 820, 849, 971, 1011, 1182, 1183, 1760, 1762, 1763, 1848, 1900, 1905], "table_import": 0, "init": [0, 498, 523, 579, 659, 660, 1803, 1860, 1886, 1887], "cxxflag": [0, 1852], "ldflag": [0, 1852], "wrapper": [0, 493, 543, 572], "833": 0, "incorrect": [0, 3, 1862], "eigenbasi": [0, 153, 177, 189], "get_op_mat": [0, 154], "825": 0, "quantum_number_eigenvalu": [0, 152, 189, 501], "particl": [0, 500, 544, 546, 572, 576, 589, 591, 612, 670, 709, 748, 787, 826, 948, 1030, 1717, 1859, 1883, 1885, 1886, 1887, 1899, 1900, 1901, 1904, 1905, 1906], "subspac": [0, 9, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 168, 170, 172, 173, 174, 176, 178, 179, 180, 182, 183, 184, 185, 186, 190, 351, 352, 357, 358, 359, 360, 362, 363, 364, 365, 390, 392, 393, 395, 396, 397, 398, 399, 401, 402, 403, 404, 500, 555, 589, 591, 593, 594, 595, 596, 597, 598, 599, 602, 603, 604, 605, 607, 608, 611, 612, 614, 615, 616, 617, 618, 619, 620, 623, 624, 625, 626, 628, 629, 632, 1873, 1877, 1885, 1889, 1896], "fock_stat": 0, "unitari": [0, 175, 176, 563, 609, 630], "without": [0, 3, 292, 297, 319, 487, 498, 513, 517, 527, 528, 543, 561, 581, 1756, 1758, 1765, 1803, 1858, 1873, 1877, 1880, 1884], "autopartit": [0, 9, 555, 1889, 1896], "term": [0, 500, 520, 572, 1626, 1663, 1667, 1700, 1701, 1702, 1881, 1888, 1889, 1891, 1894, 1896, 1899, 1903, 1904, 1908], "convent": [0, 7, 9, 488, 573, 575, 576, 577, 580, 583, 669, 708, 747, 786, 825, 947, 1689, 1692, 1694, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1852, 1865, 1888, 1894], "eigenel": 0, "get_subspace_dim": [0, 154], "broadcast": [0, 140, 317, 463, 472, 498, 499, 543, 551], "eigensystem_t": [0, 161], "smaller": [0, 1883, 1887, 1890, 1895, 1903, 1908], "12": [0, 19, 95, 245, 254, 300, 302, 483, 484, 510, 580, 681, 682, 720, 721, 759, 760, 798, 799, 837, 838, 959, 960, 1002, 1003, 1856, 1857, 1867, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1884, 1886, 1887, 1891, 1892, 1894, 1896, 1897, 1908], "target_compile_featur": 0, "cxx_std_20": 0, "guarante": [0, 551, 572, 1850], "triqsvar": [0, 1850], "switch": [0, 1858, 1874, 1876, 1878, 1880], "build_dep": 0, "ifnotfound": 0, "accordingli": [0, 531, 1910], "start": [0, 5, 8, 45, 63, 410, 434, 451, 453, 509, 515, 541, 544, 545, 551, 559, 560, 563, 567, 568, 653, 1642, 1778, 1833, 1835, 1837, 1838, 1840, 1850, 1858, 1864, 1867, 1870, 1873, 1875, 1877, 1879, 1880, 1881, 1882, 1883, 1887, 1888, 1889, 1891, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "usr": [0, 586, 1850, 1852, 1857, 1866], "dpythonsupport": 0, "config": [0, 564, 567, 569, 570, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "findmathjax": 0, "findsphinx": 0, "live": [0, 8, 507], "head": 0, "linktim": 0, "ipo": 0, "cmakelist": [0, 1858, 1864, 1867], "txt": [0, 1858, 1867], "treat": [0, 6, 500, 573, 1683, 1685, 1688, 1690, 1692, 1780, 1852, 1883, 1887, 1903, 1908], "subdirectori": [0, 1868, 1871, 1895, 1896, 1909], "build_document": 0, "AND": 0, "NOT": [0, 223, 232, 233, 234, 235, 236, 237, 238, 239, 493, 498, 508, 510, 513, 517, 543], "pythonsupport": 0, "inspect": [0, 581, 1873, 1877, 1890, 1895], "interface_compile_featur": 0, "find_xxx": 0, "hint": [0, 1873, 1877, 1883, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "priorit": 0, "system": [0, 3, 154, 181, 496, 500, 555, 567, 568, 572, 1849, 1850, 1852, 1854, 1855, 1856, 1858, 1859, 1873, 1876, 1877, 1880, 1883, 1885, 1887, 1889, 1890, 1895, 1899, 1900, 1901, 1904, 1905, 1906, 1909], "py_convert": [0, 493, 1864], "vice": [0, 572], "versa": [0, 572], "rtd": 0, "autosummari": 0, "796": 0, "old": [0, 296, 500, 514, 524, 568, 573, 897, 1685, 1696, 1855, 1861, 1879], "mpi4pi": [0, 1805, 1806, 1854, 1855, 1856, 1857], "pip3": 0, "first_mesh": 0, "ttf": 0, "woff2": 0, "eot": 0, "h5_read_gf_struct": [0, 240], "multivar": [0, 531], "829": 0, "helper": [0, 9, 64, 537, 571, 700, 739, 778, 817, 856, 978, 1883, 1887, 1899, 1900, 1904, 1905], "block_siz": [0, 242], "block_gf_view": [0, 245, 254, 255, 299, 305, 309, 310, 317, 320, 523], "scalar": [0, 369, 373, 380, 385, 450, 457, 459, 461, 496, 497, 514, 517, 521, 527, 528, 529, 531, 532, 533, 535, 551, 556, 572, 573, 575, 679, 718, 757, 796, 835, 957, 1683, 1685, 1686, 1687, 1690, 1695, 1710, 1862, 1883, 1884, 1886, 1887, 1901, 1906], "nondiagon": 0, "make_real_in_tau": [0, 240], "is_gf_real_in_tau": [0, 240, 527], "matrix_valu": [0, 521, 525, 527, 528, 529, 532, 533, 534, 535, 546, 671, 672, 673, 674, 675, 686, 687, 688, 710, 711, 712, 713, 714, 725, 726, 727, 749, 750, 751, 752, 753, 764, 765, 766, 788, 789, 790, 791, 792, 803, 804, 805, 827, 828, 829, 830, 831, 842, 843, 844, 949, 950, 951, 952, 953, 964, 965, 966, 996, 997, 998, 999, 1000, 1001, 1004, 1005, 1006, 1862], "comparison": [0, 337, 478, 490, 547, 1873, 1877, 1903, 1908], "transpos": [0, 545, 547, 548, 553], "self": [0, 4, 493, 497, 544, 545, 547, 548, 551, 553, 559, 579, 580, 649, 659, 667, 668, 669, 689, 690, 691, 692, 706, 707, 708, 728, 729, 730, 731, 745, 746, 747, 767, 768, 769, 770, 784, 785, 786, 806, 807, 808, 809, 823, 824, 825, 845, 846, 847, 848, 862, 864, 871, 879, 881, 894, 935, 945, 946, 947, 967, 968, 969, 970, 1007, 1008, 1009, 1010, 1019, 1058, 1069, 1082, 1095, 1108, 1121, 1137, 1148, 1156, 1168, 1185, 1186, 1187, 1189, 1190, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1212, 1740, 1848, 1859, 1869, 1874, 1875, 1878, 1879, 1881, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908, 1909], "conj_r": 0, "conj": [0, 300, 302, 314, 315, 483, 484, 520, 553, 572, 697, 736, 775, 814, 853, 975, 1012, 1210], "mako": [0, 1854, 1856, 1857], "bugfix": 0, "getitem": 0, "setitem": 0, "rank1": 0, "set_operator_structur": [0, 577], "gf_base": 0, "cover": [0, 568, 1883, 1887, 1892, 1897], "slice": [0, 11, 113, 499, 531, 542, 545, 548, 549, 700, 739, 778, 817, 856, 978, 1731, 1815, 1829], "fix_gf_struct_typ": 0, "bionic": 0, "cento": 0, "11": [0, 19, 95, 245, 255, 508, 510, 517, 1849, 1856, 1875, 1877, 1879, 1880, 1881, 1883, 1885, 1886, 1887, 1896, 1903, 1904, 1905, 1906, 1907, 1908], "trigger": 0, "increas": [0, 449, 450, 453, 1859, 1873, 1874, 1875, 1877, 1878, 1879, 1889, 1896, 1903, 1908], "j4": 0, "nbsphinx": [0, 1879, 1889, 1899, 1900, 1902, 1904, 1905, 1907], "apt": [0, 1850, 1855, 1857], "libomp": 0, "ignor": [0, 451, 453, 498, 1700, 1701, 1702, 1780], "dockerignor": 0, "zlib": 0, "libhdf5": [0, 1857], "msan_opt": 0, "libcxx": 0, "libcxxabi": 0, "libev": 0, "libgfortran5": [0, 1857], "libgfortran4": 0, "21": [0, 1877, 1883, 1887, 1896, 1899], "resolv": [0, 1850, 1854], "comp": [0, 3], "alloc_dealloc_mismatch": 0, "libc": 0, "libunwind": 0, "dev": [0, 1850, 1857, 1866], "ambigu": [0, 510], "focal": 0, "omp_num_thread": [0, 1852], "explicit": [0, 498, 527, 528, 1850], "node": [0, 413, 481, 498, 499, 570, 585, 1780, 1790, 1798, 1809, 1813, 1815, 1823, 1829, 1850, 1883, 1887], "alloc": [0, 328, 331], "ansicolor": 0, "orthogon": [0, 561, 1754, 1760, 1849], "clean": [0, 510, 512, 564, 572, 1855, 1858], "h_k": 0, "eigenvalu": [0, 162, 188, 189, 602, 623, 1879, 1895], "tighbind": 0, "displ_vec": [0, 562], "overlap_mat_vec": [0, 562], "h5read": 0, "writeabl": 0, "printabl": 0, "parser": [0, 1667, 1668], "get_kmesh": [0, 1873, 1877, 1879, 1880, 1899, 1903, 1904, 1908], "get_rmesh": 0, "inconsist": 0, "tbsuperlattic": 0, "__repr__funct": 0, "lattice_util": [0, 1899, 1900, 1903, 1904, 1905, 1906, 1908], "eigvalsh": 0, "periodization_matrix": 0, "properti": [0, 300, 302, 314, 490, 520, 521, 536, 541, 543, 551, 553, 561, 669, 677, 678, 683, 684, 685, 694, 695, 696, 708, 716, 717, 722, 723, 724, 733, 734, 735, 747, 755, 756, 761, 762, 763, 772, 773, 774, 786, 794, 795, 800, 801, 802, 811, 812, 813, 825, 833, 834, 839, 840, 841, 850, 851, 852, 861, 865, 866, 867, 868, 869, 870, 876, 877, 883, 884, 888, 889, 890, 947, 955, 956, 961, 962, 963, 972, 973, 974, 1032, 1033, 1034, 1035, 1039, 1040, 1046, 1049, 1210, 1624, 1636, 1638, 1639, 1640, 1641, 1643, 1652, 1654, 1655, 1656, 1657, 1658, 1755, 1761, 1833, 1835, 1839, 1840, 1842, 1850, 1873, 1874, 1877, 1878, 1899, 1900, 1904, 1905], "extens": [0, 4, 6, 365, 1832, 1849, 1856, 1859, 1881, 1892, 1897], "cross": [0, 1874, 1878], "ndim": [0, 557], "get": [0, 6, 8, 40, 46, 55, 56, 60, 61, 115, 161, 162, 170, 171, 174, 200, 201, 202, 203, 448, 449, 451, 462, 463, 469, 470, 471, 474, 475, 479, 486, 514, 531, 567, 570, 573, 582, 587, 602, 604, 623, 625, 700, 739, 778, 817, 856, 978, 1688, 1692, 1737, 1747, 1748, 1749, 1750, 1751, 1849, 1850, 1855, 1857, 1873, 1877, 1879, 1883, 1887, 1888, 1890, 1892, 1894, 1895, 1897, 1900, 1905], "meshbrzon": [0, 1634, 1650, 1886], "meshcyclat": [0, 1635, 1651], "sumk": [0, 561], "monitor": [0, 1873, 1877], "select": [0, 8, 433, 441, 551, 555, 569, 574, 864, 871, 881, 894, 1854, 1860, 1882, 1892, 1897, 1900, 1905], "logic": [0, 524, 1859], "flow": 0, "stream": [0, 463, 477, 521, 572], "clear": [0, 8, 192, 411, 463, 513, 1851], "begin": [0, 20, 22, 35, 37, 43, 49, 64, 66, 77, 79, 81, 90, 92, 101, 103, 325, 490, 514, 517, 520, 568, 570, 572, 573, 942, 1686, 1687, 1695, 1873, 1877, 1883, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "clear_statist": [0, 432], "move_set": [0, 405], "recurs": [0, 496, 497, 1027, 1888, 1894], "del": [0, 498, 1848], "abbrevi": 0, "b_zone": 0, "get_interpol": 0, "rewrit": [0, 490, 493, 502, 519], "one": [0, 4, 6, 139, 159, 205, 245, 300, 314, 325, 351, 355, 356, 357, 363, 365, 378, 407, 413, 428, 430, 431, 435, 449, 457, 459, 461, 480, 481, 489, 492, 497, 498, 499, 506, 507, 508, 510, 511, 512, 513, 514, 515, 517, 520, 524, 527, 543, 553, 554, 555, 559, 567, 568, 569, 570, 572, 575, 576, 577, 579, 580, 581, 583, 585, 587, 589, 591, 612, 653, 860, 935, 1211, 1217, 1659, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1778, 1784, 1851, 1854, 1859, 1867, 1869, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "matsubara_mesh_opt": 0, "size_of_compon": 0, "foreach": [0, 11, 357, 366, 378, 517, 555, 556], "root": [0, 112, 125, 139, 140, 141, 142, 143, 144, 149, 150, 151, 317, 472, 473, 497, 498, 499, 1807, 1821, 1901, 1902, 1906, 1907], "has_env": [0, 115, 120, 121, 122], "built": [0, 499, 532, 1849, 1855, 1856, 1886], "minivec": 0, "make_regular": [0, 528], "range_al": 0, "all_t": [0, 531], "occur": [0, 413, 449, 461, 481, 496, 585, 1838, 1901, 1903, 1906, 1908], "_ph": 0, "placeholder_prim": 0, "detail": [0, 4, 49, 298, 357, 496, 498, 502, 517, 519, 565, 567, 568, 570, 581, 583, 1858, 1870, 1873, 1877, 1883, 1887, 1903, 1908], "matric": [0, 175, 223, 514, 541, 562, 573, 609, 630, 673, 676, 712, 715, 751, 754, 790, 793, 829, 832, 951, 954, 999, 1611, 1618, 1627, 1647, 1691, 1861, 1881, 1886], "underli": [0, 562, 1054, 1067, 1608, 1611, 1616, 1622, 1763, 1860, 1873, 1877, 1886], "squar": [0, 170, 253, 254, 255, 512, 520, 527, 541, 552, 553, 558, 560, 563, 576, 579, 659, 986, 1217, 1714, 1718, 1859, 1873, 1877, 1883, 1886, 1887, 1892, 1897, 1900, 1901, 1902, 1905, 1906, 1907, 1909], "collect": [0, 499, 564, 567, 570, 1856, 1889, 1893, 1896], "abc": [0, 494], "result_of": [0, 517], "invoke_result": 0, "crucial": [0, 580, 1873, 1877], "certain": [0, 1850, 1852, 1867, 1883, 1887, 1889], "fundamental_operator_set": [0, 9, 159, 165, 324, 341, 342, 352, 500, 555, 572, 574], "would": [0, 4, 507, 513, 524, 551, 570, 572, 1838, 1850, 1855, 1883, 1885, 1887, 1895], "eigenenergi": 0, "mechan": [0, 499, 565, 568, 570], "detect": [0, 572, 1858], "model": [0, 4, 245, 251, 260, 268, 357, 365, 408, 410, 511, 513, 517, 522, 527, 528, 533, 535, 555, 560, 563, 564, 567, 570, 1662, 1664, 1849, 1859, 1869, 1873, 1874, 1875, 1877, 1878, 1879, 1888, 1894, 1899, 1902, 1904, 1907], "affect": [0, 506, 1780], "By": [0, 498, 499, 520, 570, 1832, 1873, 1877, 1883, 1887, 1889, 1890, 1891, 1895, 1896, 1908], "check_issue819": 0, "export": [0, 490, 1850, 1851, 1852, 1854, 1857], "pull": [0, 6, 7, 1850], "request": [0, 3, 5, 7, 135, 338, 372, 384, 700, 739, 778, 817, 856, 978, 1850], "820": 0, "block_matrix": 0, "tabl": [0, 230, 231, 521, 1907], "variant_extens": 0, "pragma": [0, 567], "onc": [0, 449, 499, 509, 531, 567, 568, 570, 1844, 1850, 1858, 1876, 1880, 1890, 1895, 1900, 1905], "toler": [0, 300, 301, 302, 553, 575, 681, 682, 720, 721, 759, 760, 798, 799, 837, 838, 959, 960, 1002, 1003, 1211, 1679, 1712], "test_delta_infti": 0, "method": [0, 1, 9, 435, 441, 489, 490, 503, 507, 512, 524, 547, 553, 561, 565, 567, 569, 570, 571, 579, 580, 583, 585, 591, 612, 645, 649, 655, 659, 664, 700, 703, 739, 742, 778, 781, 817, 820, 856, 859, 874, 899, 901, 904, 906, 908, 910, 916, 918, 921, 924, 927, 929, 931, 935, 937, 939, 940, 942, 978, 980, 1014, 1020, 1030, 1037, 1041, 1044, 1054, 1067, 1079, 1092, 1105, 1118, 1134, 1145, 1154, 1166, 1185, 1187, 1190, 1211, 1213, 1221, 1223, 1225, 1227, 1229, 1231, 1233, 1235, 1237, 1239, 1241, 1243, 1245, 1247, 1249, 1251, 1253, 1255, 1257, 1259, 1261, 1263, 1265, 1267, 1269, 1271, 1273, 1275, 1277, 1279, 1281, 1283, 1285, 1287, 1289, 1291, 1293, 1295, 1297, 1299, 1301, 1303, 1305, 1307, 1309, 1311, 1313, 1315, 1317, 1319, 1321, 1323, 1325, 1327, 1329, 1331, 1333, 1335, 1337, 1339, 1341, 1343, 1345, 1347, 1349, 1351, 1353, 1355, 1357, 1359, 1361, 1363, 1365, 1367, 1369, 1371, 1373, 1375, 1377, 1379, 1381, 1383, 1385, 1387, 1389, 1391, 1393, 1395, 1397, 1399, 1401, 1403, 1405, 1407, 1409, 1411, 1413, 1415, 1417, 1419, 1421, 1423, 1425, 1427, 1429, 1431, 1433, 1435, 1437, 1439, 1441, 1443, 1445, 1447, 1449, 1451, 1453, 1455, 1457, 1459, 1461, 1463, 1465, 1467, 1469, 1471, 1473, 1475, 1477, 1479, 1481, 1483, 1485, 1487, 1489, 1491, 1493, 1495, 1497, 1499, 1501, 1503, 1505, 1507, 1509, 1511, 1513, 1515, 1517, 1519, 1521, 1523, 1525, 1527, 1529, 1531, 1533, 1535, 1537, 1539, 1541, 1543, 1545, 1547, 1549, 1551, 1553, 1555, 1557, 1559, 1561, 1563, 1565, 1567, 1569, 1571, 1573, 1575, 1577, 1579, 1581, 1583, 1585, 1587, 1589, 1594, 1598, 1606, 1611, 1622, 1626, 1646, 1671, 1734, 1742, 1754, 1760, 1762, 1763, 1780, 1784, 1791, 1831, 1832, 1834, 1836, 1837, 1838, 1841, 1842, 1843, 1844, 1873, 1877, 1882, 1883, 1886, 1887, 1889, 1895, 1899, 1903, 1904, 1908], "better": [0, 524, 1873, 1875, 1877, 1879, 1890, 1895], "fall": [0, 463, 1742, 1889, 1903, 1908], "back": [0, 492, 499, 568, 570, 573, 1685, 1873, 1877, 1883, 1887, 1890, 1895, 1900, 1905], "solut": [0, 4, 496, 498, 500, 570, 581, 586, 1854, 1855, 1859, 1871, 1873, 1875, 1877, 1879, 1887, 1889, 1890, 1891, 1902, 1906, 1907], "793": 0, "proxi": [0, 572], "link": [0, 511, 521, 570, 1866, 1867, 1870, 1881], "triqs_pi": 0, "nopython": 0, "remain": [0, 508, 514, 568, 1867, 1892, 1897, 1903, 1908], "ri": 0, "derweh": 0, "A": [0, 3, 4, 5, 11, 19, 32, 47, 63, 71, 83, 95, 128, 163, 170, 172, 254, 255, 256, 260, 299, 309, 310, 320, 340, 428, 430, 431, 432, 451, 457, 459, 480, 481, 492, 497, 499, 500, 502, 503, 504, 507, 509, 511, 514, 517, 523, 532, 541, 542, 545, 546, 547, 549, 550, 553, 554, 556, 559, 562, 563, 567, 568, 569, 571, 572, 575, 578, 581, 582, 597, 608, 618, 629, 649, 659, 677, 685, 694, 716, 724, 733, 755, 763, 772, 794, 802, 811, 833, 841, 850, 865, 866, 867, 868, 870, 883, 884, 890, 916, 929, 955, 963, 972, 1046, 1050, 1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1181, 1182, 1204, 1217, 1611, 1614, 1618, 1726, 1768, 1784, 1815, 1829, 1833, 1838, 1839, 1848, 1849, 1850, 1858, 1860, 1865, 1868, 1869, 1870, 1871, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1883, 1884, 1886, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "guid": [0, 5, 7, 8, 240, 1849, 1850], "how": [0, 5, 6, 9, 496, 507, 512, 519, 547, 560, 570, 582, 1850, 1851, 1854, 1858, 1871, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "here": [0, 3, 4, 7, 8, 490, 492, 499, 505, 507, 511, 514, 515, 517, 519, 539, 543, 551, 554, 558, 560, 564, 567, 568, 569, 570, 572, 574, 580, 581, 582, 587, 935, 1850, 1854, 1858, 1859, 1860, 1861, 1862, 1866, 1867, 1869, 1870, 1872, 1873, 1874, 1875, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "malt": 0, "schueler": 0, "hiroshi": 0, "shinaoka": 0, "manuel": 0, "zingl": [0, 3], "made": [0, 197, 451, 507, 513, 543, 551, 568, 570, 587, 1626, 1838, 1873, 1877, 1889], "necessari": [0, 4, 491, 492, 539, 1850, 1855, 1857, 1873, 1876, 1877, 1880], "decid": [0, 527, 568, 570, 1838, 1856, 1858, 1881, 1883, 1887, 1890, 1895], "These": [0, 4, 499, 537, 551, 570, 580, 1858, 1859, 1877, 1883, 1887, 1910], "autom": [0, 1850], "interdepend": 0, "per": [0, 553, 563, 572, 1211, 1667, 1844, 1873, 1874, 1876, 1877, 1878, 1879, 1880], "togeth": [0, 4, 11, 205, 363, 451, 1850, 1854, 1879, 1883, 1884, 1887], "unless": [0, 461, 506, 520, 570, 583], "thei": [0, 325, 401, 402, 499, 507, 516, 520, 527, 543, 550, 551, 570, 571, 572, 580, 585, 1849, 1850, 1852, 1854, 1855, 1881, 1882, 1883, 1884, 1885, 1887, 1892, 1893, 1895, 1897, 1903, 1908], "alter": [0, 543], "dbuild_dep": 0, "try": [0, 230, 231, 435, 513, 551, 570, 585, 1850, 1861, 1874, 1876, 1878, 1880, 1889, 1890, 1895], "never": [0, 498, 507, 1881], "step": [0, 7, 49, 53, 494, 500, 513, 553, 568, 583, 1211, 1806, 1849, 1851, 1854, 1855, 1873, 1877, 1888, 1889, 1894, 1903, 1908], "glad": 0, "earlier": [0, 543, 570, 1854, 1857, 1890, 1895], "inversefouri": 0, "set_from_inverse_fouri": 0, "make_gf_from_inverse_fouri": [0, 240], "xxx": [0, 519, 525, 1876], "n1": [0, 669, 708, 747, 786, 825, 861, 876, 947], "n2": [0, 669, 708, 747, 786, 825, 861, 876, 947], "indicesl": [0, 544, 545, 546, 547, 548], "indicesr": [0, 544, 545, 546, 547, 548], "get_gf_data_shap": 0, "get_target_shap": 0, "syntax": [0, 502, 510, 511, 524, 543, 1853, 1883, 1887], "split": [0, 115, 500, 555, 1883, 1887, 1889], "libpython": 0, "libtriq": 0, "seper": 0, "libtriqs_pi": 0, "boost_seri": 0, "complex_liter": 0, "operatori": 0, "operator_j": 0, "conflict": [0, 508, 1850, 1854], "stacktrac": 0, "mac": [0, 1850, 1851, 1852], "o": [0, 3, 58, 477, 480, 481, 544, 546, 547, 548, 554, 558, 563, 572, 579, 580, 587, 1850, 1851, 1852, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1889, 1891, 1892, 1895, 1896, 1897, 1899, 1904, 1907, 1908], "osx10": 0, "15": [0, 245, 255, 553, 1211, 1856, 1877, 1882, 1883, 1887], "catalina": 0, "simultan": 0, "cpp2pyinfo": 0, "serializ": [0, 490, 517], "cplx": 0, "h5_read": [0, 192, 242, 259, 271, 283, 296, 340, 390, 406, 463, 539, 1863], "h5_write": [0, 192, 242, 259, 271, 283, 340, 390, 406, 463, 523, 532, 539, 1863], "fill_first_eigenstate_of_subspac": 0, "external_depend": 0, "extern": [0, 568, 570, 1859, 1900, 1905], "gtest": 0, "add_external_depend": 0, "dep": 0, "extract": [0, 9, 490, 493, 571, 572, 573, 575, 1689, 1693, 1694, 1697, 1700, 1701, 1702, 1708, 1873, 1874, 1877, 1878, 1879, 1888, 1890, 1894, 1895, 1897], "lib": [0, 525, 579, 586, 1854, 1864, 1866, 1867, 1885, 1886, 1887], "about": [0, 5, 8, 509, 519, 567, 568, 570, 1849, 1859, 1873, 1877, 1881, 1883, 1885, 1887, 1890, 1895, 1900, 1901, 1905, 1906], "comma": 0, "subscript": 0, "specif": [0, 6, 251, 521, 536, 565, 580, 1850, 1873, 1876, 1877, 1880, 1883, 1887, 1888, 1889, 1894], "build_interfac": 0, "permiss": 0, "og": 0, "fconcept": 0, "17": [0, 255, 1877, 1887, 1889, 1896, 1897, 1903, 1908], "suppress": [0, 1873, 1875, 1876, 1877, 1879, 1880], "project_sourc": 0, "binary_dir": 0, "cmake_xxx_dir": 0, "cmake_polici": 0, "find_depend": 0, "refactor": 0, "explicitli": [0, 572, 935, 1858], "cmp0057": 0, "cmp0074": 0, "add_python_test": 0, "mpi_numproc": 0, "python_execut": 0, "python_interpret": 0, "pybind": 0, "h5_use_110_api": 0, "consid": [0, 8, 203, 228, 232, 233, 234, 238, 360, 401, 402, 449, 497, 541, 551, 570, 583, 1850, 1854, 1872, 1883, 1886, 1887, 1890, 1891, 1892, 1895, 1896, 1897], "pkg_root": 0, "pkg_base": 0, "env": [0, 499, 567, 570, 1803], "nfft": 0, "fftw": [0, 1854, 1856], "mathjax_path": 0, "fallback": 0, "gmpxx": 0, "add_mpi_test": 0, "cpp2py_xxx": 0, "bare": [0, 561, 1762, 1901, 1902, 1903, 1906, 1907, 1908], "ones": [0, 500, 570, 573, 580, 1685, 1696, 1852, 1901, 1902, 1903, 1906, 1907, 1908], "preinstal": 0, "findgit": 0, "det": [0, 191, 198, 200, 203, 216, 224, 225, 228, 232, 233, 234, 235, 236, 237, 238, 239, 512, 513, 514, 1860], "porting_to_triqs3": 0, "md": 0, "nrgljubjana_interfac": 0, "impur": [0, 5, 500, 571, 935, 1849, 1850, 1859, 1869, 1871, 1875, 1876, 1879, 1880, 1883, 1885, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897], "hubbardi": [0, 4, 1876, 1880], "green_retim": 0, "mathjax": 0, "7": [0, 245, 260, 459, 484, 485, 500, 506, 508, 510, 547, 564, 585, 586, 1861, 1864, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1890, 1894, 1895, 1896, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "8": [0, 245, 255, 260, 272, 284, 449, 459, 461, 484, 485, 499, 502, 507, 510, 561, 580, 586, 587, 1760, 1763, 1850, 1856, 1867, 1873, 1877, 1879, 1880, 1881, 1882, 1885, 1886, 1887, 1888, 1890, 1892, 1894, 1895, 1896, 1897, 1904, 1905, 1907, 1908], "advic": 0, "anaconda": [0, 1854], "w": [0, 498, 502, 509, 517, 520, 523, 531, 532, 551, 553, 562, 568, 581, 1217, 1219, 1611, 1858, 1860, 1862, 1863, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1881, 1884, 1886, 1899, 1904, 1905], "h5f_acc_trunc": 0, "pip": [0, 7, 1851, 1854, 1855, 1858], "binari": [0, 131, 496, 507, 1855], "actual": [0, 506, 513, 543, 570, 575, 581, 583, 1899, 1904], "introduct": [0, 9, 551, 565, 570, 1859, 1865, 1868, 1873, 1877, 1883, 1887], "tailfit": 0, "rh": [0, 197, 251, 268, 292, 317, 438, 502, 513, 519, 522, 543, 551], "773": 0, "is_gf_hermitian": [0, 240], "block_nam": [0, 242, 245, 523, 553, 1215, 1217], "assert_block": 0, "_gfs_are_clos": 0, "improp": [0, 3], "pattern": [0, 490, 493, 1858], "spot": 0, "defint": 0, "gf_const_view": [0, 240, 252, 255, 260, 268, 284, 292, 311, 518, 519, 521, 523, 525, 534, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 986, 987, 988, 989, 991, 992, 999, 1001], "gl": [0, 544, 545, 546, 554, 671, 690, 691, 692, 710, 729, 730, 731, 749, 768, 769, 770, 788, 807, 808, 809, 827, 846, 847, 848, 949, 968, 969, 970, 997, 1008, 1009, 1010], "lshift": 0, "assign": [0, 9, 12, 88, 113, 137, 251, 268, 490, 503, 508, 516, 519, 521, 524, 532, 542, 549, 572, 1059, 1070, 1083, 1096, 1109, 1122, 1138, 1149, 1157, 1169, 1860, 1886], "gf_indic": 0, "deduct": [0, 11, 240, 499, 523], "statement": [0, 493, 502], "make_hermitian": [0, 240], "make_adjoint_mesh": [0, 519, 548], "1e": [0, 254, 255, 300, 302, 553, 935, 1211, 1772, 1773, 1774, 1775, 1776, 1801, 1873, 1877, 1883, 1886, 1887, 1903, 1907, 1908], "positive_freq_view": [0, 240], "764": 0, "str": [0, 544, 545, 546, 547, 548, 553, 557, 563, 582, 664, 703, 742, 781, 820, 875, 897, 935, 942, 1030, 1079, 1092, 1105, 1118, 1134, 1145, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1215, 1217, 1598, 1663, 1667, 1668, 1737, 1887], "nparrai": 0, "align": [0, 1889], "skeleton": 0, "lldb": 0, "debugg": 0, "build_id": 0, "cach": 0, "pythonpath": [0, 1852], "workaround": [0, 510], "buggi": 0, "mark": [0, 11, 1873, 1877, 1881], "upstream": 0, "vim": [0, 1858], "analysi": [0, 9, 449, 488, 494, 578, 1881, 1890, 1891, 1895, 1896, 1903, 1908], "many_body_operator_gener": [0, 352, 572, 574], "const": [0, 16, 18, 21, 22, 23, 24, 25, 26, 29, 31, 32, 34, 36, 37, 38, 40, 41, 44, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 65, 66, 67, 68, 69, 70, 74, 76, 78, 79, 80, 81, 82, 85, 86, 88, 89, 91, 92, 93, 94, 98, 100, 102, 103, 104, 106, 107, 119, 120, 121, 122, 129, 130, 137, 141, 142, 144, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 193, 194, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 209, 210, 211, 212, 213, 214, 215, 216, 217, 229, 232, 233, 234, 235, 237, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 255, 256, 257, 258, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 278, 279, 280, 281, 282, 284, 285, 286, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 299, 300, 301, 302, 303, 304, 306, 307, 308, 309, 310, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 348, 349, 350, 352, 353, 354, 356, 357, 358, 359, 361, 363, 364, 367, 368, 369, 370, 371, 372, 374, 375, 376, 377, 379, 380, 381, 382, 383, 384, 386, 387, 388, 389, 393, 394, 395, 396, 397, 398, 399, 401, 402, 404, 412, 414, 415, 416, 417, 418, 419, 420, 422, 423, 424, 425, 426, 427, 437, 438, 439, 440, 443, 444, 447, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 466, 467, 468, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 499, 500, 510, 511, 513, 517, 522, 523, 524, 525, 526, 534, 537, 555, 556, 564, 572, 585, 587, 1861, 1862], "debian": [0, 1854], "usabl": 0, "conjunct": [0, 1850], "put": [0, 195, 449, 452, 490, 506, 510, 511, 513, 519, 551, 570, 581, 1864, 1881, 1882, 1884, 1903, 1908], "Be": [0, 8, 510, 1858], "lpath_to_instal": 0, "filter": 0, "agsinst": 0, "supress": 0, "rvalu": [0, 261, 273, 285, 408, 410, 507], "lvalu": [0, 507], "usag": [0, 6, 9, 498, 519, 537, 563, 1854, 1873, 1877], "ox": 0, "newli": 0, "wai": [0, 3, 497, 509, 513, 516, 517, 520, 537, 551, 554, 560, 570, 1852, 1854, 1862, 1881, 1882, 1883, 1884, 1887, 1888, 1890, 1894, 1895, 1899, 1903, 1904, 1908], "place": [0, 373, 374, 375, 385, 386, 387, 570, 587, 680, 719, 758, 797, 836, 958, 1858, 1883, 1887], "ld": 0, "It": [0, 3, 4, 232, 233, 234, 235, 236, 237, 238, 239, 351, 368, 379, 407, 428, 430, 431, 449, 463, 490, 493, 496, 498, 500, 502, 506, 507, 508, 509, 510, 512, 514, 515, 516, 517, 520, 524, 543, 551, 558, 561, 568, 570, 572, 581, 586, 661, 662, 1664, 1742, 1754, 1760, 1778, 1838, 1839, 1844, 1851, 1854, 1856, 1858, 1859, 1866, 1870, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1903, 1908], "older": 0, "On": [0, 1778, 1855, 1903, 1908], "rather": [0, 552, 570, 1886, 1892, 1897, 1900, 1905], "than": [0, 480, 481, 507, 516, 517, 570, 1844, 1849, 1873, 1876, 1877, 1880, 1883, 1886, 1887, 1890, 1895, 1896, 1899, 1900, 1903, 1904, 1905, 1908], "homebrew": [0, 1854], "python2": [0, 586, 1864], "substanti": [0, 1883, 1887, 1895], "adapt": [0, 4, 442, 514, 559, 579, 587, 649, 1849, 1873, 1877], "enumer": [0, 11, 1837, 1873, 1877, 1903, 1907, 1908], "resid": 0, "folder": [0, 7, 1864, 1873, 1877, 1891, 1896, 1905], "commun": [0, 3, 4, 5, 109, 110, 111, 112, 113, 125, 134, 140, 141, 142, 143, 144, 149, 150, 151, 317, 357, 407, 412, 428, 430, 431, 437, 456, 472, 473, 481, 484, 485, 498, 499, 539, 564, 567, 570], "gather": [0, 141, 268, 292, 499, 551, 1889], "basic_typ": 0, "accord": [0, 520, 568, 577, 581, 1723, 1873, 1877, 1892, 1897], "within": [0, 160, 162, 325, 343, 392, 395, 396, 403, 449, 515, 557, 572, 1598, 1849, 1850, 1852, 1873, 1877, 1885, 1889, 1890, 1895], "prior": 0, "array_view": [0, 255, 672, 674, 711, 713, 750, 752, 789, 791, 828, 830, 950, 952, 996, 998, 1000, 1591, 1860], "aliv": [0, 1837, 1838], "itself": [0, 359, 432, 494, 496, 510, 521, 523, 525, 567, 579, 580, 581, 1850, 1854, 1870, 1873, 1877, 1900, 1903, 1905, 1908], "destroi": [0, 543, 1884, 1892, 1897], "achiev": [0, 581, 1858, 1883, 1887, 1889, 1892, 1897], "lead": [0, 498, 499, 508, 580, 581, 1877, 1892, 1897, 1903, 1908], "penalti": [0, 197, 508], "keep": [0, 8, 251, 257, 463, 507, 551, 581, 1742, 1856, 1888, 1894], "thu": [0, 520, 568, 1850, 1892, 1897], "let": [0, 497, 498, 515, 543, 551, 560, 568, 570, 579, 581, 1864, 1867, 1872, 1873, 1877, 1881, 1883, 1884, 1886, 1887, 1889, 1890, 1895, 1900, 1902, 1903, 1905, 1907, 1908], "illustr": [0, 494, 509, 510, 543, 563, 569, 580, 1854, 1882, 1891, 1896], "f": [0, 26, 83, 84, 85, 88, 89, 90, 131, 197, 199, 235, 236, 237, 332, 333, 343, 346, 391, 396, 399, 429, 480, 481, 498, 502, 503, 505, 506, 508, 510, 511, 512, 513, 514, 517, 531, 543, 550, 573, 579, 580, 583, 585, 587, 659, 660, 906, 1025, 1632, 1683, 1685, 1690, 1692, 1768, 1769, 1778, 1860, 1861, 1873, 1877, 1880, 1882, 1899, 1900, 1904, 1905], "immedi": [0, 543], "end": [0, 11, 20, 23, 35, 38, 42, 43, 49, 63, 64, 67, 77, 80, 90, 93, 101, 104, 114, 235, 325, 328, 407, 428, 430, 431, 449, 465, 490, 493, 513, 514, 517, 520, 563, 568, 572, 573, 1686, 1687, 1695, 1854, 1861, 1883, 1884, 1886, 1887, 1889, 1890, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "temporari": [0, 223, 507], "av": [0, 482, 483, 484, 485], "arr": [0, 32, 1699], "unnecessari": 0, "shown": [0, 568, 1873, 1875, 1877, 1879, 1899, 1902, 1904, 1907], "practic": [0, 517, 531, 570, 581, 1852, 1865, 1873, 1877, 1883, 1886, 1887, 1888, 1894], "rare": [0, 490], "howev": [0, 7, 498, 500, 508, 513, 517, 519, 524, 537, 543, 572, 1850, 1851, 1858, 1873, 1877, 1888, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "follow": [0, 3, 4, 7, 8, 300, 302, 314, 315, 491, 497, 498, 499, 507, 511, 514, 519, 520, 521, 523, 527, 528, 529, 533, 535, 540, 541, 543, 544, 545, 546, 547, 548, 551, 553, 560, 563, 568, 570, 572, 573, 574, 580, 581, 585, 587, 1210, 1626, 1685, 1850, 1854, 1856, 1857, 1858, 1862, 1863, 1864, 1866, 1867, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1883, 1884, 1885, 1886, 1887, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1910], "need": [0, 7, 8, 224, 262, 274, 286, 410, 434, 438, 449, 496, 499, 512, 514, 517, 520, 522, 525, 553, 564, 568, 570, 571, 572, 573, 580, 581, 1217, 1693, 1850, 1855, 1857, 1862, 1866, 1873, 1874, 1877, 1878, 1881, 1883, 1885, 1887, 1888, 1889, 1894, 1903, 1908, 1910], "dasan": 0, "dubsan": 0, "offici": [0, 3, 4, 1855], "easili": [0, 4, 517, 570, 580, 581, 585, 1850, 1859, 1860, 1861, 1862, 1866, 1873, 1877, 1882, 1883, 1887, 1892, 1897, 1910], "borrow": 0, "array_expr": 0, "regular": [0, 451, 487, 497, 508, 521, 543, 561, 580, 587, 1754, 1760, 1858, 1883, 1887, 1903, 1908], "calloc": 0, "delet": [0, 137, 510], "rebind": [0, 271, 283], "cf": [0, 228, 245, 260, 407, 413, 428, 430, 431, 490, 496, 508, 514, 516, 517, 519, 521, 524, 537, 579, 585, 586, 587, 1849, 1870], "ld_preload": [0, 1866], "project_source_dir": 0, "project_binary_dir": 0, "cmake_xxx": 0, "add_cpp2py_modul": 0, "boostconfig": 0, "find_packag": [0, 1858, 1867], "gsl": 0, "prepend": [0, 1852], "py_": 0, "extra": [0, 354, 500, 1866, 1873, 1876, 1877, 1880, 1881, 1901, 1906], "info": [0, 1867], "blas_lapack": 0, "findtest": 0, "parse_commit": 0, "pars": [0, 1667, 1668], "is_gf_v": 0, "is_block_gf_v": 0, "is_instantiation_of_v": 0, "tmpl": 0, "signbit": 0, "real_or_complex": [0, 572, 1699, 1700, 1701, 1702], "729": 0, "forceinlin": 0, "termin": [0, 1017, 1018, 1022, 1837, 1838, 1854, 1873, 1877, 1890, 1895], "expect": [0, 449, 500, 502, 555, 568, 570, 1862, 1877, 1881, 1883, 1887, 1900, 1905], "ensur": [0, 363, 461, 551, 993, 994, 1850, 1873, 1877, 1889], "licens": [0, 5, 1849], "cpp2y": 0, "apach": 0, "c14": 0, "c17": 0, "fundament": [0, 4, 9, 155, 156, 157, 158, 159, 165, 300, 314, 332, 333, 337, 340, 341, 342, 500, 555, 574, 593, 594, 595, 596, 600, 614, 615, 616, 617, 621, 1889], "respect": [0, 7, 171, 532, 537, 552, 556, 563, 572, 860, 1841, 1850, 1891, 1896, 1899, 1900, 1904, 1905], "342": 0, "overhaul": 0, "fit_legendr": [0, 553], "cheat": 0, "sheet": 0, "issue_templ": 0, "make_zero_tail": [0, 240, 541, 553], "fit_tail": [0, 240, 541, 552], "greenfunct": [0, 268], "brief": [0, 406, 1852, 1856, 1881], "contain": [0, 4, 7, 9, 24, 34, 40, 42, 43, 44, 48, 78, 81, 93, 97, 98, 106, 141, 144, 159, 178, 197, 254, 255, 257, 259, 283, 352, 367, 455, 456, 482, 483, 484, 485, 490, 493, 498, 499, 503, 507, 509, 512, 514, 516, 517, 518, 519, 521, 522, 524, 536, 537, 541, 543, 553, 555, 556, 557, 561, 562, 572, 577, 581, 587, 589, 591, 611, 612, 632, 942, 1065, 1077, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1216, 1217, 1605, 1610, 1614, 1618, 1666, 1723, 1754, 1760, 1850, 1852, 1859, 1862, 1864, 1866, 1873, 1877, 1883, 1885, 1887, 1888, 1889, 1892, 1894, 1897, 1898, 1901, 1903, 1906, 1908], "dichotomi": 0, "load": [0, 496, 498, 1850, 1855, 1863, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1891, 1895, 1896, 1902, 1907], "weblink": 0, "css": 0, "2rst": 0, "docs_cpp2rst": [0, 7], "formula": [0, 520, 1900, 1901, 1905, 1906], "less": [0, 499, 570, 1866, 1873, 1877], "rigid": 0, "is_within_boundari": [0, 539], "index_to_linear": [0, 517, 539], "index_to_point": [0, 517, 539], "725": 0, "slice_t": 0, "value_t": [0, 1064, 1076, 1089, 1102, 1115, 1132, 1143, 1162, 1176], "partial": [0, 449, 503, 508, 509, 510, 532, 551, 1596, 1873, 1877, 1884, 1890, 1892, 1895, 1897, 1900, 1905], "stride": [0, 11, 73, 75, 1206], "chunk_rang": [0, 11], "omp_chunk": 0, "omp": 0, "mpi_chunk": 0, "exclud": [0, 12, 48, 52, 53, 56, 63, 182, 183, 184, 185, 186, 635, 636, 637, 638], "larg": [0, 4, 496, 500, 515, 520, 558, 1849, 1854, 1870, 1873, 1877, 1879, 1883, 1887, 1889, 1895, 1899, 1900, 1903, 1904, 1905, 1908], "pack": [0, 354], "mkl": [0, 1852], "warmup": [0, 406, 416, 423, 424, 428, 431, 568, 570, 1869, 1889, 1891, 1892, 1895, 1896, 1897], "chunk": [0, 11, 12, 442], "encapsul": [0, 499], "slice_rang": 0, "length": [0, 114, 465, 490, 499, 567, 568, 570, 587, 860, 1869, 1873, 1877, 1889, 1892, 1897, 1903, 1908], "n": [0, 3, 4, 11, 19, 32, 48, 114, 225, 235, 236, 245, 252, 253, 254, 255, 256, 257, 258, 303, 304, 306, 307, 308, 312, 313, 316, 322, 323, 455, 456, 471, 480, 481, 483, 493, 500, 502, 512, 514, 515, 517, 520, 523, 527, 539, 540, 541, 544, 545, 546, 547, 548, 552, 553, 555, 558, 563, 567, 568, 572, 573, 576, 582, 583, 585, 587, 687, 688, 726, 727, 765, 766, 804, 805, 843, 844, 965, 966, 1005, 1006, 1030, 1031, 1054, 1079, 1092, 1105, 1211, 1693, 1717, 1747, 1832, 1850, 1858, 1862, 1869, 1872, 1873, 1876, 1883, 1885, 1886, 1887, 1889, 1890, 1891, 1895, 1896, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "mpi_reduce_in_plac": 0, "mpi_reduc": [0, 149, 240, 463, 499], "slice_length": 0, "chunk_length": 0, "orbit": [0, 500, 557, 559, 563, 573, 575, 576, 577, 646, 653, 1598, 1601, 1603, 1604, 1627, 1638, 1640, 1641, 1647, 1654, 1656, 1657, 1684, 1688, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1849, 1859, 1871, 1873, 1877, 1879, 1883, 1887, 1889, 1900, 1901, 1905, 1906], "724": 0, "brillouinzon": [0, 1054, 1646, 1886], "is_almost_zero": 0, "precis": [0, 494, 496, 514, 520, 559, 570, 572, 649, 1664, 1772, 1773, 1774, 1775, 1776, 1800, 1801, 1856, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1886, 1887], "many_body_oper": [0, 325, 351, 352, 555, 572, 633, 640, 641, 642, 1698, 1700, 1701, 1702, 1703, 1704, 1705], "745": 0, "reduction_t": 0, "data_t": [0, 245, 246, 254, 255, 260, 261, 272, 273, 284, 285, 329, 330, 521, 525, 526, 527, 528, 533, 535], "mat": 0, "map_block": 0, "lambda": [0, 83, 85, 502, 510, 572, 577, 579, 580, 587, 1027, 1079, 1092, 1105, 1201, 1722, 1819, 1883, 1887, 1899, 1904, 1905, 1906], "capture_stdout": 0, "im": [0, 543, 553, 1217, 1219, 1848, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1890, 1895, 1899, 1900, 1904, 1905, 1907], "re": [0, 8, 217, 497, 513, 553, 561, 570, 587, 1217, 1219, 1762, 1867, 1873, 1876, 1877, 1879, 1880, 1896, 1899, 1900, 1904, 1905], "bcast": [0, 498], "recv": 0, "neglig": 0, "framework": [0, 4, 565, 581, 1850, 1892, 1897], "binder": [0, 1849, 1859], "easyconfig": 0, "varieti": [0, 541, 1850, 1896], "stabil": [0, 1854], "treatment": 0, "high": [0, 3, 254, 255, 316, 518, 519, 520, 527, 528, 533, 535, 542, 543, 549, 550, 551, 553, 563, 935, 1216, 1849, 1873, 1877, 1883, 1887, 1895, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "upgrad": [0, 1854, 1855], "deb": [0, 1850], "target_spac": [0, 669, 708, 747, 786, 825, 947], "density_zero_t": 0, "608": 0, "substack": 0, "vstack": 0, "safeti": [0, 1858, 1874, 1878], "counter": [0, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1894], "475": 0, "enfor": 0, "sub": [0, 1873, 1877], "findnfft": 0, "alp": 0, "findlapack": 0, "modulefil": [0, 1850], "git_execut": 0, "fortran": [0, 1881], "gesvd": 0, "gelss": 0, "least": [0, 139, 159, 253, 254, 255, 457, 459, 520, 527, 531, 541, 552, 556, 579, 587, 589, 591, 612, 659, 986, 1879, 1885, 1890, 1895], "normal": [0, 351, 356, 363, 365, 378, 410, 434, 462, 486, 510, 525, 537, 543, 559, 572, 645, 935, 1702, 1838, 1873, 1877, 1892, 1897], "assymetri": 0, "replace_by_tail": 0, "enforc": [0, 541, 1079, 1092, 1105, 1727, 1728, 1803, 1890, 1895], "j": [0, 193, 206, 210, 214, 215, 219, 230, 231, 232, 233, 235, 236, 238, 239, 254, 300, 314, 329, 480, 481, 512, 513, 514, 541, 551, 553, 567, 573, 575, 1210, 1211, 1215, 1684, 1685, 1695, 1696, 1700, 1701, 1702, 1709, 1710, 1711, 1850, 1861, 1877, 1880, 1887, 1891, 1902, 1903, 1907, 1908], "tail_issu": 0, "moment": [0, 252, 254, 255, 316, 518, 520, 527, 528, 535, 542, 549, 570, 673, 712, 751, 790, 829, 935, 951, 999, 1903, 1908], "maximum": [0, 4, 197, 449, 450, 451, 453, 457, 458, 460, 541, 553, 1211, 1768, 1778, 1861, 1900, 1903, 1905, 1908], "largest": [0, 451, 541, 1145, 1154, 1166, 1900, 1903, 1905, 1908], "known_moment": [0, 254, 255, 519, 541, 552, 672, 673, 674, 675, 711, 712, 713, 714, 750, 751, 752, 753, 789, 790, 791, 792, 828, 829, 830, 831, 950, 951, 952, 953, 996, 998, 999, 1000, 1001], "try_change_col_row": [0, 192], "incorpor": 0, "empti": [0, 245, 260, 272, 329, 353, 392, 498, 507, 521, 523, 525, 557, 570, 1598, 1885, 1886, 1889, 1892, 1897], "n_min": [0, 159, 541, 589, 591, 612, 673, 675, 687, 688, 712, 714, 726, 727, 751, 753, 765, 766, 790, 792, 804, 805, 829, 831, 843, 844, 951, 953, 965, 966, 999, 1001, 1005, 1006, 1885], "n_max": [0, 159, 541, 589, 591, 612, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1885, 1899, 1904], "f_shell": 0, "regist": [0, 408, 409, 410, 411, 497, 498, 564], "663": 0, "collect_result": [0, 406, 564, 567, 570], "wait": [0, 1780, 1838, 1873, 1877, 1889, 1896], "timer": 0, "650": 0, "inclus": 0, "master": [0, 498, 499, 570, 1780, 1813, 1876, 1880], "fit_": 0, "hermitian_": 0, "cleanin": 0, "time_pt": 0, "style": [0, 499, 1882], "constraint": [0, 4, 935], "roud": 0, "margin": 0, "668": 0, "hdfarchiveinert": [0, 496], "671": 0, "557": 0, "mesh_brillouin_zon": 0, "product_rang": [0, 11], "cpp": [0, 268, 519, 525, 585, 1864, 1867], "kei": [0, 122, 496, 497, 498, 563, 1627, 1647, 1667, 1800, 1850, 1873, 1877], "center": [0, 463, 471, 563, 930, 1747, 1874, 1878, 1892, 1897, 1899, 1904], "semicircular": [0, 543, 544, 545, 546, 547, 548, 550, 554, 1869, 1883, 1884, 1887, 1888, 1891, 1894, 1895, 1896], "649": 0, "638": 0, "624": 0, "581": 0, "594": 0, "known": [0, 254, 255, 449, 541, 1887, 1902, 1907], "calulcul": 0, "gf_multivar": 0, "mesh1": 0, "mesh2": 0, "gt": [0, 519, 532, 545, 548, 554, 691, 730, 769, 808, 847, 969, 1009, 1882, 1886, 1887, 1905], "106": 0, "flat": [0, 445, 446, 543, 550, 931, 1889], "assum": [0, 496, 553, 1210, 1699, 1850, 1867, 1903, 1908], "vanish": [0, 358, 363, 365, 378, 381, 383, 1883, 1887, 1903, 1908], "0th": 0, "msg": 0, "h5write": 0, "array_stack": 0, "swap_index_view": 0, "wip": 0, "grab": 0, "annot": 0, "ipython": [0, 1854, 1859, 1868, 1882, 1893, 1898], "notebook": [0, 491, 1849, 1850, 1857, 1859, 1868, 1871, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1882, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1892, 1893, 1894, 1895, 1897, 1900, 1901, 1902, 1905, 1906, 1907, 1909], "oparcollet": 0, "tail_studi": 0, "dont": 0, "set_from_fouri": [0, 544, 545, 547, 548], "verbos": [0, 413, 527, 528, 567, 569, 570, 1204, 1207, 1768, 1778, 1903, 1908], "tail_fitt": 0, "tail_fit_on_window": 0, "exposet": 0, "n_tail_max": [0, 541, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1128], "fit_and_replac": 0, "compatibl": 0, "restricted_view": 0, "mpi_gath": [0, 125, 499, 539], "scatter": [0, 128, 144, 268, 292, 499, 539, 1873, 1877, 1880], "flatten2d": 0, "nonborrow": 0, "around": [0, 4, 1092, 1105, 1849, 1873, 1874, 1877, 1878, 1879, 1886, 1903, 1908], "deriv": [0, 28, 29, 30, 31, 448, 583, 585, 1780, 1890, 1895, 1900, 1905], "updaat": 0, "multivari": [0, 524, 531, 1859, 1868], "get_tail": 0, "rule": [0, 1902, 1903, 1907, 1908, 1910], "map": [0, 131, 159, 351, 352, 356, 365, 378, 414, 439, 498, 562, 574, 575, 576, 577, 589, 591, 612, 1611, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1873, 1877, 1885, 1886, 1899, 1900, 1904, 1905], "initializi": 0, "set_tail_paramet": 0, "reenabl": 0, "indec": 0, "procedur": [0, 159, 254, 255, 497, 520, 527, 541, 552, 568, 1850], "push": [0, 8], "vandermond": 0, "reus": [0, 500, 581, 1900, 1903, 1905, 1908], "make_product": [0, 11], "gelss_cach": 0, "ll": [0, 520, 1882], "draft": 0, "complex_freq": 0, "boson": [0, 515, 517, 527, 528, 530, 539, 540, 1030, 1079, 1092, 1105, 1118, 1134, 1145, 1883, 1887, 1900, 1905], "bz": [0, 561, 1054, 1594, 1646, 1666, 1760, 1762, 1763, 1873, 1877, 1886, 1892, 1897, 1899, 1904, 1905, 1906], "om": [0, 580], "experiment": [0, 409, 1079, 1092, 1105, 1875, 1879], "sign": [0, 224, 430, 431, 433, 435, 502, 511, 543, 564, 567, 570, 1852, 1889, 1896, 1899, 1904], "statistic_enum": [0, 530], "linear_dim": 0, "creation": [0, 157, 158, 159, 342, 363, 572, 573, 589, 591, 612, 1677, 1685, 1696, 1858, 1882, 1885, 1892, 1897], "n_moment": [0, 316, 553, 1216], "everi": [0, 7, 11, 325, 449, 506, 507, 536, 555, 568, 570, 1873, 1877, 1888, 1894, 1903, 1908], "element": [0, 11, 13, 26, 34, 48, 53, 60, 61, 63, 70, 71, 81, 126, 147, 182, 183, 325, 326, 328, 331, 339, 342, 358, 361, 363, 365, 394, 451, 455, 456, 480, 481, 482, 483, 484, 485, 487, 496, 499, 500, 511, 513, 515, 517, 525, 544, 545, 546, 547, 548, 551, 556, 564, 572, 573, 575, 576, 577, 587, 1023, 1666, 1686, 1699, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1881, 1883, 1885, 1886, 1887, 1901, 1906], "typo": 0, "gf_densiti": 0, "infti": [0, 515, 517, 520, 553, 559, 560, 645, 655, 1211, 1879, 1883, 1887, 1900, 1901, 1903, 1905, 1906, 1908], "cancel": 0, "checkfor": 0, "gf_fourier": 0, "block2": 0, "best": [0, 509, 516, 1852, 1858, 1873, 1874, 1877, 1878, 1908], "look": [0, 334, 338, 499, 560, 570, 579, 1023, 1848, 1849, 1854, 1859, 1873, 1876, 1877, 1880, 1881, 1882, 1883, 1887, 1889, 1890, 1892, 1895, 1896, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "ctint": 0, "techniqu": [0, 499, 543, 551], "simpli": [0, 230, 231, 235, 492, 502, 517, 543, 551, 570, 575, 579, 580, 581, 582, 1848, 1850, 1862, 1883, 1886, 1887, 1889, 1910], "triqs_cxx_definit": 0, "triqs_include_al": 0, "co": [0, 502, 507, 509, 510, 520, 580, 1881, 1882, 1886, 1892, 1897, 1899, 1900, 1904, 1905], "triqstest": 0, "build_pytriq": 0, "explain": [0, 8, 531, 532, 1874, 1878, 1889, 1902, 1903, 1907, 1908], "maintain": [0, 3, 4, 325, 496, 1856], "doxygen": [0, 511], "simpler": [0, 499, 516], "2doc": 0, "line": [0, 4, 7, 124, 204, 214, 230, 231, 499, 512, 513, 543, 563, 570, 585, 1204, 1740, 1850, 1854, 1855, 1860, 1864, 1873, 1876, 1877, 1879, 1880, 1881, 1882, 1889, 1895, 1899, 1904], "boost_vers": 0, "link_librari": 0, "boost_librari": 0, "14": [0, 19, 95, 510, 1854, 1877, 1879, 1887, 1889, 1897], "_desc": 0, "full_nam": [0, 493, 1864], "module_nam": 0, "app_nam": [0, 493, 1864], "application_a": [0, 1864], "use_modul": [0, 1864], "add_includ": [0, 493, 1864], "rel": [0, 499, 1864, 1873, 1877, 1895], "solver_cor": 0, "include_directori": 0, "python_destin": 0, "triqs_python_extens": 0, "triqs_python_extension_and_instal": 0, "second": [0, 9, 256, 369, 380, 415, 416, 419, 422, 423, 424, 476, 488, 494, 511, 520, 527, 528, 555, 558, 560, 569, 570, 860, 868, 935, 1778, 1838, 1872, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1882, 1883, 1885, 1887, 1888, 1889, 1894, 1896, 1900, 1902, 1905, 1907], "destin": [0, 543, 551], "triqs_python_lib_dest": 0, "python_lib_dest_root": 0, "everywher": 0, "using_the_lib": 0, "application_structur": 0, "polymorph": [0, 508, 572], "handl": [0, 498, 513, 518, 540, 1901, 1906], "full": [0, 4, 9, 153, 160, 166, 167, 177, 348, 349, 360, 390, 392, 395, 403, 449, 457, 459, 500, 543, 551, 555, 565, 568, 570, 573, 598, 601, 610, 619, 622, 631, 935, 1684, 1685, 1689, 1694, 1849, 1850, 1857, 1859, 1860, 1861, 1862, 1864, 1873, 1877, 1879, 1883, 1887, 1889], "break": [0, 1901, 1906, 1910], "As": [0, 3, 7, 496, 507, 509, 514, 517, 520, 551, 568, 570, 580, 1838, 1854, 1855, 1867, 1873, 1875, 1877, 1879, 1881, 1883, 1886, 1887, 1890, 1895, 1899, 1900, 1901, 1904, 1905, 1906], "consequ": [0, 507, 1902, 1903, 1907, 1908], "twice": [0, 506], "big": [0, 1873, 1877, 1888, 1890, 1894, 1895, 1900, 1905], "smallest": [0, 450, 1154, 1166], "th": [0, 114, 162, 204, 206, 256, 257, 342, 368, 379, 394, 480, 481, 513, 527, 528, 533, 535, 563, 602, 623, 1882], "retriev": [0, 498, 581], "independ": [0, 4, 449, 551, 570, 583, 862, 879, 1883, 1887, 1902, 1907], "storag": [0, 205, 207, 215, 365, 367, 463, 466, 496, 503, 513, 539, 555, 572, 669, 708, 747, 786, 825, 947, 1745, 1856, 1873, 1877], "written": [0, 4, 153, 177, 345, 398, 468, 492, 494, 496, 504, 511, 512, 516, 523, 524, 529, 553, 567, 575, 581, 1219, 1595, 1660, 1670, 1709, 1710, 1711, 1856, 1867, 1870, 1873, 1877, 1881, 1890, 1895, 1903, 1908], "gain": 0, "space": [0, 9, 153, 159, 160, 166, 167, 177, 269, 281, 294, 340, 341, 342, 343, 344, 345, 346, 348, 349, 350, 351, 356, 357, 358, 360, 365, 368, 370, 371, 376, 377, 378, 379, 381, 382, 388, 389, 390, 391, 392, 395, 397, 398, 403, 404, 488, 500, 517, 520, 521, 527, 528, 544, 545, 546, 547, 548, 556, 572, 589, 591, 598, 601, 610, 612, 619, 622, 631, 664, 676, 694, 695, 696, 703, 715, 733, 734, 735, 742, 754, 772, 773, 774, 781, 793, 811, 812, 813, 820, 832, 850, 851, 852, 875, 942, 954, 972, 973, 974, 1627, 1647, 1663, 1664, 1667, 1668, 1873, 1877, 1883, 1885, 1886, 1887, 1889, 1892, 1896, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "otherwis": [0, 115, 120, 121, 122, 127, 135, 139, 224, 346, 348, 349, 399, 401, 402, 408, 410, 490, 493, 497, 498, 507, 508, 541, 543, 552, 553, 570, 572, 575, 576, 577, 580, 1023, 1211, 1700, 1701, 1702, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1806, 1833, 1850, 1903, 1908], "save": [0, 5, 9, 490, 493, 496, 500, 523, 532, 570, 1858, 1869, 1884, 1890, 1891, 1895, 1896, 1899, 1900, 1904, 1905], "reorgan": 0, "test_tool": 0, "There": [0, 351, 498, 507, 520, 525, 543, 555, 564, 572, 875, 1866, 1887, 1890, 1895, 1902, 1903, 1907, 1908], "just": [0, 230, 231, 490, 507, 509, 510, 517, 522, 537, 543, 561, 564, 567, 568, 569, 570, 581, 1038, 1756, 1758, 1765, 1784, 1837, 1850, 1855, 1867, 1873, 1875, 1877, 1879, 1881, 1883, 1884, 1887, 1888, 1890, 1891, 1894, 1895, 1896, 1900, 1902, 1905, 1907], "add_cpp_test": 0, "testnam": 0, "triqs_add_cpp_test": 0, "triqs_add_python_test": 0, "program": [0, 3, 4, 496, 1833, 1852, 1869, 1873, 1877], "h5diff": [0, 496], "had": [0, 1854, 1885, 1890, 1895], "comparison_test": 0, "easi": [0, 515, 564, 574, 578, 1850, 1854, 1858, 1860, 1867, 1870, 1873, 1877, 1884], "parti": [0, 1854], "under": [0, 3, 357, 515, 543, 555, 581, 1849, 1850, 1865, 1867], "cmake_install_prefix": [0, 1850], "inherit": [0, 570, 1833], "visual": [0, 1870, 1873, 1874, 1875, 1877, 1878, 1879, 1899, 1901, 1904, 1906], "sphinxcontrib": 0, "doxylink": 0, "anymor": 0, "g0_iw": [0, 553, 935, 1210, 1212, 1869, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897], "solv": [0, 4, 153, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 553, 571, 581, 935, 1212, 1768, 1778, 1848, 1849, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1901, 1902, 1903, 1906, 1907, 1908], "equat": [0, 4, 543, 551, 553, 935, 1212, 1873, 1876, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1892, 1894, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "g_iw": [0, 500, 537, 541, 543, 553, 935, 1212, 1869, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897], "sigma_iw": [0, 553, 1212, 1848, 1869, 1887, 1888, 1889, 1891, 1892, 1894, 1895, 1896, 1897], "tail_fit": 0, "read_gf_from_txt": [0, 553], "write_gf_to_txt": [0, 553], "text": [0, 5, 496, 515, 553, 558, 560, 580, 655, 1217, 1866, 1870, 1873, 1877, 1886, 1887, 1890, 1895, 1899, 1904], "organ": [0, 581, 1849, 1859, 1873, 1877], "commonli": [0, 4, 571, 576, 1713, 1851, 1892, 1897], "slater": [0, 573, 575, 1683, 1685, 1690, 1711], "kanamori": [0, 500, 573, 575, 1684, 1710, 1877, 1880, 1891, 1896], "interact": [0, 3, 4, 497, 518, 542, 553, 573, 574, 575, 576, 935, 1210, 1212, 1683, 1684, 1685, 1689, 1690, 1691, 1694, 1696, 1700, 1701, 1710, 1711, 1714, 1715, 1716, 1849, 1850, 1859, 1870, 1873, 1874, 1875, 1877, 1878, 1879, 1883, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1901, 1902, 1903, 1906, 1907, 1908, 1909], "s_z": [0, 576, 1715, 1718, 1903, 1908], "l_z": [0, 576, 1714, 1715], "op_struct": [0, 577], "auxiliari": [0, 500], "spin": [0, 3, 500, 555, 567, 570, 573, 575, 576, 577, 1663, 1684, 1691, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1849, 1873, 1876, 1877, 1879, 1880, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1904, 1905, 1906, 1907], "exit": [0, 1833, 1835], "receiv": [0, 6, 125, 141, 142, 143, 149, 150, 407, 428, 430, 431, 572], "stop_callback": [0, 407, 428, 430, 431], "insert2": [0, 192, 513], "remove2": [0, 192, 513], "change_row": [0, 192], "change_col": [0, 192, 513], "try_": 0, "complete_oper": [0, 192, 218, 223, 232, 233, 234, 235, 236, 237, 238, 239, 513, 1861], "insert2_at_end": [0, 192, 1861], "remove_at_end": [0, 192, 1861], "remove2_at_end": [0, 192, 1861], "change_one_row_and_one_col": [0, 1861], "unsign": [0, 474, 475, 499], "tupl": [0, 9, 16, 42, 43, 44, 48, 97, 98, 99, 106, 126, 480, 481, 488, 490, 493, 497, 498, 517, 551, 559, 573, 574, 577, 579, 589, 591, 612, 653, 659, 660, 694, 700, 733, 739, 772, 778, 811, 817, 850, 856, 972, 978, 1050, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1627, 1634, 1635, 1647, 1650, 1651, 1668, 1687, 1688, 1693, 1695, 1722, 1768, 1832, 1885, 1886], "hdf_archiv": 0, "00000000": 0, "00000001": 0, "0000002": 0, "0000003": 0, "subgroup": [0, 115, 344, 345, 397, 398, 496, 497, 498, 581, 1877, 1880, 1884], "doubl": [0, 162, 163, 168, 181, 182, 183, 184, 185, 186, 187, 200, 201, 202, 203, 226, 227, 228, 236, 239, 253, 254, 255, 300, 301, 302, 316, 351, 356, 365, 378, 410, 414, 415, 419, 422, 423, 434, 435, 439, 445, 446, 450, 454, 457, 459, 461, 465, 466, 470, 471, 482, 483, 484, 485, 496, 499, 500, 502, 507, 508, 509, 510, 511, 513, 516, 517, 519, 521, 523, 527, 528, 529, 531, 532, 533, 535, 541, 545, 546, 555, 562, 564, 567, 569, 570, 572, 587, 638, 671, 672, 673, 674, 675, 710, 711, 712, 713, 714, 749, 750, 751, 752, 753, 788, 789, 790, 791, 792, 827, 828, 829, 830, 831, 949, 950, 951, 952, 953, 997, 998, 999, 1000, 1001, 1030, 1057, 1591, 1613, 1619, 1620, 1622, 1631, 1648, 1778, 1858, 1860, 1861, 1862, 1863, 1867, 1873, 1876, 1877, 1879, 1880, 1886, 1900, 1902, 1903, 1905, 1907, 1908], "rich": [0, 1870], "attribut": [0, 1, 2, 332, 333, 496, 497, 498, 591, 612, 664, 703, 742, 781, 820, 859, 874, 942, 1030, 1037, 1044, 1054, 1067, 1079, 1092, 1105, 1118, 1134, 1145, 1154, 1166, 1598, 1606, 1611, 1622, 1626, 1646, 1671, 1742, 1754, 1760, 1780, 1784, 1791, 1831, 1834, 1836, 1843, 1873, 1877, 1888, 1894], "ignore_in_python": 0, "prevent": 0, "special": [0, 125, 149, 151, 365, 378, 515, 518, 521, 524, 525, 537, 542, 570, 572, 585, 1784, 1861, 1873, 1877, 1899, 1904], "overrid": [0, 1832, 1841], "adopt": 0, "physic": [0, 357, 1859, 1873, 1877, 1883, 1886, 1887, 1892, 1897], "paper": [0, 3, 4, 1849, 1873, 1877, 1908], "random": [0, 4, 9, 413, 421, 435, 442, 443, 444, 463, 488, 556, 564, 565, 567, 570, 1737, 1742, 1859, 1860, 1882, 1899, 1904, 1909], "glue": 0, "cython": 0, "gone": [0, 1903, 1908], "like": [0, 4, 7, 195, 197, 223, 224, 480, 481, 496, 500, 502, 507, 508, 511, 513, 517, 519, 532, 537, 543, 551, 564, 565, 570, 572, 573, 580, 581, 585, 586, 587, 1693, 1850, 1852, 1854, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1883, 1884, 1886, 1887, 1888, 1889, 1890, 1894, 1895, 1901, 1902, 1903, 1906, 1907, 1908], "conjug": [0, 363, 483, 484, 545, 547, 548, 553, 572], "alon": [0, 1849], "must": [0, 3, 159, 260, 268, 352, 355, 357, 360, 370, 381, 408, 410, 427, 473, 482, 483, 484, 485, 490, 493, 498, 502, 507, 510, 523, 543, 544, 545, 546, 547, 548, 551, 553, 556, 570, 571, 572, 573, 576, 580, 586, 587, 589, 591, 612, 664, 703, 742, 781, 820, 860, 863, 880, 919, 922, 925, 942, 1201, 1217, 1642, 1685, 1696, 1714, 1715, 1716, 1778, 1832, 1833, 1838, 1844, 1860, 1881, 1885, 1887, 1895, 1903, 1908], "25": [0, 510, 563, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1887, 1888, 1892, 1894, 1896, 1897, 1903, 1907, 1908], "unifi": 0, "pep": 0, "www": [0, 520], "org": [0, 4, 520, 935, 1850, 1873, 1874, 1875, 1877, 1878, 1879, 1881], "0008": 0, "lowercas": 0, "underscor": 0, "capword": 0, "update_arch": 0, "veri": [0, 4, 7, 230, 231, 511, 543, 568, 570, 578, 579, 581, 586, 1854, 1858, 1859, 1868, 1870, 1873, 1877, 1882, 1883, 1887, 1890, 1895], "old_arch": 0, "new_arch": 0, "encount": [0, 1848, 1850, 1857, 1905], "post": [0, 1848, 1849, 1881], "fullnam": [1, 2], "underlin": [1, 2], "rubric": [1, 2], "endif": [1, 2], "endblock": [1, 2], "function": [2, 7, 9, 10, 29, 30, 31, 131, 153, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 197, 199, 205, 217, 245, 251, 253, 254, 255, 257, 260, 268, 296, 300, 301, 302, 306, 307, 308, 311, 312, 313, 314, 315, 316, 317, 318, 321, 365, 407, 428, 429, 430, 431, 462, 480, 481, 486, 488, 489, 490, 491, 492, 493, 494, 496, 498, 500, 502, 505, 506, 507, 509, 511, 512, 517, 518, 519, 524, 525, 526, 528, 529, 531, 533, 534, 535, 536, 537, 549, 550, 553, 554, 555, 556, 558, 560, 561, 563, 570, 571, 573, 574, 575, 579, 580, 581, 583, 585, 587, 588, 590, 635, 636, 637, 638, 639, 644, 649, 650, 659, 660, 661, 662, 664, 666, 667, 668, 669, 670, 676, 677, 679, 680, 683, 685, 687, 688, 697, 698, 699, 700, 703, 705, 706, 707, 708, 709, 715, 716, 718, 719, 722, 724, 726, 727, 736, 737, 738, 739, 742, 744, 745, 746, 747, 748, 754, 755, 757, 758, 761, 763, 765, 766, 775, 776, 777, 778, 781, 783, 784, 785, 786, 787, 793, 794, 796, 797, 800, 802, 804, 805, 814, 815, 816, 817, 820, 822, 823, 824, 825, 826, 832, 833, 835, 836, 839, 841, 843, 844, 853, 854, 855, 856, 859, 860, 863, 873, 874, 875, 880, 891, 898, 910, 915, 916, 919, 922, 925, 929, 934, 935, 936, 942, 944, 945, 946, 947, 948, 954, 955, 957, 958, 961, 963, 965, 966, 975, 976, 977, 978, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 1005, 1006, 1012, 1013, 1027, 1043, 1053, 1062, 1063, 1074, 1075, 1079, 1087, 1088, 1092, 1100, 1101, 1105, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175, 1179, 1180, 1188, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1208, 1209, 1210, 1211, 1212, 1213, 1215, 1216, 1217, 1218, 1219, 1220, 1597, 1632, 1645, 1661, 1667, 1670, 1682, 1685, 1697, 1699, 1706, 1713, 1721, 1722, 1723, 1725, 1726, 1730, 1736, 1739, 1741, 1750, 1751, 1754, 1755, 1756, 1760, 1761, 1767, 1768, 1769, 1771, 1777, 1778, 1780, 1799, 1802, 1803, 1804, 1818, 1819, 1830, 1835, 1837, 1840, 1848, 1849, 1850, 1857, 1859, 1860, 1861, 1864, 1868, 1869, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1882, 1884, 1885, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1901, 1902, 1905, 1906, 1907], "class": [2, 8, 9, 10, 14, 20, 27, 28, 35, 42, 49, 62, 64, 72, 77, 84, 90, 96, 101, 115, 123, 128, 133, 145, 146, 147, 148, 154, 166, 192, 197, 242, 245, 259, 271, 283, 298, 325, 340, 351, 357, 365, 366, 378, 390, 406, 432, 442, 449, 463, 491, 494, 495, 496, 500, 508, 510, 511, 512, 514, 516, 521, 539, 540, 543, 544, 545, 546, 547, 548, 550, 551, 557, 558, 559, 560, 561, 562, 564, 565, 567, 568, 570, 571, 572, 574, 579, 580, 581, 582, 583, 590, 591, 612, 644, 645, 649, 654, 655, 658, 659, 663, 664, 702, 703, 741, 742, 780, 781, 819, 820, 858, 859, 873, 874, 896, 898, 899, 901, 904, 906, 908, 910, 915, 916, 918, 921, 924, 927, 929, 936, 937, 940, 942, 980, 984, 1013, 1014, 1020, 1029, 1030, 1036, 1037, 1041, 1043, 1044, 1053, 1054, 1067, 1079, 1092, 1105, 1118, 1134, 1145, 1154, 1166, 1220, 1221, 1223, 1225, 1227, 1229, 1231, 1233, 1235, 1237, 1239, 1241, 1243, 1245, 1247, 1249, 1251, 1253, 1255, 1257, 1259, 1261, 1263, 1265, 1267, 1269, 1271, 1273, 1275, 1277, 1279, 1281, 1283, 1285, 1287, 1289, 1291, 1293, 1295, 1297, 1299, 1301, 1303, 1305, 1307, 1309, 1311, 1313, 1315, 1317, 1319, 1321, 1323, 1325, 1327, 1329, 1331, 1333, 1335, 1337, 1339, 1341, 1343, 1345, 1347, 1349, 1351, 1353, 1355, 1357, 1359, 1361, 1363, 1365, 1367, 1369, 1371, 1373, 1375, 1377, 1379, 1381, 1383, 1385, 1387, 1389, 1391, 1393, 1395, 1397, 1399, 1401, 1403, 1405, 1407, 1409, 1411, 1413, 1415, 1417, 1419, 1421, 1423, 1425, 1427, 1429, 1431, 1433, 1435, 1437, 1439, 1441, 1443, 1445, 1447, 1449, 1451, 1453, 1455, 1457, 1459, 1461, 1463, 1465, 1467, 1469, 1471, 1473, 1475, 1477, 1479, 1481, 1483, 1485, 1487, 1489, 1491, 1493, 1495, 1497, 1499, 1501, 1503, 1505, 1507, 1509, 1511, 1513, 1515, 1517, 1519, 1521, 1523, 1525, 1527, 1529, 1531, 1533, 1535, 1537, 1539, 1541, 1543, 1545, 1547, 1549, 1551, 1553, 1555, 1557, 1559, 1561, 1563, 1565, 1567, 1569, 1571, 1573, 1575, 1577, 1579, 1581, 1583, 1585, 1587, 1589, 1593, 1594, 1597, 1598, 1606, 1611, 1621, 1622, 1625, 1626, 1645, 1646, 1670, 1671, 1733, 1734, 1741, 1742, 1753, 1754, 1759, 1760, 1779, 1780, 1784, 1791, 1830, 1831, 1832, 1849, 1859, 1860, 1862, 1864, 1872, 1886, 1887, 1888, 1894, 1895, 1899, 1904], "librari": [3, 4, 5, 499, 502, 503, 509, 512, 516, 518, 519, 524, 541, 552, 565, 578, 581, 583, 585, 586, 1850, 1851, 1852, 1854, 1855, 1859, 1860, 1861, 1865, 1866, 1867, 1870, 1873, 1877, 1882, 1883, 1887, 1889, 1892, 1897], "orgin": 3, "ipht": [3, 1849], "cea": 3, "saclai": [3, 1849], "ferrero": 3, "cpht": 3, "ecol": [3, 1849], "polytechiqu": 3, "flatiron": [3, 1874, 1878], "institut": [3, 1874, 1878], "ccq": [3, 1850], "reciev": 3, "erc": 3, "grant": 3, "278472": 3, "divis": [3, 487, 556, 572, 575], "foundat": 3, "ayral": 3, "p": [3, 245, 303, 409, 492, 517, 1848, 1850, 1873, 1877, 1889], "hafermann": 3, "messio": 3, "seth": 3, "scientif": [3, 496, 578, 581, 1849, 1850, 1854, 1856, 1870, 1881], "kindli": 3, "us": [3, 5, 6, 7, 8, 9, 11, 47, 117, 132, 142, 143, 149, 150, 159, 165, 169, 171, 182, 183, 185, 186, 191, 205, 207, 215, 223, 252, 254, 255, 260, 311, 316, 317, 325, 342, 351, 356, 358, 365, 368, 379, 407, 413, 428, 430, 431, 448, 449, 450, 451, 454, 457, 459, 461, 480, 481, 482, 483, 484, 485, 487, 490, 491, 493, 494, 496, 497, 498, 499, 502, 503, 506, 507, 508, 509, 510, 511, 512, 514, 515, 516, 517, 519, 523, 524, 525, 527, 528, 529, 531, 532, 533, 535, 541, 543, 544, 546, 547, 550, 551, 553, 554, 556, 559, 560, 561, 563, 568, 570, 571, 572, 573, 574, 575, 576, 580, 581, 582, 583, 585, 586, 587, 589, 591, 600, 606, 612, 621, 627, 660, 670, 676, 709, 715, 748, 754, 787, 793, 826, 832, 875, 935, 948, 954, 1038, 1092, 1105, 1211, 1215, 1626, 1659, 1666, 1684, 1685, 1710, 1711, 1713, 1740, 1754, 1762, 1768, 1769, 1778, 1806, 1834, 1836, 1839, 1842, 1843, 1849, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1860, 1861, 1862, 1863, 1864, 1866, 1867, 1869, 1870, 1871, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "toolbox": [3, 555, 1899, 1904], "research": [3, 1849], "quantum": [3, 159, 172, 188, 189, 500, 571, 589, 591, 608, 612, 629, 640, 641, 1849, 1876, 1880, 1883, 1885, 1887, 1888, 1890, 1894, 1895], "phy": [3, 4, 1849, 1892, 1897, 1902, 1903, 1907, 1908], "comm": [3, 4, 499, 1805, 1819, 1879], "196": [3, 1849], "398": [3, 1849], "415": 3, "2015": 3, "facilit": [3, 564, 1849], "bibtex": 3, "give": [3, 4, 351, 514, 527, 528, 570, 573, 660, 1693, 1861, 1865, 1873, 1877, 1881, 1883, 1885, 1887, 1888, 1892, 1894, 1897, 1900, 1901, 1903, 1905, 1906, 1908], "inde": [3, 7, 492, 517, 581, 641, 1875, 1879, 1883, 1885, 1887, 1902, 1907], "convinc": 3, "fund": 3, "publish": [3, 581, 1892, 1897], "gnu": [3, 586, 1856, 1873, 1877], "gener": [3, 4, 7, 9, 11, 132, 171, 251, 262, 269, 274, 281, 286, 294, 329, 340, 341, 342, 351, 352, 357, 359, 363, 406, 413, 421, 428, 442, 443, 444, 447, 461, 480, 481, 488, 490, 491, 492, 493, 496, 498, 507, 511, 512, 513, 514, 515, 517, 518, 522, 532, 536, 541, 551, 553, 555, 561, 564, 565, 568, 570, 572, 573, 579, 583, 659, 694, 733, 772, 811, 850, 859, 866, 867, 868, 874, 875, 884, 972, 1022, 1213, 1630, 1666, 1731, 1737, 1754, 1760, 1849, 1850, 1851, 1854, 1858, 1859, 1866, 1871, 1873, 1877, 1880, 1887, 1890, 1891, 1895, 1896, 1899, 1900, 1901, 1904, 1905, 1906], "version": [3, 5, 8, 9, 22, 23, 37, 38, 66, 67, 79, 80, 103, 104, 246, 351, 448, 449, 500, 506, 523, 543, 551, 555, 564, 569, 572, 583, 1848, 1849, 1851, 1854, 1855, 1856, 1857, 1858, 1867, 1870, 1874, 1878, 1883, 1887, 1888, 1892, 1897, 1902, 1903, 1907, 1908], "3": [3, 5, 19, 85, 95, 245, 251, 252, 255, 261, 268, 272, 273, 285, 292, 329, 368, 379, 445, 450, 454, 457, 459, 461, 465, 482, 483, 484, 485, 496, 497, 499, 500, 502, 507, 508, 509, 510, 513, 523, 527, 528, 531, 532, 539, 541, 543, 547, 550, 551, 553, 557, 563, 570, 572, 573, 579, 580, 585, 587, 672, 673, 674, 675, 687, 688, 711, 712, 713, 714, 726, 727, 750, 751, 752, 753, 765, 766, 789, 790, 791, 792, 804, 805, 828, 829, 830, 831, 843, 844, 950, 951, 952, 953, 965, 966, 996, 998, 999, 1000, 1001, 1005, 1006, 1054, 1057, 1067, 1211, 1591, 1598, 1666, 1683, 1685, 1690, 1692, 1693, 1850, 1854, 1855, 1856, 1857, 1860, 1861, 1862, 1867, 1875, 1876, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "impli": [3, 351, 507, 551], "state": [3, 9, 153, 159, 160, 162, 164, 168, 175, 176, 177, 178, 182, 183, 185, 186, 198, 324, 325, 340, 342, 343, 346, 350, 351, 354, 356, 357, 358, 360, 362, 390, 391, 393, 394, 396, 399, 401, 402, 404, 488, 514, 543, 550, 558, 560, 568, 580, 589, 591, 598, 599, 605, 609, 610, 611, 612, 619, 620, 626, 630, 631, 632, 633, 635, 636, 637, 638, 645, 916, 929, 930, 1869, 1872, 1873, 1877, 1885, 1890, 1892, 1895, 1897, 1901, 1902, 1903, 1906, 1907, 1908], "warranti": 3, "respons": [3, 449, 1859, 1899, 1900, 1901, 1904, 1905, 1906], "white": [3, 1904], "color": [3, 122, 580, 1873, 1877, 1879, 1880, 1882, 1889, 1899, 1900, 1904, 1905], "background": 3, "resolut": [3, 939], "svg": [3, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "pdf": [3, 448], "icon": [3, 1873, 1877], "studi": [4, 1849, 1859, 1891, 1895, 1896, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "categori": 4, "readili": [4, 515, 1901, 1906], "collabor": [4, 1849], "reli": [4, 1850], "thin": [4, 578, 1726], "mainten": [4, 564], "embed": [4, 1883, 1887, 1892, 1897], "conduct": [4, 1883, 1887, 1889], "bath": [4, 553, 1211, 1215, 1869, 1873, 1876, 1877, 1880, 1883, 1887, 1889, 1892, 1897], "mont": [4, 9, 406, 428, 430, 431, 449, 488, 513, 567, 583, 1873, 1876, 1877, 1880, 1883, 1887, 1889, 1890, 1895], "carlo": [4, 9, 406, 428, 430, 431, 449, 488, 513, 567, 583, 1873, 1876, 1877, 1880, 1883, 1887, 1889, 1890, 1895], "diagram": [4, 1889, 1901, 1906], "partit": [4, 9, 159, 187, 357, 358, 360, 363, 364, 500, 555, 570, 589, 591, 612, 639, 1885, 1889, 1896], "produc": [4, 492, 494, 496, 558, 569, 581, 583, 1851, 1873, 1877, 1881, 1895], "cite": [4, 1849], "200": [4, 357, 500, 1869, 1892, 1897], "274": [4, 357], "2016": [4, 357], "homepag": [4, 1849], "atom": [4, 9, 153, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 500, 555, 557, 562, 563, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 1598, 1611, 1873, 1876, 1877, 1880, 1883, 1885, 1886, 1887], "approxim": [4, 520, 547, 553, 935, 1211, 1859, 1876, 1878, 1880, 1883, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908, 1909], "quick": [4, 5, 230, 231, 496, 516], "answer": [4, 6, 456, 481, 484, 485, 567, 1849, 1874, 1876, 1878, 1880, 1903, 1908], "multiband": 4, "lattic": [4, 9, 488, 559, 560, 561, 562, 563, 1067, 1760, 1763, 1859, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908, 1909], "descent": 4, "fix": [4, 8, 300, 302, 500, 528, 531, 541, 553, 556, 1213, 1873, 1877, 1883, 1886, 1887, 1900, 1902, 1905, 1907, 1910], "chemic": [4, 500, 555, 559, 648, 652, 930, 1873, 1876, 1877, 1879, 1880, 1886, 1888, 1891, 1894, 1895, 1896, 1899, 1904], "potenti": [4, 500, 555, 559, 648, 652, 930, 1852, 1854, 1858, 1873, 1876, 1877, 1879, 1880, 1886, 1888, 1891, 1894, 1895, 1896, 1899, 1904], "hartree_fock": 4, "fermion": [4, 154, 254, 255, 260, 316, 340, 350, 404, 500, 515, 516, 517, 519, 523, 525, 527, 528, 530, 531, 532, 539, 540, 541, 543, 555, 558, 559, 572, 579, 645, 648, 652, 1030, 1031, 1079, 1092, 1105, 1118, 1134, 1145, 1849, 1859, 1862, 1863, 1868, 1872, 1877, 1883, 1886, 1887, 1894, 1895, 1902, 1903, 1907, 1908, 1909], "mani": [4, 9, 171, 357, 358, 365, 378, 488, 496, 510, 515, 543, 560, 572, 1697, 1838, 1849, 1852, 1870, 1873, 1877, 1881, 1883, 1887, 1889, 1890, 1895, 1899, 1900, 1904, 1905], "bodi": [4, 9, 171, 357, 358, 365, 488, 515, 572, 1697, 1849, 1883, 1887, 1890, 1895], "imagianari": 4, "hugostrand": 4, "10": [4, 19, 95, 245, 254, 255, 260, 316, 499, 500, 502, 508, 509, 510, 513, 516, 525, 527, 528, 531, 533, 535, 541, 544, 553, 570, 580, 582, 1213, 1216, 1848, 1849, 1854, 1860, 1862, 1863, 1867, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1885, 1886, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1900, 1904, 1905, 1906, 1907], "5281": 4, "zenodo": 4, "592291": 4, "pomerol2triq": 4, "softwar": [4, 1849, 1850, 1856, 1870], "packag": [4, 5, 499, 1851, 1852, 1854, 1856, 1857, 1864, 1866, 1870, 1873, 1877, 1885, 1886, 1887, 1895], "235": 4, "388": 4, "2019": 4, "w2dynamics_interfac": 4, "renorm": [4, 1873, 1877, 1903, 1908], "rev": [4, 1849, 1892, 1897, 1903, 1908], "79": 4, "085106": 4, "2009": [4, 1892, 1897], "nrgljubljana_interfac": 4, "dfttool": 4, "wien2k": [4, 573, 1689, 1692, 1694], "band": [4, 500, 551, 559, 1659, 1869, 1873, 1874, 1877, 1878, 1879, 1888, 1891, 1892, 1894, 1896, 1897], "fledg": 4, "few": [4, 509, 523, 935, 1855, 1873, 1874, 1877, 1878, 1883, 1887, 1890, 1895, 1901, 1906], "204": 4, "shot": [4, 1876, 1880], "charg": [4, 524, 537, 543, 1901, 1902, 1906, 1907], "csc": 4, "h5": [4, 9, 208, 209, 247, 248, 263, 264, 275, 276, 287, 288, 296, 332, 333, 344, 345, 397, 398, 425, 426, 467, 468, 488, 497, 498, 500, 517, 523, 527, 528, 529, 532, 533, 535, 581, 1848, 1849, 1860, 1863, 1864, 1869, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1884, 1890, 1891, 1892, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1906, 1907], "archiv": [4, 9, 496, 498, 1859, 1863, 1868, 1869, 1873, 1877, 1879, 1890, 1891, 1895, 1896], "espresso": 4, "advantag": [4, 496, 515, 516, 564, 1881, 1888, 1894], "postprocess": [4, 1873, 1875, 1876, 1877, 1879, 1880], "script": [4, 5, 9, 578, 1850, 1858, 1859, 1866, 1870, 1873, 1877, 1879, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1904], "spectral": [4, 543, 547, 1198, 1201, 1874, 1875, 1876, 1878, 1879, 1880, 1883, 1887, 1888, 1890, 1894, 1895, 1899, 1903, 1904, 1908], "modular": [4, 1873, 1877], "entropi": 4, "1": [4, 5, 13, 15, 19, 43, 73, 85, 88, 95, 97, 117, 118, 121, 159, 164, 182, 183, 185, 186, 204, 206, 214, 215, 223, 224, 235, 236, 241, 245, 246, 250, 251, 252, 254, 255, 257, 260, 261, 272, 273, 280, 284, 285, 292, 300, 301, 302, 305, 314, 315, 316, 317, 329, 341, 342, 352, 358, 360, 367, 368, 369, 370, 372, 373, 374, 375, 379, 380, 381, 384, 385, 386, 387, 392, 407, 410, 428, 430, 431, 438, 443, 445, 446, 450, 451, 453, 454, 457, 459, 461, 465, 471, 480, 481, 482, 483, 484, 485, 487, 496, 498, 499, 500, 502, 506, 507, 508, 509, 510, 512, 513, 514, 515, 516, 517, 519, 520, 522, 523, 525, 527, 528, 531, 532, 539, 540, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 554, 555, 557, 558, 559, 560, 561, 562, 563, 564, 567, 569, 570, 572, 573, 575, 576, 579, 580, 582, 583, 586, 587, 645, 653, 655, 681, 682, 697, 700, 720, 721, 736, 739, 759, 760, 775, 778, 798, 799, 814, 817, 837, 838, 853, 856, 875, 935, 959, 960, 975, 978, 1002, 1003, 1012, 1178, 1210, 1211, 1215, 1598, 1613, 1619, 1620, 1626, 1631, 1648, 1666, 1685, 1686, 1687, 1693, 1700, 1701, 1709, 1710, 1711, 1716, 1719, 1747, 1754, 1760, 1768, 1778, 1781, 1785, 1792, 1806, 1820, 1848, 1849, 1850, 1852, 1856, 1858, 1860, 1861, 1862, 1863, 1867, 1869, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "caratheodori": 4, "2": [4, 5, 13, 19, 21, 24, 32, 36, 40, 65, 68, 78, 81, 95, 102, 106, 159, 164, 182, 183, 185, 186, 197, 204, 206, 214, 215, 245, 246, 250, 251, 252, 254, 255, 261, 272, 273, 280, 284, 285, 300, 305, 314, 315, 316, 317, 329, 341, 342, 352, 357, 358, 360, 367, 368, 370, 372, 379, 381, 384, 407, 428, 430, 431, 445, 449, 450, 451, 454, 455, 456, 457, 459, 461, 465, 480, 481, 482, 483, 484, 485, 487, 490, 493, 496, 497, 499, 500, 502, 506, 507, 508, 509, 510, 513, 515, 516, 517, 520, 521, 522, 523, 527, 528, 529, 532, 533, 535, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 555, 558, 560, 563, 567, 570, 572, 573, 575, 576, 579, 580, 583, 585, 586, 587, 875, 891, 916, 929, 1105, 1211, 1217, 1619, 1620, 1683, 1684, 1685, 1686, 1687, 1689, 1690, 1692, 1693, 1694, 1699, 1700, 1701, 1702, 1709, 1710, 1711, 1714, 1716, 1718, 1719, 1849, 1850, 1856, 1857, 1858, 1860, 1861, 1862, 1863, 1867, 1869, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1910], "": [4, 7, 9, 11, 18, 29, 30, 31, 46, 89, 100, 140, 182, 183, 184, 185, 186, 253, 306, 307, 308, 312, 313, 321, 329, 351, 430, 431, 463, 471, 488, 496, 497, 499, 500, 513, 517, 518, 525, 528, 535, 549, 550, 553, 554, 555, 560, 569, 570, 573, 575, 576, 577, 580, 581, 582, 587, 635, 636, 637, 638, 661, 662, 697, 736, 775, 814, 853, 859, 860, 863, 874, 875, 880, 906, 916, 929, 935, 939, 975, 986, 987, 988, 989, 991, 992, 1012, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1209, 1210, 1211, 1212, 1213, 1215, 1216, 1217, 1218, 1219, 1634, 1650, 1664, 1683, 1684, 1685, 1690, 1699, 1712, 1715, 1718, 1719, 1723, 1747, 1841, 1844, 1849, 1850, 1855, 1858, 1859, 1867, 1868, 1869, 1875, 1876, 1879, 1880, 1881, 1884, 1885, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "iskakov": 4, "jiani": 4, "fei": 4, "chia": 4, "nan": [4, 1900, 1905], "yeh": 4, "emanuel": 4, "gull": 4, "lett": [4, 1849, 1892, 1897, 1903, 1908], "126": 4, "056402": 4, "doi": [4, 1873, 1875, 1877, 1879], "1103": [4, 1873, 1875, 1877, 1879], "physrevlett": 4, "dominika": 4, "zgid": 4, "104": 4, "165111": 4, "physrevb": [4, 1873, 1875, 1877, 1879], "propos": [4, 410, 434, 564, 568, 570, 1888, 1894], "andrei": 4, "mishchenko": 4, "olga": 4, "goulko": 4, "et": [4, 1883, 1887, 1894, 1896], "al": [4, 1883, 1887, 1894], "95": 4, "014102": 4, "2017": 4, "239": 4, "166": 4, "94": [4, 1883, 1887], "023303": 4, "omegamaxent_interfac": 4, "effici": [4, 507, 516, 555, 581, 1849, 1886], "c": [4, 5, 7, 109, 110, 111, 112, 113, 118, 125, 134, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 155, 156, 157, 158, 299, 309, 310, 317, 320, 363, 407, 412, 428, 430, 431, 437, 456, 457, 459, 472, 473, 481, 484, 485, 488, 489, 490, 493, 494, 496, 499, 502, 503, 510, 514, 515, 516, 517, 520, 523, 524, 527, 528, 533, 535, 539, 542, 543, 552, 555, 564, 567, 571, 572, 579, 582, 583, 585, 586, 587, 595, 596, 616, 617, 676, 715, 754, 793, 832, 904, 905, 954, 985, 995, 1220, 1701, 1702, 1849, 1850, 1851, 1852, 1855, 1857, 1858, 1860, 1862, 1864, 1873, 1876, 1877, 1879, 1880, 1881, 1883, 1885, 1886, 1887, 1889, 1892, 1896, 1897, 1898, 1899, 1900, 1903, 1904, 1905, 1908], "mpi": [4, 9, 10, 245, 251, 260, 268, 292, 317, 407, 428, 430, 431, 448, 449, 456, 463, 472, 473, 481, 484, 485, 488, 498, 543, 551, 564, 567, 572, 583, 1805, 1806, 1848, 1849, 1850, 1852, 1854, 1856, 1857, 1869, 1873, 1875, 1877, 1879, 1880, 1889, 1892, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "oper": [4, 9, 14, 20, 28, 35, 42, 49, 64, 72, 77, 84, 96, 101, 128, 131, 141, 144, 153, 155, 156, 157, 158, 159, 165, 170, 171, 188, 189, 190, 196, 200, 225, 230, 231, 235, 236, 239, 242, 259, 260, 271, 283, 317, 325, 340, 341, 342, 351, 352, 353, 355, 357, 358, 359, 363, 366, 378, 390, 442, 449, 451, 463, 472, 473, 488, 490, 496, 498, 499, 500, 502, 503, 507, 511, 512, 513, 514, 517, 521, 539, 542, 549, 555, 556, 570, 573, 574, 575, 576, 577, 587, 589, 591, 593, 594, 595, 596, 600, 612, 614, 615, 616, 617, 621, 633, 661, 662, 1030, 1622, 1838, 1850, 1859, 1861, 1868, 1869, 1873, 1877, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1900, 1903, 1905, 1908], "phase": [4, 358, 363, 1859, 1877, 1899, 1903, 1904, 1908, 1909], "beth": [4, 1859, 1890, 1891, 1895, 1896, 1901, 1906], "salpet": [4, 1901, 1906], "2638058": 4, "systemat": [4, 449, 1889], "test": [4, 201, 202, 203, 226, 227, 300, 302, 497, 508, 511, 547, 551, 1780, 1848, 1850, 1853, 1857, 1858, 1864, 1865], "cmake": [4, 7, 1850, 1851, 1854, 1856, 1857, 1858, 1865, 1867], "own": [4, 8, 499, 1855, 1859, 1860, 1864, 1873, 1877, 1881], "standalon": [4, 491], "welcom": [5, 1854, 1859], "triq": [5, 6, 7, 8, 9, 10, 488, 501, 502, 507, 510, 515, 516, 518, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 557, 559, 560, 561, 562, 563, 565, 567, 568, 569, 570, 572, 573, 574, 575, 576, 577, 578, 579, 585, 586, 587, 1851, 1853, 1855, 1857, 1860, 1861, 1862, 1863, 1866, 1868, 1869, 1870, 1871, 1872, 1875, 1876, 1879, 1880, 1881, 1882, 1884, 1885, 1886, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909], "core": [5, 1850, 1852, 1873, 1877, 1881, 1892, 1897], "instal": [5, 7, 493, 586, 1849, 1852, 1855, 1856, 1858, 1865, 1866, 1867], "compil": [5, 9, 488, 490, 494, 502, 506, 507, 517, 581, 586, 1849, 1852, 1853, 1857, 1866, 1867, 1873, 1877], "advanc": [5, 73, 75, 205, 207, 215, 491, 494, 503, 517, 521, 525, 570, 578, 1849, 1873, 1877, 1889], "document": [5, 8, 15, 18, 21, 24, 30, 32, 36, 40, 43, 46, 48, 53, 65, 68, 73, 78, 81, 85, 88, 89, 97, 100, 102, 106, 118, 140, 142, 143, 159, 164, 182, 183, 185, 186, 197, 204, 206, 214, 215, 245, 246, 250, 251, 254, 255, 260, 261, 268, 272, 273, 280, 284, 285, 292, 299, 304, 309, 310, 317, 320, 329, 341, 342, 352, 358, 365, 367, 368, 372, 379, 384, 438, 443, 445, 451, 465, 488, 490, 491, 496, 503, 507, 512, 520, 523, 528, 537, 543, 544, 545, 546, 547, 548, 551, 563, 565, 568, 570, 585, 586, 1849, 1850, 1853, 1855, 1859, 1861, 1862, 1864, 1865, 1866, 1873, 1877, 1883, 1887, 1889, 1890, 1895, 1899, 1904], "api": [5, 409, 490, 491, 493, 494, 499, 518, 542, 549, 583, 1850, 1910], "python": [5, 11, 488, 490, 493, 494, 496, 498, 542, 543, 544, 545, 546, 547, 548, 550, 551, 571, 575, 578, 580, 581, 582, 584, 587, 906, 1833, 1849, 1850, 1851, 1852, 1854, 1856, 1864, 1865, 1868, 1869, 1883, 1884, 1886, 1887, 1888, 1889, 1894], "why": [5, 224, 526, 551, 570, 1873, 1874, 1876, 1877, 1878, 1880, 1883, 1887, 1896, 1900, 1903, 1905, 1908], "tour": [5, 9, 503], "ab": [5, 203, 216, 228, 502, 507, 564, 676, 715, 754, 793, 832, 935, 954, 1778, 1873, 1877, 1883, 1887, 1892, 1897], "initio": [5, 1873, 1877], "tool": [5, 9, 154, 488, 494, 542, 549, 563, 573, 578, 581, 583, 1597, 1849, 1850, 1851, 1854, 1857, 1858, 1859, 1864, 1870, 1872, 1881, 1883, 1887, 1905], "analyt": [5, 547, 1664, 1876, 1880, 1886, 1888, 1890, 1895, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "determin": [5, 9, 192, 224, 237, 488, 492, 499, 513, 514, 520, 527, 541, 551, 552, 570, 572, 573, 1683, 1690, 1769, 1859, 1860, 1873, 1877, 1879, 1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "changelog": [5, 1849, 1858, 1910], "0": [5, 19, 40, 46, 73, 95, 112, 114, 117, 120, 122, 125, 140, 141, 142, 143, 144, 149, 150, 151, 186, 195, 203, 216, 228, 235, 236, 252, 254, 255, 260, 305, 316, 317, 329, 356, 369, 370, 373, 374, 375, 380, 381, 385, 386, 387, 407, 410, 413, 428, 430, 431, 434, 445, 446, 450, 451, 454, 457, 459, 461, 463, 472, 473, 480, 481, 483, 484, 485, 499, 500, 502, 507, 508, 509, 510, 512, 513, 514, 515, 516, 519, 520, 525, 527, 528, 531, 532, 533, 535, 537, 540, 541, 543, 544, 545, 547, 548, 550, 552, 553, 555, 557, 558, 559, 560, 563, 567, 569, 570, 572, 573, 575, 576, 577, 579, 580, 581, 582, 583, 586, 587, 638, 648, 652, 693, 732, 771, 810, 849, 875, 927, 928, 929, 930, 935, 971, 1011, 1092, 1134, 1145, 1187, 1211, 1598, 1626, 1642, 1646, 1647, 1663, 1666, 1679, 1685, 1686, 1693, 1709, 1710, 1711, 1712, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1744, 1768, 1806, 1807, 1812, 1821, 1826, 1848, 1850, 1856, 1860, 1861, 1862, 1863, 1866, 1869, 1872, 1874, 1875, 1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1897, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908, 1910], "5": [5, 159, 245, 254, 255, 268, 292, 329, 450, 459, 461, 482, 483, 484, 485, 499, 500, 502, 509, 510, 513, 531, 543, 547, 548, 551, 558, 563, 567, 569, 570, 572, 579, 580, 586, 1860, 1861, 1869, 1872, 1875, 1876, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1896, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "4": [5, 19, 85, 95, 245, 254, 255, 268, 292, 329, 357, 449, 450, 454, 457, 459, 461, 482, 483, 484, 485, 496, 500, 508, 509, 510, 513, 540, 547, 555, 558, 563, 567, 575, 580, 586, 587, 1699, 1701, 1711, 1850, 1856, 1860, 1861, 1862, 1872, 1875, 1876, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1892, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "issu": [5, 8, 543, 570, 581, 1848, 1849, 1854, 1884], "author": [5, 553, 1213], "citat": 5, "disclaim": [5, 1873, 1877], "frequent": 5, "question": [5, 6, 7, 343, 346, 396, 399, 1849, 1873, 1874, 1876, 1877, 1878, 1880, 1881, 1899, 1901, 1904, 1906], "q": [5, 561, 573, 1686, 1762, 1849, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "my": [5, 497, 569, 1867, 1882], "gf": [5, 9, 10, 182, 183, 184, 185, 186, 329, 499, 500, 515, 516, 517, 518, 519, 520, 522, 523, 524, 526, 531, 534, 536, 537, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 554, 560, 561, 575, 576, 577, 579, 580, 585, 586, 636, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1754, 1760, 1850, 1863, 1864, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "hash": 5, "regard": 6, "consult": [6, 499], "make": [6, 7, 130, 224, 232, 233, 234, 235, 236, 237, 238, 239, 250, 260, 305, 318, 354, 356, 365, 490, 507, 508, 511, 515, 517, 519, 522, 523, 524, 525, 543, 551, 568, 570, 572, 574, 577, 580, 587, 860, 1058, 1069, 1082, 1095, 1108, 1121, 1137, 1148, 1156, 1168, 1722, 1832, 1848, 1850, 1851, 1854, 1855, 1857, 1858, 1867, 1870, 1873, 1877, 1883, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "easier": [6, 1873, 1877, 1883, 1887, 1890, 1895], "fill": [6, 451, 457, 502, 503, 509, 516, 517, 519, 527, 544, 545, 547, 548, 555, 560, 689, 690, 691, 692, 728, 729, 730, 731, 767, 768, 769, 770, 806, 807, 808, 809, 845, 846, 847, 848, 967, 968, 969, 970, 1007, 1008, 1009, 1010, 1869, 1874, 1878, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1903, 1905, 1908], "new": [6, 8, 122, 123, 204, 206, 214, 217, 223, 235, 236, 237, 257, 297, 319, 335, 336, 354, 368, 376, 379, 388, 450, 451, 459, 492, 496, 497, 498, 506, 513, 514, 519, 551, 564, 570, 572, 573, 581, 587, 862, 879, 1685, 1696, 1778, 1849, 1850, 1855, 1858, 1861, 1866, 1867, 1873, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1887, 1888, 1894, 1910], "happi": 6, "improv": [6, 520, 571, 1597, 1850, 1873, 1877, 1910], "coordin": [6, 517, 557, 562, 563, 1600, 1617, 1626, 1628, 1629, 1630, 1637, 1653, 1862, 1882, 1888, 1894], "chang": [6, 7, 8, 224, 230, 231, 232, 233, 234, 409, 500, 512, 513, 543, 551, 568, 573, 576, 1685, 1692, 1696, 1714, 1715, 1716, 1849, 1850, 1852, 1854, 1858, 1861, 1867, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1887, 1889, 1890, 1891, 1894, 1895, 1896, 1901, 1906, 1907, 1910], "engag": 6, "forum": [6, 1849], "channel": [6, 1877, 1879, 1880, 1895, 1902, 1907], "announc": 6, "gladli": 7, "accept": [7, 218, 414, 417, 432, 439, 440, 449, 505, 507, 508, 513, 521, 561, 564, 567, 568, 570, 587, 875, 1755, 1761, 1887, 1889, 1896], "come": [7, 500, 558, 560, 569, 1855, 1860, 1861, 1884, 1890, 1895, 1903, 1908], "learn": [7, 8, 581, 1859, 1861, 1862, 1873, 1874, 1877, 1878, 1881, 1885, 1886, 1890, 1893, 1895], "green": [7, 9, 182, 183, 184, 185, 186, 245, 251, 253, 254, 255, 257, 259, 260, 268, 271, 283, 300, 302, 306, 307, 308, 312, 313, 314, 315, 316, 317, 321, 488, 492, 496, 499, 500, 502, 517, 518, 519, 521, 524, 526, 528, 531, 532, 535, 536, 537, 549, 550, 553, 554, 560, 577, 579, 580, 635, 636, 637, 638, 661, 662, 664, 666, 667, 668, 669, 670, 676, 677, 679, 680, 683, 685, 697, 698, 699, 700, 703, 705, 706, 707, 708, 709, 715, 716, 718, 719, 722, 724, 736, 737, 738, 739, 742, 744, 745, 746, 747, 748, 754, 755, 757, 758, 761, 763, 775, 776, 777, 778, 781, 783, 784, 785, 786, 787, 793, 794, 796, 797, 800, 802, 814, 815, 816, 817, 820, 822, 823, 824, 825, 826, 832, 833, 835, 836, 839, 841, 853, 854, 855, 856, 859, 860, 863, 874, 875, 880, 891, 906, 916, 929, 935, 942, 944, 945, 946, 947, 948, 954, 955, 957, 958, 961, 963, 975, 976, 977, 978, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 1012, 1079, 1092, 1105, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1209, 1210, 1212, 1213, 1216, 1217, 1218, 1219, 1220, 1699, 1723, 1756, 1849, 1859, 1868, 1869, 1875, 1876, 1879, 1880, 1884, 1885, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1905], "plai": [7, 541, 552, 1873, 1877, 1895], "futur": [7, 1832], "willing": 7, "check": [7, 189, 200, 225, 297, 300, 302, 319, 334, 346, 348, 349, 353, 399, 401, 402, 449, 498, 502, 507, 561, 575, 641, 1679, 1712, 1762, 1763, 1803, 1849, 1850, 1858, 1859, 1874, 1878, 1883, 1884, 1886, 1887, 1899, 1900, 1902, 1904, 1905, 1907], "websit": [7, 1850], "go": [7, 8, 570, 1849, 1859, 1873, 1877, 1883, 1887, 1889, 1890, 1895, 1900, 1901, 1905, 1906], "submit": [7, 8], "unsur": 7, "dbuild_document": [7, 1853], "dsphinx_onli": 7, "Then": [7, 514, 551, 582, 1778, 1850, 1866, 1873, 1877, 1882, 1889, 1890, 1895, 1903, 1908], "move": [7, 8, 85, 88, 196, 224, 245, 261, 272, 273, 284, 285, 407, 408, 410, 414, 428, 430, 431, 432, 433, 434, 435, 439, 440, 441, 507, 513, 523, 525, 569, 572, 1873, 1877, 1889, 1896], "doc": [7, 8, 207, 215, 268, 407, 413, 428, 430, 431, 489, 490, 493, 498, 525, 585, 1670, 1738, 1864, 1873, 1877, 1881], "cd": [7, 8, 363, 572, 676, 715, 754, 793, 832, 954, 1850, 1867, 1873, 1877], "becaus": [7, 491, 508, 516, 517, 543, 551, 570, 585, 1854, 1880, 1881, 1883, 1887, 1890, 1895, 1903, 1908], "want": [7, 519, 529, 533, 535, 543, 570, 579, 581, 583, 587, 1849, 1852, 1855, 1856, 1858, 1859, 1861, 1862, 1864, 1866, 1867, 1873, 1875, 1877, 1879, 1882, 1883, 1884, 1887, 1890, 1895], "docs_example_output": 7, "modifi": [7, 8, 357, 494, 513, 520, 524, 537, 546, 551, 581, 671, 710, 749, 788, 827, 949, 997, 1860, 1867, 1869, 1873, 1877, 1882, 1884, 1890, 1891, 1895, 1896], "src": [7, 8, 268, 585, 1867], "rebuild": [7, 217, 506, 513, 665, 704, 743, 782, 821], "hand": [7, 251, 268, 450, 502, 1873, 1877, 1899, 1902, 1903, 1904, 1907, 1908], "autobuild": 7, "form": [8, 9, 11, 159, 463, 490, 493, 500, 502, 503, 506, 527, 528, 541, 555, 556, 563, 568, 572, 573, 861, 876, 1664, 1684, 1832, 1869, 1873, 1877, 1879, 1883, 1885, 1887, 1888, 1894, 1900, 1902, 1905, 1907], "click": [8, 1874, 1878, 1881], "button": 8, "right": [8, 224, 251, 268, 451, 465, 480, 481, 487, 502, 553, 567, 676, 715, 754, 793, 832, 954, 1191, 1211, 1873, 1874, 1877, 1878, 1881, 1883, 1887, 1889, 1890, 1895, 1899, 1902, 1903, 1904, 1907, 1908], "screen": [8, 570, 573, 1683, 1684, 1685, 1690], "remot": 8, "origin": [8, 11, 15, 16, 17, 18, 21, 24, 40, 43, 44, 71, 73, 74, 75, 76, 78, 81, 85, 87, 89, 92, 93, 97, 98, 99, 100, 102, 106, 256, 257, 531, 547, 573, 587, 1696, 1873, 1877, 1879, 1883, 1886, 1887, 1903, 1907, 1908], "fetch": [8, 1850], "my_triq": 8, "your_usernam": 8, "again": [8, 568, 1872, 1873, 1876, 1877, 1880, 1884, 1890, 1891, 1895, 1896], "final": [8, 153, 155, 156, 157, 158, 449, 456, 499, 500, 520, 564, 567, 569, 570, 593, 595, 614, 616, 1666, 1849, 1850, 1883, 1886, 1887, 1889, 1892, 1897, 1900, 1905], "congratul": 8, "sync": 8, "checkout": 8, "my_first_pr": 8, "usual": [8, 508, 509, 510, 515, 551, 568, 570, 1851, 1873, 1877, 1881, 1890, 1895, 1900, 1905], "mind": [8, 543], "concis": 8, "bracket": [8, 511, 516, 542, 549], "what": [8, 292, 362, 496, 498, 543, 568, 570, 571, 580, 585, 1867, 1873, 1875, 1877, 1879, 1881, 1882, 1883, 1884, 1886, 1887, 1889, 1890, 1894, 1895, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "instanc": [8, 451, 563, 568, 569, 570, 572, 574, 1626, 1864], "det_manip": [8, 9, 10, 512, 514, 1859], "multipli": [8, 11, 32, 47, 48, 369, 373, 380, 385, 507, 523, 560, 1883, 1887], "squash": 8, "readi": [8, 494, 570, 572, 1849, 1859, 1867], "experi": [8, 1849, 1854, 1873, 1877], "atom_diag": [9, 10, 488, 1885], "lightweight": [9, 154, 488, 590, 591, 612, 1885], "exact": [9, 154, 488, 589, 590, 591, 612, 1876, 1880, 1889, 1901, 1906], "atom_diag_funct": [9, 500], "clef": [9, 254, 255, 488, 502, 518, 519, 523, 527, 528, 531, 541, 542, 1860, 1862, 1863], "motiv": [9, 503], "littl": [9, 497, 503, 505, 512, 517, 523, 532, 537, 542, 549, 564, 580, 581, 1859], "manipul": [9, 191, 488, 496, 503, 515, 518, 571, 1859, 1860, 1862, 1868, 1870, 1881, 1886], "notion": [9, 492, 517, 542, 575, 1854], "py": [9, 494, 542, 581, 1858, 1864, 1866, 1873, 1877, 1881, 1885, 1887, 1890, 1891, 1895, 1896, 1905], "hilbert_spac": [9, 10, 166, 488, 500, 572], "hilbert": [9, 153, 159, 160, 166, 167, 177, 340, 341, 342, 344, 345, 348, 349, 350, 351, 352, 356, 357, 358, 360, 365, 368, 370, 371, 376, 377, 378, 379, 381, 382, 388, 389, 390, 391, 392, 395, 397, 398, 401, 402, 403, 404, 488, 500, 550, 558, 559, 598, 601, 610, 619, 622, 631, 649, 655, 916, 929, 1889, 1896, 1897], "sub_hilbert_spac": [9, 324, 351, 352, 356, 365, 378, 555], "imperative_oper": [9, 324, 555], "imper": [9, 351, 357, 358, 359, 555], "introductori": 9, "Ising": [9, 565, 570], "chain": [9, 502, 565, 570, 1889], "magnet": [9, 565, 570], "quantiz": [9, 488], "object": [9, 11, 14, 26, 33, 42, 58, 72, 84, 96, 112, 119, 122, 123, 125, 126, 140, 142, 143, 149, 150, 151, 197, 251, 254, 255, 260, 268, 292, 300, 302, 314, 315, 316, 317, 329, 332, 333, 336, 344, 351, 352, 354, 355, 356, 360, 368, 370, 374, 375, 379, 381, 386, 387, 397, 451, 461, 472, 473, 480, 481, 490, 492, 494, 496, 499, 500, 502, 507, 510, 515, 517, 519, 524, 527, 528, 533, 535, 543, 544, 545, 546, 547, 548, 550, 551, 553, 556, 559, 560, 561, 564, 570, 571, 572, 573, 574, 578, 579, 583, 587, 655, 656, 659, 860, 935, 1186, 1189, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1217, 1646, 1659, 1662, 1663, 1664, 1693, 1726, 1732, 1740, 1760, 1800, 1805, 1832, 1841, 1844, 1862, 1876, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1890, 1895], "proven": [9, 488, 1858], "stat": [9, 10, 488], "averag": [9, 190, 449, 451, 453, 480, 481, 482, 483, 484, 485, 564, 1873, 1877, 1889, 1896], "notat": [9, 488, 532, 543, 572], "hdf5": [9, 208, 209, 247, 248, 249, 263, 264, 265, 275, 276, 277, 287, 288, 289, 332, 333, 344, 345, 397, 398, 400, 425, 426, 463, 467, 468, 469, 488, 490, 539, 542, 543, 549, 571, 1849, 1850, 1854, 1856, 1857, 1859, 1868, 1899, 1904], "cpp2py": [9, 488, 489, 490, 493, 494, 1851], "principl": [9, 491, 496, 498, 499, 507, 564, 581, 1867, 1883, 1887, 1899, 1902, 1904, 1907], "mc_tool": [9, 10, 567, 569, 570], "itertool": [9, 10, 113, 500, 572, 587, 1849, 1860, 1873, 1875, 1876, 1877, 1879, 1880], "iterator_facad": 11, "forward_iterator_tag": 11, "crtp": 11, "sentinel_t": [11, 18, 24, 33, 40, 46, 89, 93, 100, 106, 328, 331], "sentinel": [11, 18, 33, 46, 89, 100], "rang": [11, 12, 15, 19, 20, 21, 24, 26, 32, 34, 35, 36, 39, 40, 42, 43, 45, 47, 48, 63, 64, 65, 68, 71, 73, 77, 78, 81, 83, 85, 90, 92, 93, 95, 97, 101, 102, 105, 106, 113, 114, 179, 463, 465, 476, 500, 527, 528, 533, 535, 541, 563, 582, 1742, 1849, 1869, 1873, 1877, 1879, 1880, 1881, 1882, 1891, 1892, 1894, 1895, 1896, 1897, 1903, 1907, 1908], "enum_it": [11, 21], "prod_it": [11, 36], "cartesian": [11, 35, 517, 518, 521, 532, 1044, 1886], "mimic": 11, "stride_it": [11, 78, 81], "transform_it": [11, 92], "zip_it": [11, 102], "zip": [11, 587, 1873, 1877, 1899, 1904, 1905], "make_sentinel": 11, "similar": [11, 189, 498, 508, 514, 551, 580, 1664, 1873, 1877, 1880, 1883, 1887, 1890, 1895, 1910], "arrai": [11, 32, 48, 128, 129, 130, 245, 246, 254, 255, 256, 257, 260, 261, 270, 272, 273, 282, 284, 285, 295, 451, 461, 466, 496, 497, 499, 502, 516, 519, 521, 525, 526, 527, 528, 532, 533, 535, 541, 543, 544, 545, 546, 547, 548, 550, 551, 553, 560, 561, 562, 563, 573, 575, 576, 580, 585, 586, 646, 650, 660, 664, 672, 673, 674, 675, 700, 703, 711, 712, 713, 714, 739, 742, 750, 751, 752, 753, 778, 781, 789, 790, 791, 792, 817, 820, 828, 829, 830, 831, 856, 906, 942, 950, 951, 952, 953, 978, 998, 999, 1000, 1001, 1057, 1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1187, 1211, 1215, 1216, 1217, 1613, 1619, 1620, 1622, 1631, 1648, 1663, 1664, 1666, 1684, 1685, 1689, 1691, 1692, 1693, 1694, 1696, 1699, 1709, 1710, 1711, 1714, 1715, 1716, 1726, 1731, 1732, 1745, 1754, 1756, 1758, 1760, 1762, 1765, 1815, 1829, 1848, 1849, 1856, 1859, 1867, 1870, 1873, 1877, 1879, 1880, 1881, 1882, 1886, 1887, 1900, 1905, 1908], "make_vector_from_rang": 11, "last": [11, 12, 13, 45, 48, 49, 52, 53, 196, 419, 422, 513, 514, 520, 539, 570, 580, 587, 1873, 1876, 1877, 1879, 1880, 1888, 1889, 1890, 1894, 1895, 1896, 1903, 1908], "divid": [11, 12, 113, 463, 514, 570, 1742, 1873, 1877, 1879, 1880, 1905], "equal": [11, 14, 18, 25, 41, 42, 46, 59, 69, 72, 76, 82, 84, 89, 96, 100, 107, 348, 349, 401, 402, 463, 465, 476, 478, 480, 481, 547, 1742, 1852, 1873, 1877, 1881, 1883, 1886, 1887, 1892, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "unari": 11, "callabl": [11, 26, 83, 84, 85, 86, 90, 92, 354, 355, 360, 370, 381, 507, 556, 579, 587, 659, 860, 1832, 1841], "synopsi": [12, 13, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 502, 510, 511, 517, 518, 521, 522, 524, 526, 531, 534, 537, 539, 540, 542, 587], "ptrdiff_t": [12, 63, 70, 71, 73], "n_chunk": 12, "indic": [12, 179, 182, 183, 184, 185, 186, 269, 281, 294, 305, 325, 329, 342, 515, 517, 523, 532, 541, 543, 544, 545, 546, 547, 548, 550, 551, 554, 555, 560, 561, 572, 574, 579, 580, 589, 591, 612, 697, 736, 775, 814, 853, 861, 867, 868, 876, 975, 1012, 1204, 1627, 1647, 1663, 1699, 1755, 1756, 1761, 1833, 1848, 1858, 1873, 1877, 1881, 1883, 1885, 1887, 1889, 1891, 1895, 1896, 1900, 1901, 1905, 1906, 1910], "typenam": [13, 14, 18, 19, 20, 26, 27, 28, 32, 33, 34, 35, 39, 42, 46, 47, 48, 62, 63, 64, 71, 72, 77, 83, 84, 89, 90, 95, 96, 100, 101, 105, 109, 110, 111, 112, 113, 125, 126, 128, 129, 131, 132, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 181, 188, 189, 190, 192, 197, 237, 241, 242, 245, 251, 253, 254, 255, 256, 257, 258, 259, 260, 268, 271, 283, 284, 292, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 323, 329, 335, 351, 354, 355, 356, 357, 360, 365, 366, 370, 378, 381, 406, 408, 409, 410, 427, 432, 434, 445, 449, 461, 480, 481, 482, 483, 484, 485, 487, 502, 510, 511, 513, 521, 523, 572, 574, 587], "iter1": 13, "iter2": 13, "iterator_trait": [13, 84], "difference_typ": 13, "increment": [14, 28, 30, 42, 71, 72, 84, 96, 1768, 1769], "derefer": [14, 28, 29, 31, 42, 72, 84, 96, 490], "decltyp": [16, 29, 31, 44, 74, 86, 98, 109, 110, 125, 149, 151, 517, 587], "dereferenc": [16, 44, 74, 86, 98], "void": [17, 26, 45, 75, 87, 99, 111, 112, 116, 117, 129, 136, 138, 140, 143, 150, 195, 196, 208, 209, 218, 223, 225, 226, 227, 228, 230, 231, 247, 248, 263, 264, 275, 276, 280, 287, 288, 292, 293, 296, 322, 323, 332, 333, 335, 336, 344, 345, 355, 360, 370, 376, 381, 388, 391, 397, 398, 403, 409, 410, 411, 412, 425, 426, 427, 429, 434, 436, 437, 441, 450, 464, 467, 468, 472, 490, 492, 493, 499, 502, 511, 513, 517, 521, 564, 567, 570, 585, 587], "bool": [18, 25, 41, 46, 59, 69, 76, 82, 89, 100, 107, 125, 127, 135, 139, 141, 142, 143, 149, 150, 153, 154, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 216, 245, 299, 300, 301, 302, 309, 310, 317, 320, 334, 337, 346, 348, 349, 351, 353, 356, 358, 359, 363, 365, 399, 401, 402, 407, 408, 413, 428, 430, 431, 473, 478, 513, 544, 545, 546, 547, 548, 553, 567, 570, 572, 573, 575, 664, 681, 682, 700, 703, 720, 721, 739, 742, 759, 760, 778, 781, 798, 799, 817, 820, 837, 838, 856, 942, 959, 960, 978, 1002, 1003, 1079, 1092, 1105, 1127, 1211, 1626, 1663, 1666, 1674, 1679, 1684, 1698, 1700, 1701, 1702, 1711, 1803, 1887], "sentinelit": [18, 46, 89, 100], "true": [18, 46, 76, 89, 100, 115, 120, 121, 122, 127, 135, 139, 300, 301, 302, 324, 334, 346, 348, 349, 352, 358, 363, 399, 401, 402, 407, 408, 413, 428, 430, 431, 478, 490, 493, 498, 500, 507, 508, 510, 544, 545, 546, 547, 548, 551, 555, 567, 568, 572, 573, 579, 582, 594, 596, 664, 700, 703, 739, 742, 778, 781, 817, 820, 856, 860, 875, 887, 935, 942, 978, 1018, 1626, 1664, 1666, 1684, 1700, 1701, 1702, 1754, 1756, 1803, 1837, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1890, 1892, 1895, 1897, 1899, 1904, 1905, 1906], "rg": [19, 26, 34, 39, 47, 58, 63, 71, 83, 95, 105, 113], "iostream": [19, 95, 450, 454, 457, 459, 499, 502, 508, 509, 510, 567, 569, 570, 585, 587], "cout": [19, 95, 254, 255, 450, 454, 457, 459, 482, 483, 484, 485, 499, 502, 506, 508, 509, 510, 513, 523, 527, 528, 531, 541, 555, 567, 569, 570, 572, 585, 587, 1860, 1861, 1862, 1863, 1867], "endl": [19, 95, 450, 454, 457, 459, 482, 483, 484, 485, 499, 502, 506, 508, 509, 510, 513, 523, 527, 528, 531, 555, 567, 569, 570, 572, 585, 587, 1860, 1861, 1862, 1863, 1867], "cbegin": [20, 35, 49, 50, 64, 77, 90, 91, 101, 325, 517, 572], "cend": [20, 35, 49, 54, 64, 77, 90, 94, 101, 325, 517, 572], "noexcept": [21, 24, 36, 40, 53, 65, 68, 78, 81, 102, 106, 127, 197, 268, 272, 280, 284, 293, 513], "const_iter": [21, 22, 36, 37, 50, 51, 52, 54, 65, 66, 67, 68, 78, 79, 80, 81, 91, 92, 102, 103, 326, 327, 331, 490, 517, 539, 572], "pre": [28, 451, 480, 481, 482, 483, 484, 485, 1850, 1873, 1877, 1881], "size_t": [32, 48, 479, 502, 513, 517, 556, 686, 725, 764, 803, 842, 964, 1004], "denot": [34, 480, 481, 532, 541, 564, 573, 575, 576, 577, 1685, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1883, 1886, 1887, 1892, 1897, 1910], "tu": [40, 587], "endit": [42, 43, 46], "its_begin": 43, "its_end": 43, "enableif": 48, "enable_if_t": 48, "is_integral_v": 48, "idx_tpl": 48, "idx_arr": 48, "shift": [49, 57, 186, 513, 547, 935, 1873, 1876, 1877, 1879, 1880, 1881, 1888, 1889, 1894, 1896, 1903, 1908], "whole": [49, 311, 507, 561, 1760, 1875, 1879], "amount": [49, 57, 463, 520, 1742, 1873, 1877, 1883, 1887, 1903, 1908], "start_idx": 63, "end_idx": 63, "past": [63, 328, 331, 572], "skip": 71, "end_offset": 81, "invoke_result_t": 84, "typenamestd": 84, "value_typ": [84, 193, 194, 210, 211, 212, 213, 214, 215, 219, 220, 221, 222, 232, 233, 234, 235, 236, 237, 238, 239, 369, 372, 373, 380, 384, 385, 513, 524, 537, 556], "v1": [95, 556, 1883, 1887], "v2": [95, 556, 1883, 1887], "y": [95, 193, 197, 206, 210, 213, 232, 233, 235, 236, 237, 512, 513, 518, 531, 536, 537, 542, 570, 572, 573, 576, 579, 580, 583, 587, 659, 660, 669, 708, 747, 786, 825, 913, 947, 1019, 1185, 1187, 1201, 1205, 1689, 1692, 1694, 1716, 1719, 1768, 1778, 1850, 1858, 1861, 1873, 1877, 1879, 1881, 1882, 1886, 1892, 1897, 1899, 1900, 1903, 1904, 1905, 1908], "mpi_op": [110, 111, 131, 132, 142, 143, 149, 150, 317, 473, 499], "mpi_sum": [110, 111, 142, 143, 149, 150, 317, 473, 499], "subrang": 114, "interest": [114, 511, 570, 1873, 1877, 1889, 1891, 1896, 1900, 1905], "sup": 114, "disjoint": 115, "abort": 115, "mpi_abort": [115, 116, 413], "error_cod": 116, "poll_msec": [117, 1806, 1820], "interv": [117, 463, 520, 533, 535, 569, 570, 582, 1134, 1145, 1154, 1166, 1742, 1862, 1883, 1887, 1889, 1902, 1907], "millisecond": 117, "mpi_barri": 117, "mpi_comm": [118, 119, 122, 499], "mpi_comm_world": [118, 499], "mpi_comm_rank": 120, "mpi_comm_s": 121, "argc": [124, 499, 500, 567, 570], "char": [124, 499, 500, 567, 570, 587, 1873, 1877], "argv": [124, 493, 499, 500, 567, 570, 581, 1848], "mpi_datatyp": [126, 148, 499], "tup": 126, "nda": [128, 129, 215, 252, 254, 255, 322, 365, 366, 367, 451, 455, 456, 461, 466, 499, 502, 506, 507, 508, 509, 510, 516, 519, 523, 524, 527, 528, 531, 532, 541, 562, 1613, 1631, 1648, 1849, 1860, 1862, 1863, 1867], "invok": [128, 1832, 1841, 1844], "view": [128, 129, 250, 271, 272, 280, 284, 292, 293, 318, 490, 516, 518, 519, 522, 525, 531, 534, 535, 537, 542, 549, 581, 677, 685, 700, 716, 724, 739, 755, 763, 778, 794, 802, 817, 833, 841, 856, 871, 894, 955, 963, 978, 1815, 1829, 1866, 1869, 1873, 1877, 1883, 1884, 1887], "pointer": [131, 251, 268, 352, 517, 522], "emerg": 135, "finish": [139, 196, 1780, 1873, 1876, 1877, 1879, 1880, 1889, 1896], "mpi_isend": 139, "local_stop": 139, "string": [140, 208, 209, 247, 248, 249, 263, 264, 265, 275, 276, 277, 287, 288, 289, 296, 304, 325, 328, 331, 332, 333, 335, 344, 345, 347, 397, 398, 400, 408, 410, 413, 414, 425, 426, 434, 439, 440, 443, 444, 447, 467, 468, 469, 490, 493, 496, 497, 499, 523, 544, 545, 546, 547, 548, 551, 553, 557, 559, 567, 569, 570, 572, 573, 575, 576, 577, 580, 581, 589, 591, 612, 646, 653, 660, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1211, 1598, 1627, 1647, 1685, 1688, 1689, 1692, 1694, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1740, 1778, 1834, 1839, 1843, 1873, 1877, 1885], "reduct": [141, 142, 143, 149, 150, 473, 481, 500, 587], "datatyp": [145, 499], "mpi_scatt": [151, 499, 539], "partition_funct": [152, 500, 501], "atomic_density_matrix": [152, 500, 501], "act": [152, 351, 354, 449, 480, 481, 501, 555, 567, 660, 1882, 1900, 1905], "quantum_number_eigenvalues_check": [152, 501], "atomic_g_lehmann": [152, 500, 501], "atomic_g_tau": [152, 500, 501, 1885], "atomic_g_iw": [152, 500, 501], "atomic_g_l": [152, 500, 501], "atomic_g_w": [152, 500, 501], "full_hilbert_space_state_t": [153, 177, 633], "many_body_op_t": [153, 159, 169, 171, 188, 189, 190], "st": [153, 354, 356, 358, 368, 370, 379, 381, 555, 633], "finit": [154, 451, 500, 520, 544, 546, 555, 670, 709, 748, 787, 826, 948, 1067, 1859, 1873, 1877, 1895, 1899, 1901, 1904, 1906, 1909], "moder": [154, 500], "get_h_atom": 154, "get_fop": 154, "get_full_hilbert_spac": 154, "get_full_hilbert_space_dim": 154, "n_subspac": [154, 357, 500, 555], "get_fock_st": [154, 340, 390, 555], "get_unitary_matrix": 154, "get_unitary_matric": 154, "flatten_subspace_index": 154, "index_range_of_subspac": 154, "get_eigensystem": 154, "get_eigenvalu": 154, "get_energi": 154, "get_quantum_numb": 154, "get_gs_energi": 154, "get_vacuum_subspace_index": 154, "get_vacuum_st": 154, "c_connect": 154, "cdag_connect": 154, "c_matrix": 154, "cdag_matrix": 154, "op_linear_index": [155, 156, 157, 158, 593, 594, 595, 596, 614, 615, 616, 617], "sp_index": [155, 156, 157, 158, 160, 162, 163, 164, 172, 173, 176, 179, 593, 594, 595, 596, 598, 602, 603, 614, 615, 616, 617, 619, 623, 624], "connect": [155, 157, 170, 351, 352, 357, 359, 363, 515, 555, 570, 593, 595, 614, 616, 1849, 1873, 1877], "annihil": [155, 156, 159, 363, 572, 589, 591, 612, 1676, 1885, 1892, 1897], "matrix_t": [156, 158, 170], "dagger": [157, 158, 515, 572, 573, 575, 576, 1685, 1696, 1711, 1717, 1883, 1885, 1887, 1889, 1892, 1897], "qn_vector": [159, 589, 591, 612, 1885], "initializer_list": [159, 304, 523], "init_lst": 159, "uniniti": 159, "qr": [159, 589, 591, 612, 1885], "invari": [159, 160, 162, 173, 178, 179, 180, 190, 357, 358, 362, 363, 364, 500, 555, 573, 575, 607, 611, 628, 632, 1684, 1711], "chosen": [159, 463, 553, 564, 573, 1211, 1685, 1742, 1888, 1889, 1894], "met": [159, 352, 572, 589, 591, 612, 1700, 1701, 1702, 1876, 1880, 1885], "inner": [160, 182, 183, 184, 185, 186, 577, 598, 619, 860, 1699, 1723], "eigensystem": 161, "fock_state_t": [164, 342, 343, 346, 368, 379, 384, 391, 393, 394, 396, 399], "fock": [164, 175, 176, 325, 340, 342, 343, 346, 350, 360, 362, 365, 370, 381, 390, 391, 393, 394, 396, 399, 401, 402, 404, 555, 589, 591, 599, 609, 612, 620, 630, 1626, 1885], "ground": [168, 605, 626, 1903, 1908], "min": [168, 186, 515, 520, 605, 626, 1873, 1877, 1883, 1887], "monomial_t": [170, 572], "op_vec": 170, "monomi": [170, 354, 571, 574, 575, 1708], "canon": [170, 325, 572, 1883, 1887], "necessarili": 170, "op_block_mat_t": 171, "eigen": 171, "quantum_number_t": [172, 188, 189], "qn_index": 172, "qunatum": 172, "scalar_t": [175, 176, 190, 352, 572, 574, 594, 596, 615, 617, 642], "eigenst": [175, 176, 182, 183, 184, 185, 186, 188, 189, 500, 609, 630, 640, 641], "vacuum": [177, 178, 610, 611, 631, 632], "block_matrix_t": [181, 190, 634, 642, 1698, 1703], "temperatur": [181, 182, 183, 184, 185, 186, 187, 500, 544, 546, 547, 567, 570, 670, 709, 748, 787, 826, 877, 948, 1030, 1079, 1092, 1105, 1118, 1134, 1145, 1859, 1862, 1863, 1873, 1877, 1883, 1886, 1887, 1888, 1889, 1892, 1894, 1897, 1899, 1901, 1904, 1906, 1909], "gibb": 181, "gf_lehmann_t": [182, 183, 184, 185, 186], "gf_struct": [182, 183, 184, 185, 186, 245, 296, 329, 500, 635, 636, 637, 638, 875, 897, 1698, 1699, 1703, 1754, 1756, 1869, 1883, 1885, 1887, 1889, 1891, 1892, 1895, 1896, 1897], "mesh": [182, 183, 185, 186, 241, 242, 245, 251, 252, 254, 255, 257, 259, 260, 268, 271, 272, 283, 284, 300, 302, 311, 314, 316, 516, 518, 519, 520, 521, 524, 525, 531, 541, 542, 543, 544, 545, 546, 547, 548, 553, 650, 664, 665, 669, 670, 676, 684, 686, 698, 699, 703, 704, 708, 709, 715, 723, 725, 737, 738, 742, 743, 747, 748, 754, 762, 764, 776, 777, 781, 782, 786, 787, 793, 801, 803, 815, 816, 820, 821, 825, 826, 832, 840, 842, 854, 855, 875, 935, 942, 947, 948, 954, 962, 964, 976, 977, 1004, 1038, 1044, 1046, 1201, 1204, 1207, 1215, 1217, 1634, 1635, 1650, 1651, 1848, 1862, 1863, 1873, 1876, 1877, 1879, 1880, 1884, 1886, 1894, 1895, 1899, 1900, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "excluded_states_t": [182, 183, 184, 185, 186], "excluded_st": [182, 183, 184, 185, 186, 635, 636, 637, 638], "precomput": [182, 183, 185, 186, 509], "possibli": [182, 183, 185, 186, 553, 571, 635, 636, 637, 638, 1213, 1780, 1854], "none": [182, 183, 185, 186, 413, 489, 490, 492, 493, 498, 523, 529, 532, 544, 545, 546, 547, 548, 553, 559, 560, 561, 573, 575, 576, 579, 587, 635, 636, 637, 638, 653, 659, 660, 671, 687, 688, 689, 690, 691, 692, 693, 700, 710, 726, 727, 728, 729, 730, 731, 732, 739, 749, 765, 766, 767, 768, 769, 770, 771, 778, 788, 804, 805, 806, 807, 808, 809, 810, 817, 827, 843, 844, 845, 846, 847, 848, 849, 856, 942, 949, 965, 966, 967, 968, 969, 970, 971, 978, 997, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1017, 1037, 1038, 1059, 1070, 1083, 1096, 1109, 1122, 1128, 1138, 1149, 1157, 1169, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1211, 1215, 1591, 1626, 1627, 1632, 1646, 1647, 1663, 1666, 1684, 1685, 1693, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1744, 1760, 1762, 1763, 1778, 1780, 1806, 1819, 1832, 1835, 1838, 1840, 1854, 1873, 1877, 1879, 1886, 1887], "g_": [182, 183, 185, 186, 515, 541, 550, 676, 715, 754, 793, 832, 954, 1869, 1873, 1877, 1883, 1887, 1888, 1891, 1892, 1894, 1896, 1897, 1900, 1905], "ell": 183, "broaden": [186, 500, 638, 1876, 1880], "energy_window": [186, 638], "n_w": [186, 500, 638, 1154, 1873, 1876, 1877, 1879, 1880, 1883, 1884, 1887, 1894, 1900, 1905], "retard": [186, 542, 543, 549], "lorentian": 186, "omega_": [186, 520, 541, 1883, 1887], "max": [186, 449, 515, 517, 541, 1883, 1887], "suppos": [188, 189, 514, 1864], "density_matrix": [190, 544, 546, 642, 670, 709, 748, 787, 826, 948, 1890, 1895], "tr": [190, 642, 1903, 1907, 1908], "qmc": [191, 407, 428, 430, 431, 500, 585, 1869, 1873, 1877, 1889, 1891, 1892, 1895, 1896, 1897], "functiontyp": [192, 197, 199, 208, 209, 513], "get_singular_threshold": 192, "set_singular_threshold": 192, "get_n_operations_before_check": 192, "set_n_operations_before_check": 192, "get_precision_warn": 192, "set_precision_warn": 192, "get_precision_error": 192, "set_precision_error": 192, "get_x": [192, 513, 1861], "get_i": [192, 513, 1861], "get_x_internal_ord": [192, 207, 215], "get_y_internal_ord": 192, "get_funct": 192, "inverse_matrix": [192, 513, 1861], "inverse_matrix_internal_ord": 192, "swap_col": 192, "try_remov": [192, 219, 222, 513, 1861], "try_remove_k": 192, "try_change_col": [192, 193, 513], "try_change_row": [192, 194, 513], "try_refil": 192, "is_singular": 192, "reject_last_tri": 192, "insert_at_end": [192, 1861], "remov": [192, 238, 239, 480, 481, 498, 512, 513, 520, 525, 580, 1626, 1854, 1876, 1880, 1889, 1896], "roll_matrix": [192, 513], "try_insert_k": 192, "y_type": [193, 206, 207, 210, 211, 212, 213, 232, 233, 235, 236], "x_type": [194, 204, 205, 210, 211, 212, 213, 233, 234, 235, 236], "try_xxx": [196, 218, 223, 224], "init_s": [197, 513, 1861], "argumentcontainer1": [197, 237, 513], "argumentcontainer2": [197, 237, 513], "argumentcontain": 197, "resiz": [197, 251, 268, 292, 461, 522, 1861], "factor": [197, 450, 551, 1873, 1877, 1879, 1880, 1900, 1901, 1905, 1906], "happen": [197, 496, 498, 568, 1838, 1883, 1887, 1890, 1895, 1896], "det_typ": 198, "isnorm": [203, 216], "x_valu": [204, 205], "slow": [204, 206, 214, 217, 513, 1886, 1903, 1908], "sinc": [204, 206, 214, 217, 459, 500, 510, 513, 515, 516, 517, 519, 528, 536, 578, 1849, 1851, 1873, 1876, 1877, 1879, 1880, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "reorder": [204, 206, 214, 513], "intern": [205, 207, 215, 230, 231, 358, 519, 572, 1627, 1647, 1754, 1903, 1908], "permut": [205, 230, 231, 513], "critic": [205, 1849, 1890, 1891, 1895, 1896, 1901, 1903, 1906, 1908], "loop": [205, 509, 516, 531, 537, 543, 567, 570, 1778, 1869, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1904, 1907], "_internal_ord": 205, "y_valu": [206, 207, 1778], "col": [206, 214, 224, 230, 235, 236, 239, 513, 1873, 1877], "fg": [208, 209, 247, 248, 263, 264, 275, 276, 287, 288, 344, 345, 397, 398, 514], "subgroup_nam": [208, 209, 247, 248, 263, 264, 275, 276, 287, 288], "i0": [211, 220, 235, 236, 238, 239, 513, 1861], "i1": [211, 220, 236, 239, 513, 544, 545, 546, 547, 548, 1861], "j0": [211, 220, 235, 236, 239, 513, 1861, 1896], "j1": [211, 220, 236, 239, 513, 1861, 1896], "x0": [211, 212, 513, 531, 587, 1861], "x1": [211, 212, 508, 513, 532, 587, 1861], "y0": [211, 212, 513, 1861], "y1": [211, 212, 513, 532, 1861], "try_insert2": [211, 212, 513, 1861], "matrix_typ": [214, 217, 513], "matrix_const_view": 215, "singular_threshold": 216, "reject": [218, 417, 432, 564, 567, 568, 570], "try_remove2": [220, 221, 513, 1861], "new_n": 223, "new_k": 223, "bigger": [223, 1867, 1882, 1883, 1887, 1889, 1890, 1894, 1895], "preserv": [223, 256, 572], "rolldirect": [224, 513], "roll": [224, 513], "cyclic": [224, 1635, 1651], "nth": 224, "row": [224, 233, 234, 235, 236, 238, 239, 513, 557, 1065, 1077, 1598, 1605, 1610, 1666, 1861], "down": [224, 500, 551, 555, 560, 567, 575, 576, 577, 860, 875, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1869, 1873, 1876, 1877, 1879, 1880, 1883, 1885, 1887, 1889, 1890, 1891, 1892, 1895, 1896, 1897], "modif": [224, 232, 233, 234, 235, 236, 237, 238, 239, 526, 568, 1854, 1910], "try_rol": 224, "uint64_t": 225, "threshold": [226, 227, 228, 301, 575, 1712], "get_is_singular_threshold": 228, "swap": [230, 231, 521], "column": [232, 233, 235, 236, 512, 513, 559, 573, 653, 891, 1693, 1873, 1877], "ratio": [232, 233, 234, 235, 236, 237, 238, 239, 435, 513, 564, 567, 568, 570, 1861], "minv_new": [232, 233, 234, 235, 236, 237, 238, 239], "minv": [232, 233, 234, 235, 236, 237, 238, 239], "x_i": [235, 236, 237, 512, 550, 583, 906], "y_": [235, 236, 502, 506, 507, 508, 510], "x_": [235, 236, 502, 506, 507, 508, 510, 583], "x_j": [235, 236], "resp": [235, 528], "becom": [235, 493, 496, 520, 568, 1892, 1897, 1900, 1903, 1905, 1908], "colum": [236, 512], "refil": 237, "y_i": [237, 512], "colj0": 238, "impl_tag": 240, "make_block_gf": [240, 523], "make_block_gf_view": [240, 523], "make_block2_gf": 240, "reinterpret_scalar_valued_gf_as_matrix_valu": [240, 521, 534], "is_gf_real": [240, 527], "make_gf_from_real_gf": 240, "make_gf_dlr": [240, 1883, 1887], "fit_gf_dlr": [240, 935], "make_gf_dlr_imtim": [240, 1883, 1887], "make_gf_dlr_imfreq": 240, "make_gf_imtim": [240, 1883, 1887], "make_gf_imfreq": [240, 1883, 1887], "tau_l2_norm": 240, "flatten_2d": [240, 322], "unflatten_2d": 240, "flatten_gf_2d": [240, 323], "unflatten_gf_2d": 240, "ctad": 241, "ariti": [242, 245, 251, 317], "hdf5_format": [242, 259, 271, 283, 340, 390, 463], "block_names_t": [243, 245], "isconst2": 245, "block_gf_const_view": [245, 254, 255, 317, 523], "g_t": [245, 254, 255, 553, 1213], "bl_size": 245, "anyth": [245, 251, 268, 272, 507, 522, 531, 537, 560, 561, 568, 570, 587, 650, 1762, 1832, 1874, 1878], "blockgreenfunct": 245, "16": [245, 255, 449, 500, 502, 510, 541, 1873, 1875, 1877, 1879, 1881, 1887, 1892, 1897, 1903, 1905, 1908], "this_t": [247, 248, 263, 264, 267, 275, 276, 279, 287, 288, 291, 531], "const_view_typ": [250, 251, 255], "view_typ": [250, 521, 524], "non": [250, 280, 358, 363, 365, 381, 383, 491, 494, 496, 510, 518, 531, 542, 553, 555, 556, 561, 575, 935, 1210, 1212, 1217, 1754, 1760, 1840, 1859, 1873, 1877, 1879, 1883, 1887, 1888, 1889, 1890, 1894, 1895, 1901, 1903, 1906, 1908, 1909], "side": [251, 268, 502, 517, 541, 676, 715, 754, 793, 832, 954, 1899, 1902, 1903, 1904, 1907, 1908], "tbw": [251, 268], "dcomplex": [252, 519, 541, 562, 672, 673, 674, 675, 687, 688, 711, 712, 713, 714, 726, 727, 750, 751, 752, 753, 765, 766, 789, 790, 791, 792, 804, 805, 828, 829, 830, 831, 843, 844, 950, 951, 952, 953, 965, 966, 996, 998, 999, 1000, 1001, 1005, 1006, 1615, 1633, 1649], "array_const_view": [252, 255, 519, 673, 675, 687, 688, 712, 714, 726, 727, 751, 753, 765, 766, 790, 792, 804, 805, 829, 831, 843, 844, 951, 953, 965, 966, 999, 1001, 1005, 1006], "tail": [252, 254, 255, 316, 521, 528, 533, 535, 541, 542, 543, 545, 551, 552, 553, 672, 673, 674, 675, 687, 688, 711, 712, 713, 714, 726, 727, 750, 751, 752, 753, 765, 766, 789, 790, 791, 792, 804, 805, 828, 829, 830, 831, 843, 844, 935, 950, 951, 952, 953, 965, 966, 998, 999, 1000, 1001, 1005, 1006, 1216, 1873, 1877], "w_max": [253, 355, 360, 370, 381, 986, 1079, 1092, 1105, 1154, 1883, 1887, 1900, 1905], "ep": [253, 553, 559, 560, 645, 646, 986, 1079, 1092, 1105, 1187, 1211, 1215, 1880, 1883, 1886, 1887], "dlr": [253, 306, 307, 308, 312, 313, 321, 697, 736, 775, 814, 853, 935, 975, 986, 987, 988, 989, 991, 992, 1012, 1079, 1087, 1088, 1089, 1092, 1105], "typenameg": [254, 255], "regular_typ": [254, 255, 297, 314, 315, 319, 490, 521], "bg": [254, 255, 523], "typenamebg": [254, 255], "impos": [254, 451, 553, 581, 1213, 1869], "ag": [254, 255], "frequeci": [254, 255], "iomanip": [254, 255], "namespac": [254, 255, 260, 316, 450, 454, 457, 459, 461, 482, 483, 484, 485, 493, 499, 500, 502, 506, 507, 508, 510, 516, 519, 523, 525, 527, 528, 529, 531, 532, 533, 535, 541, 555, 572, 587, 1860, 1862, 1863, 1864, 1867], "iw_": [254, 255, 541, 1862], "100": [254, 255, 316, 450, 454, 457, 461, 500, 513, 516, 527, 532, 533, 535, 541, 547, 559, 563, 567, 569, 649, 650, 693, 732, 771, 810, 849, 935, 971, 1011, 1187, 1666, 1861, 1862, 1869, 1882, 1883, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1903, 1904, 1905, 1906, 1907, 1908], "err": [254, 255, 483, 484, 541, 935], "setprecis": [254, 255], "ntail": [254, 255], "ba": 255, "dimension": [256, 499, 517, 553, 563, 567, 580, 1217, 1666, 1699, 1849, 1859, 1892, 1897, 1899, 1904, 1909], "whose": [256, 497, 506, 523, 1626, 1838, 1902, 1907], "flatten": [256, 257, 517, 532, 539, 587, 700, 739, 778, 817, 856, 978], "tensor": [257, 521, 573, 574, 1682, 1684, 1685, 1862, 1901, 1906], "definit": [259, 271, 283, 461, 496, 498, 500, 517, 521, 551, 556, 558, 570, 573, 579, 586, 1685, 1850, 1902, 1907], "data_shap": [259, 271, 283], "target_indic": [259, 271, 283], "mesh_t": [260, 266, 272, 278, 284, 290, 517, 521, 524, 525, 526, 537], "dat": [260, 272, 284, 525, 553, 1217, 1663, 1667, 1848, 1873, 1874, 1877, 1878, 1879, 1882], "target_shape_t": [260, 521, 523, 525], "deep": [260, 490, 551, 667, 706, 745, 784, 823, 862, 879, 945, 1016, 1047, 1048], "concept_greenfunct": 260, "arrrai": 260, "g2": [260, 262, 274, 286, 527, 528, 532, 543, 551, 860, 863, 880, 1862, 1863], "g1": [260, 262, 274, 286, 523, 527, 528, 532, 543, 551], "gf_assign_0": 268, "arraytyp": [272, 284], "THERE": 292, "behaviour": [292, 490, 493, 496, 551, 1900, 1901, 1903, 1905, 1906, 1908], "real_t": [297, 319], "blockgf": [297, 319, 542, 547, 549, 553, 935, 1210, 1211, 1215, 1217, 1883, 1887], "fullfil": [300, 314, 553, 1210], "epsilon": [300, 302, 559, 560, 563, 645, 646, 650, 653, 655, 1873, 1877, 1879, 1880, 1883, 1886, 1887, 1889, 1892, 1897, 1899, 1900, 1904, 1905], "depend": [300, 314, 493, 502, 506, 520, 521, 525, 543, 583, 589, 1664, 1850, 1855, 1856, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1887, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "frac": [300, 314, 315, 480, 481, 487, 513, 514, 515, 520, 527, 539, 540, 541, 550, 552, 553, 564, 570, 573, 575, 576, 580, 583, 916, 929, 1211, 1685, 1700, 1701, 1709, 1710, 1711, 1716, 1719, 1862, 1873, 1877, 1883, 1886, 1887, 1888, 1889, 1890, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "iif": [300, 301, 302, 496, 498, 510, 564, 1018], "hold": [300, 302, 458, 460, 1873, 1877, 1883, 1886, 1887, 1903, 1908], "g0": [305, 935, 1869, 1886, 1887, 1888, 1891, 1892, 1894, 1895, 1896, 1897], "block_gf_view_of": 305, "omega_n": [311, 515, 520, 527, 539, 553, 580, 700, 739, 778, 817, 856, 891, 978, 1211, 1215, 1869, 1873, 1877, 1883, 1886, 1887, 1888, 1889, 1890, 1891, 1894, 1895, 1896, 1899, 1902, 1903, 1904, 1907, 1908], "half": [311, 543, 555, 917, 930, 932, 1869, 1883, 1887, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1900, 1903, 1905, 1908], "rightarrow": [314, 315, 550, 564, 580, 650, 907, 910, 1873, 1877, 1879, 1883, 1886, 1887, 1890, 1895, 1900, 1901, 1903, 1905, 1906, 1908], "zeroth": [316, 541, 1903, 1908], "empty_tail": 316, "isconst": 317, "world": [317, 484, 485, 499, 567, 570, 1849, 1879, 1881], "sens": [317, 354, 517, 519, 524, 543, 570], "view_or_type_t": 318, "decay_t": 318, "l2": [321, 576, 697, 736, 775, 814, 853, 935, 975, 1012, 1714, 1881], "norm": [321, 553, 697, 736, 775, 814, 853, 935, 975, 1012, 1211, 1886], "memoryarrai": 322, "afl": 322, "gfl": 323, "hilbertspac": [324, 356, 365], "scalartyp": [324, 351, 354, 355, 356, 365, 572], "space_partit": [324, 555], "make_zero_st": [324, 365, 556], "arbitrarili": [325, 572], "mix": [325, 1865], "insert_from_indices_t": 325, "has_indic": 325, "h5_write_attribut": 325, "h5_read_attribut": 325, "fundamental_operator_set_begin": 327, "__wrap_it": [328, 331], "fundamental_operator_set_end": 328, "indextyp": [329, 335, 572], "indices_t": [330, 334, 336, 338, 342, 572, 574], "obj": [332, 333, 497, 502, 510, 1726, 1727, 1728], "attach": [332, 333], "ind": [335, 336, 572], "anoth": [337, 348, 349, 365, 374, 375, 386, 387, 401, 402, 443, 459, 502, 506, 517, 543, 551, 572, 573, 575, 576, 577, 583, 668, 707, 746, 785, 824, 946, 1048, 1696, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1835, 1864, 1873, 1877, 1883, 1887, 1907], "span": [340, 539], "has_stat": [340, 390], "get_state_index": [340, 390], "dummi": [341, 368, 379, 509], "parent": [344, 345, 397, 398], "belong": [346, 360, 362, 368, 379, 399, 517], "scheme": [347, 400, 496, 543, 549, 551, 568, 1881, 1883, 1887, 1892, 1897], "inequ": [348, 401], "total": [350, 404, 422, 452, 463, 464, 500, 561, 567, 570, 576, 698, 737, 776, 815, 854, 892, 976, 1667, 1717, 1718, 1742, 1744, 1758, 1765, 1873, 1877, 1879, 1889, 1896], "hilberttyp": 351, "usemap": [351, 352], "is_empti": 351, "hilbert_map_t": 352, "hmap": 352, "sub_spaces_set": 352, "nullptr": 352, "statetyp": [354, 357, 358, 360], "psi": 354, "phi": [354, 580], "coeff": [354, 1896], "basedonmap": [356, 365], "amplitud": [356, 365, 366, 368, 370, 372, 378, 379, 381, 383, 384, 500, 555, 1664, 1886, 1899, 1901, 1903, 1904, 1906, 1908], "operatortyp": [357, 358, 360], "action": [357, 498, 509, 555], "march": 357, "284": 357, "statevector_concept": [357, 365], "merge_subspac": 357, "lookup_basis_st": 357, "get_matrix_el": 357, "find_map": [357, 555], "state_t": [358, 555], "operator_t": [358, 359, 363], "store_matrix_el": [358, 363], "block_mapping_t": 359, "diagonal_onli": 359, "subject": [359, 360, 363, 473], "sp": [360, 1877, 1903, 1908], "matrix_element_map_t": [361, 363], "idx_t": [362, 364], "basis_st": 362, "ii": [363, 576, 1716], "get_hilbert": [366, 378], "set_hilbert": [366, 378], "dot_product": [366, 378, 555, 556], "amplitude_t": 367, "uniti": [368, 379, 1886, 1902, 1907], "s1": [369, 380], "s2": [369, 374, 375, 380, 386, 387, 576, 1718], "constant": [371, 372, 376, 382, 384, 388, 466, 509, 556, 572, 935, 1745, 1873, 1876, 1877, 1879, 1880, 1903, 1908], "individu": [372, 384, 556, 697, 736, 775, 814, 853, 975, 1012, 1883, 1887, 1889], "subtract": [375, 387, 556, 572, 1778, 1873, 1876, 1877, 1879, 1880, 1903, 1908], "new_h": [376, 388], "reset": [376, 388, 463, 464, 517, 1744], "huge": 378, "nterm": 378, "carri": [390, 537, 555, 572], "destinguish": 390, "add_fock_st": [390, 555], "get_all_fock_st": 390, "get_index": 390, "set_index": 390, "iff": [401, 402, 478], "random_gener": [405, 421, 438, 567, 569, 570, 582], "mc_gener": [405, 564, 565, 567, 568, 569, 570], "random_generator_nam": [405, 569], "mcsigntyp": [406, 408, 425, 426, 427, 430, 431, 432, 433, 438], "tbr": 406, "add_mov": [406, 567, 569, 570], "add_measur": [406, 427, 567, 570], "add_measure_aux": 406, "rm_measur": 406, "clear_measur": 406, "set_after_cycle_duti": 406, "warmup_and_accumul": [406, 564, 567, 570], "get_acceptance_r": [406, 432], "get_perc": 406, "get_rng": [406, 567, 569, 570], "get_current_cycle_numb": 406, "get_config_id": 406, "get_dur": 406, "get_total_tim": 406, "get_warmup_tim": 406, "get_warmup_time_hhmmss": 406, "get_accumulation_tim": 406, "get_accumulation_time_hhmmss": 406, "int64_t": [407, 420, 428, 430, 431], "n_accumulation_cycl": [407, 431], "length_cycl": [407, 428, 430, 431, 567, 568, 569, 570, 1869, 1873, 1877, 1889, 1892, 1897], "cycl": [407, 418, 428, 429, 430, 431, 568, 570, 1869, 1873, 1877, 1889, 1890, 1891, 1892, 1895, 1896, 1897], "typic": [407, 428, 430, 431, 491, 494, 496, 498, 517, 525, 569, 1780, 1803], "measuretyp": 408, "measure_set": [408, 427], "measure_itr_t": [408, 427], "enable_tim": 408, "report_measur": 408, "measureauxtyp": 409, "shared_ptr": [409, 491], "common": [409, 449, 543, 565, 581, 661, 662, 1850, 1883, 1886, 1887, 1888, 1894], "WILL": 409, "movetyp": [410, 434], "proposition_prob": [410, 432, 434], "probabl": [410, 434, 435, 440, 448, 486, 503, 564, 568, 1751, 1882, 1890, 1895, 1903, 1908], "precondit": [410, 587], "random_nam": [413, 567, 569, 570], "random_se": [413, 567, 569, 570], "rethrow_except": 413, "seed": [413, 443, 569, 570, 582, 1663, 1873, 1877, 1879, 1880], "tba": 413, "whether": [413, 428, 570, 575, 577, 1079, 1092, 1105, 1664, 1711, 1723, 1780, 1833, 1836, 1837, 1838, 1842, 1858, 1873, 1877, 1903, 1908], "rate": [414, 439, 1877, 1889, 1896], "name_of_the_mov": 414, "spent": [415, 416, 423, 424], "minut": [416, 424, 570, 1876, 1880], "visit": [417, 1849], "durat": [419, 1877, 1879], "percent": [420, 541], "mc": [425, 426, 564, 567, 570, 1873, 1877, 1879, 1889], "deregist": 427, "do_measur": 428, "n_warmup_cycl": [430, 431, 567, 568, 569, 570, 1869, 1873, 1877, 1889, 1891, 1892, 1895, 1896, 1897], "sign_init": [430, 431], "weight": [430, 431, 435, 547, 1037, 1038, 1873, 1874, 1877, 1878, 1879, 1880, 1883, 1887, 1890, 1895], "collect_statist": 432, "get_statist": 432, "tri": [433, 570, 1023], "pick": [435, 567, 1191], "proposit": 435, "metropoli": [435, 564, 568, 570], "acceptance_r": 439, "decal": 440, "pretti": [440, 1883, 1887], "eras": [442, 508], "buffer": 442, "1000": [442, 519, 528, 543, 544, 547, 550, 551, 579, 580, 1768, 1778, 1883, 1884, 1887, 1890, 1892, 1894, 1895, 1897], "preview": 442, "randomgeneratornam": 443, "uint32_t": 443, "seed_": 443, "mt19937": [443, 569, 582], "mersenn": [443, 569, 570], "twister": [443, 569, 570], "enable_if": [445, 510], "is_integr": 445, "sep": 447, "analyz": [448, 449, 583, 1866, 1890, 1895], "mean_mpi": 448, "mean_and_err": [448, 484], "mean_and_err_mpi": 448, "tau_estimate_from_error": 448, "resampl": [448, 480, 481, 583], "jackknife_mpi": 448, "cdf": 448, "cumul": [448, 462, 1750], "consecut": [449, 1873, 1877], "autocorrel": 449, "grow": [449, 1903, 1908], "satur": 449, "power": [449, 455, 456, 578, 1859, 1870, 1882, 1883, 1887], "ldot": [449, 480, 481, 575, 583, 1708], "underestim": 449, "ergod": 449, "cost": [449, 581, 1890, 1895], "advis": [449, 1864], "correctli": [449, 451, 1873, 1876, 1877, 1880], "At": [449, 568, 570, 572, 1892, 1897, 1901, 1903, 1906, 1908], "larger": [449, 1873, 1877, 1879, 1890, 1895, 1896], "n_log_bins_max": [449, 451, 459], "n_log_bin": 449, "n_lin_bins_max": [449, 451, 457], "n_lin_bin": [449, 453], "lin_bin_capac": [449, 450, 451], "capac": [449, 450, 451, 453, 455, 456, 457, 459], "log_bin_error": 449, "log_bin_errors_all_reduc": 449, "data_input_count": 449, "linear_bin": [449, 450], "compress_linear_bin": 449, "compression_factor": 450, "scale": [450, 500, 1873, 1877, 1882, 1883, 1887, 1889, 1894, 1897, 1903, 1908], "noth": [450, 498, 521, 523, 567, 568, 570, 940, 1813, 1832, 1854], "my_acc": [450, 454, 457, 459], "data_inst": 451, "requisit": 451, "wise": [451, 483, 484, 487], "manner": 451, "texttt": 451, "unbound": 451, "soon": [451, 508, 509, 570, 580], "caus": [451, 575, 1711, 1838, 1903, 1908], "reach": [451, 453, 459, 560, 570, 1778, 1883, 1887, 1890, 1895], "next": [453, 517, 547, 570, 572, 1780, 1854, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1892, 1897], "loss": 453, "deduc": [455, 456, 482, 483, 484, 485, 490, 517, 520, 544, 572, 587, 1889], "activ": [457, 459, 1841, 1844, 1850, 1852, 1854, 1855], "accumulatotr": [457, 459], "2nd": [457, 513, 573, 1693], "3rd": [457, 513, 573, 1693], "halfwai": 457, "my_acc_no_lin": 457, "maxmimum": 459, "my_acc_no_log": 459, "lin_bin_s": 461, "log_bin_s": 461, "might": [461, 508, 570, 1850, 1855, 1875, 1879, 1890, 1895], "els": [461, 478, 498, 1017, 1832, 1881], "my_accumulator_d": 461, "my_measurement_d": 461, "my_array_inst": 461, "my_accumulator_a": 461, "my_measurement_a": 461, "normalis": [462, 486, 1750, 1751], "track": [463, 1742, 1849], "lost": [463, 1742, 1850], "lie": [463, 1742], "outsid": [463, 527, 528, 533, 535, 1742, 1883, 1887], "n_data_pt": 463, "n_lost_pt": 463, "discard": [463, 464, 475, 476, 1744, 1749], "mpi_broadcast": 463, "n_bin": [465, 1892, 1897], "enclos": [467, 468], "dataset": [467, 468, 551, 1884], "n_": [471, 520, 563, 567, 570, 572, 575, 1709, 1710, 1747, 1889, 1891, 1892, 1896, 1897, 1902, 1903, 1907, 1908], "mathrm": [471, 480, 481, 550, 563, 572, 1747, 1883, 1887, 1888, 1889, 1892, 1894, 1895, 1897, 1906], "send": [473, 543, 551, 572], "h1": 476, "h2": 476, "sum": [476, 503, 504, 511, 558, 559, 570, 572, 575, 587, 645, 996, 1708, 1754, 1760, 1873, 1875, 1876, 1877, 1879, 1880, 1888, 1894, 1900, 1902, 1903, 1905, 1907, 1908], "incompat": [476, 544, 545, 546, 547, 548, 664, 703, 742, 781, 820], "summat": [476, 1873, 1877, 1879, 1880], "langl": [480, 481, 515, 573, 1687, 1883, 1887, 1900, 1902, 1903, 1905, 1907, 1908], "mathbf": [480, 481, 515, 560, 563, 576, 655, 1715, 1719, 1877, 1886, 1892, 1897, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908], "rangl": [480, 481, 515, 573, 1687, 1883, 1887, 1900, 1902, 1903, 1905, 1907, 1908], "jacknif": [480, 481, 583], "a_1": [480, 481, 520], "a_2": [480, 481, 520], "a_3": [480, 481], "four": [480, 481, 573, 1684, 1685, 1689, 1691, 1694, 1696, 1889, 1896, 1901, 1906], "f_": [480, 481, 520], "tild": [480, 481, 515, 520], "bar": [480, 481, 510, 573, 575, 583, 1684, 1709, 1710, 1740, 1873, 1877, 1879, 1880, 1889, 1895, 1900, 1905], "quad": [480, 481, 576, 580, 1719], "sum_": [480, 481, 515, 520, 541, 552, 553, 563, 573, 575, 576, 583, 676, 715, 754, 793, 832, 954, 1211, 1215, 1685, 1686, 1700, 1701, 1702, 1709, 1710, 1711, 1716, 1717, 1719, 1883, 1887, 1889, 1891, 1892, 1896, 1897, 1900, 1902, 1903, 1905, 1907, 1908], "bia": [480, 481], "errror": [480, 481], "_j": [480, 481], "sqrt": [480, 481, 483, 484, 515, 520, 547, 550, 553, 573, 576, 929, 1211, 1687, 1716, 1892, 1897], "cdot": [480, 481, 515, 563, 576, 1715, 1883, 1887], "sigma_f": [480, 481], "deviat": [480, 481, 541, 1903, 1908], "addabl": [482, 483, 484, 485], "mean_error": [482, 483, 484, 485], "spread": [484, 485, 1851], "error_with_bin": 487, "error_no_bin": 487, "delta_n": 487, "delta_0": 487, "wrap_gener": [489, 490, 493], "calling_pattern": [489, 490, 493], "no_self_c": [489, 490], "is_constructor": 489, "is_method": [489, 490], "is_stat": [489, 490], "release_gil_and_enable_sign": [489, 490, 493], "c_name": [489, 490, 493], "py_typ": 490, "c_type": [490, 493], "c_type_absolut": 490, "is_print": 490, "add_cal": 490, "kw": [490, 544, 545, 546, 547, 548, 664, 665, 671, 672, 673, 674, 675, 681, 682, 686, 687, 688, 689, 690, 691, 692, 693, 697, 703, 704, 710, 711, 712, 713, 714, 720, 721, 725, 726, 727, 728, 729, 730, 731, 732, 736, 742, 743, 749, 750, 751, 752, 753, 759, 760, 764, 765, 766, 767, 768, 769, 770, 771, 775, 781, 782, 788, 789, 790, 791, 792, 798, 799, 803, 804, 805, 806, 807, 808, 809, 810, 814, 820, 821, 827, 828, 829, 830, 831, 837, 838, 842, 843, 844, 845, 846, 847, 848, 849, 853, 901, 902, 918, 919, 942, 943, 949, 950, 951, 952, 953, 959, 960, 964, 965, 966, 967, 968, 969, 970, 971, 975, 1887], "__call__": [490, 560], "add_method": 490, "add_constructor": 490, "intermediate_typ": 490, "defaut": [490, 493], "rtype": [490, 493, 580], "arg1": [490, 493], "name1": [490, 493], "arg2": [490, 493], "name2": [490, 493], "default2": [490, 493], "omit": [490, 493], "dict": [490, 493, 496, 498, 551, 562, 575, 576, 577, 580, 882, 896, 935, 984, 1201, 1611, 1627, 1647, 1667, 1699, 1700, 1701, 1702, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1740, 1886], "variable_nam": [490, 493], "default_valu": [490, 493], "expert": [490, 493, 523], "add_getitem": 490, "__getitem__": 490, "add_iter": 490, "c_cast_typ": 490, "cast_typ": 490, "add_len": 490, "len": [490, 498, 500, 563, 700, 739, 778, 817, 856, 978, 1666, 1848, 1873, 1877, 1879, 1880, 1900, 1902, 1903, 1905, 1907, 1908], "add_memb": 490, "py_nam": 490, "read_onli": 490, "boolean": [490, 493, 575, 576, 577, 1201, 1664, 1674, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1833], "self_c": [490, 493], "method_nam": [490, 493], "pure": [490, 493, 517, 1023], "gil": [490, 493], "handler": [490, 493], "signal_handl": [490, 493], "intercept": [490, 493, 1903, 1908], "ctrl": [490, 493, 1881], "requir": [490, 491, 493, 494, 499, 500, 517, 519, 520, 562, 572, 1611, 1632, 1850, 1853, 1854, 1858, 1867, 1869, 1883, 1886, 1887, 1890, 1895, 1902, 1907], "whatsoev": [490, 493], "indirectli": [490, 493], "add_method_copi": 490, "clone_funct": 490, "make_clon": 490, "add_method_copy_from": 490, "copy_from": [490, 551], "add_method_cpp_copi": 490, "sh_copi": 490, "ordinari": [490, 510, 1886], "add_properti": 490, "getter": 490, "setter": 490, "add_regular_type_convert": 490, "add_setitem": 490, "__setitem__": [490, 543], "deduce_inplace_arithmet": 490, "trivial": [491, 531, 539], "quit": [491, 522, 1858, 1873, 1877, 1881, 1882, 1883, 1887, 1891, 1895, 1896], "semant": [491, 507, 556, 1839], "while": [491, 494, 499, 502, 508, 509, 515, 570, 580, 1664, 1849, 1854, 1861, 1873, 1877, 1883, 1885, 1887, 1889, 1892, 1895, 1897, 1899, 1900, 1904, 1905], "triqss": [491, 543, 551], "entir": [491, 1833, 1899, 1901, 1904, 1906], "additionn": [491, 585], "magic": 491, "cell": [491, 557, 562, 563, 1598, 1601, 1611, 1627, 1638, 1647, 1654, 1667, 1858, 1873, 1875, 1877, 1879, 1886, 1890, 1892, 1895, 1896, 1897], "module_": [491, 495, 1864], "cfunction": [491, 495], "class_": [491, 495], "functionn": 492, "distinguish": [492, 517, 1860], "Its": [492, 503, 563, 568, 1833], "abl": [492, 570, 581, 1850, 1854, 1855, 1873, 1874, 1877, 1878], "add_class": 493, "cl": [493, 497, 498, 896, 982, 984, 1052], "add_convert": 493, "conv": 493, "add_enum": 493, "c_namespac": 493, "enum": [493, 530], "add_funct": 493, "add_import": 493, "lst": 493, "add_preambl": 493, "preambl": 493, "add_us": 493, "generate_cod": [493, 1864], "sy": [493, 581, 1848, 1873, 1875, 1876, 1877, 1879, 1880], "oppos": 493, "2py": [494, 1850, 1857, 1858, 1864], "fig": [494, 1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1892, 1894, 1897], "png": [494, 1907], "abc_desc": 494, "_document": 494, "remark": 494, "scratch": 494, "libclang": [494, 1850, 1856, 1857], "hierarch": 496, "v5": 496, "portabl": [496, 543, 551, 1884], "irrespect": 496, "dump": 496, "glimps": 496, "hdf": [496, 551], "compliant": [496, 1851], "intuit": [496, 1881], "hdfarchiv": [496, 497, 500, 581, 1848, 1869, 1873, 1875, 1876, 1877, 1879, 1880, 1884, 1891, 1892, 1895, 1896, 1897, 1899, 1902, 1904, 1905, 1906, 1907], "wide": [496, 1851], "machin": [496, 1850, 1855, 1856, 1874, 1878, 1883, 1887, 1891, 1896, 1907], "32": [496, 935, 1879, 1887, 1896, 1899, 1900, 1903, 1904, 1905, 1906, 1908], "bit": [496, 527, 579, 580, 586, 587, 1895], "64": [496, 1903, 1905, 1908], "oss": 496, "langag": 496, "f90": 496, "ti": 496, "explor": [496, 497, 1874, 1878], "tree": [496, 498, 506, 507, 1023, 1850], "unix": [496, 1850], "shell": [496, 573, 1683, 1685, 1688, 1690, 1692, 1850, 1852, 1855, 1870, 1877, 1880, 1884, 1890, 1895], "h5l": [496, 1884], "henc": [496, 522, 524, 551, 581, 586, 587, 1632, 1869, 1873, 1877, 1888, 1894, 1900, 1903, 1905, 1908], "compact": [496, 513, 532, 1884], "extent": [496, 1054, 1067, 1071, 1907], "speak": [496, 507], "dictionari": [496, 497, 498, 551, 563, 574, 580, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1627, 1647, 1667, 1699, 1700, 1701, 1702, 1832, 1873, 1877, 1884, 1889], "undesir": 496, "thought": [496, 551], "leav": [496, 507, 580, 1873, 1877], "rectangular": 496, "subtre": [496, 498, 506], "natur": [496, 517, 523, 537, 543, 1873, 1877, 1883, 1887], "group1": 496, "subgroup2": 496, "leaf1": 496, "hereaft": [496, 521, 1850], "reversibli": 496, "hdfarchivegroup": [496, 497], "get_raw": [496, 498], "create_group": [496, 498, 581, 1848, 1873, 1877], "is_group": [496, 498], "is_data": [496, 498], "read_attr": [496, 498], "root_path": [496, 498], "apply_on_leav": [496, 498], "register_class": [496, 497, 498], "reconstruct": [497, 498, 547, 1883, 1887], "__reduce_to_dict__": [497, 498], "__factory_from_dict__": [497, 896, 984], "classmethod": 497, "def": [497, 547, 563, 580, 587, 1881, 1886, 1888, 1894, 1895, 1902, 1903, 1907, 1908], "__init__": [497, 544, 545, 546, 547, 548, 1864, 1881, 1885, 1888, 1894, 1895], "myclass": [497, 498], "myfile2": 497, "56": [497, 1896], "ob": [497, 1732, 1873, 1876, 1877, 1879, 1880], "root_of_h": 497, "hdf5_data_schem": [497, 498], "rebuilt": 497, "search": [497, 1768, 1849, 1850, 1852, 1858], "offer": [498, 516, 1870], "shelv": [498, 542, 549], "myfil": [498, 543, 551], "subgroup1": 498, "apart": 498, "fact": [498, 507, 520, 568, 580, 586, 587, 1731, 1899, 1903, 1904, 1908], "open_flag": 498, "key_as_string_onli": 498, "reconstruct_python_object": 498, "keyerror": 498, "shortcut": 498, "iterkei": 498, "coupl": [498, 558, 567, 573, 576, 1683, 1684, 1685, 1690, 1715, 1849, 1860, 1861, 1862, 1873, 1876, 1877, 1880, 1895], "hfd": 498, "leaf": 498, "attributenam": 498, "good": [498, 570, 1870, 1873, 1877, 1883, 1887, 1890, 1895], "practiv": 498, "cluster": [498, 570, 1626, 1630, 1850, 1855, 1892, 1897], "inert": 498, "is_master_nod": [498, 1848, 1892, 1897], "_hdf5_data_scheme_": 498, "__name__": 498, "reread": [498, 512], "composit": [499, 532], "sendbuf": 499, "recvbuf": 499, "id": [499, 1840], "transmit": 499, "Such": [499, 502], "much": [499, 1876, 1880, 1883, 1887, 1895], "prone": 499, "simplifc": 499, "signific": [499, 507], "sendcount": 499, "sendtyp": 499, "recvcount": 499, "recvtyp": 499, "contiguo": 499, "multidimension": [499, 532, 1859, 1870], "across": [499, 1664, 1873, 1877, 1901, 1906], "adress": 499, "someth": [499, 507, 510, 516, 519, 523, 527, 586, 1874, 1876, 1878, 1880], "emploi": 499, "metaprogram": 499, "unecessari": [499, 1876, 1880], "copyi": 499, "web": [499, 1849, 1850, 1859, 1866, 1874, 1878], "allreduc": 499, "allgath": 499, "analogu": 499, "nativ": [499, 1840], "declar": [499, 507, 509, 570, 572, 587], "preceed": 500, "suppli": 500, "fashion": 500, "equilibrium": 500, "thermal": [500, 568, 1873, 1877, 1889, 1903, 1908], "prove": [500, 1903, 1908], "expans": [500, 515, 519, 527, 528, 529, 535, 541, 543, 550, 551, 552, 553, 556, 1213, 1859, 1883, 1887], "ct": [500, 1859, 1873, 1877], "hubbard": [500, 555, 573, 575, 1683, 1684, 1685, 1690, 1849, 1859, 1871, 1873, 1877, 1879, 1883, 1887, 1901, 1902, 1906, 1907], "nca": 500, "substitut": [500, 1902, 1907], "spin_nam": [500, 575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1723, 1895], "sn": 500, "n_up": [500, 555], "n_dn": [500, 555], "uprim": [500, 573, 575, 1684, 1691, 1709, 1710], "j_hund": [500, 573, 575, 1683, 1684, 1685, 1690, 1710], "1j": [500, 547, 579, 1881, 1886], "c_dag": [500, 555, 572, 1885, 1889, 1892, 1896, 1897], "28": [500, 1877, 1887, 1889, 1896, 1897, 1899], "dm": 500, "occup": [500, 575, 1708, 1873, 1877, 1879, 1880, 1890, 1895, 1902, 1903, 1907, 1908], "g_w": [500, 1863, 1887, 1894], "400": 500, "01": [500, 547, 1873, 1877, 1882, 1883, 1886, 1887, 1894, 1896, 1899, 1904, 1907, 1908], "g_tau": [500, 986, 987, 1889, 1892, 1896, 1897], "g_l": [500, 553, 1213, 1892, 1897], "20": [500, 511, 560, 580, 935, 1856, 1860, 1867, 1873, 1877, 1879, 1882, 1883, 1887, 1888, 1889, 1892, 1894, 1896, 1897, 1907], "later": [500, 1854, 1867, 1873, 1877, 1883, 1884, 1885, 1887, 1900, 1901, 1905, 1906], "atom_diag_exampl": 500, "flip": [500, 567, 570, 1891, 1896], "anomal": 500, "difer": 500, "polynomi": [500, 517, 521, 529, 542, 543, 549, 553, 1145, 1213, 1849], "indirect": 500, "g_tau_ind": 500, "g_iw_ind": 500, "g_l_ind": 500, "g_w_ind": 500, "some_expression_of_x_": 502, "i_": [502, 507, 509, 1860, 1883, 1887], "some_expression_of_i_": 502, "j_": [502, 509, 567, 573, 1684, 1860], "some_expression_of_x_i_j": 502, "cours": [502, 507, 543, 585, 1860, 1884, 1899, 1904], "lh": [502, 516, 519], "rewritten": [502, 515, 1859], "triqs_clef_auto_assign": 502, "pseudo": 502, "stl": 502, "pi": [502, 509, 513, 515, 520, 527, 539, 543, 547, 548, 550, 563, 580, 929, 1873, 1876, 1877, 1879, 1880, 1881, 1883, 1886, 1887, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1907, 1908], "aco": [502, 509, 513, 527], "k_": [502, 1892, 1897], "make_expr": [502, 507, 509], "fnt": 502, "make_funct": [502, 503], "adl": [502, 506, 510, 587], "therefor": [502, 517, 519, 520, 537, 543, 551, 581, 587, 1833, 1878, 1886, 1895, 1899, 1900, 1904, 1905], "friend": [502, 510], "similarli": [502, 510, 520, 551], "triqs_clef_auto_assign_subscript": 502, "struct": [502, 510, 513, 567, 570, 572, 587, 1861], "clef_implement_lazy_cal": [502, 510], "clef_auto_assign": 502, "prototyp": 503, "dark": 503, "corner": 503, "progress": [503, 558, 570, 1890, 1895], "ompil": 503, "azi": 503, "xpression": 503, "unction": 503, "nice": [506, 510, 1870], "useless": 506, "eval": [506, 508, 510, 525, 1023], "placeholder_1": [506, 508], "value_1": 506, "placeholder_2": [506, 508], "value_2": 506, "matter": [506, 508, 570, 1859], "lookup": 506, "e1": [506, 507], "e2": [506, 507], "loos": 507, "thing": [507, 581, 1873, 1877, 1879, 1880, 1883, 1887, 1890, 1895], "ternari": 507, "if_els": 507, "math": [507, 547, 548, 553, 563, 910, 1211, 1215, 1879, 1881, 1883, 1886, 1887, 1889, 1894, 1895, 1899, 1900, 1902, 1904, 1905, 1907], "clef_express": [507, 508], "almost": [507, 539, 543, 564, 570, 1851, 1854, 1890, 1895], "e0": 507, "meaningless": [507, 543], "complic": [507, 1848], "encod": [507, 515, 530, 572, 1900, 1905], "expr": [507, 508, 537, 912, 1022, 1023, 1024, 1027], "plu": [507, 1883, 1887], "fly": [507, 572, 1881], "themselv": 507, "rational": 507, "dangl": 507, "quicker": 507, "Of": [507, 543, 1884], "mandatori": 507, "longer": [507, 1883, 1887, 1890, 1892, 1895, 1897], "opposit": [508, 539, 575, 1709, 1710], "z_": [508, 576, 1716], "sai": [508, 519, 551, 568, 570, 1881, 1890, 1895, 1901, 1906], "placeholder_3": 508, "x2": [508, 532, 587], "x3": 508, "exhaust": 508, "ban": 508, "parenthesi": [508, 569, 1881], "though": [508, 516], "show": [508, 509, 570, 582, 1854, 1860, 1861, 1862, 1873, 1875, 1876, 1877, 1879, 1880, 1881, 1882, 1883, 1884, 1887, 1889, 1890, 1892, 1895, 1896, 1897, 1899, 1903, 1904, 1908], "f1": [508, 1801], "3x3": [509, 1883, 1887], "forget": [509, 1886], "cheke": 509, "time_consuming_funct": 509, "insist": 509, "clef_make_fnt_lazi": 510, "function_to_make_lazi": 510, "foo": 510, "notclefexpress": 510, "is_clef_express": 510, "BUT": 510, "absenc": [510, 1880], "58385": 510, "v_": [510, 553, 1211, 1215, 1889], "copyabl": 510, "my_method": 510, "clef_implement_lazy_method": 510, "evalut": 510, "_2": [510, 572, 1873, 1877], "_1": [510, 572], "trait": 510, "immutablearrai": 511, "preced": 511, "param": [511, 579, 659, 930, 1806], "tparam": 511, "dollar": 511, "rest": [511, 544, 570], "t1": [511, 587, 1862], "alpha": [511, 515, 573, 1628, 1629, 1685, 1873, 1877, 1879, 1882, 1889, 1897, 1906, 1907, 1908], "seriou": 512, "leq": [512, 515], "m_": [512, 1895], "y_j": 512, "fast": [512, 1873, 1877, 1899, 1904], "quickli": [512, 1849, 1881, 1890, 1895], "return_typ": 513, "argument_typ": [513, 1861], "xy_typ": 513, "vector_typ": 513, "tqa": 513, "matrix_view_typ": 513, "matrix_view": [513, 546, 671, 710, 749, 788, 827, 949, 997], "fx": 513, "fy": 513, "try_insert_from_funct": 513, "change_raw": 513, "try_op": 513, "bla": 513, "transpar": [513, 572, 1882], "fun": [513, 587, 1861], "typedef": [513, 1861], "result_typ": [513, 1861], "epsi": 513, "sin": [513, 580, 1882], "detratio": [513, 1861], "mathemat": [514, 517, 572, 1870, 1881, 1883, 1887], "mainli": [514, 1881], "know": [514, 519, 568, 571, 1873, 1877, 1881, 1883, 1886, 1887], "rm": [514, 543, 1889, 1891, 1896], "cof": 514, "i_n": 514, "pmatrix": [514, 573, 1686, 1687, 1695, 1883, 1887], "a_": [514, 515, 551, 573, 575, 576, 1685, 1710, 1711, 1716, 1717, 1719, 1891, 1896], "dot": [514, 515, 540, 563, 583, 1881, 1899, 1904], "vdot": 514, "invert": [514, 550, 1883, 1887, 1897], "furthermor": [514, 1873, 1877], "xi": [514, 532, 1903, 1908], "qquad": [514, 515, 1883, 1887, 1902, 1907], "ca": 514, "gi": [514, 532], "a_0": 514, "m_n": 514, "amelior": 514, "straightformward": 514, "hb": 514, "cg": 514, "fb": 514, "cb": 514, "gh": 514, "hg": 514, "ib": 514, "ic": 514, "gb": [514, 1905], "fh": 514, "hc": 514, "BEING": 515, "among": [515, 555, 1860, 1861, 1873, 1877], "deal": [515, 571], "emphas": 515, "essenti": [515, 541, 552, 1859, 1884], "alpha_a": 515, "beta_a": 515, "mathcal": [515, 570, 1873, 1877, 1886, 1900, 1905], "label": [515, 563, 580, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1873, 1876, 1877, 1879, 1880, 1882, 1887, 1889, 1892, 1894, 1895, 1897, 1899, 1904, 1905, 1906, 1907, 1908], "whenev": 515, "consider": [515, 543], "formal": [515, 517, 543, 1873, 1877, 1883, 1887], "equiv": [515, 559, 563, 573, 645, 1684, 1900, 1902, 1903, 1905, 1907, 1908], "c_": [515, 572, 593, 594, 614, 615, 1889, 1892, 1897], "int_0": [515, 697, 736, 775, 814, 853, 975, 1012, 1883, 1887, 1888, 1894], "2l": [515, 573, 1685, 1686], "p_l": 515, "theta": [515, 520, 550, 916, 929, 1883, 1887], "int_": [515, 559, 560, 645, 655, 1883, 1887], "analog": 515, "dt": [515, 697, 736, 775, 814, 853, 975, 1012, 1882], "2n": [515, 527, 539, 1883, 1887, 1902, 1907], "paramount": 515, "context": [515, 1023], "slowli": 515, "decai": [515, 553, 1210, 1883, 1887], "stackrel": 515, "parametr": 515, "n_1": [515, 575, 1708], "n_2": [515, 575, 1708], "o_": 515, "_i": [515, 563], "readeabl": 516, "travers": 516, "specialis": [516, 521, 523, 527, 528, 529, 533, 535, 537], "nfreq": [516, 527], "wn_": [516, 527], "strang": [516, 524], "cannot": [516, 526, 543, 589, 591, 612, 1884, 1885, 1903, 1908], "curri": 517, "understood": 517, "abstract": [517, 543, 555, 1023], "grid": [517, 560, 561, 563, 1754, 1760, 1762, 1877, 1882, 1886, 1892, 1897, 1899, 1904, 1905, 1906, 1908], "refin": [517, 556, 560, 1778], "regulartyp": 517, "comment": [517, 525, 539, 540, 556, 564, 1856, 1881, 1903, 1908], "k_vector": 517, "matsubara_freq": 517, "multi": [517, 580, 1849, 1901, 1906], "domain_t": [517, 524, 539], "eg": [517, 551, 573, 1688, 1689, 1883, 1887], "realli": [517, 568, 1870], "contigu": 517, "mesh_pt_gener": 517, "copyconstruct": [517, 556], "linear_index": [517, 1079, 1092, 1105], "at_end": 517, "cast_t": 517, "implicit": 517, "cast": [517, 1030, 1622], "wiht": 517, "fourier": [518, 541, 542, 544, 545, 547, 548, 549, 552, 562, 689, 728, 767, 806, 845, 967, 990, 1007, 1664, 1856, 1873, 1875, 1876, 1877, 1879, 1880, 1886, 1889, 1894, 1895, 1899, 1903, 1904, 1908], "purefunctionondomain": [518, 542], "adj": 519, "reason": [519, 551, 570, 580, 1856, 1873, 1876, 1877, 1880, 1883, 1887, 1890, 1895], "gw": [519, 544, 545, 546, 547, 548, 554, 690, 692, 693, 729, 731, 732, 768, 770, 771, 807, 809, 810, 846, 848, 849, 968, 970, 971, 1008, 1010, 1011, 1883, 1887], "That": [519, 570, 1867, 1881, 1890, 1895], "call_the_fourier_implement": 519, "moreov": [519, 1854], "possess": 519, "iw_mesh": [519, 541, 1862, 1883, 1886, 1887, 1894, 1895], "tau_mesh": [519, 1862, 1883, 1887, 1894, 1895], "om_": [519, 1863], "gw2": 519, "subroutin": 520, "discret": [520, 523, 553, 561, 1211, 1634, 1650, 1754, 1760, 1849, 1883, 1887, 1899, 1903, 1904, 1908], "dft": [520, 1849, 1850], "regularli": 520, "f_0": [520, 573, 1685], "f_k": [520, 573, 1683, 1685], "f_n": 520, "t_": [520, 563, 564, 573, 1685, 1696, 1883, 1887], "n_t": [520, 1166], "t_k": 520, "omega_m": 520, "eq": 520, "tf_r": 520, "recogn": [520, 1664], "inv_dft": 520, "prepar": [520, 558, 567, 570, 1872, 1873, 1876, 1877, 1880, 1886], "f_m": 520, "eq_inv_tf_r": 520, "tau_k": 520, "tau_": [520, 528], "inv_dft_i": 520, "ge": 520, "t_1": 520, "t_2": 520, "simeq": [520, 1902, 1907], "it_2": 520, "badli": 520, "naiv": 520, "substract": 520, "tranform": 520, "2a": [520, 537], "leftrightarrow": 520, "gg": [520, 1899, 1904], "chose": [520, 1881, 1883, 1887, 1888, 1894], "opt": [521, 523, 527, 528, 529, 533, 534, 535, 1813, 1827, 1854, 1885, 1886, 1887], "variable_t": 521, "target_t": 521, "option_t": 521, "unus": 521, "decrib": 521, "block_index": [521, 523, 876, 1699], "singularity_t": [521, 526], "symmetry_t": [521, 525, 526], "stage": [521, 570, 1873, 1877], "destructor": 521, "compound": [521, 543, 551, 572], "reinterpret": 521, "1x1": [521, 534, 1862, 1883, 1887], "contruct": 523, "gf2": 523, "init_list": 523, "strip": 523, "make_block_gf_view_from_vector": 523, "Not": 523, "TO": [523, 528, 529, 581, 1595, 1867, 1891, 1896], "BE": [523, 529, 581, 1595, 1867, 1891, 1896], "bg0": 523, "bg1": 523, "bg11": 523, "bg2": 523, "bg3": 523, "bg4": 523, "test_block_gf": 523, "b4": 523, "freq": [523, 993, 994, 1873, 1877, 1886, 1887, 1904], "1025": [523, 1118], "positive_onli": [523, 539, 1877, 1886, 1887, 1904], "clefexpress": [524, 537], "closest": [524, 528, 572, 1057, 1203, 1204], "extrem": [524, 581], "inconveni": 524, "forbid": 524, "asid": 525, "singularity_view_t": 525, "si": 525, "evaluator_t": 525, "No": [527, 544, 545, 546, 547, 548, 664, 703, 742, 781, 820, 1857, 1873, 1877], "immutablematrix": [527, 528, 533, 535], "1d": [527, 528, 533, 535, 560, 561, 646, 650, 660, 700, 739, 778, 817, 856, 978, 1731, 1762], "3d": [527, 528, 533, 535, 544, 545, 546, 547, 548, 560, 700, 739, 778, 817, 856, 978, 1873, 1877, 1886], "todo": 527, "make_shap": [527, 528, 541], "1i": 527, "m_pi": 527, "g3": [527, 528], "226344": 527, "248878": 527, "antiperiod": 528, "OR": 528, "n_time": [528, 535, 1862], "exp": [528, 553, 567, 570, 1211, 1215, 1861, 1882, 1883, 1887, 1899, 1903, 1904, 1908], "0407608": 528, "0407604": 528, "2x2": [529, 533, 535, 553, 1217, 1883, 1887], "wmin": [529, 533], "wmax": [529, 533], "n_freq": [529, 533, 1863], "var_t": 531, "tmin": [531, 532, 535, 1862], "tmax": [531, 532, 535, 1862], "n_re_tim": [531, 532], "n_im_tim": [531, 532], "g_t_tau_": [531, 532], "dedic": 531, "g_slice": 531, "_x1": 532, "_x2": 532, "y2": [532, 1873, 1877], "_xi": 532, "yi": 532, "g_t_tau_m": 532, "g_t_tau_t": 532, "m1": [532, 573, 1685, 1686], "m2": [532, 573, 1685, 1686], "matrix_valued_vers": 532, "gm": [532, 547, 1862], "tensor_valued_vers": 532, "test_product_gf": 532, "gf_const": 534, "concentr": 536, "1a": 537, "1b": 537, "2b": 537, "closest_mesh_pt_t": 537, "3a": 537, "3b": 537, "acquir": [537, 541, 543, 552], "closest_mesh_point_t": 537, "closest_mesh_point": 537, "vehicl": 537, "matsubara_freq_mesh": 539, "pictori": [539, 540], "all_frequ": 539, "positive_frequencies_onli": 539, "matsubara_freq_domain": 539, "iomega_n": [539, 550, 1848, 1869, 1883, 1887, 1889, 1891, 1894, 1895, 1896, 1897, 1899, 1900, 1902, 1904, 1905, 1907], "linear_index_t": 539, "default_interpol_polici": 539, "domain_pt_t": 539, "full_siz": 539, "linear_to_index": 539, "revers": 539, "first_index": 539, "last_index": 539, "first_index_window": 539, "last_index_window": 539, "tau_n": 540, "get_interpolation_data": 540, "redefin": [540, 586], "anti": [540, 573, 1684, 1691, 1885, 1899, 1901, 1904, 1906], "role": [541, 551, 552], "accur": [541, 552, 1873, 1877, 1895, 1903, 1908], "approx": [541, 552, 583, 1873, 1877, 1883, 1887, 1899, 1903, 1904, 1905, 1906, 1908], "a_n": [541, 552], "coefficienct": [541, 552], "twenti": 541, "absolut": [541, 564, 1666, 1873, 1877], "fulfil": 541, "ij": [541, 573, 575, 1685, 1696, 1700, 1702, 1709, 1710, 1883, 1887], "ji": 541, "entail": 541, "prodiv": 541, "max_ord": 541, "nerror": 541, "experienc": [541, 1851], "set_tail_fit_paramet": 541, "tail_fract": [541, 1128], "expansion_ord": [541, 673, 675, 712, 714, 751, 753, 790, 792, 829, 831, 951, 953, 999, 1001, 1128], "fraction": [541, 1838], "outer": [541, 860], "30": [541, 582, 1128, 1867, 1877, 1887, 1895, 1896], "fit_tail_on_window": 541, "behav": [541, 585, 1852, 1884], "fit_hermitian_tail_on_window": 541, "gflegendr": [542, 543, 549, 554, 1197, 1887], "gfretim": [542, 543, 549, 553, 1199, 1216, 1887], "pickl": [542, 549], "flavour": 543, "inv": [543, 551], "enough": [543, 1873, 1877], "50": [543, 544, 545, 546, 551, 554, 563, 567, 580, 1185, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1892, 1896, 1897, 1899], "imp": [543, 1873, 1877, 1879, 1880, 1883, 1887, 1888, 1889, 1894], "collid": 543, "former": 543, "don": [543, 570, 1891, 1896], "reassign": 543, "certainli": [543, 1881], "lazy_express": 543, "assembl": [543, 1849], "bandwith": [543, 553, 1211], "bandwidth": [543, 917, 930, 932, 1883, 1887], "picklabl": [543, 551], "sent": [543, 551], "disk": [543, 551, 1900, 1901, 1905, 1906], "saw": [543, 1900, 1905], "tell": [543, 568, 570, 580, 1881, 1883, 1887, 1890, 1895], "plotter": 543, "lot": [543, 1886], "target_rank": [544, 545, 546, 547, 548, 664, 703, 742, 781, 820, 875, 942, 1887], "is_real": [544, 545, 546, 547, 548, 664, 703, 742, 781, 820, 942, 1883, 1887], "kwarg": [544, 546, 551, 553, 589, 592, 613, 670, 698, 709, 737, 748, 776, 787, 815, 826, 854, 859, 860, 874, 875, 882, 892, 935, 948, 976, 1055, 1068, 1080, 1093, 1106, 1119, 1135, 1146, 1155, 1167, 1212, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1599, 1607, 1612, 1672, 1735, 1743, 1832, 1841, 1885, 1886, 1887], "g_out": [544, 545, 547, 548, 689, 728, 767, 806, 845, 967, 1007], "g_in": [544, 545, 547, 548, 689, 728, 767, 806, 845, 967, 990, 1007], "set_from_legendr": [544, 545], "decompos": [544, 545, 546, 547, 548, 551, 581, 1889, 1900, 1905], "meshgf": [544, 545, 546, 547, 548], "i2": [544, 545, 546, 547, 548], "this_str": [544, 545, 546, 547, 548], "eg1": [544, 547, 551], "eg2": [544, 547, 551], "egblock": [544, 547, 548, 551], "half_bandwidth": [544, 545, 546, 547, 550, 554, 916, 917, 929, 930, 932], "mpl_interfac": [544, 545, 546, 547, 548, 554, 558, 579, 580, 582, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "plt": [544, 546, 558, 563, 582, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "x_window": [544, 579, 580, 700, 739, 778, 817, 856, 978, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201], "ylim": [544, 558, 1872, 1883, 1887, 1889, 1892, 1894, 1895, 1897, 1908], "meshimtim": [545, 553, 703, 1178, 1194, 1196, 1211, 1215, 1883, 1887, 1894, 1895], "tailgf": 545, "enforce_discontinu": [546, 553, 1213], "disc": [546, 553, 671, 710, 749, 788, 827, 949, 997, 1211, 1215], "discontinu": [546, 553, 671, 710, 749, 788, 827, 949, 997, 1213], "40": [546, 554, 1873, 1877, 1882, 1896], "matsubaratolegendr": [546, 554], "giw": [547, 693, 732, 771, 810, 849, 971, 1011, 1883, 1886, 1887], "freq_offset": [547, 693, 732, 771, 810, 849, 971, 1011, 1900, 1905], "demonstr": [547, 563], "counterpart": 547, "cmath": 547, "101": [547, 558, 560, 1666, 1849, 1862, 1872, 1873, 1877, 1879], "lorentzian": 547, "glorentz": 547, "z": [547, 550, 567, 570, 573, 576, 669, 708, 747, 786, 825, 916, 929, 947, 1185, 1689, 1692, 1694, 1716, 1719, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1886, 1889, 1890, 1895, 1903, 1908], "semicircl": [547, 930], "gsc": 547, "superposit": 547, "2000": 547, "gr": 547, "995": 547, "1200": 547, "g_pade": 547, "meshretim": [548, 820, 1883, 1887], "1001": [548, 1885, 1894, 1895], "permit": 550, "wilson": 550, "eps_d": [550, 1883, 1887], "cut": [550, 570, 916, 1849, 1901, 1906], "2d": [550, 558, 563, 575, 916, 1205, 1626, 1709, 1710, 1872, 1873, 1877, 1879, 1880, 1883, 1887, 1892, 1897], "chem_potenti": [550, 929, 930], "contrast": 551, "rememb": [551, 1888, 1894, 1895], "sentenc": 551, "imagin": [551, 569, 1883, 1887], "involv": [551, 570, 572, 1849, 1889], "solid": [551, 1889], "t2g": [551, 573, 1688, 1694, 1883, 1887], "t2g1": 551, "t2g2": 551, "t2g3": 551, "t2gblock": 551, "name_list": [551, 875, 1883, 1887], "block_list": [551, 859, 860, 875, 1883, 1887], "make_copi": [551, 860, 875, 1887], "compos": [551, 1877, 1887], "initialis": [551, 862, 879], "do_someth": 551, "interestingli": 551, "appear": [551, 579, 1874, 1878, 1881, 1883, 1887, 1888, 1890, 1894, 1895, 1899, 1900, 1904, 1905], "clariti": [551, 570], "exactli": [551, 589, 591, 612, 1873, 1877, 1885, 1899, 1902, 1904, 1907], "clearli": [551, 564, 570, 1854, 1892, 1897], "__blockindiceslist": 551, "__name": 551, "__note": 551, "ident": [552, 1851, 1910], "caution": [553, 1210, 1850], "iomega": [553, 1210, 1211], "eps0": [553, 1211], "v0": [553, 1211], "tol": [553, 575, 1211, 1712], "maxit": [553, 935, 1211, 1768, 1769], "10000": [553, 570, 582, 1211, 1873, 1877, 1882, 1890, 1891, 1892, 1895, 1896, 1897], "cmplx": [553, 1211], "delta_": [553, 572, 576, 1211, 1215, 1716], "kl": [553, 1211, 1215], "kj": [553, 1211, 1215], "jl": [553, 1211, 1215], "eps_j": [553, 1211, 1215], "basinhop": [553, 1211], "frontend": [553, 1211], "norb": [553, 1211, 1215, 1663, 1905], "choleski": [553, 1211], "decomposit": [553, 1211], "xatol": [553, 1211], "ftol": [553, 1211], "complx": [553, 1211], "v_opt": [553, 1211], "thereof": [553, 1211, 1215, 1838], "eps_opt": [553, 1211], "sort": [553, 1211, 1873, 1877, 1890, 1895], "delta_disc": [553, 1211], "noisi": [553, 935, 1213, 1873, 1877], "low": [553, 1213, 1879, 1883, 1887, 1892, 1895, 1897, 1903, 1908], "treatement": [553, 1214], "block_txtfil": [553, 1217], "desir": [553, 1217, 1883, 1887], "uniform": [553, 585, 1217, 1883, 1887], "up_eg1": [553, 1217], "up_eg1_1": [553, 1217], "up_eg2_1": [553, 1217], "up_eg1_2": [553, 1217], "up_eg2_2": [553, 1217], "legendretomatsubara": 554, "pictur": [555, 1883, 1887, 1900, 1905], "abstarct": 555, "bitset": 555, "dimer": 555, "coulomb": [555, 573, 1682, 1875, 1879, 1889], "repuls": 555, "mu": [555, 559, 560, 561, 648, 652, 655, 930, 1754, 1760, 1869, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1882, 1885, 1886, 1888, 1891, 1892, 1894, 1896, 1897, 1899, 1903, 1904, 1908], "full_hs_operator_t": 555, "spars": [555, 1883, 1887], "prealloc": 555, "inv_subspac": 555, "emplace_back": 555, "spn": 555, "n_down": [555, 1896], "n_up_conn": 555, "n_down_conn": 555, "sub_hs_operator_t": 555, "n_up_hilbert_map": 555, "conn": 555, "n_up_op": 555, "n_down_hilbert_map": 555, "n_down_op": 555, "ket": 555, "equip": 556, "idenifi": 556, "vanis": 556, "bravaislattic": [557, 558, 560, 562, 1067, 1606, 1611, 1622, 1646, 1872, 1886], "atom_orb_po": [557, 1598], "atom_orb_nam": [557, 1598], "lattice_to_real_coordin": [557, 562], "r_t": [557, 562, 1600, 1617, 1637, 1653], "n_orbit": [557, 559, 653, 1642, 1877, 1899, 1904], "orbital_posit": [557, 560, 563, 1627, 1646, 1647], "bravai": [558, 562, 563, 1067, 1598, 1606, 1608, 1611, 1616, 1622, 1635, 1646, 1651, 1872, 1886, 1899, 1904], "bl": [558, 560, 562, 563, 1606, 1611, 1646, 1872, 1886], "nearest": [558, 1185, 1187, 1872, 1886, 1900, 1902, 1903, 1905, 1907, 1908], "neighbour": [558, 560, 567, 1872, 1886, 1900, 1902, 1905, 1907], "00": [558, 560, 1872, 1873, 1877, 1883, 1887, 1889, 1895, 1896, 1904, 1907, 1908], "tp": [558, 560, 563, 1872, 1892, 1897], "displac": [558, 562, 1611, 1614, 1872, 1886], "t11": [558, 1872], "t12": [558, 1872], "t13": [558, 1872], "t21": [558, 1872], "t22": [558, 1872], "t23": [558, 1872], "tnn": [558, 1872], "number_orbit": [558, 1872], "tb": [558, 560, 563, 1596, 1619, 1620, 1646, 1872, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1886], "tightbind": [558, 560, 562, 1619, 1620, 1646, 1872, 1886], "n_kpt": [558, 559, 560, 561, 1659, 1872], "500": [558, 560, 1863, 1872, 1889], "n_ep": [558, 559, 560, 1596, 1659, 1660, 1872], "matplotlib": [558, 563, 578, 1854, 1856, 1857, 1859, 1868, 1870, 1872, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "pylab": [558, 563, 1872], "xlim": [558, 1732, 1872, 1883, 1887, 1889, 1892, 1894, 1895, 1896, 1897, 1908], "energies_on_bz_path": 558, "dos_from_fil": [558, 559], "_k": [559, 563, 645], "epsilon_k": [559, 561, 645, 1760, 1888, 1894], "single_orbit": [559, 653], "ONE": [559, 653], "ith": [559, 653], "dosfromfunct": [559, 560], "x_min": [559, 649, 650, 1731], "x_max": [559, 649, 650, 1731], "hilberttransform": 560, "sigma0": 560, "bigl": [560, 655, 1892, 1897], "hat": [560, 572, 576, 655, 1714, 1715, 1716, 1717, 1718, 1719, 1873, 1877, 1883, 1886, 1887], "varepsilon": [560, 655], "bigr": [560, 655, 1892, 1897], "epsilon_hat": 560, "n_points_integr": 560, "test_converg": 560, "gfbloc": [560, 1632], "array_with_gfbloc_indic": 560, "gbloc": 560, "identity_matrix": 560, "npt": 560, "cv": 560, "sumkdiscretefromlattic": 561, "riemann": [561, 1760, 1762, 1763], "leftarrow": [561, 1754, 1760], "sum_k": [561, 1754, 1760, 1888, 1894, 1902, 1903, 1907, 1908], "eps_k": [561, 1754, 1760, 1886], "bz_point": [561, 1754, 1760], "bz_weight": [561, 1754, 1760, 1877], "mu_pattern": [561, 1754, 1760], "overlap": [561, 562, 1611, 1618, 1754, 1760, 1886], "IF": [561, 1754, 1760], "recomputegrid": [561, 1760], "gauss": [561, 1754, 1760, 1762, 1763], "gfblocindic": 561, "recompute_grid": 561, "chi_0": [561, 1762, 1859, 1901, 1902, 1906, 1907, 1909], "resize_arrai": 561, "nk": [561, 1185, 1758, 1765, 1905], "k_cvt": [562, 1613, 1615, 1631, 1633, 1648, 1649], "momentum": [562, 573, 576, 1054, 1613, 1615, 1631, 1633, 1648, 1649, 1664, 1683, 1685, 1688, 1690, 1692, 1714, 1716, 1883, 1886, 1887, 1892, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "reciproc": [562, 1054, 1610, 1613, 1615, 1631, 1633, 1648, 1649, 1666, 1886, 1899, 1904], "aim": [563, 572, 1850, 1859, 1873, 1877, 1902, 1907], "triplet": 563, "lbrace": [563, 583], "rbrace": [563, 583], "ie": 563, "phi_n": 563, "phi_m": 563, "wannier": [563, 1667], "hopping_dictionari": 563, "pt": [563, 1899, 1904], "epsilon_n": 563, "join": [563, 1903, 1907, 1908], "eigenvector": 563, "success": [563, 1778, 1865, 1873, 1877], "bl_1": 563, "bl_2": 563, "bl_4": 563, "hop_1": 563, "hop_2": 563, "hop_4": 563, "tb_1": 563, "tb_2": 563, "tb_4": 563, "gamma": [563, 1877, 1883, 1887, 1889, 1899, 1900, 1901, 1904, 1905, 1906], "pipi": 563, "pi0": 563, "pihpih": 563, "twopi0": 563, "twopitwopi": 563, "path_1": 563, "path_2": 563, "2at": 563, "ucel": 563, "path_4": 563, "4at": 563, "energies_on_path": 563, "orb": 563, "e_1": 563, "e_2": 563, "e_4": 563, "linewidth": [563, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1887, 1894], "ats": 563, "legend": [563, 580, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1873, 1876, 1877, 1879, 1880, 1882, 1883, 1887, 1889, 1895, 1897, 1905, 1906, 1907, 1908], "ax": [563, 1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1894, 1899, 1904], "set_xtick": [563, 1873, 1877, 1879, 1880], "150": [563, 1873, 1876, 1877, 1879, 1880, 1882], "set_xticklabel": [563, 1894], "gamma_1": 563, "m_1": [563, 573, 1686, 1687, 1695], "x_1": 563, "ylabel": [563, 580, 1201, 1882, 1887, 1894, 1895, 1897, 1899, 1904, 1905, 1906], "montecarlo": 564, "dynam": [564, 572, 935, 1852, 1859, 1900, 1905], "mc_sign_typ": 564, "proba": 564, "p_x": 564, "p_": [564, 570, 1892, 1897], "move_sign": 564, "move_r": 564, "new_sign": 564, "old_sign": 564, "focu": [565, 1890, 1891, 1895, 1896], "beta_": [567, 570], "field_": 567, "rng": [567, 569, 570], "delta_energi": 567, "config_": [567, 570], "rng_": 567, "metropli": 567, "compute_m": [567, 570], "sum_z": [567, 570], "sum_m": [567, 570], "greet": [567, 570], "500000": 567, "100000": [567, 1869], "374982": [567, 570], "273894": [567, 570], "isingmc": 567, "clock_callback": [567, 570], "27603": 567, "goal": [568, 581, 1865, 1888, 1890, 1894, 1895], "transit": [568, 570, 1849, 1875, 1879, 1890, 1891, 1892, 1895, 1896, 1897, 1901, 1903, 1906, 1908], "heart": 568, "repeat": [568, 1873, 1876, 1877, 1880, 1903, 1908], "decorrel": [568, 1873, 1877, 1889], "dictonari": 568, "doesn": [568, 570], "wether": [568, 1883, 1887], "clearer": 568, "23432": 569, "stand": [569, 1849], "uniformli": 569, "spinmc": [569, 570], "mymov": 569, "overview": [570, 1849, 1870, 1873, 1877, 1881], "concret": [570, 1883, 1887], "mayb": 570, "simplest": [570, 583, 1882], "ever": [570, 587], "uparrow": [570, 575, 1710, 1889, 1890, 1891, 1892, 1895, 1896, 1897, 1902, 1903, 1907, 1908], "downarrow": [570, 575, 1710, 1889, 1891, 1892, 1896, 1897, 1902, 1903, 1907, 1908], "job": [570, 1873, 1877, 1883, 1887], "everyth": [570, 587, 1864, 1867, 1873, 1877, 1881], "obvious": [570, 1867], "piec": [570, 581, 1881, 1889], "h_": [570, 1702, 1889, 1891, 1892, 1896, 1897], "isol": [570, 1855], "5000000": 570, "600": [570, 586], "149608": 570, "initial_sign": 570, "But": 570, "satisfi": [570, 1855, 1888, 1894, 1899, 1902, 1903, 1904, 1907, 1908], "importantli": 570, "trial": 570, "With": [570, 1858, 1902, 1907], "meant": 570, "launch": 570, "55": [570, 1896], "didn": 570, "manag": [570, 578, 1850, 1851], "cleanli": 570, "safe": 570, "hope": 570, "gave": 570, "idea": [570, 1849, 1870, 1889, 1890, 1895, 1903, 1908], "chapter": 570, "haven": 570, "acc": 570, "speed": [571, 1873, 1875, 1877, 1879, 1880], "quantiti": [571, 583, 1889, 1890, 1895, 1899, 1902, 1904, 1907], "readabl": [572, 1873, 1877], "accompani": 572, "approach": [572, 1874, 1878, 1886, 1892, 1897, 1900, 1901, 1903, 1905, 1906, 1908], "meet": [572, 1849, 1873, 1877], "is_zero": 572, "sake": 572, "many_body_operator_complex": 572, "nontrivi": 572, "obei": [572, 1899, 1902, 1903, 1904, 1907, 1908], "anticommut": 572, "dagger_": [572, 573, 575, 576, 595, 596, 616, 617, 1685, 1696, 1710, 1716, 1719, 1891, 1896], "preregist": 572, "elementari": [572, 583], "instanti": 572, "make_fundamental_operator_set": 572, "make_canon": 572, "is_dag": 572, "functor": 572, "paragraph": 572, "variant_int_str": 572, "canonical_ops_t": 572, "bidirect": 572, "dedocument": 572, "triqsd": 572, "coef": 572, "deseri": 572, "quartic": [572, 574, 1889, 1900, 1905], "__repr__": 572, "__str__": 572, "c_list": 572, "cd_list": 572, "commut": [572, 1885], "radial_integr": [573, 1683, 1685], "u_int": [573, 1683, 1684, 1685, 1690], "spheric": [573, 576, 1685, 1692, 1714, 1715, 1716], "m3": [573, 1685, 1686], "m4": [573, 1685, 1686], "f_2": [573, 1685], "f_4": [573, 1685], "radial": [573, 1683, 1685, 1690], "angular": [573, 1683, 1685, 1686, 1688, 1690, 1692], "racah_wign": [573, 1685], "u_j_to_radial_integr": [573, 1685], "convet": [573, 1685], "ijkl": [573, 575, 1685, 1701, 1711], "u_": [573, 575, 1684, 1685, 1700, 1701, 1709, 1710, 1711, 1889, 1903, 1908], "f0": [573, 1683, 1685, 1690], "f2": [573, 587, 1683, 1685, 1690, 1801], "f4": [573, 1683, 1685, 1690], "preferenti": [573, 1685], "alongsid": [573, 1685, 1851], "hund": [573, 1683, 1684, 1685, 1690], "harmon": [573, 576, 1685, 1688, 1692, 1714, 1715, 1716], "cubic": [573, 576, 1185, 1187, 1190, 1685, 1688, 1692, 1714, 1715, 1716], "b_": [573, 1685, 1696], "sum_j": [573, 1685, 1696], "reduce_4index_to_2index": 573, "u_4index": [573, 1691], "u_matrix_kanamori": 573, "up_int": [573, 1684], "full_uijkl": [573, 1684], "jc_hund": [573, 1684], "uijkl": [573, 1684], "j_c": [573, 1684], "neq": [573, 575, 1684, 1709, 1710, 1891, 1896], "prime": [573, 1684], "rotation": [573, 575, 1684, 1711], "retunr": [573, 1684], "foat": [573, 1684], "t2g_submatrix": 573, "submatrix": [573, 1689, 1694], "manifold": [573, 1689, 1694], "xy": [573, 1689, 1692, 1694, 1740], "yz": [573, 1689, 1692, 1694], "xz": [573, 1689, 1692, 1694], "u_t2g": [573, 1694], "eg_submatrix": 573, "u_eg": [573, 1689], "transform_u_matrix": 573, "cubic_nam": 573, "radial_integrals_to_u_j": 573, "angular_matrix_el": 573, "m_2": [573, 1686, 1687, 1695], "m_3": [573, 1686, 1687, 1695], "m_4": [573, 1686], "ang_mat_el": [573, 1686], "three_j_symbol": 573, "jm1": [573, 1687, 1695], "jm2": [573, 1687, 1695], "jm3": [573, 1687, 1695], "l_1": [573, 1695], "l_2": [573, 1695], "l_3": [573, 1695], "j_1": [573, 1687, 1695], "j_2": [573, 1687, 1695], "j_3": [573, 1687, 1695], "three_j_sym": [573, 1695], "clebsch_gordan": 573, "clebsh": [573, 1687], "gordan": [573, 1687], "cgcoeff": [573, 1687], "subarrai": 573, "idxlist": [573, 1693], "1st": [573, 1693], "extract_": 574, "monimi": 574, "quadrat": [574, 579, 1702], "dict_to_matrix": 574, "cleaner": 574, "shorthand": 574, "extractor": 574, "op_t": 574, "dict2_t": [574, 1699, 1700, 1702], "quadrupl": 574, "dict4_t": [574, 1701], "identifi": [575, 1835, 1873, 1875, 1877, 1879, 1880, 1889, 1896, 1897, 1899, 1903, 1904, 1905, 1906, 1908, 1910], "h_int_slat": 575, "off_diag": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723], "map_operator_structur": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722], "h_dump": [575, 1709, 1710, 1711], "4d": [575, 1711], "ye": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723, 1849], "spin_orbit": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1723], "up_0": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1873, 1876, 1877, 1879, 1880], "down_0": [575, 576, 577, 1709, 1710, 1711, 1714, 1715, 1716, 1717, 1718, 1719, 1722, 1876, 1877, 1879, 1880], "fip": [575, 1710], "h_int_dens": 575, "diagonal_part": 575, "n_3": [575, 1708], "n_part": [575, 1708], "make_operator_r": 575, "h_real": [575, 1712], "n_op": 576, "s_op": 576, "s_": [576, 1719], "pm": [576, 1719, 1892, 1895, 1897], "s_x": [576, 1715, 1718, 1719], "s_y": [576, 1715, 1718, 1719], "s2_op": 576, "l_op": 576, "l_": [576, 676, 715, 754, 793, 832, 954, 1716], "l_x": [576, 1714, 1715, 1716], "l_y": [576, 1714, 1715, 1716], "2i": [576, 1716], "momenta": [576, 1187, 1714, 1715, 1716, 1900, 1902, 1905, 1907], "odd": [576, 1079, 1092, 1105, 1714, 1715, 1716, 1892, 1897, 1903, 1908], "l2_op": 576, "ls_op": 576, "get_mkind": 577, "mkind": [577, 1722], "operator_structur": [577, 1723], "panel": 578, "300": [579, 1849, 1877, 1879], "x_data_view": 579, "flatten_i": [579, 700, 739, 778, 817, 856, 978], "fitl": 579, "fitq": 579, "one_fermion_level": 579, "fit1": 579, "clip": 579, "reader": 579, "encourag": 579, "leastsq": 579, "x_arrai": [579, 659, 660, 1731], "y_arrai": [579, 659, 660], "fitter": [579, 659, 660], "p0": [579, 659, 660], "p1": [579, 659], "p2": [579, 659], "fitfunc": 579, "toolkit": [580, 1859], "graphic": [580, 1866], "pyplot": [580, 1726, 1873, 1875, 1876, 1877, 1879, 1880, 1882, 1886, 1892, 1897], "subfigur": 580, "subplot": [580, 1873, 1876, 1877, 1879, 1880, 1883, 1887, 1892, 1894, 1897, 1908], "bottom": [580, 1862, 1899, 1904, 1908], "bad": [580, 1889], "_plot_": 580, "curv": [580, 660, 1882, 1883, 1887, 1890, 1895, 1903, 1908], "optionsdict": 580, "optiondict": 580, "consum": 580, "pop": [580, 1876, 1880], "spuriou": 580, "xdata": 580, "ydata": 580, "graph": 580, "xlabel": [580, 1201, 1882, 1887, 1895, 1897, 1899, 1904, 1905, 1906, 1907, 1908], "overrul": 580, "myobject": [580, 1881], "arang": [580, 1882, 1887, 1888, 1891, 1894, 1895, 1896, 1903, 1907, 1908], "ydata1": 580, "ydata2": 580, "entri": [580, 1873, 1877, 1884, 1887], "dict1": 580, "dict2": 580, "scienc": 581, "everyon": 581, "human": 581, "task": [581, 1873, 1877, 1879, 1902, 1907], "admittedli": 581, "bore": 581, "physicist": 581, "fortun": 581, "wiki": 581, "wish": [581, 1857], "tini": 581, "git_hash": [581, 1848], "secur": 581, "show_machine_info": 581, "hostnam": 581, "login": [581, 1850], "code_vers": 581, "myself": [581, 1848], "situat": [581, 1883, 1887], "computation1": 581, "ok": [581, 587, 1867], "getsourc": 581, "randomgener": 582, "237849": 582, "random_generator_names_list": 582, "inverv": 582, "lagged_fibonacci607": 582, "237489": 582, "hist": [582, 1882], "aris": 583, "characterist": [583, 585, 1875, 1879, 1890, 1895], "proce": [583, 1888, 1894], "central": [583, 1873, 1877, 1883, 1887, 1892, 1897], "reliabl": [583, 1877], "difficult": 583, "date": 585, "stringstream": 585, "stack": [585, 1784], "strace": 585, "demangl": 585, "triqs_runtime_error": 585, "highli": [585, 1851], "caught": 585, "runtime_error": 585, "trace": 585, "exceptions_1": 585, "thrown": 585, "seen": [586, 1849, 1889, 1903, 1908], "pyconfig": 586, "1173": 586, "_posix_c_sourc": 586, "200112l": 586, "x86_64": 586, "unknown": 586, "os_defin": 586, "39": [586, 1877, 1879, 1881, 1882, 1885, 1886, 1887, 1889, 1896], "162": 586, "200809l": 586, "_xopen_sourc": 586, "first_includ": 586, "condition": 586, "tuple_tool": 587, "make_tupl": 587, "t0": 587, "t2": [587, 1862], "necessarli": 587, "res2": 587, "benefit": [587, 1849], "tuple_s": 587, "tie": 587, "54": [587, 1896], "61": [587, 1896], "_called_on_tupl": 587, "_f": 587, "flavor": [589, 591, 612, 1885], "truncat": [589, 591, 612, 1885], "init_value_default": 660, "param_tupl": 660, "tex": 660, "n0": [669, 708, 747, 786, 825, 947], "contraint": [673, 712, 751, 790, 829, 951, 999], "ac": [676, 715, 754, 793, 832, 954], "r_": [676, 715, 754, 793, 832, 954], "db": [676, 715, 754, 793, 832, 954], "new_n_tau": [686, 725, 764, 803, 842, 964, 1004, 1873, 1877, 1879, 1889], "rebin": [686, 725, 764, 803, 842, 964, 1004, 1873, 1877, 1879, 1889], "sparser": [686, 725, 764, 803, 842, 964, 1004], "insid": [700, 739, 778, 817, 856, 978, 1626, 1850, 1892, 1897], "name_list1": [859, 860], "name_list2": [859, 860], "coincid": 860, "block_index1": 861, "block_index2": 861, "selected_blocks1": [864, 871], "selected_blocks2": [864, 871], "bloc": 876, "selected_block": [881, 894], "no_except": 887, "adjust_temperatur": 887, "deprec": [888, 1834, 1836, 1842, 1843], "dic": [896, 984], "karg": [899, 900, 910, 911], "minu": 930, "alia": 931, "g0_dlr": 935, "g_dlr": [935, 988, 989, 991, 992, 1883, 1887], "sigma_mo": 935, "trust": [935, 1903, 1908], "constr": 935, "disp": 935, "finite_diff_rel_step": 935, "gtol": 935, "5000": [935, 1869, 1873, 1877, 1889, 1891, 1895, 1896], "xtol": [935, 1768, 1903, 1907, 1908], "contrain": 935, "arxiv": [935, 1849, 1902, 1903, 1907, 1908], "2310": [935, 1849], "01266": [935, 1849], "\u03c3": [935, 1879], "\u03c3_dyn": 935, "i\u03bd": 935, "\u03c3_0": 935, "hartre": [935, 1626, 1873, 1876, 1877, 1879, 1880], "\u03c3_1": 935, "altern": [935, 1851, 1866, 1883, 1887, 1902, 1907], "s_iw": 935, "s_iw_dlr": 935, "sigma_hf": 935, "iwn": 935, "g_dlr_iw": 935, "g_full_iw": 935, "provdid": 935, "sigma_dlr": 935, "sigma_0": 935, "g\u2080": 935, "g\u2080\u03c3g": 935, "dct": [937, 938], "mutual": [942, 1887], "exclus": [942, 1887], "hdf_scheme": 983, "lazyexpr": 1023, "eval_term": 1024, "fnode": 1027, "fterm": 1027, "child": 1027, "castabl": [1030, 1622], "data_index": [1037, 1038, 1063, 1075, 1088, 1101, 1114, 1131, 1142, 1153, 1161, 1175], "mlist": [1044, 1045], "compom": 1050, "vector_const_view": 1057, "data_index_t": [1062, 1063, 1074, 1075, 1087, 1088, 1100, 1101, 1113, 1114, 1130, 1131, 1141, 1142, 1152, 1153, 1160, 1161, 1174, 1175], "pyobject": [1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177], "spacial": 1067, "otain": [1079, 1092, 1105], "cutoff": [1079, 1092, 1105, 1883, 1887], "accuraci": [1079, 1092, 1105, 1873, 1877, 1883, 1887], "choos": [1079, 1092, 1105, 1853, 1858, 1867, 1874, 1878], "evenli": [1134, 1154, 1166, 1887], "edg": [1134, 1154, 1166, 1849, 1887, 1892, 1897], "degre": [1145, 1890, 1892, 1895, 1897], "max_n": 1145, "w_min": [1154, 1887, 1900, 1905], "adjoint": 1178, "zmin": 1185, "zmax": 1185, "opt_dict": [1186, 1189, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1726, 1727, 1728, 1732], "gfbrillouinzon": [1186, 1189], "ltot": 1187, "xmin": [1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201], "xmax": [1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201], "allow_spectral_mod": 1201, "plot_data": [1201, 1740], "orient": [1204, 1881], "polygon": [1594, 1595], "michel": 1595, "n_div": [1596, 1660], "nkpt": 1619, "nep": [1619, 1620], "triangl": [1620, 1660], "ndiv": 1620, "tb_lattic": [1626, 1627, 1628, 1629, 1630, 1632], "super_lattice_unit": [1626, 1627], "cluster_sit": [1626, 1627], "remove_internal_hop": [1626, 1627], "tblattic": [1626, 1662, 1663, 1664, 1899, 1903, 1904, 1908], "supercel": 1629, "d1": 1632, "remove_intern": 1632, "create_zero": 1632, "dictionnari": 1632, "orbital1": 1632, "orbital2": 1632, "n_r": [1635, 1651, 1887], "n_site": 1642, "nsite": 1642, "pack_index_site_orbit": 1644, "ptb": 1662, "tbl": [1662, 1663, 1664], "extend_to_spin": 1663, "add_loc": 1663, "wout": [1663, 1668, 1874, 1878], "seed_hr": 1663, "seednam": [1663, 1873, 1877, 1880], "_hr": [1663, 1667], "digit": [1664, 1910], "decreas": [1664, 1889, 1896, 1903, 1908], "particularli": [1664, 1869, 1888, 1894], "crystal": [1664, 1883, 1887], "hk": [1664, 1891, 1896], "hk_numer": 1664, "sole": 1664, "hopp_dict": [1665, 1667], "num_wann": [1665, 1667, 1873, 1877], "segment": 1666, "num": [1666, 1899, 1904, 1905, 1906], "relative_coordin": 1666, "overal": [1666, 1873, 1877], "kvec": 1666, "dist": [1666, 1864], "travel": 1666, "null": 1674, "ignore_irrelev": [1698, 1700, 1701, 1702], "real_or_complex_arrai": 1699, "n_i": 1700, "n_j": 1700, "irrelev": [1700, 1701, 1702], "u_dict": [1700, 1701], "dagger_i": [1701, 1702], "dagger_j": 1701, "c_l": 1701, "c_k": 1701, "c_j": [1702, 1883, 1887], "h_dict": 1702, "bl_mat": 1703, "fname": [1707, 1720], "opt_list": [1726, 1727, 1728], "sl": 1731, "emul": 1732, "optional_dict": 1740, "width": [1740, 1882, 1883, 1887], "orthogonal_basi": [1754, 1756], "computegrid": 1754, "super_lattic": 1763, "provind": 1763, "x_0": [1768, 1769], "dx": [1768, 1769], "001": [1768, 1880], "x_name": [1768, 1778], "y_name": [1768, 1778], "monoton": 1768, "bisect": [1768, 1778], "06": [254, 1772, 1773, 1774, 1775, 1776, 1801, 1905], "x_init": 1778, "precision_on_i": 1778, "delta_x": 1778, "max_loop": 1778, "lower": [1778, 1883, 1887, 1889], "upper": 1778, "reimplement": [1780, 1784], "the_funct": [1780, 1784], "distributiononnodetest": 1780, "the_stack": [1784, 1786, 1791, 1793], "mpirun": [1803, 1850, 1873, 1876, 1877, 1880], "triqs_force_mpi_init": 1803, "is_mpi": 1803, "intracomm": 1805, "asynchron": 1806, "subprocess": 1806, "ping": 1806, "sleep": 1806, "msec": 1806, "host": [1809, 1823, 1850, 1874, 1878], "val": [1814, 1828], "dest": [1814, 1828], "imin": [1816, 1817], "imax": [1816, 1817], "threadgroup": 1832, "uniqu": 1832, "decim": 1832, "invoc": 1832, "subclass": [1832, 1841, 1886, 1887], "runtimeerror": [1833, 1838, 1844], "identif": [1834, 1839], "nonzero": 1835, "get_id": 1835, "recycl": 1835, "daemon": [1836, 1842], "unhandl": 1838, "is_al": 1838, "ed": [1838, 1876, 1880], "deadlock": 1838, "get_native_id": 1840, "kernel": [1840, 1883, 1887, 1889], "sequenti": 1841, "arrang": 1844, "control": [1844, 1856, 1873, 1877, 1881, 1882], "savetxt": 1848, "textfilenam": 1848, "reshap": [1848, 1886], "mesh_and_data": 1848, "hstack": 1848, "triqs quantum interacting systems toolbox research": 1849, "oolbox": 1849, "esearch": 1849, "nteract": 1849, "uantum": 1849, "ystem": 1849, "paradigm": 1849, "2005": 1849, "polytechniqu": 1849, "peer": 1849, "broader": 1849, "ecosystem": 1849, "flege": 1849, "dmft": [1849, 1850, 1859, 1869, 1874, 1875, 1878, 1879, 1881, 1883, 1887, 1890, 1891, 1895, 1896], "topic": 1849, "divers": 1849, "electron": [1849, 1873, 1874, 1877, 1878, 1879, 1883, 1887], "sr2ruo4": 1849, "120": [1849, 1873, 1877, 1879, 1880], "126401": 1849, "late": 1849, "metal": [1849, 1873, 1875, 1876, 1877, 1879, 1880, 1890, 1892, 1895, 1897], "oxid": 1849, "infinit": [1849, 1888, 1894, 1903, 1908], "nickel": 1849, "versu": [1849, 1890, 1895], "cuprat": [1849, 1892, 1897], "081110": 1849, "ndnio2": 1849, "cacuo2": 1849, "021061": 1849, "footprint": 1849, "fluctuat": [1849, 1902, 1903, 1907, 1908], "multimethod": 1849, "multimesseng": 1849, "011058": 1849, "resist": 1849, "sachdev": 1849, "kitaev": 1849, "syk": 1849, "liquid": [1849, 1877, 1878], "proc": 1849, "natl": 1849, "acad": 1849, "sci": 1849, "usa": 1849, "117": 1849, "18341": 1849, "scholar": 1849, "84": [1849, 1896], "075145": 1849, "105": 1849, "235115": 1849, "2404": 1849, "02334": 1849, "fellow": 1849, "insight": 1849, "event": 1849, "summer": 1849, "school": 1849, "annual": 1849, "strongli": [1849, 1850, 1859, 1873, 1877], "jupyt": [1849, 1850, 1857, 1859, 1868, 1871, 1873, 1874, 1875, 1877, 1878, 1879, 1909], "session": [1849, 1850, 1852, 1859], "brows": 1849, "snippet": [1849, 1863], "familiar": [1849, 1888, 1894, 1903, 1908], "platform": 1849, "la": [1850, 1873, 1877], "cart": 1850, "privat": 1850, "x86": 1850, "architectur": 1850, "lt": [1850, 1857, 1882, 1887], "jammi": 1850, "sudo": [1850, 1855, 1857], "transport": 1850, "curl": 1850, "lsb": 1850, "triqs3": 1850, "distrib_codenam": 1850, "perman": [1850, 1854], "forg": 1850, "feedstock": 1850, "triqs_cthyb": [1850, 1869, 1889, 1890, 1891, 1892, 1895, 1896, 1897], "triqs_dft_tool": [1850, 1873, 1877], "triqs_tprf": [1850, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "troubl": 1850, "mamba": 1850, "virtual": [1850, 1851, 1854], "administ": 1850, "triqs_latest": 1850, "sif": 1850, "exec": [1850, 1858], "servic": 1850, "close": [1850, 1856, 1863, 1873, 1877, 1890, 1895, 1900, 1905], "hpc": 1850, "bring": [1850, 1881], "eb": 1850, "robot": 1850, "foss": 1850, "2020a": 1850, "toolchain": 1850, "pai": 1850, "attent": [1850, 1873, 1877], "proceed": 1850, "install_prefix": 1850, "pwd": [1850, 1852], "mkdir": [1850, 1855, 1867], "dcmake_install_prefix": [1850, 1853], "ctest": 1850, "bash": 1850, "edit": [1850, 1881, 1890, 1895], "build_x": 1850, "build_x_test": 1850, "temporarili": 1850, "gigabyt": 1850, "ram": 1850, "restrict": 1850, "admin": 1850, "bash_profil": [1850, 1852, 1855], "zprofil": [1850, 1852], "lmod": 1850, "appl": 1851, "anyon": 1851, "superior": 1851, "drop": [1851, 1888, 1894, 1900, 1905], "precompil": 1851, "dowload": 1851, "influenc": 1852, "colon": 1852, "echo": 1852, "home": [1852, 1854, 1855, 1867, 1877], "printenv": 1852, "ld_library_path": 1852, "usernam": 1852, "cflag": 1852, "linker": [1852, 1853], "cpath": 1852, "isystem": 1852, "spawn": 1852, "intend": 1852, "install_path": 1853, "dcmake_build_typ": 1853, "dcmake_cxx_flag": 1853, "dcmake_exe_linker_flag": 1853, "dbuild_test": 1853, "upon": [1854, 1856], "macport": 1854, "fink": 1854, "enthought": 1854, "nor": 1854, "far": [1854, 1900, 1903, 1905, 1908], "qualiti": [1854, 1889], "sometim": 1854, "librairi": 1854, "dai": 1854, "suddenli": 1854, "priori": [1854, 1883, 1887], "impact": 1854, "robust": 1854, "mess": 1854, "mojav": 1854, "xcode": 1854, "sdk": 1854, "sdkroot": 1854, "xcrun": 1854, "doctor": 1854, "zshrc": 1854, "outdat": 1855, "verison": 1855, "although": 1855, "my_python": 1855, "confirm": 1855, "path_to_your_hom": 1855, "package_nam": 1855, "freeli": 1856, "iso": 1856, "committe": 1856, "philsophi": 1856, "evolut": 1856, "rapidli": 1856, "evolv": 1856, "99": [1856, 1896], "gfortran": 1857, "libopenbla": 1857, "libboost": 1857, "libfftw3": 1857, "libgmp": 1857, "libopenmpi": 1857, "fatal": 1857, "h5public": 1857, "dumpmachin": 1857, "suggest": [1858, 1900, 1905], "py3": 1858, "2to3": 1858, "backup": 1858, "2to3_nb": 1858, "ipynb": 1858, "dive": 1858, "round": 1858, "divison": 1858, "__floordiv__": 1858, "slash": 1858, "hard": [1858, 1873, 1877], "net": 1858, "editor": [1858, 1890, 1895], "bufdo": 1858, "nn1": 1858, "gc": 1858, "declin": 1858, "xa": 1858, "appnam": 1858, "module_name_desc": 1858, "outlin": [1858, 1883, 1887], "dpython_execut": 1858, "path_to_python3": 1858, "demo": 1859, "understand": [1859, 1873, 1877, 1890, 1895, 1896, 1900, 1905], "behind": [1859, 1882, 1889], "ingredi": [1859, 1892, 1897], "tackl": 1859, "condens": 1859, "theori": [1859, 1883, 1887], "realiz": 1859, "difficulti": 1859, "aspect": [1859, 1873, 1877, 1881, 1886, 1907, 1909], "remind": [1859, 1864, 1871, 1900, 1905], "anderson": [1859, 1871], "valenc": [1859, 1871], "bond": [1859, 1871, 1873, 1877], "nest": [1859, 1903, 1908, 1909], "suscept": [1859, 1899, 1901, 1902, 1903, 1904, 1906, 1907, 1908, 1909], "rpa": [1859, 1899, 1904, 1909], "tpsc": [1859, 1899, 1901, 1904, 1906, 1909], "antiferromagnet": [1859, 1901, 1906, 1909], "resourc": [1859, 1873, 1877, 1881], "ctqmc": [1859, 1885, 1895], "store_a": 1860, "tql": 1860, "initial_x": 1861, "initial_i": 1861, "stai": [1861, 1881], "d2": 1861, "const_view": 1862, "shortest": 1862, "inu_": 1862, "t_mesh": 1862, "nxm": 1862, "Or": 1862, "t1_": 1862, "t2_": 1862, "36": [1862, 1887, 1896], "hfile": 1863, "my_gf": 1863, "hfile2": 1863, "48796": 1863, "0766486": 1863, "src_dir": 1864, "foobar": 1864, "toto_a1": 1864, "module_a1_desc": 1864, "module_a1": 1864, "totoa1": 1864, "module_b1": 1864, "application_b": 1864, "build_dir": 1864, "install_dir": 1864, "module_path_list": 1864, "automodul": 1864, "blue": [1864, 1873, 1877, 1882, 1889], "prompt": 1864, "my_funct": 1864, "module_a1_wrap": 1864, "yet": [1864, 1873, 1877], "to_be_instal": 1864, "perftool": 1866, "libgoogl": 1866, "pprof": 1866, "lprofil": 1866, "simple_test": 1866, "cpuprofil": 1866, "profile_test": 1866, "prof": 1866, "recompil": [1866, 1867, 1881], "preload": 1866, "libprofil": 1866, "yep": 1866, "easy_instal": 1866, "my_test": 1866, "myep": 1866, "successfulli": 1867, "plan": 1867, "said": [1867, 1899, 1904], "cmake_minimum_requir": 1867, "myproj": 1867, "cmake_build_typ": 1867, "predefin": [1867, 1873, 1877, 1883, 1887], "add_execut": 1867, "target_link_librari": 1867, "triqs_set_rpath_for_target": 1867, "dtriqs_path": 1867, "teach": [1868, 1871, 1909], "strictli": 1869, "technic": 1869, "semi": 1869, "circular": 1869, "g_0": [1869, 1883, 1886, 1887, 1888, 1889, 1894, 1899, 1900, 1904, 1905], "plain": 1869, "vanilla": 1869, "n_loop": [1869, 1888, 1890, 1891, 1892, 1894, 1895, 1896, 1897], "niter": [1869, 1891, 1895, 1896], "paramagnet": [1869, 1873, 1877], "h_int": [1869, 1889, 1891, 1892, 1895, 1896, 1897], "single_site_beth": 1869, "friendli": 1870, "enhanc": [1870, 1900, 1901, 1905, 1906], "browser": 1870, "inlin": [1870, 1873, 1875, 1876, 1877, 1879, 1880, 1883, 1884, 1885, 1886, 1887, 1889, 1890, 1891, 1892, 1894, 1895, 1896, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "think": [1870, 1873, 1877, 1883, 1887, 1890, 1895, 1899, 1901, 1904, 1906], "spend": 1870, "familiaris": 1870, "yourself": 1870, "carpentri": 1870, "video": 1870, "slide": 1870, "lectur": [1870, 1902, 1907], "capabl": 1870, "modeldmft": 1871, "implemet": 1872, "set_printopt": [1873, 1875, 1876, 1877, 1879, 1880], "140": [1873, 1875, 1876, 1877, 1879, 1880], "plot_correlated_band": [1873, 1875, 1876, 1877, 1879, 1880], "pcb": [1873, 1875, 1876, 1877, 1879, 1880], "maxent_sigma": [1873, 1875, 1876, 1877, 1879, 1880], "sigma_max": [1873, 1875, 1876, 1877, 1879, 1880], "la2cuo4": [1873, 1875, 1877, 1879, 1880], "tc": [1873, 1877], "superconductor": [1873, 1877, 1892, 1897], "cu": [1873, 1874, 1877, 1878], "ion": [1873, 1877], "materi": [1873, 1874, 1877, 1878, 1879, 1888, 1894], "suit": [1873, 1877], "straightforward": [1873, 1877], "theoret": [1873, 1877], "werner": [1873, 1877], "91": [1873, 1875, 1877, 1879], "125142": [1873, 1875, 1877, 1879], "workflow": [1873, 1877], "spirit": [1873, 1877], "graybox": [1873, 1877], "deepen": [1873, 1877], "_autosummari": [1873, 1877], "read_config": [1873, 1877], "1088": [1873, 1877], "1361": [1873, 1877], "648x": [1873, 1877], "ac5d1c": [1873, 1877], "recap": [1873, 1877], "scf": [1873, 1877], "d_": [1873, 1877, 1889], "lco": [1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880], "nscf": [1873, 1877], "w90": [1873, 1875, 1876, 1877, 1879, 1880], "mlwf": [1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880], "bandstructur": [1873, 1877], "bnd": [1873, 1877], "disentangl": [1873, 1877], "win": [1873, 1877, 1903, 1908], "num_band": [1873, 1877], "mp_grid": [1873, 1877], "exclude_band": [1873, 1877], "31": [1873, 1877, 1880, 1887, 1896], "34": [1873, 1877, 1879, 1880, 1887, 1896, 1899], "dis_win_min": [1873, 1877], "dis_win_max": [1873, 1877], "dis_froz_min": [1873, 1877], "dis_froz_max": [1873, 1877], "wf": [1873, 1877], "cuo": [1873, 1877], "_4": [1873, 1877], "charact": [1873, 1877], "loc": [1873, 1876, 1877, 1879, 1880, 1883, 1887, 1889, 1892, 1897, 1908], "7367": [1873, 1875, 1876, 1877, 1879, 1880], "dos_data": [1873, 1877], "elem": [1873, 1877], "char_tabl": [1873, 1877], "pdos_tot": [1873, 1877], "tot": [1873, 1877], "loadtxt": [1873, 1877, 1882], "el": [1873, 1877], "n_atom": [1873, 1877], "n_char": [1873, 1877], "pdos_atm": [1873, 1877], "_wfc": [1873, 1877], "w90_do": [1873, 1877], "dpi": [1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1889, 1890, 1891, 1894, 1895, 1896], "figsiz": [1873, 1876, 1877, 1879, 1880, 1883, 1887, 1892, 1894, 1897, 1908], "fill_between": [1873, 1877, 1897], "zorder": [1873, 1877, 1899, 1904], "grai": [1873, 1877], "lw": [1873, 1877, 1882, 1887, 1897, 1899, 1904, 1906, 1907], "dz2": [1873, 1877], "dxz": [1873, 1877], "dyz": [1873, 1877], "dx2": [1873, 1877], "dxy": [1873, 1877], "cu_dx2y2": [1873, 1877], "cu_dz2": [1873, 1877], "2p": [1873, 1877], "set_xlim": [1873, 1876, 1877, 1879, 1880, 1883, 1887], "set_ylim": [1873, 1876, 1877, 1879, 1880], "set_ylabel": [1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887, 1899, 1904], "set_xlabel": [1873, 1876, 1877, 1879, 1880, 1882, 1883, 1886, 1887], "ev": [1873, 1875, 1876, 1877, 1879, 1880], "dominantli": [1873, 1877], "compromis": [1873, 1877], "carefulli": [1873, 1877], "leverag": [1873, 1877], "w90_dict": [1873, 1875, 1876, 1877, 1879, 1880], "w90_path": [1873, 1875, 1876, 1877, 1879, 1880], "w90_seed": [1873, 1875, 1876, 1877, 1879, 1880], "mu_tb": [1873, 1875, 1876, 1877, 1879, 1880], "plot_dict": [1873, 1875, 1876, 1877, 1879, 1880], "colorscheme_band": [1873, 1875, 1876, 1877, 1879, 1880], "coolwarm": [1873, 1877, 1886], "tb_dict": [1873, 1875, 1876, 1877, 1879, 1880], "bands_path": [1873, 1875, 1876, 1877, 1879, 1880], "get_dmft_band": [1873, 1876, 1877, 1879, 1880], "tb_band": [1873, 1876, 1877, 1879, 1880], "alatt_k_w_path": [1873, 1876, 1877, 1879, 1880], "freq_dict": [1873, 1876, 1877, 1879, 1880], "band_data": [1873, 1877], "lco_band": [1873, 1877], "k_mesh": [1873, 1877, 1879, 1880, 1886], "c0": [1873, 1876, 1877, 1879, 1880, 1889], "plot_band": [1873, 1876, 1877, 1879, 1880], "alatt": [1873, 1876, 1877, 1879, 1880], "wannier90convert": [1873, 1877], "inp": [1873, 1877], "irep": [1873, 1877], "lco_wanni": [1873, 1875, 1876, 1877, 1879, 1880], "hdf_filenam": [1873, 1877], "convert_dft_input": [1873, 1877], "cwd": [1873, 1877], "cp": [1873, 1877], "languang": [1873, 1877], "immens": [1873, 1877], "transfer": [1873, 1877, 1900, 1905], "h5py": [1873, 1877], "dft_input": [1873, 1877], "wannier90cconvert": [1873, 1877], "h5structur": [1873, 1877], "expand": [1873, 1874, 1877, 1878, 1889, 1903, 1908], "1160": [1873, 1877], "k_b": [1873, 1877], "ultim": [1873, 1877], "n_cycles_tot": [1873, 1877], "2e": [255, 1873, 1877], "walker": [1873, 1877], "workload": [1873, 1877], "dmft_config": [1873, 1875, 1877, 1879], "ini": [1873, 1875, 1876, 1877, 1879, 1880], "cat": [1873, 1876, 1877, 1879, 1880], "solver_typ": [1873, 1876, 1877, 1880], "n_iter_dmft": [1873, 1877, 1880], "jobnam": [1873, 1875, 1877, 1879, 1880], "dc_type": [1873, 1877, 1880], "b10": [1873, 1875, 1876, 1877, 1879, 1880], "u3": [1873, 1875, 1876, 1877, 1879, 1880, 1896], "observables_imp0": [1873, 1877, 1879], "metric": [1873, 1876, 1877, 1879, 1880], "dmft_result": [1873, 1876, 1877, 1879, 1880], "conv_ob": [1873, 1876, 1877, 1879, 1880], "convergence_ob": [1873, 1876, 1877, 1879, 1880], "sigma_imp_iw": [1873, 1877, 1879], "last_it": [1873, 1876, 1877, 1879, 1880], "sigma_freq_0": [1873, 1877, 1879, 1880], "g_imp_iw": [1873, 1876, 1877, 1879, 1880], "gimp_freq_0": [1873, 1876, 1877, 1879, 1880], "g_imp_tau": [1873, 1876, 1877, 1879, 1880], "gimp_time_0": [1873, 1876, 1877, 1879, 1880], "chemical_potential_post": [1873, 1876, 1877, 1879, 1880], "dc": [1873, 1876, 1877, 1879, 1880], "dc_pot": [1873, 1876, 1877, 1879, 1880], "gaug": [1873, 1877], "quasiparticl": [1873, 1874, 1877, 1878, 1879, 1890, 1892, 1895, 1897], "weiss": [1873, 1877, 1879, 1880, 1888, 1892, 1894, 1897], "condid": [1873, 1877], "nrow": [1873, 1877, 1879, 1880], "sharex": [1873, 1876, 1877, 1879, 1880], "imp_occ": [1873, 1877, 1879, 1880], "c1": [1873, 1877, 1879, 1880, 1889], "98": [1873, 1877, 1879, 1880, 1896], "aw0": [1873, 1877, 1879, 1880], "imp_gb2": [1873, 1877, 1879, 1880], "c2": [1873, 1877, 1879, 1880], "orb_z": [1873, 1877, 1879, 1880], "c3": [1873, 1877, 1879, 1880], "qp": [1873, 1877, 1879, 1880], "semilogi": [1873, 1877, 1879, 1880, 1883, 1887], "d_g0": [1873, 1877, 1879, 1880], "c4": [1873, 1877, 1879, 1880], "dg": [1873, 1877, 1879, 1880], "_0": [1873, 1877, 1879, 1880, 1888, 1892, 1894, 1897], "gimp": [1873, 1877, 1879, 1880], "gloc": [1873, 1877, 1879, 1880], "d_gimp": [1873, 1877, 1879, 1880], "c5": [1873, 1877, 1879, 1880], "seem": [1873, 1877, 1903, 1908], "room": [1873, 1877], "diverg": [1873, 1877, 1879, 1883, 1887, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1908], "mott": [1873, 1877, 1879, 1890, 1891, 1895, 1896], "insul": [1873, 1875, 1876, 1877, 1879, 1880, 1890, 1892, 1895, 1897], "slope": [1873, 1877], "strength": [1873, 1875, 1877, 1879, 1889], "toward": [1873, 1877, 1901, 1906], "strong": [1873, 1877, 1879], "convergen": [1873, 1877], "smoothli": [1873, 1877], "append": [1873, 1877, 1879, 1881, 1884, 1887, 1895], "hd": [1873, 1877], "notic": [1873, 1875, 1877, 1879], "rerun": [1873, 1877], "fine": [1873, 1877, 1900, 1905], "rebinning_tau": [1873, 1877, 1879, 1889], "xx": [1873, 1877], "maxent": [1873, 1875, 1877, 1879, 1895], "stochast": [1873, 1877, 1889], "delic": [1873, 1877, 1883, 1887, 1890, 1895], "great": [1873, 1877], "sound": [1873, 1877], "overinterpret": [1873, 1877], "sigma_real_freq": [1873, 1876, 1877, 1879, 1880], "external_path": [1873, 1877, 1879], "omega_max": [1873, 1877, 1879], "maxent_error": [1873, 1877, 1879], "03": [1873, 1877, 1879, 1882, 1889, 1896, 1899, 1904], "n_points_max": [1873, 1877, 1879], "continuator_typ": [1873, 1877, 1879], "inversion_sigmainf": [1873, 1877, 1879], "offset": [1873, 1876, 1877, 1879, 1880], "photoemiss": [1873, 1877], "with_sigma": [1873, 1876, 1877, 1879, 1880], "calc": [1873, 1877, 1879], "keywarg": [1873, 1876, 1877, 1879, 1880], "sigma_dict": [1873, 1876, 1877, 1879, 1880], "w_mesh": [1873, 1876, 1877, 1879, 1880, 1883, 1884, 1887], "501": [1873, 1876, 1877, 1879, 1880], "dmft_path": [1873, 1876, 1877, 1879, 1880], "grei": [1873, 1875, 1876, 1877, 1879, 1880], "colorscheme_alatt": [1873, 1875, 1876, 1877, 1879, 1880], "spectral_r": [1873, 1875, 1876, 1877, 1879, 1880], "colorscheme_kslic": [1873, 1875, 1876, 1877, 1879, 1880], "black": [1873, 1877, 1879], "intens": [1873, 1877, 1879], "bright": [1873, 1877], "sattelit": [1873, 1877, 1879], "homogen": [1873, 1877], "k_dim": [1873, 1877, 1879, 1880], "e_k": [1873, 1877, 1879, 1880, 1899, 1900, 1903, 1904, 1905, 1908], "mesh_k_w": [1873, 1877, 1879], "g_k_w": [1873, 1877, 1879], "g_loc_w": [1873, 1876, 1877, 1879, 1880], "went": [1873, 1877], "roughli": [1873, 1877], "maxent_gf_imp": [1873, 1877], "gf_imp_max": [1873, 1877], "sum_spin": [1873, 1877], "a_imp_w": [1873, 1877, 1879], "aimp_w_line_fit": [1873, 1877, 1879], "total_0": [1873, 1877, 1879], "plane": [1873, 1877], "tb_kslice": [1873, 1877], "isupp": [1873, 1877], "kslice_upd": [1873, 1877], "kz": [1873, 1877, 1899, 1904], "1e6": [1873, 1877], "fermi_slic": [1873, 1877], "plot_kslic": [1873, 1877], "quarter": [1873, 1877, 1891, 1896], "appropri": [1873, 1874, 1877, 1878, 1879], "sigma_fermise": [1873, 1874, 1877, 1878], "self_energi": [1873, 1877], "dmft_mu": [1873, 1877], "orbital_ord": [1873, 1877], "webapp": [1874, 1878], "lco_hr": [1874, 1877, 1878], "simga_fermise": [1874, 1878], "lab": [1874, 1878], "enter": [1874, 1878, 1881, 1902, 1903, 1907, 1908], "recomput": [1874, 1878, 1903, 1908], "kpoint": [1874, 1878], "upload": [1874, 1878], "wrong": [1874, 1878, 1895, 1903, 1908], "reload": [1874, 1878], "solid_dmft": [1874, 1875, 1876, 1878, 1879, 1880], "incoher": [1874, 1878, 1879, 1880], "fermi": [1874, 1875, 1876, 1878, 1879, 1880, 1892, 1897, 1900, 1903, 1905, 1908], "surfac": [1874, 1878, 1900, 1903, 1905, 1908], "tab": [1874, 1878, 1881], "08": [1875, 1877, 1879, 1880, 1889, 1892, 1896, 1897, 1899, 1904, 1905, 1906, 1908], "223892": [1875, 1879], "gap": [1875, 1879, 1890, 1895], "prb": [1875, 1879], "37": [1875, 1879, 1887, 1896, 1897], "7506": [1875, 1879], "1988": [1875, 1879], "artifici": [1875, 1879, 1890, 1895], "simplic": [1875, 1879], "rout": [1875, 1879], "mit": [1875, 1879], "regim": [1875, 1878, 1879, 1903, 1908], "tip": [1875, 1876, 1879, 1880, 1889, 1890, 1895], "converg": [1875, 1876, 1879, 1880, 1888, 1890, 1892, 1894, 1895, 1897, 1903, 1908], "load_sigma": [1875, 1879], "path_to_sigma": [1875, 1879], "whatev": [1875, 1879], "translat": [1875, 1879], "afterward": [1875, 1882], "abil": [1876, 1880], "seamlessli": [1876, 1880], "lighter": [1876, 1880], "neglect": [1876, 1880, 1899, 1904], "dmft_config_hubbardi": [1876, 1880], "sigma_real_freq_hi": [1876, 1880], "sigma_refreq_0": [1876, 1880], "g_atomic_w": [1876, 1880], "gimp_refreq_0": [1876, 1880], "mu_hi": [1876, 1880], "dc_hi": [1876, 1880], "lehman": [1876, 1880, 1883, 1887], "fragment": [1876, 1880], "sigma_real_freq_cthyb": [1876, 1880], "sigma_maxent_0": [1876, 1880], "xxxx": 1876, "sigma_real_freq_cthyb_in": [1876, 1880], "mu_dmft": [1876, 1880], "spectra": [1876, 1880], "deliv": [1876, 1880], "4j": [1876, 1880, 1881], "g_loc_w_cthyb": [1876, 1880], "ce2o3_csc_w90": [1876, 1880], "19": [254, 255, 1877, 1887, 1889, 1896], "07": [1877, 1897, 1899, 1904], "53": [1877, 1896, 1903, 1908], "835903": 1877, "antibod": 1877, "8956": [1877, 1879, 1880], "mnt": 1877, "ahampel": 1877, "abinitiodmft": 1877, "inequival": 1877, "3may2022": 1877, "397": 1877, "00000": 1877, "corr": 1877, "838": 1877, "000j": 1877, "charge_below": 1877, "corr_shel": 1877, "corr_to_inequiv": 1877, "density_requir": 1877, "dft_code": 1877, "dim_rep": 1877, "energy_unit": 1877, "inequiv_to_corr": 1877, "k_dep_project": 1877, "kpt_weight": 1877, "kpt": 1877, "n_corr_shel": 1877, "n_inequiv_shel": 1877, "n_rep": 1877, "n_shell": 1877, "proj_mat": 1877, "rot_mat": 1877, "rot_mat_time_inv": 1877, "symm_op": 1877, "use_rot": 1877, "251": [1877, 1880], "5001": [1877, 1880, 1883, 1887], "prec_mu": [1877, 1880], "0001": [1877, 1880], "mu_initial_guess": [1877, 1880], "h_int_typ": [1877, 1880], "dc_dmft": [1877, 1880], "h5_save_freq": [1877, 1880], "store_solv": 1877, "imag_threshold": 1877, "measure_density_matrix": [1877, 1880, 1890, 1895], "perform_tail_fit": 1877, "fit_max_mo": 1877, "fit_min_w": 1877, "fit_max_w": 1877, "occ": [1877, 1879], "79717": [1877, 1879], "32562": [1877, 1879], "99991": [1877, 1879], "14981": 1877, "98807": 1877, "86777": 1877, "12728": 1877, "99207": 1877, "89134": 1877, "11719": 1877, "99775": 1877, "89788": 1877, "11063": 1877, "99678": 1877, "90672": 1877, "10749": 1877, "99894": 1877, "90939": 1877, "10648": 1877, "99783": 1877, "91505": 1877, "10431": 1877, "99636": 1877, "92424": 1877, "10370": 1877, "00087": 1877, "92160": 1877, "10397": 1877, "00069": 1877, "dmft_input": 1877, "dft_misc_input": 1877, "sigma_freq_0_up_0": 1877, "502": 1877, "sigma_freq_0_down_0": 1877, "g_imp_rebin": [1877, 1879, 1889], "\u03c9": [1877, 1879, 1880], "0454": 1877, "5425": 1877, "5920": 1877, "0752": 1877, "2550": 1877, "epsilon_": [1877, 1889, 1897], "\u03bc": [1877, 1879, 1880], "9199": 1877, "23": [1877, 1887, 1896], "27": [1877, 1887, 1896], "29": [1877, 1887, 1896, 1904, 1905, 1906, 1908], "0911": 1877, "u5": [1879, 1880, 1896], "09197": 1879, "98699": 1879, "88153": 1879, "04956": 1879, "99814": 1879, "89133": 1879, "02594": 1879, "99703": 1879, "90468": 1879, "01621": 1879, "99913": 1879, "90872": 1879, "00930": 1879, "99939": 1879, "91156": 1879, "00421": 1879, "00005": 1879, "00202": 1879, "99979": 1879, "91255": 1879, "00367": 1879, "99936": 1879, "91577": 1879, "00284": 1879, "91871": 1879, "00353": 1879, "99932": 1879, "02": [1879, 1880, 1883, 1886, 1887, 1896], "_n": 1879, "coher": 1879, "jump": [1879, 1883, 1887], "induc": 1879, "freez": 1879, "motion": 1879, "excit": [1879, 1880, 1903, 1908], "42": [1879, 1896], "1552": 1879, "6919": 1879, "92": [1879, 1886, 1896], "3515": 1879, "0624": [1879, 1896], "125": 1879, "2610": 1879, "9218": 1879, "disappear": 1879, "aimp_w_0_met": 1879, "aimp_maxent_0": 1879, "optic": 1879, "853128": 1880, "dc_energ": 1880, "delta_time_0": 1880, "g0_refreq_0": 1880, "g0_freq_0": 1880, "chemical_potential_pr": 1880, "dens_mat_post": 1880, "dens_mat_pr": 1880, "full_dens_mat_0": 1880, "h_loc_diag_0": 1880, "ins": [1880, 1896], "pole": 1880, "awai": [1880, 1888, 1894], "7853": 1880, "multiplet": [1880, 1890, 1895, 1896], "peak": [1880, 1883, 1887, 1900, 1901, 1905, 1906], "adequ": 1880, "heavi": 1880, "Being": 1881, "thorough": 1881, "swcarpentri": 1881, "novic": 1881, "gapmind": 1881, "inflamm": 1881, "my_script": 1881, "mathematica": 1881, "hello": 1881, "exercis": [1881, 1888, 1889, 1890, 1891, 1892, 1894, 1895, 1897, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "quickest": 1881, "explanatori": 1881, "2j": [1881, 1891, 1896], "3095238095238093": 1881, "0j": [1881, 1886], "12j": 1881, "elif": 1881, "fnct": 1881, "3f": [1881, 1883, 1887], "000": 1881, "l3": 1881, "what_is_x": 1881, "change_x": 1881, "press": 1881, "5x": 1882, "mpl": [1882, 1883, 1887, 1889, 1890, 1891, 1894, 1895, 1896], "rcparam": [1882, 1883, 1887, 1889, 1890, 1891, 1894, 1895, 1896], "xr": 1882, "yr1": 1882, "yr2": 1882, "red": [1882, 1889, 1906], "xb": 1882, "0x10d970050": 1882, "yr": 1882, "titl": [1882, 1897, 1905, 1906, 1908], "randn": 1882, "facecolor": 1882, "028": 1882, "0025": 1882, "smart": 1882, "45": [1882, 1896, 1907, 1908], "025": 1882, "fontsiz": [1882, 1897, 1899, 1904], "160": 1882, "matlab": 1882, "curtain": 1882, "add_ax": [1882, 1894], "set_titl": [1882, 1886], "inset": 1882, "tanh": [1882, 1900, 1905], "subax": 1882, "85": [1882, 1892, 1896, 1897], "sinu": 1882, "0x10dd56810": 1882, "211": 1882, "212": 1882, "121": 1882, "122": 1882, "line2d": 1882, "0x10db27a90": 1882, "cal": [1883, 1887, 1888, 1891, 1892, 1894, 1896, 1897], "mathbb": [1883, 1887], "times2": [1883, 1887], "grand": [1883, 1887], "ensembl": [1883, 1887], "exponenti": [1883, 1887, 1903, 1908], "realist": [1883, 1887], "c_i": [1883, 1887], "conserv": [1883, 1887, 1902, 1907], "2g": [1883, 1887], "e_g": [1883, 1887], "talk": [1883, 1887], "v_1": [1883, 1887], "epsilon_2": [1883, 1887], "v_2": [1883, 1887], "g_eg": [1883, 1887], "g_t2g": [1883, 1887], "eps_t2g": [1883, 1887], "t_2g": [1883, 1887], "epsilon_d": [1883, 1887, 1889], "textbf": [1883, 1887], "worri": [1883, 1887], "giw_2": [1883, 1887], "thousand": [1883, 1887], "problemat": [1883, 1887], "kay": [1883, 1887], "prb105": [1883, 1887], "2022": [1883, 1887], "omega_l": [1883, 1887], "widehat": [1883, 1887], "_l": [1883, 1887], "dimensionless": [1883, 1887], "character": [1883, 1887, 1890, 1895], "assumpt": [1883, 1887], "1500": [1883, 1887], "dlr_iw_mesh": [1883, 1887], "giw_dlr": [1883, 1887], "43": [1883, 1887, 1896], "giw_from_dlr": [1883, 1887], "arbirarili": [1883, 1887], "dens": [1883, 1887], "gtau_dlr": [1883, 1887], "ill": [1883, 1887], "nois": [1883, 1887, 1889, 1890, 1895], "coars": [1883, 1887], "worsen": [1883, 1887], "did": [1883, 1887, 1890, 1895], "verifi": [1883, 1887], "perturb": [1883, 1887], "light": 1884, "recoveri": 1884, "recov": 1884, "my_arch": 1884, "overwrit": 1884, "inspir": 1885, "gs_energi": 1885, "2t": [1886, 1892, 1897, 1899, 1900, 1904, 1905], "k_x": [1886, 1897, 1899, 1900, 1904, 1905], "k_y": [1886, 1897, 1899, 1900, 1904, 1905], "_x": [1886, 1905], "_y": 1886, "r3": 1886, "128": [1886, 1899, 1903, 1904, 1908], "k_iw_mesh": 1886, "recal": [1886, 1892, 1897], "timeit": 1886, "faster": 1886, "iw_arr": 1886, "k_arr": 1886, "np_ep": 1886, "eps_arr": 1886, "repons": 1886, "omega_2": 1886, "g_eval": 1886, "g_exact": 1886, "k_0": 1886, "k0": 1886, "linearli": 1886, "9996637574643963": 1886, "cpython": [1886, 1887], "311": [1886, 1887], "darwin": [1886, 1887], "gtb": 1886, "k_grid": 1886, "110": [1886, 1899, 1904], "surf": 1886, "plot_surfac": 1886, "cmap": [1886, 1897, 1899, 1904, 1905], "colorbar": [1886, 1897, 1899, 1904, 1905, 1906], "shrink": 1886, "addmethod": 1887, "119": 1887, "146": 1887, "178": 1887, "217": 1887, "265": 1887, "324": 1887, "396": 1887, "483": 1887, "590": 1887, "721": 1887, "26894142138025784": 1887, "816357384858482e": 1887, "15j": 1887, "6001": 1887, "31556737050747535": 1887, "638049093627782e": 1887, "17j": 1887, "83481049534862e": 1887, "9381548639656863j": 1887, "33": [1887, 1896], "35": [1887, 1894, 1896, 1907, 1908], "eps_r": 1887, "05": [255, 1887, 1899, 1904], "0x11273a790": 1887, "sigma_check": 1887, "_check": 1887, "38": [1887, 1896], "g0_tau": [1887, 1894, 1895], "sigma_tau": [1887, 1894, 1895], "g0_w": 1887, "ipt": [1888, 1889, 1890, 1894, 1895], "cheap": [1888, 1894], "iptsolv": [1888, 1894, 1895], "sigma_": [1888, 1890, 1892, 1894, 1895, 1897], "scan": [1888, 1894, 1902, 1907], "hybridis": 1889, "darkgreen": 1889, "nu": [1889, 1902, 1903, 1907, 1908], "diagrammat": 1889, "contrari": [1889, 1903, 1908], "busi": 1889, "circl": 1889, "50000": 1889, "49": [1889, 1896], "483848": 1889, "warm": [1889, 1896], "4999": [1889, 1896], "9760": 1889, "49999": 1889, "00566571": 1889, "000908685": 1889, "000881916": 1889, "0114234": 1889, "0188797": 1889, "0512121": 1889, "delta_up": [1889, 1896], "0513189": 1889, "delta_down": [1889, 1896], "0511046": 1889, "0509981": 1889, "0513082": 1889, "0506868": 1889, "00488083": 1889, "delta_up_up": [1889, 1896], "00562934": 1889, "delta_up_down": [1889, 1896], "0033534": 1889, "delta_down_up": [1889, 1896], "00373554": 1889, "delta_down_down": [1889, 1896], "00676994": 1889, "00496258": 1889, "00575551": 1889, "0038171": 1889, "00347195": 1889, "00682145": 1889, "689225": 1889, "0479879": 1889, "507693": 1889, "716": 1889, "86": [1889, 1896], "6392": 1889, "disconnect": 1889, "markov": 1889, "onlin": 1889, "benefici": 1889, "unrol": 1889, "randomli": 1889, "proport": [1889, 1895, 1903, 1908], "oscil": 1889, "elabor": [1890, 1895], "run_dmft": [1890, 1895], "favourit": [1890, 1895], "vi": [1890, 1895], "gedit": [1890, 1895], "polar": [1890, 1895], "criteria": [1890, 1895], "extrapol": [1890, 1895], "gradual": [1890, 1895], "use_norm_as_weight": [1890, 1895], "multiplet_tool": [1890, 1895], "multiplet_analysi": [1890, 1895], "panda": [1890, 1895], "frame": [1890, 1895], "3j": [1891, 1896], "mu_": [1891, 1896], "81": [1891, 1896], "6899": [1891, 1896], "1099": [1891, 1896], "02548": [1891, 1896], "02709": [1891, 1896], "1606": [1891, 1896], "one_band": [1891, 1895, 1896], "makedir": [1891, 1896], "2f": [1891, 1894, 1895, 1896, 1906, 1908], "stuck": [1891, 1896], "sneak": [1891, 1896], "peek": [1891, 1896], "two_band": [1891, 1896], "vari": [1891, 1895, 1896, 1902, 1907], "u_c": [1891, 1896, 1901, 1903, 1906, 1908], "dca": [1892, 1897], "80": [1892, 1896, 1897, 1908], "064501": [1892, 1897], "europhi": [1892, 1897], "57009": [1892, 1897], "82": [1892, 1896, 1897], "054502": [1892, 1897], "2010": [1892, 1897], "155101": [1892, 1897], "freedom": [1892, 1897], "nodal": [1892, 1897], "antinod": [1892, 1897], "region": [1892, 1897, 1899, 1904], "dope": [1892, 1897], "appar": [1892, 1897], "arc": [1892, 1897], "varepsilon_": [1892, 1897], "4t": [1892, 1897], "hole": [1892, 1897, 1901, 1906], "subdivid": [1892, 1897], "area": [1892, 1897], "complementari": [1892, 1897], "kinet": [1892, 1897], "linspac": [1892, 1897, 1899, 1904, 1905, 1906], "meshgrid": [1892, 1897, 1899, 1904, 1905, 1906], "contourplot": [1892, 1897], "6155": [1892, 1897], "mask": [1892, 1897], "in_central_patch": [1892, 1897], "kx": [1892, 1897, 1899, 1904, 1905, 1906], "ky": [1892, 1897, 1899, 1904, 1905, 1906], "cn": [1892, 1897], "cn_dag": [1892, 1897], "nn": [1892, 1897], "h_loc": [1892, 1897], "rho_": [1892, 1897], "measure_g_l": [1892, 1897], "unfortun": [1892, 1897], "vbdmft": [1892, 1897], "subfold": [1892, 1897], "pseudogap": [1892, 1897], "qualit": [1892, 1897], "rough": [1892, 1897, 1900, 1903, 1905, 1908], "doping_": [1892, 1897], "10001": [1894, 1895], "pn": 1894, "set_yticklabel": 1894, "antoin": 1894, "georg": 1894, "a1": 1895, "u2": [1895, 1896], "a2": 1895, "u6": [1895, 1896], "di": 1895, "sim": [1895, 1903, 1908], "omega_0": [1895, 1899, 1900, 1904, 1905], "u_list": 1895, "z_list": 1895, "u_list2": 1895, "z_list2": 1895, "u4": [1895, 1896], "g_real": 1895, "regardless": 1895, "knob": 1895, "solver_u_met": 1895, "solver_u_in": 1895, "occupi": [1895, 1902, 1907], "res_met": 1895, "h_loc_diag": 1895, "h_loc_diagon": 1895, "res_in": 1895, "41": [1896, 1903, 1907, 1908], "2083": 1896, "2046": 1896, "9999": 1896, "00121841": 1896, "000180423": 1896, "000183033": 1896, "0022792": 1896, "00386106": 1896, "134194": 1896, "135137": 1896, "133256": 1896, "134078": 1896, "134495": 1896, "13366": 1896, "0237206": 1896, "0263818": 1896, "0215067": 1896, "0192815": 1896, "Ins": 1896, "568460": 1896, "ert": 1896, "0276912": 1896, "0240728": 1896, "027297": 1896, "0201105": 1896, "0206622": 1896, "0282551": 1896, "83864": 1896, "240672": 1896, "491363": 1896, "1807": 1896, "07816": 1896, "2096": 1896, "2041": 1896, "00122602": 1896, "000181799": 1896, "000187614": 1896, "00154239": 1896, "00313782": 1896, "137529": 1896, "138608": 1896, "136454": 1896, "135646": 1896, "137095": 1896, "134192": 1896, "0248063": 1896, "029023": 1896, "0202982": 1896, "0212102": 1896, "0286456": 1896, "0258106": 1896, "0300133": 1896, "0207927": 1896, "0216027": 1896, "0308751": 1896, "82967": 1896, "242133": 1896, "496411": 1896, "0726": 1896, "95457": 1896, "2012": 1896, "1999": 1896, "00126701": 1896, "000178569": 1896, "000182007": 1896, "00399153": 1896, "00561911": 1896, "136691": 1896, "136118": 1896, "137262": 1896, "135948": 1896, "135115": 1896, "136781": 1896, "024431": 1896, "0279642": 1896, "0212578": 1896, "021372": 1896, "0270992": 1896, "0251374": 1896, "0298838": 1896, "0205143": 1896, "0209849": 1896, "0291752": 1896, "832854": 1896, "247163": 1896, "502235": 1896, "1617": 1896, "88829": 1896, "2072": 1896, "00126531": 1896, "00018556": 1896, "000181974": 1896, "00307852": 1896, "00471137": 1896, "137877": 1896, "13878": 1896, "136976": 1896, "136859": 1896, "137844": 1896, "135872": 1896, "0240401": 1896, "0279466": 1896, "0193165": 1896, "0205293": 1896, "rt": 1896, "0283427": 1896, "0247222": 1896, "0272073": 1896, "0219802": 1896, "0218302": 1896, "0278651": 1896, "830322": 1896, "246525": 1896, "498298": 1896, "1484": 1896, "59076": 1896, "2026": 1896, "2064": 1896, "00124302": 1896, "000183717": 1896, "000188498": 1896, "00344506": 1896, "0050603": 1896, "136129": 1896, "135304": 1896, "136951": 1896, "137127": 1896, "1367": 1896, "137554": 1896, "024601": 1896, "0281926": 1896, "0207839": 1896, "0216895": 1896, "027688": 1896, "0242563": 1896, "0271906": 1896, "0216098": 1896, "0202847": 1896, "0279555": 1896, "830414": 1896, "242121": 1896, "490822": 1896, "1626": 1896, "51126": 1896, "10found": 1896, "2094": 1896, "00124401": 1896, "000175229": 1896, "000179357": 1896, "00229849": 1896, "00389709": 1896, "136631": 1896, "137952": 1896, "135314": 1896, "138106": 1896, "13836": 1896, "137851": 1896, "0257115": 1896, "029352": 1896, "0212757": 1896, "0216313": 1896, "030564": 1896, "0249482": 1896, "0290644": 1896, "0214022": 1896, "0207806": 1896, "0285886": 1896, "830217": 1896, "237919": 1896, "48821": 1896, "1595": 1896, "00369": 1896, "2071": 1896, "2093": 1896, "00121949": 1896, "000174776": 1896, "000177332": 1896, "00220899": 1896, "00378058": 1896, "138683": 1896, "138785": 1896, "138581": 1896, "135491": 1896, "134835": 1896, "136151": 1896, "0238837": 1896, "0282195": 1896, "0187678": 1896, "0213364": 1896, "0271656": 1896, "0256944": 1896, "0296998": 1896, "0223175": 1896, "0230494": 1896, "0277512": 1896, "826742": 1896, "240293": 1896, "484146": 1896, "0322": 1896, "10339": 1896, "2055": 1896, "2008": 1896, "00122868": 1896, "000178445": 1896, "000179449": 1896, "00223444": 1896, "00382102": 1896, "138506": 1896, "139623": 1896, "137394": 1896, "138454": 1896, "136949": 1896, "139969": 1896, "0253769": 1896, "0293179": 1896, "0211004": 1896, "0205091": 1896, "sert": 1896, "0305689": 1896, "0253767": 1896, "0309133": 1896, "0217365": 1896, "0212245": 1896, "0276795": 1896, "827338": 1896, "241515": 1896, "487717": 1896, "0508": 1896, "62123": 1896, "2074": 1896, "2058": 1896, "00120751": 1896, "000174187": 1896, "000178604": 1896, "00142541": 1896, "00298571": 1896, "137111": 1896, "138103": 1896, "136124": 1896, "136868": 1896, "136946": 1896, "136791": 1896, "0244609": 1896, "0282271": 1896, "0201996": 1896, "0211721": 1896, "0281887": 1896, "0246914": 1896, "0285174": 1896, "0222497": 1896, "0207763": 1896, "0272237": 1896, "831942": 1896, "239978": 1896, "48282": 1896, "1865": 1896, "6264": 1896, "2077": 1896, "00127013": 1896, "000206261": 1896, "000180197": 1896, "00201599": 1896, "00367258": 1896, "136865": 1896, "136144": 1896, "137585": 1896, "136487": 1896, "136087": 1896, "136888": 1896, "0247125": 1896, "0291157": 1896, "0200999": 1896, "0207065": 1896, "0288711": 1896, "0250504": 1896, "0279124": 1896, "0211228": 1896, "0220934": 1896, "0291107": 1896, "830829": 1896, "24054": 1896, "4861": 1896, "1232": 1896, "62633": 1896, "2284": 1896, "2255": 1896, "00123761": 1896, "000177008": 1896, "000180409": 1896, "00124214": 1896, "00283716": 1896, "125473": 1896, "125155": 1896, "12579": 1896, "125671": 1896, "125471": 1896, "125871": 1896, "0246864": 1896, "0268028": 1896, "0216412": 1896, "0227946": 1896, "0274721": 1896, "0247316": 1896, "0269343": 1896, "0224071": 1896, "0220799": 1896, "0275138": 1896, "698464": 1896, "218575": 1896, "443867": 1896, "6646": 1896, "28392": 1896, "46": 1896, "2314": 1896, "2312": 1896, "00120478": 1896, "000177364": 1896, "000178484": 1896, "00126514": 1896, "00282577": 1896, "130538": 1896, "131357": 1896, "129719": 1896, "130263": 1896, "131032": 1896, "129493": 1896, "0270564": 1896, "0299128": 1896, "0238143": 1896, "0254887": 1896, "0289647": 1896, "0271909": 1896, "0297328": 1896, "0259022": 1896, "0248111": 1896, "028303": 1896, "678488": 1896, "215686": 1896, "437622": 1896, "3414": 1896, "59554": 1896, "2256": 1896, "00120432": 1896, "000177742": 1896, "000178896": 1896, "00268057": 1896, "00424153": 1896, "127771": 1896, "128914": 1896, "12663": 1896, "128221": 1896, "129491": 1896, "12695": 1896, "0256648": 1896, "0283026": 1896, "0233949": 1896, "0232993": 1896, "0276514": 1896, "0258822": 1896, "0277958": 1896, "0234759": 1896, "0250552": 1896, "0272286": 1896, "684272": 1896, "217683": 1896, "44214": 1896, "4618": 1896, "75014": 1896, "2304": 1896, "2294": 1896, "00122231": 1896, "000187478": 1896, "000183211": 1896, "00135477": 1896, "00294777": 1896, "131699": 1896, "130628": 1896, "13277": 1896, "130431": 1896, "129478": 1896, "131386": 1896, "0271569": 1896, "0258805": 1896, "024888": 1896, "0296566": 1896, "0275519": 1896, "0287468": 1896, "0255961": 1896, "0253231": 1896, "0305499": 1896, "672073": 1896, "215632": 1896, "436025": 1896, "2379": 1896, "34046": 1896, "2308": 1896, "2293": 1896, "00123141": 1896, "000177542": 1896, "000178821": 1896, "00140636": 1896, "00299413": 1896, "131567": 1896, "133715": 1896, "129426": 1896, "130663": 1896, "13311": 1896, "128214": 1896, "0276007": 1896, "0306565": 1896, "0254948": 1896, "025725": 1896, "0285063": 1896, "0284674": 1896, "0316303": 1896, "0252882": 1896, "0267753": 1896, "0301962": 1896, "677651": 1896, "216824": 1896, "439615": 1896, "2701": 1896, "43454": 1896, "2299": 1896, "2264": 1896, "00118916": 1896, "000176917": 1896, "000176414": 1896, "00128476": 1896, "00282725": 1896, "127818": 1896, "127863": 1896, "127773": 1896, "128597": 1896, "128824": 1896, "12837": 1896, "0270821": 1896, "0302706": 1896, "0244285": 1896, "0250341": 1896, "0285486": 1896, "0268681": 1896, "029369": 1896, "0251997": 1896, "0249889": 1896, "0279296": 1896, "680676": 1896, "218647": 1896, "440596": 1896, "4495": 1896, "93486": 1896, "2273": 1896, "2245": 1896, "00127285": 1896, "000182139": 1896, "000183024": 1896, "00171741": 1896, "00335542": 1896, "128634": 1896, "128384": 1896, "128883": 1896, "129022": 1896, "12886": 1896, "129184": 1896, "0264743": 1896, "0287922": 1896, "0235365": 1896, "0237667": 1896, "0297869": 1896, "026674": 1896, "0276172": 1896, "0253356": 1896, "0249358": 1896, "0288193": 1896, "681544": 1896, "218576": 1896, "440496": 1896, "4043": 1896, "96938": 1896, "2292": 1896, "2296": 1896, "00121937": 1896, "000173054": 1896, "000177333": 1896, "00127057": 1896, "00284032": 1896, "132223": 1896, "132401": 1896, "132044": 1896, "129861": 1896, "12952": 1896, "130201": 1896, "0269862": 1896, "0305089": 1896, "0243726": 1896, "0237724": 1896, "0292517": 1896, "0282147": 1896, "0309872": 1896, "0276375": 1896, "0263264": 1896, "0279213": 1896, "677678": 1896, "216506": 1896, "437101": 1896, "242": 1896, "74536": 1896, "2325": 1896, "00127472": 1896, "000172614": 1896, "000177763": 1896, "00117997": 1896, "00280507": 1896, "130937": 1896, "132246": 1896, "12963": 1896, "131236": 1896, "132046": 1896, "130424": 1896, "0276569": 1896, "0298347": 1896, "0258974": 1896, "0245561": 1896, "0303272": 1896, "0277909": 1896, "0306308": 1896, "0249253": 1896, "0255935": 1896, "0300287": 1896, "675164": 1896, "215985": 1896, "432564": 1896, "2563": 1896, "01083": 1896, "2300": 1896, "2318": 1896, "00120759": 1896, "000175362": 1896, "000180967": 1896, "00117891": 1896, "00274283": 1896, "131003": 1896, "131509": 1896, "1305": 1896, "130783": 1896, "130729": 1896, "130837": 1896, "0263867": 1896, "0290737": 1896, "0231511": 1896, "0250389": 1896, "0282522": 1896, "0267621": 1896, "0297348": 1896, "0242209": 1896, "0247709": 1896, "0283461": 1896, "67701": 1896, "215519": 1896, "43658": 1896, "3268": 1896, "794236": 1896, "2498": 1896, "2484": 1896, "00119638": 1896, "000171907": 1896, "000178944": 1896, "00109991": 1896, "00264714": 1896, "112247": 1896, "113798": 1896, "110696": 1896, "111523": 1896, "11241": 1896, "110636": 1896, "0226176": 1896, "0237627": 1896, "0205814": 1896, "0218449": 1896, "0242896": 1896, "0232029": 1896, "0245147": 1896, "022101": 1896, "0226071": 1896, "0235938": 1896, "568929": 1896, "199267": 1896, "399275": 1896, "0545": 1896, "35299": 1896, "2696": 1896, "2670": 1896, "00120833": 1896, "000195012": 1896, "000184797": 1896, "00111078": 1896, "00269892": 1896, "119575": 1896, "118774": 1896, "120375": 1896, "118525": 1896, "117625": 1896, "119424": 1896, "0260688": 1896, "0249124": 1896, "0259468": 1896, "028224": 1896, "0251899": 1896, "0267536": 1896, "026036": 1896, "0281528": 1896, "0270466": 1896, "0257593": 1896, "509178": 1896, "185284": 1896, "376047": 1896, "1244": 1896, "95588": 1896, "2684": 1896, "2678": 1896, "00121023": 1896, "000178375": 1896, "000180273": 1896, "00104384": 1896, "00261271": 1896, "116787": 1896, "116187": 1896, "117384": 1896, "116633": 1896, "116475": 1896, "11679": 1896, "0259455": 1896, "026201": 1896, "0258814": 1896, "0264806": 1896, "0252178": 1896, "0264393": 1896, "0269715": 1896, "0248916": 1896, "026979": 1896, "0269331": 1896, "520079": 1896, "18574": 1896, "377745": 1896, "61951": 1896, "2683": 1896, "2661": 1896, "00118682": 1896, "000179021": 1896, "000177377": 1896, "000954406": 1896, "00249762": 1896, "119259": 1896, "118998": 1896, "11952": 1896, "11786": 1896, "11722": 1896, "118509": 1896, "0262007": 1896, "0247214": 1896, "0280183": 1896, "0277204": 1896, "0243335": 1896, "0270037": 1896, "0264473": 1896, "0269378": 1896, "0272082": 1896, "027421": 1896, "514142": 1896, "185126": 1896, "375112": 1896, "1344": 1896, "42356": 1896, "2687": 1896, "2634": 1896, "00118086": 1896, "000177055": 1896, "000180533": 1896, "00158726": 1896, "00312571": 1896, "12076": 1896, "121218": 1896, "120303": 1896, "121201": 1896, "121831": 1896, "120573": 1896, "0267368": 1896, "026411": 1896, "0274809": 1896, "0270616": 1896, "0260013": 1896, "0265407": 1896, "025342": 1896, "0281685": 1896, "0271009": 1896, "0255323": 1896, "515457": 1896, "18502": 1896, "378509": 1896, "1383": 1896, "12987": 1896, "52": 1896, "2643": 1896, "2664": 1896, "0012663": 1896, "000184783": 1896, "000189254": 1896, "00362876": 1896, "0052691": 1896, "117368": 1896, "117308": 1896, "117427": 1896, "117241": 1896, "116591": 1896, "117894": 1896, "0261457": 1896, "0261487": 1896, "0253525": 1896, "0266688": 1896, "0264136": 1896, "0265045": 1896, "0252665": 1896, "0275678": 1896, "0282901": 1896, "512693": 1896, "187877": 1896, "38964": 1896, "1385": 1896, "93431": 1896, "2704": 1896, "2590": 1896, "00119782": 1896, "000175158": 1896, "000179523": 1896, "00180878": 1896, "00336127": 1896, "117365": 1896, "117624": 1896, "117106": 1896, "117283": 1896, "118533": 1896, "116037": 1896, "026697": 1896, "0264597": 1896, "0273612": 1896, "0266847": 1896, "0262799": 1896, "0270184": 1896, "0264397": 1896, "0271184": 1896, "0268783": 1896, "0276341": 1896, "514539": 1896, "185398": 1896, "379588": 1896, "1263": 1896, "74038": 1896, "2685": 1896, "2596": 1896, "00116657": 1896, "000178551": 1896, "000180033": 1896, "00131102": 1896, "00283617": 1896, "116924": 1896, "117617": 1896, "116232": 1896, "118121": 1896, "119441": 1896, "116798": 1896, "0269091": 1896, "0271326": 1896, "025719": 1896, "029214": 1896, "0255767": 1896, "0263473": 1896, "0264778": 1896, "0261575": 1896, "0262325": 1896, "0265242": 1896, "520462": 1896, "185252": 1896, "383034": 1896, "2418": 1896, "82905": 1896, "51": [1896, 1902, 1907], "2560": 1896, "2609": 1896, "00121845": 1896, "000179815": 1896, "000202924": 1896, "0021689": 1896, "00377008": 1896, "119297": 1896, "120148": 1896, "118445": 1896, "118649": 1896, "119257": 1896, "11804": 1896, "0254296": 1896, "0260036": 1896, "0235786": 1896, "0265909": 1896, "0255261": 1896, "0261909": 1896, "0270227": 1896, "0257851": 1896, "0259396": 1896, "0260241": 1896, "522949": 1896, "190266": 1896, "388758": 1896, "3131": 1896, "33377": 1896, "2549": 1896, "2363": 1896, "00129221": 1896, "000192149": 1896, "000188825": 1896, "00803591": 1896, "0097091": 1896, "119166": 1896, "117673": 1896, "120666": 1896, "119688": 1896, "11855": 1896, "120824": 1896, "0250876": 1896, "025384": 1896, "024949": 1896, "0252735": 1896, "0247464": 1896, "0252292": 1896, "0248425": 1896, "0247179": 1896, "0271435": 1896, "0242195": 1896, "507301": 1896, "195011": 1896, "40592": 1896, "1319": 1896, "78747": 1896, "2734": 1896, "2815": 1896, "00119336": 1896, "00017397": 1896, "000173595": 1896, "00108587": 1896, "00262679": 1896, "10269": 1896, "100883": 1896, "104505": 1896, "102024": 1896, "101145": 1896, "102906": 1896, "0199348": 1896, "0203415": 1896, "0208978": 1896, "020635": 1896, "0178728": 1896, "0204535": 1896, "0205254": 1896, "0194903": 1896, "022088": 1896, "0197157": 1896, "460326": 1896, "180869": 1896, "359313": 1896, "2466": 1896, "60183": 1896, "66": 1896, "3327": 1896, "3220": 1896, "00117142": 1896, "000177189": 1896, "000180591": 1896, "00234315": 1896, "00387235": 1896, "110834": 1896, "111457": 1896, "110211": 1896, "110152": 1896, "110913": 1896, "109392": 1896, "0245707": 1896, "0213173": 1896, "0271374": 1896, "0288638": 1896, "0209527": 1896, "0252332": 1896, "0219842": 1896, "027412": 1896, "02984": 1896, "021649": 1896, "347207": 1896, "15062": 1896, "312381": 1896, "5515": 1896, "66685": 1896, "68": 1896, "3418": 1896, "3354": 1896, "00119055": 1896, "000173035": 1896, "000182784": 1896, "00180668": 1896, "00335305": 1896, "109566": 1896, "110312": 1896, "108824": 1896, "109807": 1896, "109229": 1896, "110382": 1896, "0245849": 1896, "0203437": 1896, "0290226": 1896, "0286879": 1896, "0202673": 1896, "0245634": 1896, "0216013": 1896, "0291177": 1896, "0286001": 1896, "0188474": 1896, "32021": 1896, "145208": 1896, "299348": 1896, "2622": 1896, "56478": 1896, "67": [1896, 1907], "3379": 1896, "3452": 1896, "0011805": 1896, "000181326": 1896, "000179286": 1896, "0028098": 1896, "00435092": 1896, "10985": 1896, "110689": 1896, "109008": 1896, "108916": 1896, "110303": 1896, "107539": 1896, "0246851": 1896, "0198646": 1896, "0291511": 1896, "0290647": 1896, "0206731": 1896, "0254268": 1896, "0218722": 1896, "0289571": 1896, "0286299": 1896, "0222124": 1896, "311403": 1896, "147042": 1896, "294083": 1896, "1267": 1896, "44771": 1896, "3416": 1896, "3399": 1896, "00117656": 1896, "00018061": 1896, "000181128": 1896, "00213807": 1896, "00367637": 1896, "108138": 1896, "108557": 1896, "107721": 1896, "107349": 1896, "10754": 1896, "107159": 1896, "0241131": 1896, "0196703": 1896, "0286151": 1896, "0286033": 1896, "0195795": 1896, "0246752": 1896, "0211784": 1896, "0280695": 1896, "0287669": 1896, "0205929": 1896, "304464": 1896, "147427": 1896, "29027": 1896, "0936": 1896, "29194": 1896, "3511": 1896, "3491": 1896, "00114259": 1896, "000175433": 1896, "000179077": 1896, "00242444": 1896, "00392154": 1896, "10962": 1896, "109395": 1896, "109845": 1896, "109451": 1896, "109748": 1896, "109154": 1896, "0249161": 1896, "0216244": 1896, "0291868": 1896, "0285771": 1896, "0203135": 1896, "0252576": 1896, "0204928": 1896, "0309103": 1896, "0297791": 1896, "0197803": 1896, "302655": 1896, "142606": 1896, "287607": 1896, "059": 1896, "68458": 1896, "69": 1896, "3489": 1896, "3391": 1896, "00117954": 1896, "00018076": 1896, "000176842": 1896, "00274281": 1896, "00427996": 1896, "109167": 1896, "108878": 1896, "109457": 1896, "108529": 1896, "108384": 1896, "108673": 1896, "0251343": 1896, "0216667": 1896, "0298085": 1896, "0295327": 1896, "0194249": 1896, "0255293": 1896, "0224029": 1896, "0305386": 1896, "0293344": 1896, "0197125": 1896, "300808": 1896, "144613": 1896, "288052": 1896, "9724": 1896, "14536": 1896, "71": 1896, "3551": 1896, "3575": 1896, "0011946": 1896, "000173127": 1896, "000178696": 1896, "000725342": 1896, "00227176": 1896, "10916": 1896, "109252": 1896, "109067": 1896, "110798": 1896, "111607": 1896, "109984": 1896, "0252051": 1896, "0218661": 1896, "0287308": 1896, "0302921": 1896, "0199362": 1896, "0245902": 1896, "0197972": 1896, "0288953": 1896, "0308568": 1896, "0187846": 1896, "298548": 1896, "140103": 1896, "282513": 1896, "9563": 1896, "49552": 1896, "3442": 1896, "3488": 1896, "00116768": 1896, "000183687": 1896, "000177624": 1896, "00147453": 1896, "00300352": 1896, "107424": 1896, "105809": 1896, "109051": 1896, "108968": 1896, "108578": 1896, "109357": 1896, "024976": 1896, "0210199": 1896, "0283776": 1896, "0301075": 1896, "0203983": 1896, "0244054": 1896, "0201315": 1896, "0293393": 1896, "0275322": 1896, "0205381": 1896, "295469": 1896, "14504": 1896, "283466": 1896, "9659": 1896, "57761": 1896, "3593": 1896, "3578": 1896, "00119755": 1896, "000171298": 1896, "000178299": 1896, "000705123": 1896, "00225227": 1896, "109572": 1896, "109969": 1896, "109176": 1896, "108779": 1896, "110629": 1896, "106946": 1896, "025333": 1896, "0219449": 1896, "0308511": 1896, "0284571": 1896, "020084": 1896, "0258108": 1896, "0222851": 1896, "0286898": 1896, "0299628": 1896, "0222489": 1896, "300119": 1896, "139701": 1896, "28036": 1896, "9498": 1896, "22266": 1896, "62": 1896, "3104": 1896, "44": 1896, "3133": 1896, "00121134": 1896, "000183093": 1896, "00017673": 1896, "000906627": 1896, "0024778": 1896, "0934283": 1896, "0932668": 1896, "0935907": 1896, "0930836": 1896, "092358": 1896, "0938117": 1896, "0172868": 1896, "0159668": 1896, "0180807": 1896, "0190679": 1896, "mov": 1896, "10e": 1896, "0160378": 1896, "0178545": 1896, "0169909": 1896, "0189613": 1896, "0198869": 1896, "0155637": 1896, "158822": 1896, "319168": 1896, "5225": 1896, "04599": 1896, "83": 1896, "4197": 1896, "4072": 1896, "001176": 1896, "000176303": 1896, "000176643": 1896, "00180564": 1896, "00333458": 1896, "0993743": 1896, "0997124": 1896, "0990345": 1896, "100148": 1896, "101078": 1896, "0992169": 1896, "0218489": 1896, "0174252": 1896, "0266929": 1896, "0274607": 1896, "0158329": 1896, "0214816": 1896, "0163185": 1896, "0269219": 1896, "0273557": 1896, "0153002": 1896, "220527": 1896, "119323": 1896, "244041": 1896, "2385": 1896, "45713": 1896, "4643": 1896, "4501": 1896, "00117401": 1896, "000176022": 1896, "000174079": 1896, "000579364": 1896, "00210348": 1896, "0982657": 1896, "0973164": 1896, "0992208": 1896, "0987098": 1896, "0983834": 1896, "0990353": 1896, "0202451": 1896, "015387": 1896, "0256575": 1896, "0253815": 1896, "delta_dow": 1896, "0146119": 1896, "0200653": 1896, "0153902": 1896, "0249793": 1896, "025014": 1896, "0147525": 1896, "17415": 1896, "107687": 1896, "217982": 1896, "62833": 1896, "4923": 1896, "48": 1896, "4800": 1896, "00119368": 1896, "000175437": 1896, "00017678": 1896, "000532081": 1896, "00207798": 1896, "0947289": 1896, "0935515": 1896, "0959141": 1896, "096231": 1896, "0961732": 1896, "0962883": 1896, "017825": 1896, "0147368": 1896, "0225432": 1896, "0209947": 1896, "012999": 1896, "0170501": 1896, "0140059": 1896, "0210924": 1896, "0203299": 1896, "0127166": 1896, "15403": 1896, "101398": 1896, "205843": 1896, "9996": 1896, "4483": 1896, "78104": 1896, "5020": 1896, "00114739": 1896, "00017381": 1896, "000178013": 1896, "000545071": 1896, "00204428": 1896, "0927996": 1896, "0912686": 1896, "0943404": 1896, "0945209": 1896, "0935476": 1896, "0954924": 1896, "0165653": 1896, "0146711": 1896, "0186621": 1896, "0196094": 1896, "0133023": 1896, "0159569": 1896, "0145658": 1896, "0187106": 1896, "0171739": 1896, "0133664": 1896, "141392": 1896, "0971904": 1896, "198948": 1896, "9986": 1896, "3498": 1896, "59359": 1896, "5111": 1896, "00118152": 1896, "000174143": 1896, "000175604": 1896, "00170096": 1896, "00323222": 1896, "0928359": 1896, "0932811": 1896, "0923878": 1896, "0926255": 1896, "0928757": 1896, "092377": 1896, "0146763": 1896, "012186": 1896, "0176325": 1896, "016766": 1896, "0121195": 1896, "0149209": 1896, "0131733": 1896, "017507": 1896, "017798": 1896, "0111765": 1896, "132209": 1896, "0976131": 1896, "194463": 1896, "9962": 1896, "2003": [1896, 1903, 1908], "38459": 1896, "5262": 1896, "00116593": 1896, "000180144": 1896, "000180288": 1896, "00058201": 1896, "00210837": 1896, "0928416": 1896, "0906576": 1896, "0950149": 1896, "0920252": 1896, "0907245": 1896, "0933179": 1896, "013903": 1896, "0125541": 1896, "0153914": 1896, "0162744": 1896, "0113805": 1896, "0144144": 1896, "0126455": 1896, "0165371": 1896, "0155525": 1896, "0128903": 1896, "125583": 1896, "0940647": 1896, "188429": 1896, "9966": 1896, "0978": 1896, "6759": 1896, "5211": 1896, "00116479": 1896, "000173907": 1896, "000176399": 1896, "000532991": 1896, "00204808": 1896, "0919096": 1896, "0916205": 1896, "0921987": 1896, "0927888": 1896, "0930645": 1896, "0925146": 1896, "0144265": 1896, "0127007": 1896, "0166647": 1896, "0163973": 1896, "0119593": 1896, "0141665": 1896, "0122729": 1896, "0168521": 1896, "0155449": 1896, "0119799": 1896, "129702": 1896, "094935": 1896, "190139": 1896, "9904": 1896, "1729": 1896, "37016": 1896, "5241": 1896, "00117719": 1896, "000175777": 1896, "000177851": 1896, "000601851": 1896, "00213267": 1896, "0924057": 1896, "0915808": 1896, "0932353": 1896, "0931618": 1896, "0928729": 1896, "0934482": 1896, "0143961": 1896, "0125352": 1896, "0161123": 1896, "0168691": 1896, "0120458": 1896, "0142763": 1896, "0131137": 1896, "0156373": 1896, "0161881": 1896, "0121205": 1896, "126835": 1896, "0933722": 1896, "192358": 1896, "9932": 1896, "1737": 1896, "14348": 1896, "47": 1896, "4994": 1896, "4864": 1896, "00118008": 1896, "000178815": 1896, "000177486": 1896, "00366987": 1896, "00520625": 1896, "0920425": 1896, "0909091": 1896, "0931849": 1896, "0924267": 1896, "0933546": 1896, "091505": 1896, "0137666": 1896, "012333": 1896, "0161586": 1896, "0154218": 1896, "0111436": 1896, "0139227": 1896, "0114924": 1896, "0157556": 1896, "0157009": 1896, "0127152": 1896, "129222": 1896, "100126": 1896, "201704": 1896, "9968": 1896, "1866": 1896, "15122": 1896, "3398": 1896, "3460": 1896, "00124187": 1896, "000178268": 1896, "000178552": 1896, "00207588": 1896, "00367458": 1896, "0855862": 1896, "0862303": 1896, "0849443": 1896, "0862647": 1896, "0861289": 1896, "0864004": 1896, "0161327": 1896, "0135714": 1896, "0190244": 1896, "0183747": 1896, "0135908": 1896, "016286": 1896, "0142857": 1896, "0191166": 1896, "0189973": 1896, "0126796": 1896, "300009": 1896, "146407": 1896, "293905": 1896, "785": 1896, "47307": 1896, "93": 1896, "4679": 1896, "4715": 1896, "0012242": 1896, "000183404": 1896, "000184269": 1896, "00114776": 1896, "00273964": 1896, "0903981": 1896, "0901523": 1896, "090646": 1896, "0904723": 1896, "0912343": 1896, "delt": 1896, "a_down": 1896, "0897165": 1896, "0165848": 1896, "0118808": 1896, "0210818": 1896, "0219767": 1896, "0114437": 1896, "016681": 1896, "0124508": 1896, "0208665": 1896, "0211651": 1896, "0121752": 1896, "143248": 1896, "107062": 1896, "214947": 1896, "4458": 1896, "54242": 1896, "5544": 1896, "00114817": 1896, "000177973": 1896, "000178907": 1896, "000659669": 1896, "00216472": 1896, "0857364": 1896, "0845932": 1896, "0868874": 1896, "0848534": 1896, "0837722": 1896, "0859277": 1896, "opera": 1896, "tor": 1896, "0134187": 1896, "0102856": 1896, "0163494": 1896, "0164149": 1896, "0106362": 1896, "0138114": 1896, "0111514": 1896, "0171747": 1896, "0166038": 1896, "0102768": 1896, "105283": 1896, "0887984": 1896, "178604": 1896, "9994": 1896, "9382": 1896, "24137": 1896, "58": 1896, "5892": 1896, "00115656": 1896, "000172163": 1896, "000171354": 1896, "000511025": 1896, "0020111": 1896, "0813375": 1896, "0807074": 1896, "0819679": 1896, "0805692": 1896, "0807933": 1896, "0803457": 1896, "0106639": 1896, "00997202": 1896, "0117378": 1896, "0126783": 1896, "00827334": 1896, "010986": 1896, "0102901": 1896, "011223": 1896, "0124831": 1896, "00993179": 1896, "0924834": 1896, "0846274": 1896, "167454": 1896, "7817": 1896, "85936": 1896, "60": 1896, "6006": 1896, "00115569": 1896, "000178144": 1896, "000176416": 1896, "000650654": 1896, "0021609": 1896, "0807803": 1896, "0806915": 1896, "0808702": 1896, "0812727": 1896, "081801": 1896, "0807463": 1896, "0099321": 1896, "00904017": 1896, "0110288": 1896, "0113006": 1896, "00836602": 1896, "00970767": 1896, "00951802": 1896, "0101806": 1896, "0106859": 1896, "00843022": 1896, "086534": 1896, "0813237": 1896, "165674": 1896, "7405": 1896, "74432": 1896, "6050": 1896, "00117191": 1896, "000175165": 1896, "00017454": 1896, "00050787": 1896, "00202948": 1896, "0802191": 1896, "0791924": 1896, "0812492": 1896, "0809095": 1896, "0803057": 1896, "0815111": 1896, "00969948": 1896, "00925127": 1896, "0103824": 1896, "0101984": 1896, "00897148": 1896, "00927175": 1896, "0082894": 1896, "010285": 1896, "0103947": 1896, "00810573": 1896, "0879604": 1896, "0832035": 1896, "16585": 1896, "9974": 1896, "7589": 1896, "9097": 1896, "6139": 1896, "00118529": 1896, "000172073": 1896, "000172366": 1896, "000496923": 1896, "00202665": 1896, "0795869": 1896, "0790479": 1896, "0801287": 1896, "0793488": 1896, "0792065": 1896, "0794908": 1896, "00889574": 1896, "00825277": 1896, "00949215": 1896, "00962801": 1896, "00821994": 1896, "00910054": 1896, "00828074": 1896, "0100862": 1896, "00971145": 1896, "00831268": 1896, "0841257": 1896, "0818062": 1896, "16097": 1896, "9978": 1896, "6771": 1896, "1042": 1896, "6153": 1896, "00115225": 1896, "000171762": 1896, "000172688": 1896, "000498098": 1896, "00199479": 1896, "080043": 1896, "0801369": 1896, "0799484": 1896, "0794563": 1896, "0801462": 1896, "0787702": 1896, "00927618": 1896, "00859689": 1896, "00934467": 1896, "0107302": 1896, "00842416": 1896, "00952857": 1896, "00895115": 1896, "00986343": 1896, "0104291": 1896, "00886475": 1896, "0843788": 1896, "0796422": 1896, "161897": 1896, "6928": 1896, "26924": 1896, "59": [1896, 1902, 1907], "5957": 1896, "00115623": 1896, "00017426": 1896, "000175525": 1896, "000538327": 1896, "00204434": 1896, "0811482": 1896, "0799815": 1896, "0823172": 1896, "079918": 1896, "0798255": 1896, "0800096": 1896, "00925476": 1896, "00855502": 1896, "00981487": 1896, "0105368": 1896, "0081249": 1896, "00993752": 1896, "00927793": 1896, "00998653": 1896, "0106884": 1896, "00978858": 1896, "0876537": 1896, "0830675": 1896, "166809": 1896, "7751": 1896, "16191": 1896, "6097": 1896, "00115244": 1896, "00017814": 1896, "000175008": 1896, "000491659": 1896, "00199724": 1896, "0796655": 1896, "0798424": 1896, "0794869": 1896, "0806294": 1896, "0818259": 1896, "0794333": 1896, "00948261": 1896, "00896616": 1896, "0110163": 1896, "00972801": 1896, "00824513": 1896, "moveu": 1896, "00907485": 1896, "00870093": 1896, "00888078": 1896, "00987143": 1896, "00884075": 1896, "0868053": 1896, "0820692": 1896, "162871": 1896, "7002": 1896, "1179": 1896, "78": 1896, "3931": 1896, "3916": 1896, "00116999": 1896, "000178971": 1896, "000177013": 1896, "000661933": 1896, "0021879": 1896, "0825932": 1896, "0821367": 1896, "0830489": 1896, "0829548": 1896, "0825535": 1896, "0833533": 1896, "0149825": 1896, "0128456": 1896, "016206": 1896, "018634": 1896, "0122235": 1896, "0149866": 1896, "0129654": 1896, "0173514": 1896, "0175802": 1896, "0119693": 1896, "233272": 1896, "128126": 1896, "253855": 1896, "9717": 1896, "67936": 1896, "6032": 1896, "00115504": 1896, "000170611": 1896, "000174805": 1896, "00128361": 1896, "00278407": 1896, "0831347": 1896, "0826692": 1896, "0836028": 1896, "083416": 1896, "0828652": 1896, "083969": 1896, "0133214": 1896, "00978535": 1896, "0162945": 1896, "0179412": 1896, "00930456": 1896, "0131809": 1896, "0100251": 1896, "0165614": 1896, "0171715": 1896, "00890798": 1896, "0923836": 1896, "0827155": 1896, "168187": 1896, "7472": 1896, "10055": 1896, "65": 1896, "6573": 1896, "00119869": 1896, "000176954": 1896, "000178311": 1896, "000494936": 1896, "00204889": 1896, "07622": 1896, "075692": 1896, "0767499": 1896, "0754528": 1896, "0759239": 1896, "074984": 1896, "0088625": 1896, "00809271": 1896, "00996209": 1896, "0113564": 1896, "00605505": 1896, "00928461": 1896, "00818713": 1896, "0108847": 1896, "0106967": 1896, "00735": 1896, "0695589": 1896, "0759537": 1896, "150655": 1896, "4869": 1896, "47014": 1896, "6728": 1896, "0011518": 1896, "000170142": 1896, "000172553": 1896, "000480502": 1896, "001975": 1896, "0724759": 1896, "0715636": 1896, "0733873": 1896, "0720517": 1896, "0711002": 1896, "0730012": 1896, "00731203": 1896, "00710724": 1896, "00752697": 1896, "00819281": 1896, "00642832": 1896, "mo": 1896, "ve": 1896, "00748132": 1896, "00743524": 1896, "00759443": 1896, "00848466": 1896, "00640077": 1896, "0638096": 1896, "0742757": 1896, "147119": 1896, "4453": 1896, "27009": 1896, "6765": 1896, "0011343": 1896, "000175784": 1896, "000175253": 1896, "000505452": 1896, "00199079": 1896, "0713425": 1896, "0706458": 1896, "07204": 1896, "0718967": 1896, "0720733": 1896, "0717211": 1896, "00752552": 1896, "00686625": 1896, "00816653": 1896, "00877613": 1896, "00630587": 1896, "00721517": 1896, "00625928": 1896, "00727505": 1896, "00856445": 1896, "00676213": 1896, "063708": 1896, "073321": 1896, "146845": 1896, "991": 1896, "442": 1896, "81646": 1896, "6760": 1896, "00115614": 1896, "000174304": 1896, "000175429": 1896, "000510379": 1896, "00201626": 1896, "0722835": 1896, "071304": 1896, "0732643": 1896, "0724337": 1896, "0720262": 1896, "07284": 1896, "00747649": 1896, "00767686": 1896, "00721154": 1896, "00852148": 1896, "00649195": 1896, "00737793": 1896, "00707822": 1896, "00711645": 1896, "00876561": 1896, "00655318": 1896, "0641534": 1896, "0730972": 1896, "147456": 1896, "996": 1896, "4256": 1896, "87925": 1896, "6797": 1896, "00115404": 1896, "000171099": 1896, "000173656": 1896, "00048374": 1896, "00198254": 1896, "0719672": 1896, "0706898": 1896, "0732397": 1896, "0715593": 1896, "0704335": 1896, "0726812": 1896, "00708196": 1896, "00686678": 1896, "0078658": 1896, "00743821": 1896, "0061632": 1896, "0071656": 1896, "00718669": 1896, "00766542": 1896, "00723975": 1896, "00656952": 1896, "0617984": 1896, "0741883": 1896, "146003": 1896, "9934": 1896, "4186": 1896, "97262": 1896, "6733": 1896, "00117": 1896, "000176397": 1896, "000174993": 1896, "00058778": 1896, "00210917": 1896, "0723829": 1896, "0719869": 1896, "072779": 1896, "0718631": 1896, "0717641": 1896, "0719614": 1896, "00704912": 1896, "00711842": 1896, "00702896": 1896, "00800765": 1896, "00603686": 1896, "00728255": 1896, "00728605": 1896, "00757032": 1896, "00808733": 1896, "00617878": 1896, "0647355": 1896, "0728214": 1896, "146776": 1896, "9972": 1896, "4233": 1896, "35075": 1896, "6761": 1896, "00113392": 1896, "000174943": 1896, "000180306": 1896, "000498955": 1896, "00198812": 1896, "0720697": 1896, "0712123": 1896, "0729294": 1896, "0721389": 1896, "0714645": 1896, "0728079": 1896, "0070591": 1896, "00725576": 1896, "00753265": 1896, "00761844": 1896, "00582509": 1896, "00700508": 1896, "00793267": 1896, "0067748": 1896, "00738887": 1896, "00593318": 1896, "0639617": 1896, "0738343": 1896, "147712": 1896, "4578": 1896, "74578": 1896, "6668": 1896, "0011519": 1896, "000174972": 1896, "000177178": 1896, "000500343": 1896, "00200439": 1896, "0700786": 1896, "0702968": 1896, "0698603": 1896, "0696558": 1896, "0699828": 1896, "0693299": 1896, "ou": 1896, "perat": 1896, "00679017": 1896, "00662199": 1896, "00680628": 1896, "00800669": 1896, "00572275": 1896, "00691247": 1896, "00703885": 1896, "00726199": 1896, "00740299": 1896, "00594573": 1896, "0655141": 1896, "0722333": 1896, "14909": 1896, "499": 1896, "74692": 1896, "4202": 1896, "4308": 1896, "00119195": 1896, "000172087": 1896, "000176853": 1896, "000651202": 1896, "00219209": 1896, "0784645": 1896, "077737": 1896, "0791939": 1896, "0778967": 1896, "0777312": 1896, "0780616": 1896, "0137605": 1896, "0106226": 1896, "0159981": 1896, "0181051": 1896, "0102649": 1896, "014284": 1896, "0107163": 1896, "0180735": 1896, "0173927": 1896, "010941": 1896, "194802": 1896, "117678": 1896, "232515": 1896, "5417": 1896, "37617": 1896, "6826": 1896, "0011367": 1896, "000175053": 1896, "000174838": 1896, "000507683": 1896, "00199427": 1896, "0766449": 1896, "0764292": 1896, "0768612": 1896, "0761625": 1896, "0763946": 1896, "0759317": 1896, "0106741": 1896, "00774466": 1896, "0136975": 1896, "0145652": 1896, "0067659": 1896, "0108867": 1896, "00786259": 1896, "0137408": 1896, "0148857": 1896, "00699944": 1896, "0664264": 1896, "0726063": 1896, "145565": 1896, "4098": 1896, "66327": 1896, "73": 1896, "7364": 1896, "00113329": 1896, "000175666": 1896, "00017359": 1896, "000493932": 1896, "00197648": 1896, "0666085": 1896, "0665451": 1896, "066672": 1896, "0667213": 1896, "0672132": 1896, "0662322": 1896, "00669763": 1896, "00602932": 1896, "00748431": 1896, "00769875": 1896, "00559172": 1896, "00652602": 1896, "00578662": 1896, "00698408": 1896, "00760865": 1896, "00571634": 1896, "0514166": 1896, "0668013": 1896, "135057": 1896, "2625": 1896, "92343": 1896, "72": 1896, "7289": 1896, "00113231": 1896, "000174572": 1896, "000175548": 1896, "000526218": 1896, "00200864": 1896, "0648141": 1896, "0634921": 1896, "0661443": 1896, "0649517": 1896, "0649518": 1896, "0649516": 1896, "0061691": 1896, "00587146": 1896, "00646862": 1896, "00744427": 1896, "00489611": 1896, "00601018": 1896, "00491658": 1896, "00690701": 1896, "00676294": 1896, "00544022": 1896, "0503358": 1896, "0671483": 1896, "135564": 1896, "2763": 1896, "76404": 1896, "7343": 1896, "00116586": 1896, "000171716": 1896, "000175847": 1896, "000581802": 1896, "00209523": 1896, "0649176": 1896, "0641392": 1896, "0657014": 1896, "0647029": 1896, "0646974": 1896, "0647083": 1896, "00594983": 1896, "00583274": 1896, "00662917": 1896, "00637781": 1896, "00496899": 1896, "00605891": 1896, "00579733": 1896, "00580425": 1896, "00740682": 1896, "00521816": 1896, "0500971": 1896, "0681187": 1896, "135501": 1896, "9928": 1896, "2804": 1896, "52751": 1896, "7363": 1896, "00114743": 1896, "000174272": 1896, "000173083": 1896, "00048318": 1896, "00197796": 1896, "0648434": 1896, "0639435": 1896, "0657487": 1896, "0652002": 1896, "0650621": 1896, "0653372": 1896, "00653185": 1896, "00647684": 1896, "00700224": 1896, "00712778": 1896, "00552508": 1896, "00633317": 1896, "00574294": 1896, "00628081": 1896, "00798945": 1896, "00531256": 1896, "0519887": 1896, "0671887": 1896, "135337": 1896, "9896": 1896, "2736": 1896, "97512": 1896, "7350": 1896, "00114243": 1896, "000176064": 1896, "00017554": 1896, "000502765": 1896, "0019968": 1896, "0651064": 1896, "0640138": 1896, "0661968": 1896, "064921": 1896, "0643386": 1896, "0655007": 1896, "00608775": 1896, "00550639": 1896, "00688303": 1896, "00702353": 1896, "00494438": 1896, "00612031": 1896, "00518802": 1896, "006465": 1896, "00749811": 1896, "00532021": 1896, "0501661": 1896, "0677592": 1896, "135616": 1896, "9908": 1896, "2712": 1896, "45363": 1896, "7086": 1896, "00116354": 1896, "000175041": 1896, "000174947": 1896, "00112879": 1896, "00264231": 1896, "0650171": 1896, "0644201": 1896, "0656194": 1896, "0655976": 1896, "0658945": 1896, "0653032": 1896, "00591916": 1896, "00558637": 1896, "00615606": 1896, "00691088": 1896, "00502934": 1896, "0055814": 1896, "00478277": 1896, "00636994": 1896, "00639437": 1896, "00477878": 1896, "0504766": 1896, "0694536": 1896, "139764": 1896, "2853": 1896, "65569": 1896, "7286": 1896, "00114038": 1896, "000176438": 1896, "000175781": 1896, "000493773": 1896, "00198638": 1896, "06511": 1896, "0645775": 1896, "0656442": 1896, "065331": 1896, "0647873": 1896, "0658719": 1896, "00569673": 1896, "00567891": 1896, "00563549": 1896, "00576908": 1896, "00570335": 1896, "0056422": 1896, "00595789": 1896, "00547803": 1896, "00585611": 1896, "0052781": 1896, "0523878": 1896, "0673053": 1896, "136122": 1896, "14769": 1896, "00114125": 1896, "000176996": 1896, "000171122": 1896, "00150071": 1896, "00299008": 1896, "0655441": 1896, "0641989": 1896, "066902": 1896, "0656663": 1896, "0655177": 1896, "065813": 1896, "00574329": 1896, "00615239": 1896, "00584514": 1896, "00617653": 1896, "0047931": 1896, "su": 1896, "00557688": 1896, "00536355": 1896, "00589547": 1896, "0062092": 1896, "00483401": 1896, "0511499": 1896, "0669602": 1896, "138667": 1896, "2817": 1896, "92277": 1896, "4617": 1896, "4624": 1896, "00116428": 1896, "000175073": 1896, "000179122": 1896, "000624143": 1896, "00214262": 1896, "075023": 1896, "0737795": 1896, "0762717": 1896, "0754981": 1896, "0750419": 1896, "0759501": 1896, "0122848": 1896, "010087": 1896, "0149212": 1896, "0147216": 1896, "00942308": 1896, "0122644": 1896, "00940893": 1896, "0151437": 1896, "0152795": 1896, "00922575": 1896, "160022": 1896, "108396": 1896, "214303": 1896, "0593": 1896, "51099": 1896, "7205": 1896, "00114454": 1896, "000174778": 1896, "000178598": 1896, "000622807": 1896, "00212072": 1896, "0673988": 1896, "0660498": 1896, "0687521": 1896, "0665999": 1896, "0656989": 1896, "0674971": 1896, "00775671": 1896, "00641076": 1896, "00925224": 1896, "0098923": 1896, "00549451": 1896, "00814979": 1896, "0064208": 1896, "0094943": 1896, "0109052": 1896, "00577183": 1896, "0525718": 1896, "0684983": 1896, "13753": 1896, "2476": 1896, "18844": 1896, "76": 1896, "7605": 1896, "00111446": 1896, "000176218": 1896, "000173181": 1896, "000567391": 1896, "00203125": 1896, "0599149": 1896, "0587469": 1896, "0610859": 1896, "0603628": 1896, "0599454": 1896, "0607787": 1896, "00513004": 1896, "00500828": 1896, "00586709": 1896, "00532469": 1896, "00432035": 1896, "00484395": 1896, "00435256": 1896, "0050489": 1896, "00528113": 1896, "00468487": 1896, "0424689": 1896, "0623846": 1896, "129958": 1896, "1771": 1896, "90146": 1896, "7679": 1896, "00111329": 1896, "000174453": 1896, "000187997": 1896, "00052281": 1896, "00199855": 1896, "0597628": 1896, "0594387": 1896, "0600886": 1896, "0601823": 1896, "0602364": 1896, "0601285": 1896, "00498081": 1896, "00520013": 1896, "00499122": 1896, "00506582": 1896, "00466358": 1896, "00463958": 1896, "00460643": 1896, "00493022": 1896, "00485765": 1896, "00416083": 1896, "041741": 1896, "0630625": 1896, "128933": 1896, "9988": 1896, "1498": 1896, "35153": 1896, "7352": 1896, "0011521": 1896, "000179953": 1896, "000193562": 1896, "000986017": 1896, "00251163": 1896, "0607112": 1896, "0597318": 1896, "0616933": 1896, "0605566": 1896, "0600225": 1896, "0610896": 1896, "0048536": 1896, "00534402": 1896, "00512184": 1896, "00419329": 1896, "00474785": 1896, "00485389": 1896, "00482044": 1896, "00488813": 1896, "00502294": 1896, "00468169": 1896, "0414372": 1896, "0637003": 1896, "134183": 1896, "1644": 1896, "2926": 1896, "77": 1896, "7706": 1896, "00114883": 1896, "000172738": 1896, "000173912": 1896, "000500922": 1896, "0019964": 1896, "0597706": 1896, "058365": 1896, "0611883": 1896, "0603617": 1896, "0596815": 1896, "0610421": 1896, "00507342": 1896, "00552225": 1896, "00502914": 1896, "00519481": 1896, "0045431": 1896, "00475572": 1896, "00474486": 1896, "00519264": 1896, "00452235": 1896, "00455891": 1896, "0425655": 1896, "0640778": 1896, "1291": 1896, "1918": 1896, "29282": 1896, "57": 1896, "7662": 1896, "00114987": 1896, "000175873": 1896, "000174441": 1896, "000509332": 1896, "00200951": 1896, "059439": 1896, "0581668": 1896, "0607138": 1896, "0597239": 1896, "0590741": 1896, "06037": 1896, "00484312": 1896, "0048189": 1896, "00515876": 1896, "00478774": 1896, "00460903": 1896, "00469727": 1896, "0042228": 1896, "0049556": 1896, "00490294": 1896, "00470213": 1896, "0419401": 1896, "063158": 1896, "129703": 1896, "1825": 1896, "99906": 1896, "7668": 1896, "00113999": 1896, "000177145": 1896, "000494697": 1896, "0019877": 1896, "059728": 1896, "058413": 1896, "0610475": 1896, "06057": 1896, "0601686": 1896, "0609698": 1896, "00533349": 1896, "00561465": 1896, "00525122": 1896, "00578842": 1896, "00467645": 1896, "00479575": 1896, "00452891": 1896, "00515258": 1896, "00471774": 1896, "0047805": 1896, "0424987": 1896, "063466": 1896, "130279": 1896, "9944": 1896, "1765": 1896, "40606": 1896, "75": [1896, 1903, 1908], "7561": 1896, "00118073": 1896, "000176595": 1896, "000176277": 1896, "00126962": 1896, "00280322": 1896, "0596867": 1896, "0584019": 1896, "060971": 1896, "0597209": 1896, "0586373": 1896, "0608016": 1896, "00478203": 1896, "00492844": 1896, "00489903": 1896, "00478374": 1896, "00451458": 1896, "00471166": 1896, "00471679": 1896, "00453695": 1896, "00521538": 1896, "00437776": 1896, "0399454": 1896, "0650666": 1896, "131095": 1896, "9982": 1896, "1588": 1896, "33519": 1896, "7707": 1896, "00112932": 1896, "000173649": 1896, "000176619": 1896, "0005733": 1896, "00205289": 1896, "0604564": 1896, "0588577": 1896, "0620602": 1896, "0606382": 1896, "0597842": 1896, "0614869": 1896, "00508035": 1896, "00542338": 1896, "0051973": 1896, "00528804": 1896, "00440811": 1896, "00493871": 1896, "00482393": 1896, "00470077": 1896, "00566008": 1896, "0045722": 1896, "0412753": 1896, "0632685": 1896, "129126": 1896, "1691": 1896, "90488": 1896, "4971": 1896, "00118772": 1896, "000174399": 1896, "000175365": 1896, "000724154": 1896, "00226164": 1896, "0715393": 1896, "0714001": 1896, "0716792": 1896, "0708063": 1896, "0703415": 1896, "07127": 1896, "0109482": 1896, "00810392": 1896, "013351": 1896, "00807161": 1896, "10remov": 1896, "0114495": 1896, "00895825": 1896, "0147422": 1896, "0144898": 1896, "00756817": 1896, "136485": 1896, "0947748": 1896, "201123": 1896, "8101": 1896, "33423": 1896, "7784": 1896, "00114748": 1896, "000173434": 1896, "000173643": 1896, "000492445": 1896, "001987": 1896, "0620445": 1896, "0613942": 1896, "0626974": 1896, "0624537": 1896, "0626078": 1896, "0623003": 1896, "00688384": 1896, "00590854": 1896, "00871756": 1896, "00824825": 1896, "00467794": 1896, "00658183": 1896, "00538131": 1896, "00726536": 1896, "00855818": 1896, "0050996": 1896, "0414626": 1896, "0618828": 1896, "127212": 1896, "1285": 1896, "2533": 1896, "8085": 1896, "00114792": 1896, "000171199": 1896, "000170999": 1896, "000497123": 1896, "00198724": 1896, "0558467": 1896, "0548354": 1896, "0568613": 1896, "0563139": 1896, "0556514": 1896, "0569743": 1896, "00437746": 1896, "00445812": 1896, "00470138": 1896, "00439052": 1896, "00395763": 1896, "00414735": 1896, "00428681": 1896, "00416849": 1896, "00410326": 1896, "00403258": 1896, "0347029": 1896, "0598513": 1896, "122534": 1896, "0673": 1896, "48919": 1896, "8093": 1896, "0011215": 1896, "000173062": 1896, "00017243": 1896, "000481739": 1896, "00194873": 1896, "0551622": 1896, "0540573": 1896, "056271": 1896, "0554291": 1896, "0548532": 1896, "0560021": 1896, "00379637": 1896, "00380545": 1896, "00399505": 1896, "00374965": 1896, "00363535": 1896, "00366381": 1896, "00335177": 1896, "00377209": 1896, "00381376": 1896, "00371272": 1896, "0336264": 1896, "0597385": 1896, "12209": 1896, "12545": 1896, "8174": 1896, "00113455": 1896, "000172962": 1896, "000172111": 1896, "000494535": 1896, "00197415": 1896, "0555556": 1896, "0548071": 1896, "056308": 1896, "0565826": 1896, "0561847": 1896, "0569795": 1896, "00401386": 1896, "00431683": 1896, "00367912": 1896, "00402102": 1896, "00403548": 1896, "00343265": 1896, "00319218": 1896, "00357058": 1896, "00384326": 1896, "00311738": 1896, "0336175": 1896, "0608379": 1896, "120854": 1896, "0345": 1896, "44062": 1896, "8150": 1896, "0011493": 1896, "000176394": 1896, "000175145": 1896, "000636652": 1896, "00213749": 1896, "0561644": 1896, "0553785": 1896, "0569541": 1896, "0563292": 1896, "0563507": 1896, "0563077": 1896, "0040616": 1896, "00442985": 1896, "00424611": 1896, "00385272": 1896, "00371569": 1896, "00386509": 1896, "003755": 1896, "00376864": 1896, "00392764": 1896, "00400866": 1896, "0356184": 1896, "0611042": 1896, "121234": 1896, "0107": 1896, "51989": 1896, "8028": 1896, "00113187": 1896, "000172906": 1896, "000173854": 1896, "00119973": 1896, "00267836": 1896, "0569562": 1896, "0557674": 1896, "0581538": 1896, "0573977": 1896, "0568736": 1896, "057919": 1896, "00397292": 1896, "00431444": 1896, "00403564": 1896, "00342248": 1896, "00411819": 1896, "00370689": 1896, "00370983": 1896, "0034267": 1896, "00365311": 1896, "00403935": 1896, "0337761": 1896, "0612707": 1896, "122749": 1896, "0148": 1896, "53234": 1896, "8010": 1896, "00115006": 1896, "000171089": 1896, "000170973": 1896, "000614332": 1896, "00210645": 1896, "0595088": 1896, "0578924": 1896, "0611341": 1896, "0595746": 1896, "0587787": 1896, "0603688": 1896, "00426946": 1896, "00422307": 1896, "00518465": 1896, "00388528": 1896, "00378426": 1896, "00421233": 1896, "00335218": 1896, "00464931": 1896, "00480216": 1896, "00403033": 1896, "0367278": 1896, "0603263": 1896, "123466": 1896, "9806": 1896, "0485": 1896, "82185": 1896, "8154": 1896, "00112582": 1896, "000175281": 1896, "000174666": 1896, "000548011": 1896, "00202378": 1896, "056208": 1896, "0553238": 1896, "0570951": 1896, "0564072": 1896, "0561066": 1896, "0567066": 1896, "00407237": 1896, "00458353": 1896, "00414805": 1896, "00358938": 1896, "00396333": 1896, "00385295": 1896, "00384102": 1896, "00381134": 1896, "00384082": 1896, "0039189": 1896, "0336746": 1896, "0591636": 1896, "121264": 1896, "0118": 1896, "32063": 1896, "8130": 1896, "00112664": 1896, "000169903": 1896, "000170967": 1896, "000570233": 1896, "00203775": 1896, "0565456": 1896, "0560489": 1896, "0570416": 1896, "0565554": 1896, "0566927": 1896, "0564188": 1896, "00394695": 1896, "00453041": 1896, "003751": 1896, "00377433": 1896, "00372447": 1896, "00393142": 1896, "00393605": 1896, "00351129": 1896, "00412257": 1896, "00415485": 1896, "03294": 1896, "0595034": 1896, "121777": 1896, "0399": 1896, "72088": 1896, "5460": 1896, "00114313": 1896, "000173784": 1896, "000177948": 1896, "000703365": 1896, "00219823": 1896, "0696534": 1896, "0698218": 1896, "0694839": 1896, "0686236": 1896, "0693558": 1896, "0678957": 1896, "0101898": 1896, "00760697": 1896, "0134782": 1896, "0128854": 1896, "00681329": 1896, "010656": 1896, "00783997": 1896, "0139799": 1896, "0135968": 1896, "00715714": 1896, "113309": 1896, "0920199": 1896, "183328": 1896, "3798": 1896, "84919": 1896, "8267": 1896, "00113257": 1896, "000174729": 1896, "000171475": 1896, "000655191": 1896, "00213397": 1896, "0567635": 1896, "0558338": 1896, "0576938": 1896, "0570791": 1896, "0568651": 1896, "0572924": 1896, "00513888": 1896, "0044657": 1896, "00659921": 1896, "00590559": 1896, "00359382": 1896, "00494392": 1896, "00375318": 1896, "00599587": 1896, "00600445": 1896, "00399808": 1896, "0324819": 1896, "0581535": 1896, "119753": 1896, "9786": 1896, "6009": 1896, "8522": 1896, "00113484": 1896, "000174635": 1896, "00017281": 1896, "000471962": 1896, "00195425": 1896, "0522979": 1896, "0514701": 1896, "0531272": 1896, "0526289": 1896, "0525332": 1896, "052724": 1896, "0035412": 1896, "00398847": 1896, "00370725": 1896, "00335209": 1896, "00311216": 1896, "00335832": 1896, "00299014": 1896, "00369106": 1896, "0037407": 1896, "00300276": 1896, "0287871": 1896, "0573234": 1896, "116241": 1896, "9456": 1896, "58899": 1896, "8532": 1896, "00112831": 1896, "000175032": 1896, "000170599": 1896, "000477615": 1896, "00195155": 1896, "0510253": 1896, "0504098": 1896, "0516432": 1896, "0515426": 1896, "051475": 1896, "0516099": 1896, "00340387": 1896, "00378519": 1896, "0032779": 1896, "0033044": 1896, "00324285": 1896, "00317778": 1896, "00283378": 1896, "00321952": 1896, "00370341": 1896, "00294856": 1896, "0277202": 1896, "0570392": 1896, "116499": 1896, "9533": 1896, "78912": 1896, "8424": 1896, "00113708": 1896, "000169747": 1896, "000516366": 1896, "00199727": 1896, "0509114": 1896, "0494415": 1896, "0523881": 1896, "0515835": 1896, "0508587": 1896, "0523052": 1896, "00328518": 1896, "00378564": 1896, "00328526": 1896, "00299079": 1896, "00307324": 1896, "00292678": 1896, "00257701": 1896, "00286487": 1896, "0034609": 1896, "00279944": 1896, "0285168": 1896, "0573744": 1896, "117503": 1896, "9713": 1896, "77243": 1896, "8482": 1896, "00112907": 1896, "000171733": 1896, "000172552": 1896, "000497535": 1896, "00197089": 1896, "0518978": 1896, "0515069": 1896, "0522911": 1896, "0524093": 1896, "0525957": 1896, "052223": 1896, "00326625": 1896, "00386679": 1896, "00304207": 1896, "00291603": 1896, "00323224": 1896, "00301172": 1896, "00279397": 1896, "00282048": 1896, "0035536": 1896, "00287666": 1896, "0282139": 1896, "0573663": 1896, "117064": 1896, "9679": 1896, "24404": 1896, "8341": 1896, "0011421": 1896, "000175292": 1896, "00017538": 1896, "00057952": 1896, "00207229": 1896, "0514406": 1896, "0510664": 1896, "0518164": 1896, "051954": 1896, "0523787": 1896, "0515301": 1896, "00338554": 1896, "00366893": 1896, "00344041": 1896, "00307385": 1896, "0033557": 1896, "00305853": 1896, "00254999": 1896, "00326173": 1896, "00297855": 1896, "00343698": 1896, "0282974": 1896, "0568543": 1896, "118557": 1896, "9992": 1896, "9675": 1896, "34324": 1896, "8588": 1896, "00114523": 1896, "000173347": 1896, "000170297": 1896, "000496129": 1896, "001985": 1896, "0516234": 1896, "0507942": 1896, "0524561": 1896, "0515959": 1896, "0514668": 1896, "0517245": 1896, "00321691": 1896, "00343928": 1896, "00323961": 1896, "00322555": 1896, "00296047": 1896, "00319616": 1896, "00286625": 1896, "00345553": 1896, "00322388": 1896, "00323392": 1896, "0279356": 1896, "0577107": 1896, "115961": 1896, "998": 1896, "9502": 1896, "90419": 1896, "8520": 1896, "00113566": 1896, "000171149": 1896, "000171571": 1896, "000505713": 1896, "00198409": 1896, "0522993": 1896, "0518042": 1896, "0527968": 1896, "0523894": 1896, "0527668": 1896, "0520146": 1896, "00332163": 1896, "00385812": 1896, "00331033": 1896, "00287276": 1896, "00323793": 1896, "00320791": 1896, "00303251": 1896, "00257947": 1896, "00374368": 1896, "00347652": 1896, "0295904": 1896, "0569472": 1896, "116426": 1896, "999": 1896, "9579": 1896, "5502": 1896, "8308": 1896, "00113861": 1896, "00017479": 1896, "000171791": 1896, "000516632": 1896, "00200182": 1896, "052027": 1896, "0514887": 1896, "052567": 1896, "0525394": 1896, "0525082": 1896, "0525705": 1896, "00335517": 1896, "00413695": 1896, "00323186": 1896, "00292926": 1896, "00311042": 1896, "00302516": 1896, "00310847": 1896, "00289752": 1896, "00330243": 1896, "00279307": 1896, "0301017": 1896, "05751": 1896, "11865": 1896, "9998": 1896, "9797": 1896, "09128": 1896, "5758": 1896, "0011648": 1896, "000171131": 1896, "000177031": 1896, "00052665": 1896, "00203961": 1896, "0659214": 1896, "0645032": 1896, "0673451": 1896, "0664132": 1896, "0657103": 1896, "0671124": 1896, "00972141": 1896, "00816553": 1896, "0120463": 1896, "0123374": 1896, "00630649": 1896, "00948341": 1896, "00713825": 1896, "0120053": 1896, "0127712": 1896, "00596812": 1896, "0996916": 1896, "0850222": 1896, "173681": 1896, "1975": 1896, "8545": 1896, "8541": 1896, "00114865": 1896, "000173988": 1896, "000171794": 1896, "00119219": 1896, "00268662": 1896, "0532849": 1896, "0522147": 1896, "0543555": 1896, "053342": 1896, "0532922": 1896, "0533916": 1896, "00446188": 1896, "00427029": 1896, "0056238": 1896, "00476629": 1896, "0031903": 1896, "00436633": 1896, "00327022": 1896, "00473538": 1896, "00557037": 1896, "00387195": 1896, "0277647": 1896, "05598": 1896, "116407": 1896, "8927": 1896, "53428": 1896, "88": 1896, "8864": 1896, "00113772": 1896, "000172391": 1896, "000173831": 1896, "000667482": 1896, "00215142": 1896, "0487876": 1896, "0475343": 1896, "0500452": 1896, "0492262": 1896, "0486641": 1896, "0497856": 1896, "00317577": 1896, "0035957": 1896, "00350054": 1896, "00284136": 1896, "00275857": 1896, "00292205": 1896, "00258701": 1896, "00302885": 1896, "00338107": 1896, "0026844": 1896, "0236387": 1896, "0545816": 1896, "112377": 1896, "8792": 1896, "8611": 1896, "00115159": 1896, "000175224": 1896, "000172538": 1896, "000641879": 1896, "00214123": 1896, "048189": 1896, "0475752": 1896, "048804": 1896, "048684": 1896, "0485661": 1896, "0488014": 1896, "00280902": 1896, "00324111": 1896, "00320282": 1896, "00247802": 1896, "0023114": 1896, "0025366": 1896, "00258148": 1896, "00246217": 1896, "00286055": 1896, "00224081": 1896, "0246712": 1896, "0560449": 1896, "114722": 1896, "9191": 1896, "93015": 1896, "8682": 1896, "00113351": 1896, "00017218": 1896, "000169732": 1896, "00061197": 1896, "0020874": 1896, "0482681": 1896, "0473526": 1896, "0491879": 1896, "0482165": 1896, "0481162": 1896, "0483167": 1896, "00294627": 1896, "00344064": 1896, "00291673": 1896, "00275251": 1896, "00267103": 1896, "00298406": 1896, "0026251": 1896, "00285476": 1896, "00329326": 1896, "00315823": 1896, "0246552": 1896, "0552698": 1896, "114393": 1896, "88386": 1896, "8694": 1896, "00112254": 1896, "000171682": 1896, "000169843": 1896, "000609689": 1896, "00207376": 1896, "048889": 1896, "0478555": 1896, "0499248": 1896, "049152": 1896, "0484824": 1896, "0498193": 1896, "003037": 1896, "00320006": 1896, "00327777": 1896, "0029207": 1896, "00274846": 1896, "00285318": 1896, "00254032": 1896, "00293476": 1896, "00342016": 1896, "00251206": 1896, "0245681": 1896, "0554533": 1896, "113913": 1896, "8968": 1896, "21281": 1896, "87": 1896, "8797": 1896, "00112889": 1896, "000174991": 1896, "000176317": 1896, "000609379": 1896, "00208958": 1896, "0473094": 1896, "045965": 1896, "048656": 1896, "0473527": 1896, "046369": 1896, "0483339": 1896, "00272949": 1896, "00316006": 1896, "00287265": 1896, "00244254": 1896, "00243698": 1896, "0026367": 1896, "00258314": 1896, "00241881": 1896, "00319259": 1896, "00235322": 1896, "0233294": 1896, "0548638": 1896, "113268": 1896, "8957": 1896, "51035": 1896, "8705": 1896, "00116392": 1896, "000174849": 1896, "000171033": 1896, "000573339": 1896, "00208315": 1896, "0488708": 1896, "048186": 1896, "0495586": 1896, "0490466": 1896, "0489142": 1896, "049178": 1896, "00282094": 1896, "00316907": 1896, "00295433": 1896, "00271815": 1896, "00243883": 1896, "00273748": 1896, "00262902": 1896, "00272997": 1896, "00314165": 1896, "00244518": 1896, "0249233": 1896, "0546016": 1896, "11385": 1896, "9022": 1896, "34419": 1896, "8791": 1896, "00113176": 1896, "000173538": 1896, "000174227": 1896, "000500731": 1896, "00198025": 1896, "0492124": 1896, "0484356": 1896, "049993": 1896, "0489308": 1896, "048871": 1896, "0489904": 1896, "00273515": 1896, "00326991": 1896, "00276099": 1896, "00255092": 1896, "00235247": 1896, "00280445": 1896, "00258294": 1896, "0028585": 1896, "00317801": 1896, "00259388": 1896, "0245304": 1896, "0553609": 1896, "112756": 1896, "8688": 1896, "98793": 1896, "89": 1896, "8983": 1896, "00112999": 1896, "000172763": 1896, "000171394": 1896, "000627904": 1896, "00210205": 1896, "0486702": 1896, "0479463": 1896, "0493956": 1896, "0488597": 1896, "0489007": 1896, "0488189": 1896, "00274177": 1896, "00356041": 1896, "00275273": 1896, "00252121": 1896, "00212272": 1896, "00257861": 1896, "00265775": 1896, "00242603": 1896, "00290282": 1896, "00232661": 1896, "0231697": 1896, "0553643": 1896, "110655": 1896, "8281": 1896, "23047": 1896, "u1": 1896, "u10": 1896, "u7": 1896, "j2": 1896, "u11": 1896, "u8": 1896, "u12": 1896, "u9": 1896, "90": [1896, 1903, 1908], "somewher": 1896, "run_two_band": 1896, "se": 1896, "investig": [1896, 1900, 1905], "redirect": 1897, "start_redirect": 1897, "323600": 1897, "k_linear": 1897, "endpoint": [1897, 1904, 1905, 1906], "epsk": 1897, "pcolormesh": [1897, 1899, 1904, 1905], "rdbu_r": 1897, "shade": 1897, "vmin": 1897, "vmax": 1897, "set_label": 1897, "weak": [1899, 1900, 1904, 1905], "ferromagnet": [1899, 1901, 1904, 1906], "conist": [1899, 1904], "pauli": [1899, 1902, 1904, 1907], "mermin": [1899, 1901, 1904, 1906], "wagner": [1899, 1901, 1904, 1906], "theorem": [1899, 1900, 1901, 1904, 1905, 1906], "09": [255, 1899, 1904, 1905, 1906, 1908], "inlinebackend": [1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "figure_format": [1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908], "earier": [1899, 1904], "insead": [1899, 1904], "hamitonian": [1899, 1904], "python_api": [1899, 1904], "highlight": [1899, 1904], "__": [1899, 1904], "neigbhour": [1899, 1903, 1904, 1908], "h_r": [1899, 1903, 1904, 1908], "510934": 1899, "kmesh": [1899, 1900, 1902, 1903, 1904, 1905, 1907, 1908], "0490874": [1899, 1904], "28319": [1899, 1904], "e_k_interp": [1899, 1904], "raster": [1899, 1904, 1905, 1906], "rdbu": [1899, 1904, 1905], "contour": [1899, 1904], "linestyl": [1899, 1904], "k_tick": [1899, 1904, 1905, 1906], "k_label": [1899, 1904], "xtick": [1899, 1904, 1905, 1906], "ytick": [1899, 1904, 1905, 1906], "va": [1899, 1904], "clip_on": [1899, 1904], "thepath": [1899, 1904], "python_refer": [1899, 1904], "k_vec": [1899, 1904, 1905, 1906], "k_plot": [1899, 1904, 1905, 1906], "wmesh": [1899, 1902, 1903, 1904, 1907, 1908], "wkmesh": [1899, 1904], "g0_wk": [1899, 1900, 1903, 1904, 1905, 1908], "lattice_dyson_g0_wk": [1899, 1903, 1904, 1908], "perfectli": [1899, 1900, 1903, 1904, 1905, 1908], "rho_k": [1899, 1904], "chi": [1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "chi_": [1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "dagger_a": [1900, 1905], "c_b": [1900, 1905], "dagger_c": [1900, 1905], "c_d": [1900, 1905], "wick": [1900, 1905], "convolut": [1900, 1905], "2frac": [1900, 1905], "inu_m": [1900, 1905], "nu_m": [1900, 1905], "fastest": [1900, 1905], "nu_n": [1900, 1905], "susceptibiltii": [1900, 1905], "fft": [1900, 1905], "triqs_trpf": [1900, 1905], "imtime_bubble_chi0_wk": [1900, 1903, 1905, 1908], "chi0_wk": [1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908], "nw": [1900, 1903, 1905, 1908], "greatli": [1900, 1905], "domin": [1900, 1905], "betaepsilon": [1900, 1905], "dinension": [1900, 1905], "extrema": [1900, 1905], "exercic": [1900, 1905], "manifest": [1900, 1905], "susecpt": [1900, 1905], "depdend": [1900, 1905], "sucept": [1900, 1905], "chi0_at_k_w": [1900, 1905], "susceptibilti": [1900, 1905], "chi_q_ref": [1900, 1905], "nan_to_num": [1900, 1905], "agre": [1900, 1905], "pad\u00e9": [1900, 1905], "fequenc": [1900, 1905], "fmesh": [1900, 1905], "chi_f": [1900, 1905], "pade_analytical_continuation_wk": [1900, 1905], "chi0_fk": [1900, 1905], "strongest": [1900, 1905], "susceptibilitii": [1900, 1905], "irreduc": [1901, 1906], "vertex": [1901, 1902, 1906, 1907], "denomin": [1901, 1902, 1903, 1906, 1907, 1908], "wherebi": [1901, 1906], "instabl": [1901, 1906], "predict": [1901, 1903, 1906, 1908], "unphys": [1901, 1903, 1906, 1908], "remedi": [1901, 1906], "shortcom": [1901, 1906], "solve_rpa_ph": [1901, 1902, 1903, 1906, 1907, 1908], "dtype": [1901, 1902, 1903, 1906, 1907, 1908], "compli": [1901, 1906], "chi_wk": [1901, 1902, 1903, 1906, 1907, 1908], "magnitud": [1901, 1906], "incommensur": [1901, 1906], "af": [1901, 1903, 1906, 1908], "andr\u00e9": [1902, 1907], "mari": [1902, 1907], "tremblai": [1902, 1903, 1907, 1908], "law": [1902, 1907], "tpc": [1902, 1903, 1907, 1908], "vertici": [1902, 1907], "cascad": [1902, 1907], "ansatz": [1902, 1903, 1907, 1908], "vilk": [1902, 1903, 1907, 1908], "franc": [1902, 1903, 1907, 1908], "1997": [1902, 1903, 1907, 1908], "1309": [1902, 1903, 1907, 1908], "1368": [1902, 1903, 1907, 1908], "solve_rpa": [1902, 1903, 1907, 1908], "triq_trpf": [1902, 1907], "focus": [1902, 1903, 1907, 1908], "brentq": [1902, 1903, 1907, 1908], "usp_root": [1902, 1903, 1907, 1908], "trace_chi": [1902, 1903, 1907, 1908], "chi_w": [1902, 1903, 1907, 1908], "squeez": [1902, 1903, 1905, 1906, 1907, 1908], "usp": [1902, 1903, 1907, 1908], "uch_root": [1902, 1903, 1907, 1908], "uch": [1902, 1903, 1907, 1908], "docc": [1902, 1903, 1907, 1908], "solve_tpsc": [1902, 1903, 1907, 1908], "iq_n": [1902, 1907], "violat": [1902, 1907], "1133": [1903, 1908], "1966": [1903, 1908], "imposs": [1903, 1908], "heurist": [1903, 1908], "proof": [1903, 1908], "collinear": [1903, 1908], "nabla": [1903, 1908], "wavelength": [1903, 1908], "classic": [1903, 1908], "equipartit": [1903, 1908], "k_bt": [1903, 1908], "rise": [1903, 1908], "infrar": [1903, 1908], "2q": [1903, 1908], "absurd": [1903, 1908], "hypothesi": [1903, 1908], "wave": [1903, 1908], "bubbl": [1903, 1905, 1908], "get_chi0": [1903, 1908], "tr_chi_sp": [1903, 1907, 1908], "diff": [1903, 1907, 1908], "tr_chi": [1903, 1907, 1908], "uc": [1903, 1907, 1908], "examin": [1903, 1908], "sum_n": [1903, 1908], "t_c": [1903, 1908], "t_rpa_vec": [1903, 1908], "concaten": [1903, 1907, 1908], "s_rpa_vec": [1903, 1908], "zeros_lik": [1903, 1907, 1908], "s_rpa": [1903, 1908], "4e": [1903, 1907, 1908], "rigor": [1903, 1908], "excercis": [1903, 1908], "whenc": [1903, 1908], "lowest": [1903, 1908], "sudden": [1903, 1908], "suddent": [1903, 1908], "anitferromagnet": [1903, 1908], "remnant": [1903, 1908], "kyung": [1903, 1908], "landri": [1903, 1908], "poulin": [1903, 1908], "099702": [1903, 1908], "asymptot": [1903, 1908], "trick": [1903, 1908], "appendix": [1903, 1908], "dar\u00e9": [1903, 1908], "14236": [1903, 1908], "1996": [1903, 1908], "intermedi": [1903, 1908], "rightarrow0": [1903, 1908], "rapid": [1903, 1908], "crossov": [1903, 1908], "2u": [1903, 1908], "866052": 1904, "kgrid1d": 1904, "a_k": 1904, "a_inv_k": 1904, "rho_k_interp": 1904, "box": 1905, "16384": 1905, "fourier_wk_to_wr": 1905, "fourier_wr_to_tr": 1905, "chi0_tr_from_grt_ph": 1905, "amp": 1905, "009086": 1905, "chi_wr_from_chi_tr": 1905, "chi_wk_from_chi_wr": 1905, "chi_interp": 1905, "q_x": [1905, 1906], "q_y": [1905, 1906], "chi0_k_interp": 1905, "k_g": 1905, "k_m": 1905, "k_pt": 1905, "_m": 1905, "ro": 1905, "var": 1905, "_1fkps792lsc0txclg5ky4300000gq": 1905, "ipykernel_50793": 1905, "228374747": 1905, "runtimewarn": 1905, "chi0_fk_interp": 1905, "chi_k_interp": 1906, "qx": 1906, "qy": 1906, "pcolor": 1906, "701127": 1906, "k_af": 1906, "u_vec": [1906, 1907], "chi_inv_vec": 1906, "5092181189127931": 1907, "5918677213723913": 1907, "18865226486409914": 1907, "778901915273313": 1907, "usp_vec": 1907, "uch_vec": 1907, "docc_vec": [1907, 1908], "0000e": [1907, 1908], "8960e": 1907, "2410e": 1907, "4133e": 1907, "6960e": 1907, "0074e": 1907, "3480e": 1907, "4299e": 1907, "4181e": 1907, "2964e": 1907, "0435e": 1907, "1509e": 1907, "2343e": 1907, "8118e": 1907, "3194e": 1907, "2029e": 1907, "5092e": 1907, "5919e": 1907, "8865e": 1907, "9155e": 1907, "1248e": 1907, "5962e": 1907, "1660e": 1907, "2127e": 1907, "3538e": 1907, "3187e": 1907, "8718e": 1907, "1594e": 1907, "imread": 1907, "overlai": 1907, "img": 1907, "fig2": 1907, "imshow": 1907, "sum_chi_vec": 1907, "sum_chi": 1907, "9935e": 1907, "5000e": [1907, 1908], "9969e": 1907, "0007e": 1907, "0024e": 1907, "0048e": 1907, "2500e": [1907, 1908], "0079e": 1907, "0118e": 1907, "7500e": 1907, "0166e": 1907, "0222e": 1907, "0287e": 1907, "617709": 1908, "7196e": 1908, "3333e": 1908, "5925e": 1908, "8000e": 1908, "5714e": 1908, "8783e": 1908, "6000e": 1908, "8462e": 1908, "2302e": 1908, "4000e": 1908, "1667e": 1908, "6725e": 1908, "2000e": 1908, "5455e": 1908, "2425e": 1908, "0006e": 1908, "5556e": 1908, "0503e": 1908, "5858e": 1908, "1429e": 1908, "0020e": 1908, "4436e": 1908, "5028e": 1908, "9329e": 1908, "t_tpsc_vec": 1908, "s_tpsc_vec": 1908, "u_sp_vec": 1908, "u_ch_vec": 1908, "s_tpsc": 1908, "ucrpa": 1908, "chi_sp_wk": 1908, "1151e": 1908, "9735e": 1908, "9469e": 1908, "6108e": 1908, "9065e": 1908, "3054e": 1908, "8166e": 1908, "3189e": 1908, "7718e": 1908, "5801e": 1908, "7324e": 1908, "9464e": 1908, "6148e": 1908, "0225e": 1908, "6343e": 1908, "9851e": 1908, "6667e": 1908, "4421e": 1908, "8411e": 1908, "5263e": 1908, "9599e": 1908, "3406e": 1908, "7133e": 1908, "4629e": 1908, "2155e": 1908, "2802e": 1908, "5589e": 1908, "4251e": 1908, "0735e": 1908, "2301e": 1908, "6547e": 1908, "3938e": 1908, "5004e": 1908, "1949e": 1908, "0900e": 1908, "3718e": 1908, "3575e": 1908, "1657e": 1908, "2228e": 1908, "3535e": 1908, "8974e": 1908, "8571e": 1908, "1527e": 1908, "2658e": 1908, "3454e": 1908, "6014e": 1908, "1327e": 1908, "3218e": 1908, "3330e": 1908, "0230e": 1908, "0869e": 1908, "4279e": 1908, "3043e": 1908, "2999e": 1908, "221": 1908, "222": 1908, "blow": 1908, "223": 1908, "u_sp": 1908, "224": 1908, "twoparticlerespons": 1909, "deeper": 1910, "profound": 1910, "port": 1910, "summari": 1910, "path_to_install_directori": 1910, "diretori": 1910, "show_vers": 1910, "9e": [254, 255], "6e": [254, 255], "3e": [254, 255], "00068": 254, "8e": 255, "5e": 255, "00098": 255, "00042": 255, "645497": [483, 484]}, "objects": {"": [[498, 0, 1, "", "HDFArchiveGroup"], [498, 0, 1, "", "HDFArchiveInert"], [497, 1, 1, "reduce_to_dict__", "__reduce_to_dict__"], [496, 2, 0, "-", "h5"], [498, 3, 1, "", "register_class"]], "HDFArchiveGroup": [[498, 1, 1, "", "apply_on_leaves"], [498, 1, 1, "", "create_group"], [498, 1, 1, "", "get_raw"], [498, 1, 1, "", "is_data"], [498, 1, 1, "", "is_group"], [498, 1, 1, "", "items"], [498, 1, 1, "", "keys"], [498, 1, 1, "", "read_attr"], [498, 1, 1, "", "root_path"], [498, 1, 1, "", "update"], [498, 1, 1, "", "values"]], "h5": [[498, 0, 1, "", "HDFArchive"]], "triqs": [[588, 2, 0, "-", "atom_diag"], [643, 2, 0, "-", "dos"], [657, 2, 0, "-", "fit"], [661, 2, 0, "-", "gf"], [1592, 2, 0, "-", "lattice"], [1669, 2, 0, "-", "operators"], [1724, 2, 0, "-", "plot"], [1733, 2, 0, "-", "random_generator"], [1738, 2, 0, "-", "stat"], [1752, 2, 0, "-", "sumk"], [1766, 2, 0, "-", "utility"]], "triqs.atom_diag": [[589, 3, 1, "", "AtomDiag"], [590, 2, 0, "-", "atom_diag"]], "triqs.atom_diag.atom_diag": [[591, 0, 1, "", "AtomDiagComplex"], [612, 0, 1, "", "AtomDiagReal"], [633, 3, 1, "", "act"], [634, 3, 1, "", "atomic_density_matrix"], [635, 3, 1, "", "atomic_g_iw"], [636, 3, 1, "", "atomic_g_l"], [637, 3, 1, "", "atomic_g_tau"], [638, 3, 1, "", "atomic_g_w"], [639, 3, 1, "", "partition_function"], [640, 3, 1, "", "quantum_number_eigenvalues"], [641, 3, 1, "", "quantum_number_eigenvalues_checked"], [642, 3, 1, "", "trace_rho_op"]], "triqs.atom_diag.atom_diag.AtomDiagComplex": [[592, 1, 1, "", "__init__"], [593, 1, 1, "", "c_connection"], [594, 1, 1, "", "c_matrix"], [595, 1, 1, "", "cdag_connection"], [596, 1, 1, "", "cdag_matrix"], [597, 4, 1, "", "energies"], [598, 1, 1, "", "flatten_subspace_index"], [599, 4, 1, "", "fock_states"], [600, 4, 1, "", "fops"], [601, 4, 1, "", "full_hilbert_space_dim"], [602, 1, 1, "", "get_eigenvalue"], [603, 1, 1, "", "get_subspace_dim"], [604, 1, 1, "", "get_subspace_dims"], [605, 4, 1, "", "gs_energy"], [606, 4, 1, "", "h_atomic"], [607, 4, 1, "", "n_subspaces"], [608, 4, 1, "", "quantum_numbers"], [609, 4, 1, "", "unitary_matrices"], [610, 4, 1, "", "vacuum_state"], [611, 4, 1, "", "vacuum_subspace_index"]], "triqs.atom_diag.atom_diag.AtomDiagReal": [[613, 1, 1, "", "__init__"], [614, 1, 1, "", "c_connection"], [615, 1, 1, "", "c_matrix"], [616, 1, 1, "", "cdag_connection"], [617, 1, 1, "", "cdag_matrix"], [618, 4, 1, "", "energies"], [619, 1, 1, "", "flatten_subspace_index"], [620, 4, 1, "", "fock_states"], [621, 4, 1, "", "fops"], [622, 4, 1, "", "full_hilbert_space_dim"], [623, 1, 1, "", "get_eigenvalue"], [624, 1, 1, "", "get_subspace_dim"], [625, 1, 1, "", "get_subspace_dims"], [626, 4, 1, "", "gs_energy"], [627, 4, 1, "", "h_atomic"], [628, 4, 1, "", "n_subspaces"], [629, 4, 1, "", "quantum_numbers"], [630, 4, 1, "", "unitary_matrices"], [631, 4, 1, "", "vacuum_state"], [632, 4, 1, "", "vacuum_subspace_index"]], "triqs.dos": [[644, 2, 0, "-", "dos"], [559, 3, 1, "", "dos_from_file"], [654, 2, 0, "-", "hilbert_transform"]], "triqs.dos.dos": [[645, 0, 1, "", "DOS"], [649, 0, 1, "", "DOSFromFunction"], [653, 3, 1, "", "dos_from_file"]], "triqs.dos.dos.DOS": [[646, 1, 1, "", "__init__"], [647, 1, 1, "", "copy"], [648, 1, 1, "", "density"]], "triqs.dos.dos.DOSFromFunction": [[650, 1, 1, "", "__init__"], [651, 1, 1, "", "copy"], [652, 1, 1, "", "density"]], "triqs.dos.hilbert_transform": [[655, 0, 1, "", "HilbertTransform"]], "triqs.dos.hilbert_transform.HilbertTransform": [[656, 1, 1, "", "__init__"]], "triqs.fit": [[658, 2, 0, "-", "fit"]], "triqs.fit.fit": [[659, 0, 1, "", "Fit"]], "triqs.fit.fit.Fit": [[660, 1, 1, "", "__init__"]], "triqs.gf": [[662, 2, 0, "-", "backwd_compat"], [858, 2, 0, "-", "block2_gf"], [873, 2, 0, "-", "block_gf"], [898, 2, 0, "-", "descriptor_base"], [915, 2, 0, "-", "descriptors"], [934, 2, 0, "-", "dlr_crm_dyson_solver"], [936, 2, 0, "-", "gf"], [985, 2, 0, "-", "gf_factories"], [995, 2, 0, "-", "gf_fnt"], [1013, 2, 0, "-", "lazy_expressions"], [1028, 2, 0, "-", "map_block"], [1029, 2, 0, "-", "matsubara_freq"], [1036, 2, 0, "-", "mesh_point"], [1043, 2, 0, "-", "mesh_product"], [1053, 2, 0, "-", "meshes"], [1179, 2, 0, "-", "plot"], [1208, 2, 0, "-", "tools"], [1220, 2, 0, "-", "wrapped_aux"]], "triqs.gf.backwd_compat": [[663, 2, 0, "-", "gf_imfreq"], [702, 2, 0, "-", "gf_imtime"], [741, 2, 0, "-", "gf_legendre"], [780, 2, 0, "-", "gf_refreq"], [819, 2, 0, "-", "gf_retime"]], "triqs.gf.backwd_compat.gf_imfreq": [[664, 0, 1, "", "GfImFreq"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq": [[665, 1, 1, "", "__init__"], [666, 1, 1, "", "conjugate"], [667, 1, 1, "", "copy"], [668, 1, 1, "", "copy_from"], [669, 5, 1, "", "data"], [670, 1, 1, "", "density"], [671, 1, 1, "", "enforce_discontinuity"], [672, 1, 1, "", "fit_hermitian_tail"], [673, 1, 1, "", "fit_hermitian_tail_on_window"], [674, 1, 1, "", "fit_tail"], [675, 1, 1, "", "fit_tail_on_window"], [676, 1, 1, "", "from_L_G_R"], [677, 5, 1, "", "imag"], [678, 5, 1, "", "indices"], [679, 1, 1, "", "inverse"], [680, 1, 1, "", "invert"], [681, 1, 1, "", "is_gf_hermitian"], [682, 1, 1, "", "is_gf_real_in_tau"], [683, 5, 1, "", "mesh"], [684, 5, 1, "", "rank"], [685, 5, 1, "", "real"], [686, 1, 1, "", "rebinning_tau"], [687, 1, 1, "", "replace_by_tail"], [688, 1, 1, "", "replace_by_tail_in_fit_window"], [689, 1, 1, "", "set_from_fourier"], [690, 1, 1, "", "set_from_imfreq"], [691, 1, 1, "", "set_from_imtime"], [692, 1, 1, "", "set_from_legendre"], [693, 1, 1, "", "set_from_pade"], [694, 5, 1, "", "target_indices"], [695, 5, 1, "", "target_rank"], [696, 5, 1, "", "target_shape"], [697, 1, 1, "", "tau_L2_norm"], [698, 1, 1, "", "total_density"], [699, 1, 1, "", "transpose"], [700, 1, 1, "", "x_data_view"], [701, 1, 1, "", "zero"]], "triqs.gf.backwd_compat.gf_imtime": [[703, 0, 1, "", "GfImTime"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime": [[704, 1, 1, "", "__init__"], [705, 1, 1, "", "conjugate"], [706, 1, 1, "", "copy"], [707, 1, 1, "", "copy_from"], [708, 5, 1, "", "data"], [709, 1, 1, "", "density"], [710, 1, 1, "", "enforce_discontinuity"], [711, 1, 1, "", "fit_hermitian_tail"], [712, 1, 1, "", "fit_hermitian_tail_on_window"], [713, 1, 1, "", "fit_tail"], [714, 1, 1, "", "fit_tail_on_window"], [715, 1, 1, "", "from_L_G_R"], [716, 5, 1, "", "imag"], [717, 5, 1, "", "indices"], [718, 1, 1, "", "inverse"], [719, 1, 1, "", "invert"], [720, 1, 1, "", "is_gf_hermitian"], [721, 1, 1, "", "is_gf_real_in_tau"], [722, 5, 1, "", "mesh"], [723, 5, 1, "", "rank"], [724, 5, 1, "", "real"], [725, 1, 1, "", "rebinning_tau"], [726, 1, 1, "", "replace_by_tail"], [727, 1, 1, "", "replace_by_tail_in_fit_window"], [728, 1, 1, "", "set_from_fourier"], [729, 1, 1, "", "set_from_imfreq"], [730, 1, 1, "", "set_from_imtime"], [731, 1, 1, "", "set_from_legendre"], [732, 1, 1, "", "set_from_pade"], [733, 5, 1, "", "target_indices"], [734, 5, 1, "", "target_rank"], [735, 5, 1, "", "target_shape"], [736, 1, 1, "", "tau_L2_norm"], [737, 1, 1, "", "total_density"], [738, 1, 1, "", "transpose"], [739, 1, 1, "", "x_data_view"], [740, 1, 1, "", "zero"]], "triqs.gf.backwd_compat.gf_legendre": [[742, 0, 1, "", "GfLegendre"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre": [[743, 1, 1, "", "__init__"], [744, 1, 1, "", "conjugate"], [745, 1, 1, "", "copy"], [746, 1, 1, "", "copy_from"], [747, 5, 1, "", "data"], [748, 1, 1, "", "density"], [749, 1, 1, "", "enforce_discontinuity"], [750, 1, 1, "", "fit_hermitian_tail"], [751, 1, 1, "", "fit_hermitian_tail_on_window"], [752, 1, 1, "", "fit_tail"], [753, 1, 1, "", "fit_tail_on_window"], [754, 1, 1, "", "from_L_G_R"], [755, 5, 1, "", "imag"], [756, 5, 1, "", "indices"], [757, 1, 1, "", "inverse"], [758, 1, 1, "", "invert"], [759, 1, 1, "", "is_gf_hermitian"], [760, 1, 1, "", "is_gf_real_in_tau"], [761, 5, 1, "", "mesh"], [762, 5, 1, "", "rank"], [763, 5, 1, "", "real"], [764, 1, 1, "", "rebinning_tau"], [765, 1, 1, "", "replace_by_tail"], [766, 1, 1, "", "replace_by_tail_in_fit_window"], [767, 1, 1, "", "set_from_fourier"], [768, 1, 1, "", "set_from_imfreq"], [769, 1, 1, "", "set_from_imtime"], [770, 1, 1, "", "set_from_legendre"], [771, 1, 1, "", "set_from_pade"], [772, 5, 1, "", "target_indices"], [773, 5, 1, "", "target_rank"], [774, 5, 1, "", "target_shape"], [775, 1, 1, "", "tau_L2_norm"], [776, 1, 1, "", "total_density"], [777, 1, 1, "", "transpose"], [778, 1, 1, "", "x_data_view"], [779, 1, 1, "", "zero"]], "triqs.gf.backwd_compat.gf_refreq": [[781, 0, 1, "", "GfReFreq"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq": [[782, 1, 1, "", "__init__"], [783, 1, 1, "", "conjugate"], [784, 1, 1, "", "copy"], [785, 1, 1, "", "copy_from"], [786, 5, 1, "", "data"], [787, 1, 1, "", "density"], [788, 1, 1, "", "enforce_discontinuity"], [789, 1, 1, "", "fit_hermitian_tail"], [790, 1, 1, "", "fit_hermitian_tail_on_window"], [791, 1, 1, "", "fit_tail"], [792, 1, 1, "", "fit_tail_on_window"], [793, 1, 1, "", "from_L_G_R"], [794, 5, 1, "", "imag"], [795, 5, 1, "", "indices"], [796, 1, 1, "", "inverse"], [797, 1, 1, "", "invert"], [798, 1, 1, "", "is_gf_hermitian"], [799, 1, 1, "", "is_gf_real_in_tau"], [800, 5, 1, "", "mesh"], [801, 5, 1, "", "rank"], [802, 5, 1, "", "real"], [803, 1, 1, "", "rebinning_tau"], [804, 1, 1, "", "replace_by_tail"], [805, 1, 1, "", "replace_by_tail_in_fit_window"], [806, 1, 1, "", "set_from_fourier"], [807, 1, 1, "", "set_from_imfreq"], [808, 1, 1, "", "set_from_imtime"], [809, 1, 1, "", "set_from_legendre"], [810, 1, 1, "", "set_from_pade"], [811, 5, 1, "", "target_indices"], [812, 5, 1, "", "target_rank"], [813, 5, 1, "", "target_shape"], [814, 1, 1, "", "tau_L2_norm"], [815, 1, 1, "", "total_density"], [816, 1, 1, "", "transpose"], [817, 1, 1, "", "x_data_view"], [818, 1, 1, "", "zero"]], "triqs.gf.backwd_compat.gf_retime": [[820, 0, 1, "", "GfReTime"]], "triqs.gf.backwd_compat.gf_retime.GfReTime": [[821, 1, 1, "", "__init__"], [822, 1, 1, "", "conjugate"], [823, 1, 1, "", "copy"], [824, 1, 1, "", "copy_from"], [825, 5, 1, "", "data"], [826, 1, 1, "", "density"], [827, 1, 1, "", "enforce_discontinuity"], [828, 1, 1, "", "fit_hermitian_tail"], [829, 1, 1, "", "fit_hermitian_tail_on_window"], [830, 1, 1, "", "fit_tail"], [831, 1, 1, "", "fit_tail_on_window"], [832, 1, 1, "", "from_L_G_R"], [833, 5, 1, "", "imag"], [834, 5, 1, "", "indices"], [835, 1, 1, "", "inverse"], [836, 1, 1, "", "invert"], [837, 1, 1, "", "is_gf_hermitian"], [838, 1, 1, "", "is_gf_real_in_tau"], [839, 5, 1, "", "mesh"], [840, 5, 1, "", "rank"], [841, 5, 1, "", "real"], [842, 1, 1, "", "rebinning_tau"], [843, 1, 1, "", "replace_by_tail"], [844, 1, 1, "", "replace_by_tail_in_fit_window"], [845, 1, 1, "", "set_from_fourier"], [846, 1, 1, "", "set_from_imfreq"], [847, 1, 1, "", "set_from_imtime"], [848, 1, 1, "", "set_from_legendre"], [849, 1, 1, "", "set_from_pade"], [850, 5, 1, "", "target_indices"], [851, 5, 1, "", "target_rank"], [852, 5, 1, "", "target_shape"], [853, 1, 1, "", "tau_L2_norm"], [854, 1, 1, "", "total_density"], [855, 1, 1, "", "transpose"], [856, 1, 1, "", "x_data_view"], [857, 1, 1, "", "zero"]], "triqs.gf.block2_gf": [[859, 0, 1, "", "Block2Gf"]], "triqs.gf.block2_gf.Block2Gf": [[860, 1, 1, "", "__init__"], [861, 5, 1, "", "all_indices"], [862, 1, 1, "", "copy"], [863, 1, 1, "", "copy_from"], [864, 1, 1, "", "copy_selected_blocks"], [865, 5, 1, "", "imag"], [866, 5, 1, "", "indices"], [867, 5, 1, "", "indices1"], [868, 5, 1, "", "indices2"], [869, 5, 1, "", "n_blocks"], [870, 5, 1, "", "real"], [871, 1, 1, "", "view_selected_blocks"], [872, 1, 1, "", "zero"]], "triqs.gf.block_gf": [[874, 0, 1, "", "BlockGf"], [896, 3, 1, "", "call_factory_from_dict"], [897, 3, 1, "", "fix_gf_struct_type"]], "triqs.gf.block_gf.BlockGf": [[875, 1, 1, "", "__init__"], [876, 5, 1, "", "all_indices"], [877, 5, 1, "", "beta"], [878, 1, 1, "", "conjugate"], [879, 1, 1, "", "copy"], [880, 1, 1, "", "copy_from"], [881, 1, 1, "", "copy_selected_blocks"], [882, 1, 1, "", "density"], [883, 5, 1, "", "imag"], [884, 5, 1, "", "indices"], [885, 1, 1, "", "inverse"], [886, 1, 1, "", "invert"], [887, 1, 1, "", "load"], [888, 5, 1, "", "mesh"], [889, 5, 1, "", "n_blocks"], [890, 5, 1, "", "real"], [891, 1, 1, "", "save"], [892, 1, 1, "", "total_density"], [893, 1, 1, "", "transpose"], [894, 1, 1, "", "view_selected_blocks"], [895, 1, 1, "", "zero"]], "triqs.gf.descriptor_base": [[899, 0, 1, "", "Base"], [901, 0, 1, "", "BaseBlock"], [904, 0, 1, "", "Const"], [906, 0, 1, "", "Function"], [908, 0, 1, "", "LazyCTX"], [910, 0, 1, "", "Omega_"], [912, 3, 1, "", "convert_scalar_to_const"], [913, 3, 1, "", "is_lazy"], [914, 3, 1, "", "is_scalar"]], "triqs.gf.descriptor_base.Base": [[900, 1, 1, "", "__init__"]], "triqs.gf.descriptor_base.BaseBlock": [[902, 1, 1, "", "__init__"], [903, 1, 1, "", "is_block_descriptor"]], "triqs.gf.descriptor_base.Const": [[905, 1, 1, "", "__init__"]], "triqs.gf.descriptor_base.Function": [[907, 1, 1, "", "__init__"]], "triqs.gf.descriptor_base.LazyCTX": [[909, 1, 1, "", "__init__"]], "triqs.gf.descriptor_base.Omega_": [[911, 1, 1, "", "__init__"]], "triqs.gf.descriptors": [[916, 0, 1, "", "Flat"], [918, 0, 1, "", "Fourier"], [921, 0, 1, "", "LegendreToMatsubara"], [924, 0, 1, "", "MatsubaraToLegendre"], [550, 0, 1, "", "Omega"], [927, 0, 1, "", "OneFermionInTime"], [929, 0, 1, "", "SemiCircular"], [931, 4, 1, "", "Wilson"], [933, 3, 1, "", "semi"]], "triqs.gf.descriptors.Flat": [[917, 1, 1, "", "__init__"]], "triqs.gf.descriptors.Fourier": [[919, 1, 1, "", "__init__"], [920, 1, 1, "", "is_block_descriptor"]], "triqs.gf.descriptors.LegendreToMatsubara": [[922, 1, 1, "", "__init__"], [923, 1, 1, "", "is_block_descriptor"]], "triqs.gf.descriptors.MatsubaraToLegendre": [[925, 1, 1, "", "__init__"], [926, 1, 1, "", "is_block_descriptor"]], "triqs.gf.descriptors.OneFermionInTime": [[928, 1, 1, "", "__init__"]], "triqs.gf.descriptors.SemiCircular": [[930, 1, 1, "", "__init__"]], "triqs.gf.descriptors.Wilson": [[932, 1, 1, "", "__init__"]], "triqs.gf.dlr_crm_dyson_solver": [[935, 3, 1, "", "minimize_dyson"]], "triqs.gf.gf": [[937, 0, 1, "", "AddMethod"], [940, 0, 1, "", "CallProxyNone"], [942, 0, 1, "", "Gf"], [980, 0, 1, "", "Idx"], [982, 3, 1, "", "add_method_helper"], [983, 3, 1, "", "bckwd"], [984, 3, 1, "", "call_factory_from_dict"]], "triqs.gf.gf.AddMethod": [[938, 1, 1, "", "__init__"], [939, 1, 1, "", "mro"]], "triqs.gf.gf.CallProxyNone": [[941, 1, 1, "", "__init__"]], "triqs.gf.gf.Gf": [[943, 1, 1, "", "__init__"], [944, 1, 1, "", "conjugate"], [945, 1, 1, "", "copy"], [946, 1, 1, "", "copy_from"], [947, 5, 1, "", "data"], [948, 1, 1, "", "density"], [949, 1, 1, "", "enforce_discontinuity"], [950, 1, 1, "", "fit_hermitian_tail"], [951, 1, 1, "", "fit_hermitian_tail_on_window"], [952, 1, 1, "", "fit_tail"], [953, 1, 1, "", "fit_tail_on_window"], [954, 1, 1, "", "from_L_G_R"], [955, 5, 1, "", "imag"], [956, 5, 1, "", "indices"], [957, 1, 1, "", "inverse"], [958, 1, 1, "", "invert"], [959, 1, 1, "", "is_gf_hermitian"], [960, 1, 1, "", "is_gf_real_in_tau"], [961, 5, 1, "", "mesh"], [962, 5, 1, "", "rank"], [963, 5, 1, "", "real"], [964, 1, 1, "", "rebinning_tau"], [965, 1, 1, "", "replace_by_tail"], [966, 1, 1, "", "replace_by_tail_in_fit_window"], [967, 1, 1, "", "set_from_fourier"], [968, 1, 1, "", "set_from_imfreq"], [969, 1, 1, "", "set_from_imtime"], [970, 1, 1, "", "set_from_legendre"], [971, 1, 1, "", "set_from_pade"], [972, 5, 1, "", "target_indices"], [973, 5, 1, "", "target_rank"], [974, 5, 1, "", "target_shape"], [975, 1, 1, "", "tau_L2_norm"], [976, 1, 1, "", "total_density"], [977, 1, 1, "", "transpose"], [978, 1, 1, "", "x_data_view"], [979, 1, 1, "", "zero"]], "triqs.gf.gf.Idx": [[981, 1, 1, "", "__init__"]], "triqs.gf.gf_factories": [[986, 3, 1, "", "fit_gf_dlr"], [987, 3, 1, "", "make_gf_dlr"], [988, 3, 1, "", "make_gf_dlr_imfreq"], [989, 3, 1, "", "make_gf_dlr_imtime"], [990, 3, 1, "", "make_gf_from_fourier"], [991, 3, 1, "", "make_gf_imfreq"], [992, 3, 1, "", "make_gf_imtime"], [993, 3, 1, "", "make_hermitian"], [994, 3, 1, "", "make_real_in_tau"]], "triqs.gf.gf_fnt": [[996, 3, 1, "", "density"], [997, 3, 1, "", "enforce_discontinuity"], [998, 3, 1, "", "fit_hermitian_tail"], [999, 3, 1, "", "fit_hermitian_tail_on_window"], [1000, 3, 1, "", "fit_tail"], [1001, 3, 1, "", "fit_tail_on_window"], [1002, 3, 1, "", "is_gf_hermitian"], [1003, 3, 1, "", "is_gf_real_in_tau"], [1004, 3, 1, "", "rebinning_tau"], [1005, 3, 1, "", "replace_by_tail"], [1006, 3, 1, "", "replace_by_tail_in_fit_window"], [1007, 3, 1, "", "set_from_fourier"], [1008, 3, 1, "", "set_from_imfreq"], [1009, 3, 1, "", "set_from_imtime"], [1010, 3, 1, "", "set_from_legendre"], [1011, 3, 1, "", "set_from_pade"], [1012, 3, 1, "", "tau_L2_norm"]], "triqs.gf.lazy_expressions": [[1014, 0, 1, "", "LazyExpr"], [1020, 0, 1, "", "LazyExprTerminal"], [1022, 3, 1, "", "all_terminals"], [1023, 3, 1, "", "eval_expr"], [1024, 3, 1, "", "eval_expr_with_context"], [1025, 3, 1, "", "lazy_function"], [1026, 3, 1, "", "make_lazy"], [1027, 3, 1, "", "transform"]], "triqs.gf.lazy_expressions.LazyExpr": [[1015, 1, 1, "", "__init__"], [1016, 1, 1, "", "copy"], [1017, 1, 1, "", "get_terminal"], [1018, 1, 1, "", "is_terminal"], [1019, 1, 1, "", "set_from"]], "triqs.gf.lazy_expressions.LazyExprTerminal": [[1021, 1, 1, "", "__init__"]], "triqs.gf.matsubara_freq": [[1030, 0, 1, "", "MatsubaraFreq"]], "triqs.gf.matsubara_freq.MatsubaraFreq": [[1031, 1, 1, "", "__init__"], [1030, 4, 1, "", "beta"], [1032, 5, 1, "", "imag"], [1033, 5, 1, "", "index"], [1030, 4, 1, "", "n"], [1034, 5, 1, "", "real"], [1030, 4, 1, "", "statistic"], [1035, 5, 1, "", "value"]], "triqs.gf.mesh_point": [[1037, 0, 1, "", "MeshPoint"], [1041, 0, 1, "", "MeshValueGenerator"]], "triqs.gf.mesh_point.MeshPoint": [[1038, 1, 1, "", "__init__"], [1039, 5, 1, "", "imag"], [1040, 5, 1, "", "real"]], "triqs.gf.mesh_point.MeshValueGenerator": [[1042, 1, 1, "", "__init__"]], "triqs.gf.mesh_product": [[1044, 0, 1, "", "MeshProduct"], [1052, 3, 1, "", "call_factory_from_dict"]], "triqs.gf.mesh_product.MeshProduct": [[1045, 1, 1, "", "__init__"], [1046, 5, 1, "", "components"], [1047, 1, 1, "", "copy"], [1048, 1, 1, "", "copy_from"], [1049, 5, 1, "", "rank"], [1050, 1, 1, "", "size_of_components"], [1051, 1, 1, "", "to_data_index"]], "triqs.gf.meshes": [[1054, 0, 1, "", "MeshBrZone"], [1067, 0, 1, "", "MeshCycLat"], [1079, 0, 1, "", "MeshDLR"], [1092, 0, 1, "", "MeshDLRImFreq"], [1105, 0, 1, "", "MeshDLRImTime"], [1118, 0, 1, "", "MeshImFreq"], [1134, 0, 1, "", "MeshImTime"], [1145, 0, 1, "", "MeshLegendre"], [1154, 0, 1, "", "MeshReFreq"], [1166, 0, 1, "", "MeshReTime"], [1178, 3, 1, "", "make_adjoint_mesh"]], "triqs.gf.meshes.MeshBrZone": [[1055, 1, 1, "", "__init__"], [1056, 4, 1, "", "bz"], [1057, 1, 1, "", "closest_index"], [1058, 1, 1, "", "copy"], [1059, 1, 1, "", "copy_from"], [1060, 4, 1, "", "dims"], [1061, 4, 1, "", "mesh_hash"], [1062, 1, 1, "", "to_data_index"], [1063, 1, 1, "", "to_index"], [1064, 1, 1, "", "to_value"], [1065, 4, 1, "", "units"], [1066, 1, 1, "", "values"]], "triqs.gf.meshes.MeshCycLat": [[1068, 1, 1, "", "__init__"], [1069, 1, 1, "", "copy"], [1070, 1, 1, "", "copy_from"], [1071, 4, 1, "", "dims"], [1072, 4, 1, "", "lattice"], [1073, 4, 1, "", "mesh_hash"], [1074, 1, 1, "", "to_data_index"], [1075, 1, 1, "", "to_index"], [1076, 1, 1, "", "to_value"], [1077, 4, 1, "", "units"], [1078, 1, 1, "", "values"]], "triqs.gf.meshes.MeshDLR": [[1080, 1, 1, "", "__init__"], [1081, 4, 1, "", "beta"], [1082, 1, 1, "", "copy"], [1083, 1, 1, "", "copy_from"], [1084, 4, 1, "", "eps"], [1085, 4, 1, "", "mesh_hash"], [1086, 4, 1, "", "statistic"], [1087, 1, 1, "", "to_data_index"], [1088, 1, 1, "", "to_index"], [1089, 1, 1, "", "to_value"], [1090, 1, 1, "", "values"], [1091, 4, 1, "", "w_max"]], "triqs.gf.meshes.MeshDLRImFreq": [[1093, 1, 1, "", "__init__"], [1094, 4, 1, "", "beta"], [1095, 1, 1, "", "copy"], [1096, 1, 1, "", "copy_from"], [1097, 4, 1, "", "eps"], [1098, 4, 1, "", "mesh_hash"], [1099, 4, 1, "", "statistic"], [1100, 1, 1, "", "to_data_index"], [1101, 1, 1, "", "to_index"], [1102, 1, 1, "", "to_value"], [1103, 1, 1, "", "values"], [1104, 4, 1, "", "w_max"]], "triqs.gf.meshes.MeshDLRImTime": [[1106, 1, 1, "", "__init__"], [1107, 4, 1, "", "beta"], [1108, 1, 1, "", "copy"], [1109, 1, 1, "", "copy_from"], [1110, 4, 1, "", "eps"], [1111, 4, 1, "", "mesh_hash"], [1112, 4, 1, "", "statistic"], [1113, 1, 1, "", "to_data_index"], [1114, 1, 1, "", "to_index"], [1115, 1, 1, "", "to_value"], [1116, 1, 1, "", "values"], [1117, 4, 1, "", "w_max"]], "triqs.gf.meshes.MeshImFreq": [[1119, 1, 1, "", "__init__"], [1120, 4, 1, "", "beta"], [1121, 1, 1, "", "copy"], [1122, 1, 1, "", "copy_from"], [1123, 1, 1, "", "first_index"], [1124, 1, 1, "", "last_index"], [1125, 4, 1, "", "mesh_hash"], [1126, 4, 1, "", "n_iw"], [1127, 1, 1, "", "positive_only"], [1128, 1, 1, "", "set_tail_fit_parameters"], [1129, 4, 1, "", "statistic"], [1130, 1, 1, "", "to_data_index"], [1131, 1, 1, "", "to_index"], [1132, 1, 1, "", "to_value"], [1133, 1, 1, "", "values"]], "triqs.gf.meshes.MeshImTime": [[1135, 1, 1, "", "__init__"], [1136, 4, 1, "", "beta"], [1137, 1, 1, "", "copy"], [1138, 1, 1, "", "copy_from"], [1139, 4, 1, "", "mesh_hash"], [1140, 4, 1, "", "statistic"], [1141, 1, 1, "", "to_data_index"], [1142, 1, 1, "", "to_index"], [1143, 1, 1, "", "to_value"], [1144, 1, 1, "", "values"]], "triqs.gf.meshes.MeshLegendre": [[1146, 1, 1, "", "__init__"], [1147, 4, 1, "", "beta"], [1148, 1, 1, "", "copy"], [1149, 1, 1, "", "copy_from"], [1150, 4, 1, "", "mesh_hash"], [1151, 4, 1, "", "statistic"], [1152, 1, 1, "", "to_data_index"], [1153, 1, 1, "", "to_index"]], "triqs.gf.meshes.MeshReFreq": [[1155, 1, 1, "", "__init__"], [1156, 1, 1, "", "copy"], [1157, 1, 1, "", "copy_from"], [1158, 4, 1, "", "delta"], [1159, 4, 1, "", "mesh_hash"], [1160, 1, 1, "", "to_data_index"], [1161, 1, 1, "", "to_index"], [1162, 1, 1, "", "to_value"], [1163, 1, 1, "", "values"], [1164, 4, 1, "", "w_max"], [1165, 4, 1, "", "w_min"]], "triqs.gf.meshes.MeshReTime": [[1167, 1, 1, "", "__init__"], [1168, 1, 1, "", "copy"], [1169, 1, 1, "", "copy_from"], [1170, 4, 1, "", "delta"], [1171, 4, 1, "", "mesh_hash"], [1172, 4, 1, "", "t_max"], [1173, 4, 1, "", "t_min"], [1174, 1, 1, "", "to_data_index"], [1175, 1, 1, "", "to_index"], [1176, 1, 1, "", "to_value"], [1177, 1, 1, "", "values"]], "triqs.gf.plot": [[1180, 2, 0, "-", "bz"], [1188, 2, 0, "-", "bz_x_x"], [1191, 3, 1, "", "dispatcher"], [1192, 2, 0, "-", "one_var"], [1200, 2, 0, "-", "plot_base"], [1202, 2, 0, "-", "select_indices"]], "triqs.gf.plot.bz": [[1181, 3, 1, "", "dist"], [1182, 3, 1, "", "generate_points"], [1183, 3, 1, "", "generate_points_on_path"], [1184, 3, 1, "", "length"], [1185, 3, 1, "", "make_plottable"], [1186, 3, 1, "", "plot"], [1187, 3, 1, "", "slice_on_path"]], "triqs.gf.plot.bz_x_x": [[1189, 3, 1, "", "plot"], [1190, 3, 1, "", "plottable_slice_along_path"]], "triqs.gf.plot.one_var": [[1193, 3, 1, "", "dlr_imfreq"], [1194, 3, 1, "", "dlr_imtime"], [1195, 3, 1, "", "imfreq"], [1196, 3, 1, "", "imtime"], [1197, 3, 1, "", "legendre"], [1198, 3, 1, "", "refreq"], [1199, 3, 1, "", "retime"]], "triqs.gf.plot.plot_base": [[1201, 3, 1, "", "plot_base"]], "triqs.gf.plot.select_indices": [[1203, 3, 1, "", "closest_point_in_line"], [1204, 3, 1, "", "closest_to"], [1205, 3, 1, "", "dist"], [1206, 3, 1, "", "pick_selection_vec"], [1207, 3, 1, "", "select_path_indices"]], "triqs.gf.tools": [[1209, 3, 1, "", "conjugate"], [1210, 3, 1, "", "delta"], [1211, 3, 1, "", "discretize_bath"], [1212, 3, 1, "", "dyson"], [1213, 3, 1, "", "fit_legendre"], [1214, 3, 1, "", "inverse"], [1215, 3, 1, "", "make_delta"], [1216, 3, 1, "", "make_zero_tail"], [1217, 3, 1, "", "read_gf_from_txt"], [1218, 3, 1, "", "transpose"], [1219, 3, 1, "", "write_gf_to_txt"]], "triqs.gf.wrapped_aux": [[1221, 0, 1, "", "CallProxyBrZone_0"], [1223, 0, 1, "", "CallProxyBrZone_1"], [1225, 0, 1, "", "CallProxyBrZone_2"], [1227, 0, 1, "", "CallProxyBrZone_3"], [1229, 0, 1, "", "CallProxyBrZone_4"], [1231, 0, 1, "", "CallProxyBrZone_x_DLR_0"], [1233, 0, 1, "", "CallProxyBrZone_x_DLR_1"], [1235, 0, 1, "", "CallProxyBrZone_x_DLR_2"], [1237, 0, 1, "", "CallProxyBrZone_x_DLR_3"], [1239, 0, 1, "", "CallProxyBrZone_x_DLR_4"], [1241, 0, 1, "", "CallProxyBrZone_x_ImFreq_0"], [1243, 0, 1, "", "CallProxyBrZone_x_ImFreq_1"], [1245, 0, 1, "", "CallProxyBrZone_x_ImFreq_2"], [1247, 0, 1, "", "CallProxyBrZone_x_ImFreq_3"], [1249, 0, 1, "", "CallProxyBrZone_x_ImFreq_4"], [1251, 0, 1, "", "CallProxyBrZone_x_ImTime_0"], [1253, 0, 1, "", "CallProxyBrZone_x_ImTime_0_R"], [1255, 0, 1, "", "CallProxyBrZone_x_ImTime_1"], [1257, 0, 1, "", "CallProxyBrZone_x_ImTime_1_R"], [1259, 0, 1, "", "CallProxyBrZone_x_ImTime_2"], [1261, 0, 1, "", "CallProxyBrZone_x_ImTime_2_R"], [1263, 0, 1, "", "CallProxyBrZone_x_ImTime_3"], [1265, 0, 1, "", "CallProxyBrZone_x_ImTime_3_R"], [1267, 0, 1, "", "CallProxyBrZone_x_ImTime_4"], [1269, 0, 1, "", "CallProxyBrZone_x_ImTime_4_R"], [1271, 0, 1, "", "CallProxyBrZone_x_Legendre_0"], [1273, 0, 1, "", "CallProxyBrZone_x_Legendre_1"], [1275, 0, 1, "", "CallProxyBrZone_x_Legendre_2"], [1277, 0, 1, "", "CallProxyBrZone_x_Legendre_3"], [1279, 0, 1, "", "CallProxyBrZone_x_Legendre_4"], [1281, 0, 1, "", "CallProxyBrZone_x_ReFreq_0"], [1283, 0, 1, "", "CallProxyBrZone_x_ReFreq_1"], [1285, 0, 1, "", "CallProxyBrZone_x_ReFreq_2"], [1287, 0, 1, "", "CallProxyBrZone_x_ReFreq_3"], [1289, 0, 1, "", "CallProxyBrZone_x_ReFreq_4"], [1291, 0, 1, "", "CallProxyBrZone_x_ReTime_0"], [1293, 0, 1, "", "CallProxyBrZone_x_ReTime_1"], [1295, 0, 1, "", "CallProxyBrZone_x_ReTime_2"], [1297, 0, 1, "", "CallProxyBrZone_x_ReTime_3"], [1299, 0, 1, "", "CallProxyBrZone_x_ReTime_4"], [1301, 0, 1, "", "CallProxyCycLat_0"], [1303, 0, 1, "", "CallProxyCycLat_1"], [1305, 0, 1, "", "CallProxyCycLat_2"], [1307, 0, 1, "", "CallProxyCycLat_3"], [1309, 0, 1, "", "CallProxyCycLat_4"], [1311, 0, 1, "", "CallProxyCycLat_x_DLR_0"], [1313, 0, 1, "", "CallProxyCycLat_x_DLR_1"], [1315, 0, 1, "", "CallProxyCycLat_x_DLR_2"], [1317, 0, 1, "", "CallProxyCycLat_x_DLR_3"], [1319, 0, 1, "", "CallProxyCycLat_x_DLR_4"], [1321, 0, 1, "", "CallProxyCycLat_x_ImFreq_0"], [1323, 0, 1, "", "CallProxyCycLat_x_ImFreq_1"], [1325, 0, 1, "", "CallProxyCycLat_x_ImFreq_2"], [1327, 0, 1, "", "CallProxyCycLat_x_ImFreq_3"], [1329, 0, 1, "", "CallProxyCycLat_x_ImFreq_4"], [1331, 0, 1, "", "CallProxyCycLat_x_ImTime_0"], [1333, 0, 1, "", "CallProxyCycLat_x_ImTime_0_R"], [1335, 0, 1, "", "CallProxyCycLat_x_ImTime_1"], [1337, 0, 1, "", "CallProxyCycLat_x_ImTime_1_R"], [1339, 0, 1, "", "CallProxyCycLat_x_ImTime_2"], [1341, 0, 1, "", "CallProxyCycLat_x_ImTime_2_R"], [1343, 0, 1, "", "CallProxyCycLat_x_ImTime_3"], [1345, 0, 1, "", "CallProxyCycLat_x_ImTime_3_R"], [1347, 0, 1, "", "CallProxyCycLat_x_ImTime_4"], [1349, 0, 1, "", "CallProxyCycLat_x_ImTime_4_R"], [1351, 0, 1, "", "CallProxyCycLat_x_Legendre_0"], [1353, 0, 1, "", "CallProxyCycLat_x_Legendre_1"], [1355, 0, 1, "", "CallProxyCycLat_x_Legendre_2"], [1357, 0, 1, "", "CallProxyCycLat_x_Legendre_3"], [1359, 0, 1, "", "CallProxyCycLat_x_Legendre_4"], [1361, 0, 1, "", "CallProxyCycLat_x_ReFreq_0"], [1363, 0, 1, "", "CallProxyCycLat_x_ReFreq_1"], [1365, 0, 1, "", "CallProxyCycLat_x_ReFreq_2"], [1367, 0, 1, "", "CallProxyCycLat_x_ReFreq_3"], [1369, 0, 1, "", "CallProxyCycLat_x_ReFreq_4"], [1371, 0, 1, "", "CallProxyCycLat_x_ReTime_0"], [1373, 0, 1, "", "CallProxyCycLat_x_ReTime_1"], [1375, 0, 1, "", "CallProxyCycLat_x_ReTime_2"], [1377, 0, 1, "", "CallProxyCycLat_x_ReTime_3"], [1379, 0, 1, "", "CallProxyCycLat_x_ReTime_4"], [1381, 0, 1, "", "CallProxyDLR_0"], [1383, 0, 1, "", "CallProxyDLR_1"], [1385, 0, 1, "", "CallProxyDLR_2"], [1387, 0, 1, "", "CallProxyDLR_3"], [1389, 0, 1, "", "CallProxyDLR_4"], [1391, 0, 1, "", "CallProxyDLR_x_BrZone_0"], [1393, 0, 1, "", "CallProxyDLR_x_BrZone_1"], [1395, 0, 1, "", "CallProxyDLR_x_BrZone_2"], [1397, 0, 1, "", "CallProxyDLR_x_BrZone_3"], [1399, 0, 1, "", "CallProxyDLR_x_BrZone_4"], [1401, 0, 1, "", "CallProxyDLR_x_CycLat_0"], [1403, 0, 1, "", "CallProxyDLR_x_CycLat_1"], [1405, 0, 1, "", "CallProxyDLR_x_CycLat_2"], [1407, 0, 1, "", "CallProxyDLR_x_CycLat_3"], [1409, 0, 1, "", "CallProxyDLR_x_CycLat_4"], [1411, 0, 1, "", "CallProxyImFreq_0"], [1413, 0, 1, "", "CallProxyImFreq_1"], [1415, 0, 1, "", "CallProxyImFreq_2"], [1417, 0, 1, "", "CallProxyImFreq_3"], [1419, 0, 1, "", "CallProxyImFreq_4"], [1421, 0, 1, "", "CallProxyImFreq_x_BrZone_0"], [1423, 0, 1, "", "CallProxyImFreq_x_BrZone_1"], [1425, 0, 1, "", "CallProxyImFreq_x_BrZone_2"], [1427, 0, 1, "", "CallProxyImFreq_x_BrZone_3"], [1429, 0, 1, "", "CallProxyImFreq_x_BrZone_4"], [1431, 0, 1, "", "CallProxyImFreq_x_CycLat_0"], [1433, 0, 1, "", "CallProxyImFreq_x_CycLat_1"], [1435, 0, 1, "", "CallProxyImFreq_x_CycLat_2"], [1437, 0, 1, "", "CallProxyImFreq_x_CycLat_3"], [1439, 0, 1, "", "CallProxyImFreq_x_CycLat_4"], [1441, 0, 1, "", "CallProxyImTime_0"], [1443, 0, 1, "", "CallProxyImTime_0_R"], [1445, 0, 1, "", "CallProxyImTime_1"], [1447, 0, 1, "", "CallProxyImTime_1_R"], [1449, 0, 1, "", "CallProxyImTime_2"], [1451, 0, 1, "", "CallProxyImTime_2_R"], [1453, 0, 1, "", "CallProxyImTime_3"], [1455, 0, 1, "", "CallProxyImTime_3_R"], [1457, 0, 1, "", "CallProxyImTime_4"], [1459, 0, 1, "", "CallProxyImTime_4_R"], [1461, 0, 1, "", "CallProxyImTime_x_BrZone_0"], [1463, 0, 1, "", "CallProxyImTime_x_BrZone_0_R"], [1465, 0, 1, "", "CallProxyImTime_x_BrZone_1"], [1467, 0, 1, "", "CallProxyImTime_x_BrZone_1_R"], [1469, 0, 1, "", "CallProxyImTime_x_BrZone_2"], [1471, 0, 1, "", "CallProxyImTime_x_BrZone_2_R"], [1473, 0, 1, "", "CallProxyImTime_x_BrZone_3"], [1475, 0, 1, "", "CallProxyImTime_x_BrZone_3_R"], [1477, 0, 1, "", "CallProxyImTime_x_BrZone_4"], [1479, 0, 1, "", "CallProxyImTime_x_BrZone_4_R"], [1481, 0, 1, "", "CallProxyImTime_x_CycLat_0"], [1483, 0, 1, "", "CallProxyImTime_x_CycLat_0_R"], [1485, 0, 1, "", "CallProxyImTime_x_CycLat_1"], [1487, 0, 1, "", "CallProxyImTime_x_CycLat_1_R"], [1489, 0, 1, "", "CallProxyImTime_x_CycLat_2"], [1491, 0, 1, "", "CallProxyImTime_x_CycLat_2_R"], [1493, 0, 1, "", "CallProxyImTime_x_CycLat_3"], [1495, 0, 1, "", "CallProxyImTime_x_CycLat_3_R"], [1497, 0, 1, "", "CallProxyImTime_x_CycLat_4"], [1499, 0, 1, "", "CallProxyImTime_x_CycLat_4_R"], [1501, 0, 1, "", "CallProxyLegendre_0"], [1503, 0, 1, "", "CallProxyLegendre_1"], [1505, 0, 1, "", "CallProxyLegendre_2"], [1507, 0, 1, "", "CallProxyLegendre_3"], [1509, 0, 1, "", "CallProxyLegendre_4"], [1511, 0, 1, "", "CallProxyLegendre_x_BrZone_0"], [1513, 0, 1, "", "CallProxyLegendre_x_BrZone_1"], [1515, 0, 1, "", "CallProxyLegendre_x_BrZone_2"], [1517, 0, 1, "", "CallProxyLegendre_x_BrZone_3"], [1519, 0, 1, "", "CallProxyLegendre_x_BrZone_4"], [1521, 0, 1, "", "CallProxyLegendre_x_CycLat_0"], [1523, 0, 1, "", "CallProxyLegendre_x_CycLat_1"], [1525, 0, 1, "", "CallProxyLegendre_x_CycLat_2"], [1527, 0, 1, "", "CallProxyLegendre_x_CycLat_3"], [1529, 0, 1, "", "CallProxyLegendre_x_CycLat_4"], [1531, 0, 1, "", "CallProxyReFreq_0"], [1533, 0, 1, "", "CallProxyReFreq_1"], [1535, 0, 1, "", "CallProxyReFreq_2"], [1537, 0, 1, "", "CallProxyReFreq_3"], [1539, 0, 1, "", "CallProxyReFreq_4"], [1541, 0, 1, "", "CallProxyReFreq_x_BrZone_0"], [1543, 0, 1, "", "CallProxyReFreq_x_BrZone_1"], [1545, 0, 1, "", "CallProxyReFreq_x_BrZone_2"], [1547, 0, 1, "", "CallProxyReFreq_x_BrZone_3"], [1549, 0, 1, "", "CallProxyReFreq_x_BrZone_4"], [1551, 0, 1, "", "CallProxyReFreq_x_CycLat_0"], [1553, 0, 1, "", "CallProxyReFreq_x_CycLat_1"], [1555, 0, 1, "", "CallProxyReFreq_x_CycLat_2"], [1557, 0, 1, "", "CallProxyReFreq_x_CycLat_3"], [1559, 0, 1, "", "CallProxyReFreq_x_CycLat_4"], [1561, 0, 1, "", "CallProxyReTime_0"], [1563, 0, 1, "", "CallProxyReTime_1"], [1565, 0, 1, "", "CallProxyReTime_2"], [1567, 0, 1, "", "CallProxyReTime_3"], [1569, 0, 1, "", "CallProxyReTime_4"], [1571, 0, 1, "", "CallProxyReTime_x_BrZone_0"], [1573, 0, 1, "", "CallProxyReTime_x_BrZone_1"], [1575, 0, 1, "", "CallProxyReTime_x_BrZone_2"], [1577, 0, 1, "", "CallProxyReTime_x_BrZone_3"], [1579, 0, 1, "", "CallProxyReTime_x_BrZone_4"], [1581, 0, 1, "", "CallProxyReTime_x_CycLat_0"], [1583, 0, 1, "", "CallProxyReTime_x_CycLat_1"], [1585, 0, 1, "", "CallProxyReTime_x_CycLat_2"], [1587, 0, 1, "", "CallProxyReTime_x_CycLat_3"], [1589, 0, 1, "", "CallProxyReTime_x_CycLat_4"], [1591, 3, 1, "", "set_from_gf_data_mul_LR"]], "triqs.gf.wrapped_aux.CallProxyBrZone_0": [[1222, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_1": [[1224, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_2": [[1226, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_3": [[1228, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_4": [[1230, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0": [[1232, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1": [[1234, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2": [[1236, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3": [[1238, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4": [[1240, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0": [[1242, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1": [[1244, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2": [[1246, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3": [[1248, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4": [[1250, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0": [[1252, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R": [[1254, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1": [[1256, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R": [[1258, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2": [[1260, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R": [[1262, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3": [[1264, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R": [[1266, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4": [[1268, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R": [[1270, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0": [[1272, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1": [[1274, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2": [[1276, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3": [[1278, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4": [[1280, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0": [[1282, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1": [[1284, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2": [[1286, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3": [[1288, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4": [[1290, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0": [[1292, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1": [[1294, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2": [[1296, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3": [[1298, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4": [[1300, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_0": [[1302, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_1": [[1304, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_2": [[1306, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_3": [[1308, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_4": [[1310, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0": [[1312, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1": [[1314, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2": [[1316, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3": [[1318, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4": [[1320, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0": [[1322, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1": [[1324, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2": [[1326, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3": [[1328, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4": [[1330, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0": [[1332, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R": [[1334, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1": [[1336, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R": [[1338, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2": [[1340, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R": [[1342, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3": [[1344, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R": [[1346, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4": [[1348, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R": [[1350, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0": [[1352, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1": [[1354, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2": [[1356, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3": [[1358, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4": [[1360, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0": [[1362, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1": [[1364, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2": [[1366, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3": [[1368, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4": [[1370, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0": [[1372, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1": [[1374, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2": [[1376, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3": [[1378, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4": [[1380, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_0": [[1382, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_1": [[1384, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_2": [[1386, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_3": [[1388, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_4": [[1390, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0": [[1392, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1": [[1394, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2": [[1396, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3": [[1398, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4": [[1400, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0": [[1402, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1": [[1404, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2": [[1406, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3": [[1408, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4": [[1410, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_0": [[1412, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_1": [[1414, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_2": [[1416, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_3": [[1418, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_4": [[1420, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0": [[1422, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1": [[1424, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2": [[1426, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3": [[1428, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4": [[1430, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0": [[1432, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1": [[1434, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2": [[1436, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3": [[1438, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4": [[1440, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_0": [[1442, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_0_R": [[1444, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_1": [[1446, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_1_R": [[1448, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_2": [[1450, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_2_R": [[1452, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_3": [[1454, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_3_R": [[1456, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_4": [[1458, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_4_R": [[1460, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0": [[1462, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R": [[1464, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1": [[1466, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R": [[1468, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2": [[1470, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R": [[1472, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3": [[1474, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R": [[1476, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4": [[1478, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R": [[1480, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0": [[1482, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R": [[1484, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1": [[1486, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R": [[1488, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2": [[1490, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R": [[1492, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3": [[1494, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R": [[1496, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4": [[1498, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R": [[1500, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_0": [[1502, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_1": [[1504, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_2": [[1506, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_3": [[1508, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_4": [[1510, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0": [[1512, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1": [[1514, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2": [[1516, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3": [[1518, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4": [[1520, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0": [[1522, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1": [[1524, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2": [[1526, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3": [[1528, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4": [[1530, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_0": [[1532, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_1": [[1534, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_2": [[1536, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_3": [[1538, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_4": [[1540, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0": [[1542, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1": [[1544, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2": [[1546, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3": [[1548, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4": [[1550, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0": [[1552, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1": [[1554, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2": [[1556, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3": [[1558, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4": [[1560, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_0": [[1562, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_1": [[1564, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_2": [[1566, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_3": [[1568, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_4": [[1570, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0": [[1572, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1": [[1574, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2": [[1576, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3": [[1578, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4": [[1580, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0": [[1582, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1": [[1584, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2": [[1586, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3": [[1588, 1, 1, "", "__init__"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4": [[1590, 1, 1, "", "__init__"]], "triqs.lattice": [[1593, 2, 0, "-", "bz_patch"], [1597, 2, 0, "-", "lattice_tools"], [1621, 2, 0, "-", "point"], [1625, 2, 0, "-", "super_lattice"], [1645, 2, 0, "-", "tight_binding"], [1661, 2, 0, "-", "utils"]], "triqs.lattice.bz_patch": [[1594, 0, 1, "", "BZPatch"]], "triqs.lattice.bz_patch.BZPatch": [[1595, 1, 1, "", "__init__"], [1596, 1, 1, "", "dos"]], "triqs.lattice.lattice_tools": [[1598, 0, 1, "", "BravaisLattice"], [1606, 0, 1, "", "BrillouinZone"], [1611, 0, 1, "", "TightBinding"], [1619, 3, 1, "", "dos"], [1620, 3, 1, "", "dos_patch"]], "triqs.lattice.lattice_tools.BravaisLattice": [[1599, 1, 1, "", "__init__"], [1600, 1, 1, "", "lattice_to_real_coordinates"], [1601, 4, 1, "", "n_orbitals"], [1602, 4, 1, "", "ndim"], [1603, 4, 1, "", "orbital_names"], [1604, 4, 1, "", "orbital_positions"], [1605, 4, 1, "", "units"]], "triqs.lattice.lattice_tools.BrillouinZone": [[1607, 1, 1, "", "__init__"], [1608, 4, 1, "", "lattice"], [1609, 4, 1, "", "ndim"], [1610, 4, 1, "", "units"]], "triqs.lattice.lattice_tools.TightBinding": [[1612, 1, 1, "", "__init__"], [1613, 1, 1, "", "dispersion"], [1614, 4, 1, "", "displ_vec"], [1615, 1, 1, "", "fourier"], [1616, 4, 1, "", "lattice"], [1617, 1, 1, "", "lattice_to_real_coordinates"], [1618, 4, 1, "", "overlap_mat_vec"]], "triqs.lattice.point": [[1622, 0, 1, "", "LatticePoint"]], "triqs.lattice.point.LatticePoint": [[1623, 1, 1, "", "__init__"], [1622, 4, 1, "", "index"], [1622, 4, 1, "", "lattice"], [1624, 5, 1, "", "value"]], "triqs.lattice.super_lattice": [[1626, 0, 1, "", "TBSuperLattice"]], "triqs.lattice.super_lattice.TBSuperLattice": [[1627, 1, 1, "", "__init__"], [1628, 1, 1, "", "change_coordinates_L_to_SL"], [1629, 1, 1, "", "change_coordinates_SL_to_L"], [1630, 1, 1, "", "cluster_sites"], [1631, 1, 1, "", "dispersion"], [1632, 1, 1, "", "fold"], [1633, 1, 1, "", "fourier"], [1634, 1, 1, "", "get_kmesh"], [1635, 1, 1, "", "get_rmesh"], [1636, 5, 1, "", "hoppings"], [1637, 1, 1, "", "lattice_to_real_coordinates"], [1638, 5, 1, "", "n_orbitals"], [1639, 5, 1, "", "ndim"], [1640, 5, 1, "", "orbital_names"], [1641, 5, 1, "", "orbital_positions"], [1642, 1, 1, "", "pack_index_site_orbital"], [1643, 5, 1, "", "units"], [1644, 1, 1, "", "unpack_index_site_orbital"]], "triqs.lattice.tight_binding": [[1646, 0, 1, "", "TBLattice"], [1659, 3, 1, "", "dos"], [1660, 3, 1, "", "dos_patch"]], "triqs.lattice.tight_binding.TBLattice": [[1647, 1, 1, "", "__init__"], [1646, 4, 1, "", "bl"], [1646, 4, 1, "", "bz"], [1648, 1, 1, "", "dispersion"], [1649, 1, 1, "", "fourier"], [1650, 1, 1, "", "get_kmesh"], [1651, 1, 1, "", "get_rmesh"], [1652, 5, 1, "", "hoppings"], [1653, 1, 1, "", "lattice_to_real_coordinates"], [1654, 5, 1, "", "n_orbitals"], [1655, 5, 1, "", "ndim"], [1656, 5, 1, "", "orbital_names"], [1657, 5, 1, "", "orbital_positions"], [1646, 4, 1, "", "tb"], [1658, 5, 1, "", "units"]], "triqs.lattice.utils": [[1662, 3, 1, "", "TB_from_pythTB"], [1663, 3, 1, "", "TB_from_wannier90"], [1664, 3, 1, "", "TB_to_sympy"], [1665, 3, 1, "", "extend_wannier90_to_spin"], [1666, 3, 1, "", "k_space_path"], [1667, 3, 1, "", "parse_hopping_from_wannier90_hr_dat"], [1668, 3, 1, "", "parse_lattice_vectors_from_wannier90_wout"]], "triqs.operators": [[1670, 2, 0, "-", "operators"], [1681, 2, 0, "-", "util"]], "triqs.operators.operators": [[1671, 0, 1, "", "Operator"], [1676, 3, 1, "", "c"], [1677, 3, 1, "", "c_dag"], [1678, 3, 1, "", "dagger"], [1679, 3, 1, "", "is_op_hermitian"], [1680, 3, 1, "", "n"]], "triqs.operators.operators.Operator": [[1672, 1, 1, "", "__init__"], [1673, 4, 1, "", "imag"], [1674, 1, 1, "", "is_zero"], [1675, 4, 1, "", "real"]], "triqs.operators.util": [[1682, 2, 0, "-", "U_matrix"], [1697, 2, 0, "-", "extractors"], [1706, 2, 0, "-", "hamiltonians"], [1713, 2, 0, "-", "observables"], [1721, 2, 0, "-", "op_struct"]], "triqs.operators.util.U_matrix": [[1683, 3, 1, "", "U_J_to_radial_integrals"], [1684, 3, 1, "", "U_matrix_kanamori"], [1685, 3, 1, "", "U_matrix_slater"], [1686, 3, 1, "", "angular_matrix_element"], [1687, 3, 1, "", "clebsch_gordan"], [1688, 3, 1, "", "cubic_names"], [1689, 3, 1, "", "eg_submatrix"], [1690, 3, 1, "", "radial_integrals_to_U_J"], [1691, 3, 1, "", "reduce_4index_to_2index"], [1692, 3, 1, "", "spherical_to_cubic"], [1693, 3, 1, "", "subarray"], [1694, 3, 1, "", "t2g_submatrix"], [1695, 3, 1, "", "three_j_symbol"], [1696, 3, 1, "", "transform_U_matrix"]], "triqs.operators.util.extractors": [[1698, 3, 1, "", "block_matrix_from_op"], [1699, 3, 1, "", "dict_to_matrix"], [1700, 3, 1, "", "extract_U_dict2"], [1701, 3, 1, "", "extract_U_dict4"], [1702, 3, 1, "", "extract_h_dict"], [1703, 3, 1, "", "op_from_block_matrix"], [1704, 3, 1, "", "quadratic_terms"], [1705, 3, 1, "", "quartic_terms"]], "triqs.operators.util.hamiltonians": [[1707, 3, 1, "", "backward_compat"], [1708, 3, 1, "", "diagonal_part"], [1709, 3, 1, "", "h_int_density"], [1710, 3, 1, "", "h_int_kanamori"], [1711, 3, 1, "", "h_int_slater"], [1712, 3, 1, "", "make_operator_real"]], "triqs.operators.util.observables": [[1714, 3, 1, "", "L2_op"], [1715, 3, 1, "", "LS_op"], [1716, 3, 1, "", "L_op"], [1717, 3, 1, "", "N_op"], [1718, 3, 1, "", "S2_op"], [1719, 3, 1, "", "S_op"], [1720, 3, 1, "", "check_backward_compat"]], "triqs.operators.util.op_struct": [[1722, 3, 1, "", "get_mkind"], [1723, 3, 1, "", "set_operator_structure"]], "triqs.plot": [[580, 3, 1, "", "_plot_"], [1725, 2, 0, "-", "mpl_interface"], [1730, 2, 0, "-", "protocol"]], "triqs.plot.mpl_interface": [[1726, 3, 1, "", "oplot"], [1727, 3, 1, "", "oploti"], [1728, 3, 1, "", "oplotr"], [1729, 3, 1, "", "use_amsmath"]], "triqs.plot.protocol": [[1731, 3, 1, "", "clip_array"], [1732, 3, 1, "", "plot_protocol_apply"]], "triqs.random_generator": [[1734, 0, 1, "", "RandomGenerator"], [1736, 2, 0, "-", "random_generator"], [582, 3, 1, "", "random_generator_names_list"]], "triqs.random_generator.RandomGenerator": [[1735, 1, 1, "", "__init__"]], "triqs.random_generator.random_generator": [[1737, 3, 1, "", "random_generator_names_list"]], "triqs.stat": [[1739, 2, 0, "-", "histogram"], [1741, 2, 0, "-", "histograms"]], "triqs.stat.histogram": [[1740, 3, 1, "", "plot"]], "triqs.stat.histograms": [[1742, 0, 1, "", "Histogram"], [1750, 3, 1, "", "cdf"], [1751, 3, 1, "", "pdf"]], "triqs.stat.histograms.Histogram": [[1743, 1, 1, "", "__init__"], [1744, 1, 1, "", "clear"], [1745, 4, 1, "", "data"], [1746, 4, 1, "", "limits"], [1747, 1, 1, "", "mesh_point"], [1748, 4, 1, "", "n_data_pts"], [1749, 4, 1, "", "n_lost_pts"]], "triqs.sumk": [[1753, 2, 0, "-", "sumk_discrete"], [1759, 2, 0, "-", "sumk_discrete_from_lattice"]], "triqs.sumk.sumk_discrete": [[1754, 0, 1, "", "SumkDiscrete"]], "triqs.sumk.sumk_discrete.SumkDiscrete": [[1755, 5, 1, "", "GFBlocIndices"], [1756, 1, 1, "", "__init__"], [1757, 1, 1, "", "n_kpts"], [1758, 1, 1, "", "resize_arrays"]], "triqs.sumk.sumk_discrete_from_lattice": [[1760, 0, 1, "", "SumkDiscreteFromLattice"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice": [[1761, 5, 1, "", "GFBlocIndices"], [1762, 1, 1, "", "Recompute_Grid"], [1763, 1, 1, "", "__init__"], [1764, 1, 1, "", "n_kpts"], [1765, 1, 1, "", "resize_arrays"]], "triqs.utility": [[1767, 2, 0, "-", "bound_and_bisect"], [1770, 2, 0, "-", "capture_stdout"], [1771, 2, 0, "-", "comparison_tests"], [1777, 2, 0, "-", "dichotomy"], [1779, 2, 0, "-", "dist_on_nodes"], [1799, 2, 0, "-", "h5diff"], [1802, 2, 0, "-", "mpi"], [1804, 2, 0, "-", "mpi_mpi4py"], [1818, 2, 0, "-", "mpi_nompi"], [1830, 2, 0, "-", "redirect"]], "triqs.utility.bound_and_bisect": [[1768, 3, 1, "", "bound_and_bisect"], [1769, 3, 1, "", "determine_bounds"]], "triqs.utility.comparison_tests": [[1772, 3, 1, "", "assert_array_close_to_scalar"], [1773, 3, 1, "", "assert_arrays_are_close"], [1774, 3, 1, "", "assert_block2_gfs_are_close"], [1775, 3, 1, "", "assert_block_gfs_are_close"], [1776, 3, 1, "", "assert_gfs_are_close"]], "triqs.utility.dichotomy": [[1778, 3, 1, "", "dichotomy"]], "triqs.utility.dist_on_nodes": [[1780, 0, 1, "", "DistributionOnNodes"], [1784, 0, 1, "", "DistributionOnNodesOneStack"], [1791, 0, 1, "", "DistributionOnNodesTest"]], "triqs.utility.dist_on_nodes.DistributionOnNodes": [[1781, 4, 1, "", "SleepTime"], [1782, 1, 1, "", "__init__"], [1783, 1, 1, "", "run"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack": [[1785, 4, 1, "", "SleepTime"], [1786, 1, 1, "", "__init__"], [1787, 1, 1, "", "finished"], [1788, 1, 1, "", "result"], [1789, 1, 1, "", "run"], [1790, 1, 1, "", "treate"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest": [[1792, 4, 1, "", "SleepTime"], [1793, 1, 1, "", "__init__"], [1794, 1, 1, "", "finished"], [1795, 1, 1, "", "result"], [1796, 1, 1, "", "run"], [1797, 1, 1, "", "the_function"], [1798, 1, 1, "", "treate"]], "triqs.utility.h5diff": [[1800, 3, 1, "", "compare"], [1801, 3, 1, "", "h5diff"]], "triqs.utility.mpi": [[1803, 3, 1, "", "check_for_mpi"]], "triqs.utility.mpi_mpi4py": [[1805, 3, 1, "", "all_reduce"], [1806, 3, 1, "", "barrier"], [1807, 3, 1, "", "bcast"], [1808, 3, 1, "", "is_master_node"], [1809, 3, 1, "", "master_gets_host_names"], [1810, 3, 1, "", "myprint_err"], [1811, 3, 1, "", "myprint_out"], [1812, 3, 1, "", "recv"], [1813, 3, 1, "", "report"], [1814, 3, 1, "", "send"], [1815, 3, 1, "", "slice_array"], [1816, 3, 1, "", "slice_inf"], [1817, 3, 1, "", "slice_sup"]], "triqs.utility.mpi_nompi": [[1819, 3, 1, "", "all_reduce"], [1820, 3, 1, "", "barrier"], [1821, 3, 1, "", "bcast"], [1822, 3, 1, "", "is_master_node"], [1823, 3, 1, "", "master_gets_host_names"], [1824, 3, 1, "", "myprint_err"], [1825, 3, 1, "", "myprint_out"], [1826, 3, 1, "", "recv"], [1827, 3, 1, "", "report"], [1828, 3, 1, "", "send"], [1829, 3, 1, "", "slice_array"]], "triqs.utility.redirect": [[1831, 0, 1, "", "T"], [1846, 3, 1, "", "start_redirect"], [1847, 3, 1, "", "stop_redirect"]], "triqs.utility.redirect.T": [[1832, 1, 1, "", "__init__"], [1833, 5, 1, "", "daemon"], [1834, 1, 1, "", "getName"], [1835, 5, 1, "", "ident"], [1836, 1, 1, "", "isDaemon"], [1837, 1, 1, "", "is_alive"], [1838, 1, 1, "", "join"], [1839, 5, 1, "", "name"], [1840, 5, 1, "", "native_id"], [1841, 1, 1, "", "run"], [1842, 1, 1, "", "setDaemon"], [1843, 1, 1, "", "setName"], [1844, 1, 1, "", "start"], [1845, 1, 1, "", "stop"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:module", "3": "py:function", "4": "py:attribute", "5": "py:property"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "module", "Python module"], "3": ["py", "function", "Python function"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "property", "Python property"]}, "titleterms": {"changelog": 0, "version": [0, 581, 1850, 1910], "3": [0, 524, 537, 1849, 1858, 1873, 1877, 1895, 1896], "1": [0, 497, 524, 537, 1054, 1067, 1154, 1166, 1873, 1877, 1895, 1896], "gener": [0, 494, 569, 582, 1889], "doc": 0, "0": [0, 1858, 1873, 1877, 1896, 1900, 1905], "gf": [0, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 521, 525, 527, 528, 529, 532, 533, 535, 553, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1848, 1862], "atom_diag": [0, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 500, 501, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642], "cmake": [0, 1853], "jenkin": 0, "2": [0, 524, 537, 1054, 1067, 1154, 1166, 1873, 1877, 1895, 1896], "port": [0, 1858], "script": [0, 581, 1848, 1881], "api": [0, 9, 495, 541, 552], "chang": [0, 514], "mesh": [0, 266, 278, 290, 517, 523, 526, 527, 528, 529, 532, 533, 535, 537, 539, 540, 683, 722, 761, 800, 839, 888, 961, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1883, 1887], "dlr": [0, 1883, 1887], "lattic": [0, 557, 558, 1072, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1869, 1872, 1886, 1888, 1894, 1899, 1904], "det_manip": [0, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 513, 1861], "mc_gener": [0, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431], "mpi": [0, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 499, 570, 1802, 1803], "fix": 0, "deprec": 0, "us": [0, 4, 500, 520, 537, 555, 569, 1848, 1850, 1851, 1859, 1865, 1873, 1877, 1900, 1905], "string": 0, "indic": [0, 678, 717, 756, 795, 834, 866, 884, 956], "green": [0, 515, 523, 527, 541, 542, 543, 544, 545, 546, 547, 548, 551, 552, 1862, 1863, 1873, 1877, 1883, 1886, 1887, 1899, 1904], "function": [0, 4, 11, 14, 20, 28, 35, 42, 49, 64, 72, 77, 84, 90, 96, 101, 108, 115, 123, 128, 133, 152, 154, 192, 240, 242, 259, 271, 283, 324, 325, 340, 351, 357, 366, 378, 390, 405, 406, 432, 442, 448, 449, 463, 499, 501, 503, 508, 510, 513, 515, 520, 521, 523, 527, 532, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 551, 552, 559, 572, 577, 906, 907, 1862, 1863, 1873, 1877, 1881, 1883, 1886, 1887, 1899, 1903, 1904, 1908], "gf_struct": 0, "object": [0, 497, 498, 580, 1873, 1877], "c": [0, 9, 491, 492, 500, 511, 518, 568, 570, 574, 1676, 1856, 1859, 1865, 1866, 1867], "move": [0, 522, 564, 567, 568, 570], "multi": 0, "arrai": [0, 1860], "triq": [0, 3, 4, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 496, 499, 500, 503, 513, 555, 558, 566, 571, 580, 581, 582, 583, 584, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1854, 1856, 1858, 1859, 1864, 1865, 1867, 1873, 1877, 1883, 1887, 1889, 1910], "nda": 0, "librari": [0, 520, 1849, 1856, 1857, 1881, 1910], "stat": [0, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 583, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751], "rework": 0, "bath": 0, "discret": 0, "sanit": 0, "check": [0, 1873, 1877], "new": [0, 1881], "websit": 0, "theme": 0, "tightbind": [0, 563, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618], "tblattic": [0, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658], "improv": 0, "requir": [0, 1856, 1857], "20": 0, "capabl": 0, "compil": [0, 503, 1850, 1851, 1854, 1855, 1856], "cpp2py": [0, 4, 491], "python": [0, 4, 9, 491, 492, 495, 500, 549, 552, 572, 574, 586, 1855, 1858, 1859, 1866, 1867, 1870, 1881, 1882], "10": 0, "issu": [0, 6, 1857], "819": 0, "atom": 0, "diag": 0, "renam": 0, "depend": [0, 1854], "manag": 0, "h5py": 0, "remov": [0, 219, 514, 1861], "detmanip": 0, "oper": [0, 18, 25, 29, 30, 31, 41, 46, 57, 58, 59, 69, 76, 82, 88, 89, 100, 107, 137, 192, 250, 251, 267, 268, 279, 291, 292, 337, 338, 348, 349, 354, 372, 373, 374, 375, 384, 385, 386, 387, 401, 402, 445, 461, 476, 477, 478, 508, 510, 522, 524, 532, 537, 543, 551, 571, 572, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1860, 1883, 1885, 1887], "packag": [0, 1850, 1855], "make": [0, 8, 1882], "rang": [0, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 1860], "itertool": [0, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "standalon": 0, "namespac": 0, "non": [0, 49, 192, 242, 259, 271, 283, 325, 340, 357, 366, 378, 390, 406, 463, 521, 539, 1861, 1899, 1900, 1904, 1905], "own": [0, 570, 1865, 1867], "view": [0, 521, 523, 524, 551, 1860], "dynam": [0, 1869, 1888, 1894], "analyz": [0, 1892, 1897], "asan": 0, "ubsan": 0, "No": 0, "longer": 0, "instal": [0, 1850, 1851, 1853, 1854, 1857, 1864, 1910], "googletest": 0, "app4triq": [0, 4, 1858], "fourier": [0, 515, 519, 520, 554, 918, 919, 920, 1615, 1633, 1649, 1883, 1887, 1900, 1905], "h5": [0, 496], "pytriq": 0, "clef": [0, 503, 506, 507, 508, 509, 510, 516, 524, 532, 537], "blockgf": [0, 551, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 1873, 1877], "lapack": 0, "tail": [0, 515, 520], "mc_tool": [0, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447], "hdf5": [0, 496, 498, 523, 527, 528, 529, 532, 533, 535, 544, 545, 546, 547, 548, 551, 572, 1860, 1863, 1884], "py": [0, 4], "travi": 0, "test": [0, 1867], "5": [0, 1873, 1877, 1895], "4": [0, 537, 1873, 1877, 1895], "document": [0, 6, 7, 9, 498, 499, 511, 513, 518, 549, 558, 566, 582, 1856, 1867], "mani": [0, 555, 571], "bodi": [0, 555, 571], "": [0, 515, 541, 542, 543, 544, 545, 546, 547, 548, 551, 552, 1862, 1863, 1873, 1877, 1883, 1886, 1887, 1899, 1904], "mont": [0, 565, 568, 569, 570], "carlo": [0, 565, 568, 569, 570], "tool": [0, 4, 491, 500, 553, 558, 559, 565, 584, 587, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1848, 1856, 1873, 1877], "determin": [0, 198, 512, 1861, 1910], "manipul": [0, 512, 1861, 1885], "2py": 0, "miscellan": 0, "class": [0, 11, 108, 152, 191, 240, 324, 405, 448, 489, 490, 492, 493, 497, 498, 513, 563, 569, 1861, 1881], "archiv": [0, 581, 1860, 1884], "about": [3, 1861, 1870], "author": 3, "contributor": 3, "citat": 3, "licens": 3, "disclaim": [3, 1854], "logo": 3, "file": [3, 495, 559, 1848, 1858, 1863], "applic": [4, 1849, 1858, 1864, 1910], "base": [4, 899, 900], "tabl": [4, 5], "content": [4, 5], "impur": [4, 1873, 1877, 1889], "solver": [4, 500, 1889, 1901, 1906], "hybrid": 4, "expans": 4, "hubbard": [4, 1876, 1880, 1890, 1891, 1892, 1895, 1896, 1897], "i": [4, 1848, 1862, 1876, 1880, 1900, 1905], "hartre": 4, "fock": 4, "exact": [4, 500, 1885], "diagon": [4, 500, 1885], "finit": [4, 1903, 1908], "quantum": [4, 1873, 1877], "system": [4, 1903, 1908], "extern": 4, "interfac": [4, 491], "pomerol": 4, "w2dynam": 4, "nrg": 4, "ljubljana": 4, "ab": 4, "initio": 4, "dft": [4, 1873, 1876, 1877, 1880], "toolbox": 4, "calcul": [4, 1873, 1876, 1877, 1880, 1881, 1888, 1894, 1900, 1903, 1905, 1908], "correl": [4, 583], "materi": 4, "solid_dmft": [4, 1873, 1877], "wrapper": 4, "perform": [4, 1873, 1877], "dmft": [4, 1871, 1873, 1876, 1877, 1880, 1888, 1892, 1894, 1897], "analyt": [4, 1873, 1877, 1883, 1887], "continu": [4, 1873, 1877, 1883, 1887], "maxent": 4, "nevanlinna": 4, "som": 4, "stochast": 4, "optim": 4, "method": [4, 510, 523, 527, 528, 529, 532, 533, 535, 572], "omegamax": 4, "other": [4, 510, 1848], "tprf": 4, "The": [4, 489, 490, 493, 496, 497, 513, 514, 520, 543, 551, 559, 563, 564, 567, 568, 570, 1873, 1877, 1881, 1888, 1889, 1894, 1901, 1906], "two": [4, 1861, 1862, 1891, 1896, 1902, 1903, 1907, 1908, 1909], "particl": [4, 1902, 1907, 1909], "respons": [4, 1909], "box": 4, "benchmark": 4, "skeleton": [4, 1858], "contribut": [6, 7], "featur": 6, "request": [6, 8], "code": [6, 511, 570, 581, 1867, 1903, 1908], "github": 6, "discuss": 6, "how": [7, 8, 498, 514, 1848, 1862, 1910], "who": 7, "should": 7, "write": [7, 570, 1848, 1867, 1884], "build": [7, 524, 1856, 1864], "edit": 7, "pull": 8, "set": [8, 1889], "up": [8, 1889], "your": [8, 570, 1853, 1858, 1865], "fork": 8, "repositori": [8, 1898], "manual": [9, 488, 498, 499, 513, 558, 566, 582], "chunk_rang": 12, "paramet": [12, 13, 14, 15, 18, 19, 20, 26, 28, 32, 33, 34, 35, 39, 42, 43, 46, 47, 48, 53, 57, 58, 62, 63, 64, 71, 72, 73, 76, 77, 83, 84, 85, 88, 89, 90, 95, 96, 97, 100, 101, 105, 112, 113, 114, 116, 117, 124, 125, 126, 128, 129, 131, 132, 134, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 162, 170, 171, 173, 179, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 197, 223, 235, 251, 254, 255, 256, 257, 259, 260, 268, 271, 272, 280, 283, 284, 292, 293, 297, 300, 301, 302, 314, 315, 316, 317, 319, 329, 332, 333, 334, 336, 338, 341, 342, 343, 344, 345, 346, 348, 349, 351, 352, 354, 355, 356, 357, 358, 359, 360, 362, 363, 365, 368, 369, 370, 372, 373, 374, 375, 376, 378, 379, 380, 381, 384, 385, 386, 387, 388, 391, 392, 394, 396, 397, 398, 399, 401, 402, 403, 407, 408, 410, 413, 427, 428, 429, 430, 431, 443, 450, 451, 456, 461, 462, 465, 467, 468, 471, 472, 473, 476, 477, 478, 480, 481, 482, 483, 484, 485, 486, 487, 511, 513, 521, 541, 544, 545, 546, 547, 548, 572, 664, 703, 742, 781, 820, 1054, 1067, 1154, 1166, 1886], "return": [12, 13, 16, 18, 19, 21, 24, 29, 30, 31, 32, 33, 34, 36, 40, 44, 46, 47, 48, 51, 52, 57, 58, 63, 65, 68, 70, 71, 74, 76, 78, 81, 83, 86, 89, 92, 93, 95, 98, 100, 102, 106, 113, 114, 120, 121, 122, 125, 126, 127, 130, 131, 132, 135, 139, 141, 142, 144, 149, 151, 153, 155, 156, 157, 158, 163, 170, 171, 172, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 254, 255, 256, 257, 300, 301, 302, 314, 315, 317, 326, 327, 328, 330, 331, 334, 338, 339, 342, 343, 346, 347, 348, 349, 350, 359, 361, 362, 363, 364, 367, 369, 371, 372, 373, 374, 375, 377, 380, 382, 383, 384, 385, 386, 387, 389, 393, 394, 395, 396, 399, 400, 401, 402, 404, 407, 414, 428, 430, 431, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 466, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 511, 1803], "distanc": 13, "templat": [13, 14, 18, 19, 20, 26, 28, 32, 33, 34, 35, 39, 42, 46, 47, 48, 62, 63, 64, 71, 72, 77, 83, 84, 89, 90, 95, 96, 100, 101, 105, 112, 113, 125, 126, 128, 129, 131, 132, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 154, 181, 182, 183, 184, 185, 186, 187, 197, 251, 254, 255, 256, 257, 259, 260, 268, 271, 272, 283, 284, 292, 297, 300, 301, 302, 314, 315, 316, 319, 351, 354, 355, 356, 357, 360, 365, 370, 378, 381, 410, 451, 461, 480, 481, 482, 483, 484, 485, 487, 511, 521, 572], "enum_it": [14, 15, 16, 17, 18], "public": [14, 20, 35, 42, 62, 64, 72, 77, 84, 90, 96, 101, 128, 242, 513], "member": [14, 20, 28, 35, 42, 49, 62, 64, 72, 77, 84, 90, 96, 101, 115, 123, 128, 133, 154, 192, 242, 259, 271, 283, 325, 340, 351, 357, 366, 378, 390, 406, 432, 442, 449, 463, 513, 521, 539, 540, 572], "constructor": [15, 39, 43, 53, 73, 85, 97, 105, 118, 124, 134, 159, 197, 245, 260, 272, 284, 329, 341, 352, 358, 368, 379, 392, 413, 438, 443, 451, 465, 523, 525], "derefer": [16, 44, 74, 86, 98], "increment": [17, 45, 75, 87, 99], "enumer": [19, 20, 21, 22, 23, 24, 25], "exampl": [19, 95, 254, 255, 260, 316, 450, 454, 457, 459, 461, 482, 483, 484, 485, 497, 499, 500, 504, 508, 513, 519, 523, 527, 528, 529, 532, 533, 535, 541, 544, 545, 546, 547, 548, 551, 555, 558, 563, 567, 579, 580, 582, 1882], "type": [20, 28, 35, 49, 64, 77, 90, 101, 128, 152, 154, 192, 240, 242, 259, 271, 283, 324, 325, 357, 366, 378, 499, 513, 515, 521, 523, 539, 540, 572], "begin": [21, 36, 50, 65, 78, 91, 102, 326], "cbegin": [22, 37, 51, 66, 79, 92, 103, 327], "cend": [23, 38, 52, 67, 80, 93, 104, 328], "end": [24, 40, 54, 68, 81, 94, 106, 331, 570], "foreach": [26, 360, 370, 381], "iterator_facad": [27, 28, 29, 30, 31], "iter": [28, 29, 30, 31, 523, 551, 572, 1888, 1894], "valu": [28, 29, 30, 31, 511, 543, 1035, 1066, 1078, 1090, 1103, 1116, 1133, 1144, 1163, 1177, 1624, 1862, 1883, 1887], "std": [28, 29, 30, 31, 147], "forward_iterator_tag": [28, 29, 30, 31], "refer": [28, 29, 30, 31, 498, 544, 545, 546, 547, 548, 550, 551, 558, 579], "differ": [28, 29, 30, 31], "make_product": 32, "make_sentinel": 33, "make_vector_from_rang": 34, "multipli": [35, 36, 37, 38, 39, 40, 41], "prod_it": [42, 43, 44, 45, 46], "product": 47, "product_rang": 48, "first": [55, 1873, 1877, 1888, 1894], "last": [56, 1861], "size": [60, 70, 121, 229, 339, 350, 377, 389, 404, 479], "step": [61, 1850, 1858], "sentinel_t": 62, "slice": [63, 64, 65, 66, 67, 68, 69, 70, 543, 1860, 1873, 1877], "stride": [71, 77, 78, 79, 80, 81, 82], "stride_it": [72, 73, 74, 75, 76], "transform": [83, 90, 91, 92, 93, 94, 497, 508, 515, 519, 554, 560, 1027, 1883, 1887, 1900, 1905], "transform_it": [84, 85, 86, 87, 88, 89], "zip": [95, 101, 102, 103, 104, 105, 106, 107], "zip_it": [96, 97, 98, 99, 100], "all_gath": 109, "all_reduc": [110, 1805, 1819], "all_reduce_in_plac": 111, "broadcast": [112, 1886], "chunk": 113, "chunk_length": 114, "commun": [115, 116, 117, 118, 119, 120, 121, 122, 1849], "abort": 116, "barrier": [117, 1806, 1820], "get": [119, 569, 1851, 1861, 1881], "rank": [120, 684, 723, 762, 801, 840, 962, 1049], "split": 122, "environ": [123, 124, 1850, 1852, 1855], "gather": [125, 570], "get_mpi_typ": 126, "is_initi": 127, "lazi": [128, 129, 130, 503, 505, 543, 1860], "invok": 129, "shape": 130, "map_c_funct": 131, "map_add": 132, "monitor": [133, 134, 135, 136, 137, 138, 139], "emergency_occur": 135, "finalize_commun": 136, "request_emergency_stop": 138, "root_check_nodes_and_bcast": 139, "mpi_broadcast": [140, 472], "mpi_gath": 141, "mpi_reduc": [142, 317, 473], "mpi_reduce_in_plac": 143, "mpi_scatt": 144, "mpi_typ": [145, 146, 147], "constt": 146, "tupl": [147, 584, 587], "t": [147, 523, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1862, 1903, 1908], "mpi_type_from_ti": 148, "reduc": 149, "reduce_in_plac": 150, "scatter": 151, "alias": [152, 240, 324], "act": [153, 633], "c_connect": [155, 593, 614], "c_matrix": [156, 594, 615], "cdag_connect": [157, 595, 616], "cdag_matrix": [158, 596, 617], "flatten_subspace_index": [160, 598, 619], "get_eigensystem": 161, "get_eigenvalu": [162, 602, 623], "get_energi": 163, "get_fock_st": [164, 342, 394], "get_fop": 165, "get_full_hilbert_spac": 166, "get_full_hilbert_space_dim": 167, "get_gs_energi": 168, "get_h_atom": 169, "get_matrix_element_of_monomi": 170, "get_op_mat": 171, "get_quantum_numb": 172, "get_subspace_dim": [173, 174, 603, 604, 624, 625], "get_unitary_matric": 175, "get_unitary_matrix": 176, "get_vacuum_st": 177, "get_vacuum_subspace_index": 178, "index_range_of_subspac": 179, "n_subspac": [180, 364, 607, 628], "atomic_density_matrix": [181, 634], "atomic_g_iw": [182, 635], "atomic_g_l": [183, 636], "atomic_g_lehmann": 184, "atomic_g_tau": [185, 637], "atomic_g_w": [186, 638], "partition_funct": [187, 639], "quantum_number_eigenvalu": [188, 640], "quantum_number_eigenvalues_check": [189, 641], "trace_rho_op": [190, 642], "change_col": 193, "change_row": 194, "clear": [195, 464, 1744], "complete_oper": 196, "get_funct": 199, "get_n_operations_before_check": 200, "get_precision_error": 201, "get_precision_warn": 202, "get_singular_threshold": 203, "get_x": 204, "get_x_internal_ord": 205, "get_i": 206, "get_y_internal_ord": 207, "h5_read": [208, 247, 263, 275, 287, 344, 397, 425, 467], "h5_write": [209, 248, 264, 276, 288, 345, 398, 426, 468], "insert": [210, 335], "insert2": 211, "insert2_at_end": 212, "insert_at_end": 213, "inverse_matrix": 214, "inverse_matrix_internal_ord": 215, "is_singular": 216, "matrix": [217, 543, 573, 1883, 1887], "reject_last_tri": 218, "remove2": 220, "remove2_at_end": 221, "remove_at_end": 222, "reserv": 223, "roll_matrix": 224, "set_n_operations_before_check": 225, "set_precision_error": 226, "set_precision_warn": 227, "set_singular_threshold": 228, "swap_col": 230, "swap_row": 231, "try_change_col": 232, "try_change_col_row": 233, "try_change_row": 234, "try_insert": 235, "try_insert_k": 236, "try_refil": 237, "try_remov": 238, "try_remove_k": 239, "deduct": 241, "guid": [241, 1858, 1859], "block_gf": [241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 523, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897], "block_nam": 243, "block_siz": 244, "data": [246, 261, 273, 285, 330, 466, 498, 523, 526, 527, 528, 529, 532, 533, 535, 543, 544, 545, 546, 547, 548, 579, 581, 583, 669, 708, 747, 786, 825, 947, 1745, 1848], "hdf5_format": [249, 265, 277, 289, 347, 400, 469], "densiti": [252, 559, 648, 652, 670, 709, 748, 787, 826, 882, 948, 996, 1883, 1887], "fit_gf_dlr": [253, 986], "fit_hermitian_tail": [254, 672, 711, 750, 789, 828, 950, 998], "fit_tail": [255, 674, 713, 752, 791, 830, 952, 1000], "flatten_2d": 256, "flatten_gf_2d": 257, "get_mesh": 258, "accessor": [259, 271, 283, 543], "data_shap": [262, 274, 286], "target_indic": [269, 281, 294, 694, 733, 772, 811, 850, 972], "target_shap": [270, 282, 295, 696, 735, 774, 813, 852, 974], "gf_const_view": [271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282], "rebind": [280, 293], "gf_view": [283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295], "h5_read_gf_struct": 296, "imag": [297, 677, 716, 755, 794, 833, 865, 883, 955, 1032, 1039, 1673], "impl_tag": 298, "invers": [299, 679, 718, 757, 796, 835, 885, 957, 1214], "is_gf_hermitian": [300, 681, 720, 759, 798, 837, 959, 1002], "is_gf_real": 301, "is_gf_real_in_tau": [302, 682, 721, 760, 799, 838, 960, 1003], "make_block2_gf": 303, "make_block_gf": 304, "make_block_gf_view": 305, "make_gf_dlr": [306, 987], "make_gf_dlr_imfreq": [307, 988], "make_gf_dlr_imtim": [308, 989], "make_gf_from_fouri": [309, 990], "make_gf_from_inverse_fouri": 310, "make_gf_from_real_gf": 311, "make_gf_imfreq": [312, 991], "make_gf_imtim": [313, 992], "make_hermitian": [314, 993], "make_real_in_tau": [315, 994], "make_zero_tail": [316, 1216], "positive_freq_view": 318, "real": [319, 515, 520, 533, 535, 547, 548, 685, 724, 763, 802, 841, 870, 890, 963, 1034, 1040, 1675, 1862], "reinterpret_scalar_valued_gf_as_matrix_valu": 320, "tau_l2_norm": [321, 697, 736, 775, 814, 853, 975, 1012], "unflatten_2d": 322, "unflatten_gf_2d": 323, "hilbert_spac": [324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 555], "fundamental_operator_set": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339], "h5_read_attribut": 332, "h5_write_attribut": 333, "has_indic": 334, "insert_from_indices_t": 336, "get_state_index": [343, 396], "has_stat": [346, 399], "imperative_oper": [351, 352, 353, 354, 355], "is_empti": 353, "updat": [355, 1858], "make_zero_st": 356, "space_partit": [357, 358, 359, 360, 361, 362, 363, 364], "find_map": 359, "get_matrix_el": 361, "lookup_basis_st": 362, "merge_subspac": 363, "state": [365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 555, 559, 1883, 1887], "hilbertspac": [366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389], "scalartyp": [366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389], "fals": [366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377], "amplitud": 367, "dot_product": [369, 380], "get_hilbert": [371, 382], "set_hilbert": [376, 388], "true": [378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389], "nterm": 383, "sub_hilbert_spac": [390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404], "add_fock_st": 391, "get_all_fock_st": 393, "get_index": 395, "set_index": 403, "accumul": [407, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461], "add_measur": 408, "add_measure_aux": 409, "add_mov": 410, "clear_measur": 411, "collect_result": 412, "get_acceptance_r": [414, 439], "get_accumulation_tim": 415, "get_accumulation_time_hhmmss": 416, "get_config_id": 417, "get_current_cycle_numb": 418, "get_dur": 419, "get_perc": 420, "get_rng": 421, "get_total_tim": 422, "get_warmup_tim": 423, "get_warmup_time_hhmmss": 424, "rm_measur": 427, "run": [428, 1783, 1789, 1796, 1841, 1873, 1876, 1877, 1880], "set_after_cycle_duti": 429, "warmup": 430, "warmup_and_accumul": 431, "move_set": [432, 433, 434, 435, 436, 437, 438, 439, 440, 441], "accept": 433, "add": [434, 511, 1861], "attempt": 435, "clear_statist": 436, "collect_statist": 437, "get_statist": 440, "reject": 441, "random_gener": [442, 443, 444, 445, 446, 1733, 1734, 1735, 1736, 1737], "name": [444, 568, 1839], "preview": 446, "random_generator_nam": 447, "logarithm": 449, "log": 449, "bin": 449, "linear": [449, 537, 1860], "lin": 449, "compress_linear_bin": 450, "data_input_count": 452, "lin_bin_capac": 453, "linear_bin": 454, "log_bin_error": 455, "log_bin_errors_all_reduc": 456, "n_lin_bin": 457, "n_lin_bins_max": 458, "n_log_bin": 459, "n_log_bins_max": 460, "cdf": [462, 1750], "histogram": [463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1882], "limit": [470, 1746], "mesh_point": [471, 537, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1747], "n_data_pt": [474, 1748], "n_lost_pt": [475, 1749], "jackknif": 480, "jackknife_mpi": 481, "mean": [482, 1869, 1888, 1894], "mean_and_err": 483, "mean_and_err_mpi": 484, "mean_mpi": 485, "pdf": [486, 1751], "tau_estimate_from_error": 487, "cfunction": 489, "class_": 490, "convert": 492, "v": [492, 1902, 1907], "wrap": 492, "from": [492, 537, 559, 569, 581, 1850, 1855, 1884, 1903, 1908], "module_": 493, "principl": [494, 497], "desc": [495, 1858], "format": 496, "solut": [497, 1876, 1880, 1892, 1895, 1896, 1897], "provid": 497, "dict": 497, "hdf": [497, 498], "compliant": [497, 498], "what": 497, "happen": 497, "detail": 497, "hdfarchiv": 498, "hdfarchivegroup": 498, "hdfarchiveinert": 498, "scheme": [498, 544, 545, 546, 547, 548], "doe": [498, 514], "becom": 498, "introduct": [499, 564, 568, 583, 1881, 1886], "support": 499, "basic": [499, 515, 1868], "usag": [499, 520, 582, 1851, 1855], "header": 499, "lightweight": 500, "util": [501, 584, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847], "automat": 502, "assign": [502, 522, 543], "contain": 502, "time": [503, 515, 520, 528, 535, 545, 548, 554, 1862, 1883, 1887, 1889], "express": [503, 506, 507, 508, 516, 524, 532, 537, 543, 1860], "more": [504, 514, 1870, 1882], "complex": 504, "A": [505, 551, 579, 580, 1856, 1859, 1867, 1872, 1881, 1888, 1894], "sum": [505, 561], "evalu": [506, 524, 527, 528, 529, 531, 533, 535, 1886], "complet": [506, 551, 582, 1856], "partial": [506, 531, 1886], "form": 507, "placehold": [507, 1862], "an": [507, 1860, 1861, 1884], "storag": [507, 523, 527, 528, 529, 532, 533, 535], "advanc": [507, 541, 580, 1850, 1876, 1880], "make_funct": 508, "short": [508, 1881], "notat": [508, 511], "motiv": [509, 564], "littl": [509, 551], "tour": [509, 1859], "overload": [510, 572], "argument": [510, 544, 545, 546, 547, 548, 664, 703, 742, 781, 820], "convent": [511, 523, 527, 528, 529, 532, 533, 535, 1864], "construct": [513, 570, 572, 573, 1886], "synopsi": [513, 519, 527, 528, 529, 533, 535], "under": 513, "hood": 513, "full": [513, 566, 1876, 1880], "work": 514, "cofactor": 514, "sherman": 514, "morrison": 514, "formula": 514, "addit": [514, 1883, 1887], "line": [514, 1861], "column": [514, 1861], "notion": 515, "matsubara": [515, 527, 528, 544, 545, 546, 554, 1862, 1889], "imaginari": [515, 520, 528, 544, 545, 1862, 1883, 1887, 1889], "gfimtim": [515, 545, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740], "frequenc": [515, 520, 527, 533, 541, 544, 547, 552, 554, 1862, 1883, 1887, 1889], "gfimfreq": [515, 544, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701], "legendr": [515, 529, 546, 554, 1197], "polynomi": [515, 546], "gflegendr": [515, 546, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779], "gfretim": [515, 548, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857], "retard": [515, 547, 548], "gfrefreq": [515, 547, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818], "high": [515, 541, 552], "interact": [516, 524, 537, 1881, 1899, 1900, 1904, 1905], "concept": [517, 556, 564], "domain": [517, 523, 527, 528, 529, 532, 533, 535, 537, 1862], "purefunctionondomain": 517, "meshpoint": [517, 1037, 1038, 1039, 1040], "implement": [520, 538], "note": [520, 538, 1902, 1907], "fftw": 520, "special": [520, 536], "case": 520, "fermion": [520, 562, 1885, 1899, 1900, 1904, 1905], "boson": 520, "tf": 520, "block": [523, 543, 551, 1883, 1887], "factori": [523, 572], "regular": 523, "singular": [523, 526, 528, 529, 532, 535], "interpol": [523, 532, 1862], "access": [526, 543, 551, 569], "symmetri": 526, "imfreq": [527, 539, 1195], "free": [527, 562, 572], "imtim": [528, 540, 1196], "represent": 529, "misc": 530, "statist": [530, 583, 1086, 1099, 1112, 1129, 1140, 1151], "prod": 532, "x": [532, 1854], "y": 532, "multipl": [532, 580], "variabl": [532, 568, 1852], "subscript": 532, "techniqu": 532, "refreq": [533, 1198], "target": 534, "reinterpret": 534, "retim": [535, 1199], "index": [537, 1033], "find": 537, "closest": 537, "point": [537, 543, 1621, 1622, 1623, 1624, 1862], "moment": [541, 552], "adjust": 541, "fit": [541, 579, 657, 658, 659, 660], "window": 541, "bracket": 543, "shelv": [543, 551], "pickl": [543, 551], "plot": [543, 578, 580, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1740, 1848, 1873, 1877, 1882], "option": [543, 580, 1054, 1067, 1154, 1166, 1853], "direct": 543, "keyword": [544, 545, 546, 547, 548, 664, 703, 742, 781, 820], "onli": [544, 545, 546, 547, 548, 664, 703, 742, 781, 820], "descriptor": [550, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 1883, 1887], "copi": [551, 647, 651, 667, 706, 745, 784, 823, 862, 879, 945, 1016, 1047, 1058, 1069, 1082, 1095, 1108, 1121, 1137, 1148, 1156, 1168], "hilbert": [555, 560], "space": 555, "statevector": 556, "bravai": 557, "introductori": 558, "relat": 559, "do": [559, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 1596, 1619, 1659, 1848], "read": [559, 1850, 1884], "text": [559, 1848, 1882], "comput": [559, 1900, 1905], "tight_bind": [559, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660], "over": [561, 572], "brillouin": 561, "zone": 561, "tight": [562, 1872, 1886], "bind": [562, 1872, 1886], "hop": [562, 1636, 1652, 1899, 1904], "bravaislattic": [563, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605], "definit": 563, "energies_on_bz_path": 563, "measur": [564, 567, 568, 570], "Ising": 567, "chain": 567, "magnet": 567, "field": [567, 1869, 1888, 1894], "configur": 567, "main": 567, "program": 567, "loop": [568, 1881], "connect": 568, "random": [569, 582, 1901, 1906], "number": [569, 582, 1885, 1910], "list": [569, 1856, 1881], "tutori": [570, 1859, 1873, 1877, 1882, 1893, 1898], "thi": [570, 1873, 1877, 1882], "problem": 570, "initi": [570, 1883, 1886, 1887], "simul": 570, "start": [570, 1844, 1849], "result": [570, 1788, 1795, 1889, 1892, 1897], "second": [571, 572], "quantiz": [571, 572], "hamiltonian": [571, 575, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1873, 1877, 1886], "monomi": 572, "serial": 572, "u": [573, 1896, 1902, 1907], "coeffici": 574, "extract": 574, "observ": [576, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720], "helper": 577, "protocol": [578, 580, 1730, 1731, 1732], "simpl": [579, 1860, 1862, 1867, 1881], "thin": 580, "layer": 580, "abov": 580, "matplotlib": [580, 1882], "panel": 580, "figur": [580, 581], "reproduc": 581, "proven": 581, "save": [581, 891, 1848], "analysi": 583, "process": [583, 1873, 1877], "averag": 583, "standard": 583, "error": 583, "except": [584, 585], "etc": 584, "includ": 586, "warn": 586, "appli": 587, "for_each": 587, "for_each_zip": 587, "map": [587, 1860], "fold": [587, 1632, 1860], "revers": 587, "called_on_tupl": 587, "atomdiag": 589, "atomdiagcomplex": [591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611], "__init__": [592, 613, 646, 650, 656, 660, 665, 704, 743, 782, 821, 860, 875, 900, 902, 905, 907, 909, 911, 917, 919, 922, 925, 928, 930, 932, 938, 941, 943, 981, 1015, 1021, 1031, 1038, 1042, 1045, 1055, 1068, 1080, 1093, 1106, 1119, 1135, 1146, 1155, 1167, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1595, 1599, 1607, 1612, 1623, 1627, 1647, 1672, 1735, 1743, 1756, 1763, 1782, 1786, 1793, 1832], "energi": [597, 618, 1873, 1877], "fock_stat": [599, 620], "fop": [600, 621], "full_hilbert_space_dim": [601, 622], "gs_energi": [605, 626], "h_atom": [606, 627], "quantum_numb": [608, 629], "unitary_matric": [609, 630], "vacuum_st": [610, 631], "vacuum_subspace_index": [611, 632], "atomdiagr": [612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632], "dosfromfunct": [649, 650, 651, 652], "dos_from_fil": 653, "hilbert_transform": [654, 655, 656], "hilberttransform": [655, 656], "backwd_compat": [662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857], "gf_imfreq": [663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701], "conjug": [666, 705, 744, 783, 822, 878, 944, 1209], "copy_from": [668, 707, 746, 785, 824, 863, 880, 946, 1048, 1059, 1070, 1083, 1096, 1109, 1122, 1138, 1149, 1157, 1169], "enforce_discontinu": [671, 710, 749, 788, 827, 949, 997], "fit_hermitian_tail_on_window": [673, 712, 751, 790, 829, 951, 999], "fit_tail_on_window": [675, 714, 753, 792, 831, 953, 1001], "from_l_g_r": [676, 715, 754, 793, 832, 954], "invert": [680, 719, 758, 797, 836, 886, 958], "rebinning_tau": [686, 725, 764, 803, 842, 964, 1004], "replace_by_tail": [687, 726, 765, 804, 843, 965, 1005], "replace_by_tail_in_fit_window": [688, 727, 766, 805, 844, 966, 1006], "set_from_fouri": [689, 728, 767, 806, 845, 967, 1007], "set_from_imfreq": [690, 729, 768, 807, 846, 968, 1008], "set_from_imtim": [691, 730, 769, 808, 847, 969, 1009], "set_from_legendr": [692, 731, 770, 809, 848, 970, 1010], "set_from_pad": [693, 732, 771, 810, 849, 971, 1011], "target_rank": [695, 734, 773, 812, 851, 973], "total_dens": [698, 737, 776, 815, 854, 892, 976], "transpos": [699, 738, 777, 816, 855, 893, 977, 1218], "x_data_view": [700, 739, 778, 817, 856, 978], "zero": [701, 740, 779, 818, 857, 872, 895, 979], "gf_imtim": [702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740], "gf_legendr": [741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779], "gf_refreq": [780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818], "gf_retim": [819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857], "block2_gf": [858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872], "block2gf": [859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872], "all_indic": [861, 876], "copy_selected_block": [864, 881], "indices1": 867, "indices2": 868, "n_block": [869, 889], "view_selected_block": [871, 894], "beta": [877, 1081, 1094, 1107, 1120, 1136, 1147, 1903, 1908], "load": 887, "call_factory_from_dict": [896, 984, 1052], "fix_gf_struct_typ": 897, "descriptor_bas": [898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914], "baseblock": [901, 902, 903], "is_block_descriptor": [903, 920, 923, 926], "const": [904, 905], "lazyctx": [908, 909], "omega_": [910, 911], "convert_scalar_to_const": 912, "is_lazi": 913, "is_scalar": 914, "flat": [916, 917, 1883, 1887], "legendretomatsubara": [921, 922, 923], "matsubaratolegendr": [924, 925, 926], "onefermionintim": [927, 928], "semicircular": [929, 930], "wilson": [931, 932], "semi": [933, 1883, 1887], "dlr_crm_dyson_solv": [934, 935], "minimize_dyson": 935, "addmethod": [937, 938, 939], "mro": 939, "callproxynon": [940, 941], "idx": [980, 981], "add_method_help": 982, "bckwd": 983, "gf_factori": [985, 986, 987, 988, 989, 990, 991, 992, 993, 994], "gf_fnt": [995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012], "lazy_express": [1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027], "lazyexpr": [1014, 1015, 1016, 1017, 1018, 1019], "get_termin": 1017, "is_termin": 1018, "set_from": 1019, "lazyexprtermin": [1020, 1021], "all_termin": 1022, "eval_expr": 1023, "eval_expr_with_context": 1024, "lazy_funct": 1025, "make_lazi": 1026, "map_block": 1028, "matsubara_freq": [1029, 1030, 1031, 1032, 1033, 1034, 1035], "matsubarafreq": [1030, 1031, 1032, 1033, 1034, 1035], "meshvaluegener": [1041, 1042], "mesh_product": [1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052], "meshproduct": [1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051], "compon": 1046, "size_of_compon": 1050, "to_data_index": [1051, 1062, 1074, 1087, 1100, 1113, 1130, 1141, 1152, 1160, 1174], "meshbrzon": [1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066], "bz": [1056, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187], "closest_index": 1057, "dim": [1060, 1071], "mesh_hash": [1061, 1073, 1085, 1098, 1111, 1125, 1139, 1150, 1159, 1171], "to_index": [1063, 1075, 1088, 1101, 1114, 1131, 1142, 1153, 1161, 1175], "to_valu": [1064, 1076, 1089, 1102, 1115, 1132, 1143, 1162, 1176], "unit": [1065, 1077, 1605, 1610, 1643, 1658], "meshcyclat": [1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078], "meshdlr": [1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091], "ep": [1084, 1097, 1110], "w_max": [1091, 1104, 1117, 1164], "meshdlrimfreq": [1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104], "meshdlrimtim": [1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117], "meshimfreq": [1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133], "first_index": 1123, "last_index": 1124, "n_iw": 1126, "positive_onli": 1127, "set_tail_fit_paramet": 1128, "meshimtim": [1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144], "meshlegendr": [1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153], "meshrefreq": [1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165], "delta": [1158, 1170, 1210], "w_min": 1165, "meshretim": [1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177], "t_max": 1172, "t_min": 1173, "make_adjoint_mesh": 1178, "dist": [1181, 1205], "generate_point": 1182, "generate_points_on_path": 1183, "length": 1184, "make_plott": 1185, "slice_on_path": 1187, "bz_x_x": [1188, 1189, 1190], "plottable_slice_along_path": 1190, "dispatch": 1191, "one_var": [1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199], "dlr_imfreq": 1193, "dlr_imtim": 1194, "plot_bas": [1200, 1201], "select_indic": [1202, 1203, 1204, 1205, 1206, 1207], "closest_point_in_lin": 1203, "closest_to": 1204, "pick_selection_vec": 1206, "select_path_indic": 1207, "discretize_bath": 1211, "dyson": 1212, "fit_legendr": 1213, "make_delta": 1215, "read_gf_from_txt": 1217, "write_gf_to_txt": 1219, "wrapped_aux": [1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591], "callproxybrzone_0": [1221, 1222], "callproxybrzone_1": [1223, 1224], "callproxybrzone_2": [1225, 1226], "callproxybrzone_3": [1227, 1228], "callproxybrzone_4": [1229, 1230], "callproxybrzone_x_dlr_0": [1231, 1232], "callproxybrzone_x_dlr_1": [1233, 1234], "callproxybrzone_x_dlr_2": [1235, 1236], "callproxybrzone_x_dlr_3": [1237, 1238], "callproxybrzone_x_dlr_4": [1239, 1240], "callproxybrzone_x_imfreq_0": [1241, 1242], "callproxybrzone_x_imfreq_1": [1243, 1244], "callproxybrzone_x_imfreq_2": [1245, 1246], "callproxybrzone_x_imfreq_3": [1247, 1248], "callproxybrzone_x_imfreq_4": [1249, 1250], "callproxybrzone_x_imtime_0": [1251, 1252], "callproxybrzone_x_imtime_0_r": [1253, 1254], "callproxybrzone_x_imtime_1": [1255, 1256], "callproxybrzone_x_imtime_1_r": [1257, 1258], "callproxybrzone_x_imtime_2": [1259, 1260], "callproxybrzone_x_imtime_2_r": [1261, 1262], "callproxybrzone_x_imtime_3": [1263, 1264], "callproxybrzone_x_imtime_3_r": [1265, 1266], "callproxybrzone_x_imtime_4": [1267, 1268], "callproxybrzone_x_imtime_4_r": [1269, 1270], "callproxybrzone_x_legendre_0": [1271, 1272], "callproxybrzone_x_legendre_1": [1273, 1274], "callproxybrzone_x_legendre_2": [1275, 1276], "callproxybrzone_x_legendre_3": [1277, 1278], "callproxybrzone_x_legendre_4": [1279, 1280], "callproxybrzone_x_refreq_0": [1281, 1282], "callproxybrzone_x_refreq_1": [1283, 1284], "callproxybrzone_x_refreq_2": [1285, 1286], "callproxybrzone_x_refreq_3": [1287, 1288], "callproxybrzone_x_refreq_4": [1289, 1290], "callproxybrzone_x_retime_0": [1291, 1292], "callproxybrzone_x_retime_1": [1293, 1294], "callproxybrzone_x_retime_2": [1295, 1296], "callproxybrzone_x_retime_3": [1297, 1298], "callproxybrzone_x_retime_4": [1299, 1300], "callproxycyclat_0": [1301, 1302], "callproxycyclat_1": [1303, 1304], "callproxycyclat_2": [1305, 1306], "callproxycyclat_3": [1307, 1308], "callproxycyclat_4": [1309, 1310], "callproxycyclat_x_dlr_0": [1311, 1312], "callproxycyclat_x_dlr_1": [1313, 1314], "callproxycyclat_x_dlr_2": [1315, 1316], "callproxycyclat_x_dlr_3": [1317, 1318], "callproxycyclat_x_dlr_4": [1319, 1320], "callproxycyclat_x_imfreq_0": [1321, 1322], "callproxycyclat_x_imfreq_1": [1323, 1324], "callproxycyclat_x_imfreq_2": [1325, 1326], "callproxycyclat_x_imfreq_3": [1327, 1328], "callproxycyclat_x_imfreq_4": [1329, 1330], "callproxycyclat_x_imtime_0": [1331, 1332], "callproxycyclat_x_imtime_0_r": [1333, 1334], "callproxycyclat_x_imtime_1": [1335, 1336], "callproxycyclat_x_imtime_1_r": [1337, 1338], "callproxycyclat_x_imtime_2": [1339, 1340], "callproxycyclat_x_imtime_2_r": [1341, 1342], "callproxycyclat_x_imtime_3": [1343, 1344], "callproxycyclat_x_imtime_3_r": [1345, 1346], "callproxycyclat_x_imtime_4": [1347, 1348], "callproxycyclat_x_imtime_4_r": [1349, 1350], "callproxycyclat_x_legendre_0": [1351, 1352], "callproxycyclat_x_legendre_1": [1353, 1354], "callproxycyclat_x_legendre_2": [1355, 1356], "callproxycyclat_x_legendre_3": [1357, 1358], "callproxycyclat_x_legendre_4": [1359, 1360], "callproxycyclat_x_refreq_0": [1361, 1362], "callproxycyclat_x_refreq_1": [1363, 1364], "callproxycyclat_x_refreq_2": [1365, 1366], "callproxycyclat_x_refreq_3": [1367, 1368], "callproxycyclat_x_refreq_4": [1369, 1370], "callproxycyclat_x_retime_0": [1371, 1372], "callproxycyclat_x_retime_1": [1373, 1374], "callproxycyclat_x_retime_2": [1375, 1376], "callproxycyclat_x_retime_3": [1377, 1378], "callproxycyclat_x_retime_4": [1379, 1380], "callproxydlr_0": [1381, 1382], "callproxydlr_1": [1383, 1384], "callproxydlr_2": [1385, 1386], "callproxydlr_3": [1387, 1388], "callproxydlr_4": [1389, 1390], "callproxydlr_x_brzone_0": [1391, 1392], "callproxydlr_x_brzone_1": [1393, 1394], "callproxydlr_x_brzone_2": [1395, 1396], "callproxydlr_x_brzone_3": [1397, 1398], "callproxydlr_x_brzone_4": [1399, 1400], "callproxydlr_x_cyclat_0": [1401, 1402], "callproxydlr_x_cyclat_1": [1403, 1404], "callproxydlr_x_cyclat_2": [1405, 1406], "callproxydlr_x_cyclat_3": [1407, 1408], "callproxydlr_x_cyclat_4": [1409, 1410], "callproxyimfreq_0": [1411, 1412], "callproxyimfreq_1": [1413, 1414], "callproxyimfreq_2": [1415, 1416], "callproxyimfreq_3": [1417, 1418], "callproxyimfreq_4": [1419, 1420], "callproxyimfreq_x_brzone_0": [1421, 1422], "callproxyimfreq_x_brzone_1": [1423, 1424], "callproxyimfreq_x_brzone_2": [1425, 1426], "callproxyimfreq_x_brzone_3": [1427, 1428], "callproxyimfreq_x_brzone_4": [1429, 1430], "callproxyimfreq_x_cyclat_0": [1431, 1432], "callproxyimfreq_x_cyclat_1": [1433, 1434], "callproxyimfreq_x_cyclat_2": [1435, 1436], "callproxyimfreq_x_cyclat_3": [1437, 1438], "callproxyimfreq_x_cyclat_4": [1439, 1440], "callproxyimtime_0": [1441, 1442], "callproxyimtime_0_r": [1443, 1444], "callproxyimtime_1": [1445, 1446], "callproxyimtime_1_r": [1447, 1448], "callproxyimtime_2": [1449, 1450], "callproxyimtime_2_r": [1451, 1452], "callproxyimtime_3": [1453, 1454], "callproxyimtime_3_r": [1455, 1456], "callproxyimtime_4": [1457, 1458], "callproxyimtime_4_r": [1459, 1460], "callproxyimtime_x_brzone_0": [1461, 1462], "callproxyimtime_x_brzone_0_r": [1463, 1464], "callproxyimtime_x_brzone_1": [1465, 1466], "callproxyimtime_x_brzone_1_r": [1467, 1468], "callproxyimtime_x_brzone_2": [1469, 1470], "callproxyimtime_x_brzone_2_r": [1471, 1472], "callproxyimtime_x_brzone_3": [1473, 1474], "callproxyimtime_x_brzone_3_r": [1475, 1476], "callproxyimtime_x_brzone_4": [1477, 1478], "callproxyimtime_x_brzone_4_r": [1479, 1480], "callproxyimtime_x_cyclat_0": [1481, 1482], "callproxyimtime_x_cyclat_0_r": [1483, 1484], "callproxyimtime_x_cyclat_1": [1485, 1486], "callproxyimtime_x_cyclat_1_r": [1487, 1488], "callproxyimtime_x_cyclat_2": [1489, 1490], "callproxyimtime_x_cyclat_2_r": [1491, 1492], "callproxyimtime_x_cyclat_3": [1493, 1494], "callproxyimtime_x_cyclat_3_r": [1495, 1496], "callproxyimtime_x_cyclat_4": [1497, 1498], "callproxyimtime_x_cyclat_4_r": [1499, 1500], "callproxylegendre_0": [1501, 1502], "callproxylegendre_1": [1503, 1504], "callproxylegendre_2": [1505, 1506], "callproxylegendre_3": [1507, 1508], "callproxylegendre_4": [1509, 1510], "callproxylegendre_x_brzone_0": [1511, 1512], "callproxylegendre_x_brzone_1": [1513, 1514], "callproxylegendre_x_brzone_2": [1515, 1516], "callproxylegendre_x_brzone_3": [1517, 1518], "callproxylegendre_x_brzone_4": [1519, 1520], "callproxylegendre_x_cyclat_0": [1521, 1522], "callproxylegendre_x_cyclat_1": [1523, 1524], "callproxylegendre_x_cyclat_2": [1525, 1526], "callproxylegendre_x_cyclat_3": [1527, 1528], "callproxylegendre_x_cyclat_4": [1529, 1530], "callproxyrefreq_0": [1531, 1532], "callproxyrefreq_1": [1533, 1534], "callproxyrefreq_2": [1535, 1536], "callproxyrefreq_3": [1537, 1538], "callproxyrefreq_4": [1539, 1540], "callproxyrefreq_x_brzone_0": [1541, 1542], "callproxyrefreq_x_brzone_1": [1543, 1544], "callproxyrefreq_x_brzone_2": [1545, 1546], "callproxyrefreq_x_brzone_3": [1547, 1548], "callproxyrefreq_x_brzone_4": [1549, 1550], "callproxyrefreq_x_cyclat_0": [1551, 1552], "callproxyrefreq_x_cyclat_1": [1553, 1554], "callproxyrefreq_x_cyclat_2": [1555, 1556], "callproxyrefreq_x_cyclat_3": [1557, 1558], "callproxyrefreq_x_cyclat_4": [1559, 1560], "callproxyretime_0": [1561, 1562], "callproxyretime_1": [1563, 1564], "callproxyretime_2": [1565, 1566], "callproxyretime_3": [1567, 1568], "callproxyretime_4": [1569, 1570], "callproxyretime_x_brzone_0": [1571, 1572], "callproxyretime_x_brzone_1": [1573, 1574], "callproxyretime_x_brzone_2": [1575, 1576], "callproxyretime_x_brzone_3": [1577, 1578], "callproxyretime_x_brzone_4": [1579, 1580], "callproxyretime_x_cyclat_0": [1581, 1582], "callproxyretime_x_cyclat_1": [1583, 1584], "callproxyretime_x_cyclat_2": [1585, 1586], "callproxyretime_x_cyclat_3": [1587, 1588], "callproxyretime_x_cyclat_4": [1589, 1590], "set_from_gf_data_mul_lr": 1591, "bz_patch": [1593, 1594, 1595, 1596], "bzpatch": [1594, 1595, 1596], "lattice_tool": [1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620], "lattice_to_real_coordin": [1600, 1617, 1637, 1653], "n_orbit": [1601, 1638, 1654], "ndim": [1602, 1609, 1639, 1655], "orbital_nam": [1603, 1640, 1656], "orbital_posit": [1604, 1641, 1657], "brillouinzon": [1606, 1607, 1608, 1609, 1610], "dispers": [1613, 1631, 1648], "displ_vec": 1614, "overlap_mat_vec": 1618, "dos_patch": [1620, 1660], "latticepoint": [1622, 1623, 1624], "super_lattic": [1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644], "tbsuperlattic": [1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644], "change_coordinates_l_to_sl": 1628, "change_coordinates_sl_to_l": 1629, "cluster_sit": 1630, "get_kmesh": [1634, 1650], "get_rmesh": [1635, 1651], "pack_index_site_orbit": 1642, "unpack_index_site_orbit": 1644, "tb_from_pythtb": 1662, "tb_from_wannier90": 1663, "tb_to_sympi": 1664, "extend_wannier90_to_spin": 1665, "k_space_path": 1666, "parse_hopping_from_wannier90_hr_dat": 1667, "parse_lattice_vectors_from_wannier90_wout": 1668, "is_zero": 1674, "c_dag": 1677, "dagger": 1678, "is_op_hermitian": 1679, "n": 1680, "u_matrix": [1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696], "u_j_to_radial_integr": 1683, "u_matrix_kanamori": 1684, "u_matrix_slat": 1685, "angular_matrix_el": 1686, "clebsch_gordan": 1687, "cubic_nam": 1688, "eg_submatrix": 1689, "radial_integrals_to_u_j": 1690, "reduce_4index_to_2index": 1691, "spherical_to_cub": 1692, "subarrai": 1693, "t2g_submatrix": 1694, "three_j_symbol": 1695, "transform_u_matrix": 1696, "extractor": [1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705], "block_matrix_from_op": 1698, "dict_to_matrix": 1699, "extract_u_dict2": 1700, "extract_u_dict4": 1701, "extract_h_dict": 1702, "op_from_block_matrix": 1703, "quadratic_term": 1704, "quartic_term": 1705, "backward_compat": 1707, "diagonal_part": 1708, "h_int_dens": 1709, "h_int_kanamori": 1710, "h_int_slat": 1711, "make_operator_r": 1712, "l2_op": 1714, "ls_op": 1715, "l_op": 1716, "n_op": 1717, "s2_op": 1718, "s_op": 1719, "check_backward_compat": 1720, "op_struct": [1721, 1722, 1723], "get_mkind": 1722, "set_operator_structur": 1723, "mpl_interfac": [1725, 1726, 1727, 1728, 1729], "oplot": 1726, "oploti": 1727, "oplotr": 1728, "use_amsmath": 1729, "clip_arrai": 1731, "plot_protocol_appli": 1732, "randomgener": [1734, 1735], "random_generator_names_list": 1737, "sumk": [1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765], "sumk_discret": [1753, 1754, 1755, 1756, 1757, 1758], "sumkdiscret": [1754, 1755, 1756, 1757, 1758], "gfblocindic": [1755, 1761], "n_kpt": [1757, 1764], "resize_arrai": [1758, 1765], "sumk_discrete_from_lattic": [1759, 1760, 1761, 1762, 1763, 1764, 1765], "sumkdiscretefromlattic": [1760, 1761, 1762, 1763, 1764, 1765], "recompute_grid": 1762, "bound_and_bisect": [1767, 1768, 1769], "determine_bound": 1769, "capture_stdout": 1770, "comparison_test": [1771, 1772, 1773, 1774, 1775, 1776], "assert_array_close_to_scalar": 1772, "assert_arrays_are_clos": 1773, "assert_block2_gfs_are_clos": 1774, "assert_block_gfs_are_clos": 1775, "assert_gfs_are_clos": 1776, "dichotomi": [1777, 1778], "dist_on_nod": [1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798], "distributiononnod": [1780, 1781, 1782, 1783], "sleeptim": [1781, 1785, 1792], "distributiononnodesonestack": [1784, 1785, 1786, 1787, 1788, 1789, 1790], "finish": [1787, 1794], "treat": [1790, 1798], "distributiononnodestest": [1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798], "the_funct": 1797, "h5diff": [1799, 1800, 1801], "compar": 1800, "check_for_mpi": 1803, "mpi_mpi4pi": [1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817], "bcast": [1807, 1821], "is_master_nod": [1808, 1822], "master_gets_host_nam": [1809, 1823], "myprint_err": [1810, 1824], "myprint_out": [1811, 1825], "recv": [1812, 1826], "report": [1813, 1827], "send": [1814, 1828], "slice_arrai": [1815, 1829], "slice_inf": 1816, "slice_sup": 1817, "mpi_nompi": [1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829], "redirect": [1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847], "daemon": 1833, "getnam": 1834, "ident": 1835, "isdaemon": 1836, "is_al": 1837, "join": 1838, "native_id": 1840, "setdaemon": 1842, "setnam": 1843, "stop": 1845, "start_redirect": 1846, "stop_redirect": 1847, "frequent": 1848, "ask": 1848, "question": [1848, 1900, 1903, 1905, 1908], "q": [1848, 1900, 1905], "my": 1848, "e": 1848, "g": [1848, 1862, 1889], "hash": 1848, "debug": 1848, "purpos": 1848, "welcom": 1849, "core": 1849, "numer": 1849, "algorithm": 1849, "where": 1849, "ubuntu": [1850, 1857], "debian": 1850, "anaconda": 1850, "docker": 1850, "apptain": 1850, "binder": 1850, "sourc": [1850, 1855, 1864], "easybuild": 1850, "prerequisit": [1850, 1854], "setup": 1850, "further": 1850, "clang": 1851, "linux": 1851, "libclang": 1851, "unix": 1852, "common": 1852, "softwar": 1852, "develop": 1852, "affect": 1852, "openmp": 1852, "custom": 1853, "mac": 1854, "o": 1854, "virtual": 1855, "prepar": 1858, "ipython": [1858, 1870, 1881], "notebook": [1858, 1870, 1881, 1903, 1908], "floor": 1858, "divis": 1858, "regener": 1858, "final": 1858, "user": 1859, "why": 1859, "quick": 1859, "multidimension": 1860, "declar": 1860, "print": 1860, "matric": 1860, "vector": 1860, "defin": [1860, 1881, 1886], "through": 1860, "algebra": 1860, "ctqmc": 1861, "creation": [1861, 1862], "empti": 1861, "inform": 1861, "one": [1861, 1873, 1877], "replac": 1861, "omega": [1862, 1900, 1905], "nu": 1862, "tau": [1862, 1889], "fill": 1862, "structur": [1864, 1903, 1908], "project": [1865, 1867], "profil": 1866, "you": [1867, 1873, 1877], "its": 1867, "mix": 1867, "theori": [1869, 1888, 1894, 1900, 1902, 1905, 1907], "beth": [1869, 1888, 1894], "learn": 1870, "model": [1871, 1872, 1889, 1890, 1891, 1892, 1895, 1896, 1897], "squar": [1872, 1899, 1904], "espresso": [1873, 1877], "creat": [1873, 1877], "wannier": [1873, 1877], "low": [1873, 1877], "descript": [1873, 1877], "la_2cuo_4": [1873, 1877], "shot": [1873, 1877], "converg": [1873, 1877], "remind": [1873, 1877, 1889], "self": [1873, 1876, 1877, 1880, 1902, 1907], "\u03c3": [1873, 1877], "spectral": [1873, 1877], "6": [1873, 1877, 1895], "fermi": [1873, 1877, 1899, 1904], "k_z": [1873, 1877], "post": [1873, 1877], "conclud": [1873, 1877], "mai": [1873, 1877], "now": [1873, 1877], "02": [1873, 1877], "fermise": [1873, 1874, 1877, 1878], "phase": [1875, 1879, 1901, 1906], "diagram": [1875, 1879], "explor": [1875, 1879], "comparison": [1876, 1880, 1894], "charg": [1876, 1880], "consist": [1876, 1880, 1902, 1907], "introduc": 1881, "mode": 1881, "shell": 1881, "veri": 1881, "indent": 1881, "If": 1881, "statement": 1881, "import": [1881, 1886], "modul": 1881, "numpi": [1881, 1886], "help": 1881, "goal": [1882, 1900, 1905], "inlin": 1882, "prettier": 1882, "subplot": 1882, "like": 1882, "approach": 1882, "circular": [1883, 1887], "arithmet": [1883, 1887], "obtain": [1883, 1887], "compact": [1883, 1887], "pade": [1883, 1887], "exercis": [1883, 1887, 1896], "fundament": 1885, "multivari": 1886, "perturb": [1888, 1894], "visual": [1888, 1889, 1894], "mott": [1888, 1894], "transit": [1888, 1894], "anderson": 1889, "cthyb": 1889, "sampl": 1889, "singl": [1890, 1895], "orbit": [1890, 1891, 1895, 1896], "valenc": [1892, 1897], "bond": [1892, 1897], "precomput": [1892, 1897], "literatur": 1894, "j": 1896, "conclus": 1896, "perfect": [1899, 1900, 1904, 1905], "nest": [1899, 1900, 1904, 1905], "nearest": [1899, 1904], "neighbour": [1899, 1904], "surfac": [1899, 1904], "suscept": [1900, 1905], "chi_0": [1900, 1903, 1905, 1908], "fast": [1900, 1905], "mathbf": [1900, 1905], "omega_n": [1900, 1905], "static": [1900, 1905], "approxim": [1901, 1906], "rpa": [1901, 1902, 1903, 1906, 1907, 1908], "tpsc": [1902, 1903, 1907, 1908], "behaviour": [1902, 1907], "u_": [1902, 1907], "sp": [1902, 1907], "ch": [1902, 1907], "weak": [1902, 1907], "temperatur": [1903, 1908], "antiferromagnet": [1903, 1908], "dimension": [1903, 1908], "mermin": [1903, 1908], "wagner": [1903, 1908], "theorem": [1903, 1908], "previou": [1903, 1908], "arbitrari": [1903, 1908], "spin": [1903, 1908], "factor": [1903, 1908], "s_": [1903, 1908], "remark": [1903, 1908], "compat": 1910}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "nbsphinx": 4, "sphinx": 60}, "alltitles": {"The cfunction class": [[489, "the-cfunction-class"]], "The class_ class": [[490, "the-class-class"]], "Convertion vs wrapping": [[492, "convertion-vs-wrapping"]], "Wrapping classes from C++ to Python": [[492, "wrapping-classes-from-c-to-python"]], "Convertion": [[492, "convertion"]], "General Principle": [[494, "general-principle"]], "Cpp2Py: a C++/Python interfacing tool": [[491, "cpp2py-a-c-python-interfacing-tool"]], "The module_ class": [[493, "the-module-class"]], "Manual": [[488, null], [9, "manual"]], "Python API of the desc file": [[495, "python-api-of-the-desc-file"]], "[triqs/atom_diag] Lightweight exact diagonalization solver and tools": [[500, "triqs-atom-diag-lightweight-exact-diagonalization-solver-and-tools"]], "Example of use: Python": [[500, "example-of-use-python"]], "Example of use: C++": [[500, "example-of-use-c"]], "More complex examples": [[504, "more-complex-examples"]], "Evaluating CLEF expressions": [[506, "evaluating-clef-expressions"]], "Complete evaluation": [[506, "complete-evaluation"]], "Partial evaluation": [[506, "partial-evaluation"], [531, "partial-evaluation"], [531, "id1"], [1886, "Partial-evaluation"]], "[triqs/clef] Clef: Compile-time lazy expressions and functions": [[503, "triqs-clef-clef-compile-time-lazy-expressions-and-functions"]], "A lazy sum": [[505, "a-lazy-sum"]], "[triqs/h5] The HDF5 format": [[496, "triqs-h5-the-hdf5-format"]], "Forming CLEF expressions": [[507, "forming-clef-expressions"]], "Placeholders": [[507, "placeholders"]], "Forming an expression": [[507, "forming-an-expression"]], "Storage of expressions [advanced]": [[507, "storage-of-expressions-advanced"]], "Utility functions for atom_diag": [[501, "utility-functions-for-atom-diag"]], "Example": [[497, "example"], [519, "example"], [563, "example"], [548, "example"], [546, "example"], [545, "example"], [544, "example"], [541, "example"], [580, "example"], [582, "example"], [19, "example"], [95, "example"], [255, "example"], [254, "example"], [260, "example"], [316, "example"], [450, "example"], [457, "example"], [459, "example"], [454, "example"], [461, "example"], [483, "example"], [482, "example"], [485, "example"], [484, "example"], [513, "example"]], "Solution 1. The class provides the transformation into a dict of hdf-compliant objects": [[497, "solution-1-the-class-provides-the-transformation-into-a-dict-of-hdf-compliant-objects"]], "Principle": [[497, "principle"]], "What happens in detail?": [[497, "what-happens-in-detail"]], "Transform CLEF expressions into functions": [[508, "transform-clef-expressions-into-functions"]], "make_function": [[508, "make-function"]], "Short notation with >> operator": [[508, "short-notation-with-operator"]], "clef::function": [[508, "clef-function"]], "Examples": [[508, "examples"], [523, "examples"], [533, "examples"], [529, "examples"], [528, "examples"], [535, "examples"], [547, "examples"], [532, "examples"], [527, "examples"]], "Automatic assignment of containers": [[502, "automatic-assignment-of-containers"]], "Motivation: a little tour of CLEF": [[509, "motivation-a-little-tour-of-clef"]], "triqs/MPI": [[499, "triqs-mpi"]], "Introduction": [[499, "introduction"], [583, "introduction"], [568, "introduction"]], "MPI documentation/manual/triqs": [[499, "mpi-documentation-manual-triqs"]], "Supported functions and types": [[499, "supported-functions-and-types"]], "Basic usage": [[499, "basic-usage"]], "Headers": [[499, "headers"]], "MPI example": [[499, "mpi-example"]], "Template parameters": [[511, "template-parameters"], [572, "template-parameters"], [64, "template-parameters"], [14, "template-parameters"], [13, "template-parameters"], [20, "template-parameters"], [19, "template-parameters"], [18, "template-parameters"], [26, "template-parameters"], [33, "template-parameters"], [32, "template-parameters"], [28, "template-parameters"], [34, "template-parameters"], [35, "template-parameters"], [39, "template-parameters"], [42, "template-parameters"], [47, "template-parameters"], [48, "template-parameters"], [46, "template-parameters"], [63, "template-parameters"], [62, "template-parameters"], [71, "template-parameters"], [72, "template-parameters"], [77, "template-parameters"], [84, "template-parameters"], [83, "template-parameters"], [89, "template-parameters"], [90, "template-parameters"], [95, "template-parameters"], [96, "template-parameters"], [105, "template-parameters"], [101, "template-parameters"], [100, "template-parameters"], [113, "template-parameters"], [112, "template-parameters"], [125, "template-parameters"], [129, "template-parameters"], [126, "template-parameters"], [128, "template-parameters"], [131, "template-parameters"], [132, "template-parameters"], [140, "template-parameters"], [141, "template-parameters"], [142, "template-parameters"], [146, "template-parameters"], [143, "template-parameters"], [144, "template-parameters"], [145, "template-parameters"], [147, "template-parameters"], [151, "template-parameters"], [150, "template-parameters"], [149, "template-parameters"], [148, "template-parameters"], [154, "template-parameters"], [183, "template-parameters"], [181, "template-parameters"], [182, "template-parameters"], [187, "template-parameters"], [184, "template-parameters"], [186, "template-parameters"], [185, "template-parameters"], [197, "template-parameters"], [255, "template-parameters"], [251, "template-parameters"], [254, "template-parameters"], [256, "template-parameters"], [259, "template-parameters"], [260, "template-parameters"], [257, "template-parameters"], [272, "template-parameters"], [268, "template-parameters"], [271, "template-parameters"], [284, "template-parameters"], [283, "template-parameters"], [297, "template-parameters"], [292, "template-parameters"], [301, "template-parameters"], [302, "template-parameters"], [300, "template-parameters"], [314, "template-parameters"], [315, "template-parameters"], [319, "template-parameters"], [316, "template-parameters"], [351, "template-parameters"], [355, "template-parameters"], [356, "template-parameters"], [354, "template-parameters"], [357, "template-parameters"], [360, "template-parameters"], [365, "template-parameters"], [370, "template-parameters"], [381, "template-parameters"], [378, "template-parameters"], [410, "template-parameters"], [451, "template-parameters"], [461, "template-parameters"], [481, "template-parameters"], [483, "template-parameters"], [480, "template-parameters"], [482, "template-parameters"], [485, "template-parameters"], [487, "template-parameters"], [484, "template-parameters"], [521, "template-parameters"]], "Parameters": [[511, "parameters"], [15, "parameters"], [12, "parameters"], [13, "parameters"], [19, "parameters"], [18, "parameters"], [26, "parameters"], [33, "parameters"], [32, "parameters"], [34, "parameters"], [39, "parameters"], [43, "parameters"], [47, "parameters"], [48, "parameters"], [46, "parameters"], [53, "parameters"], [57, "parameters"], [58, "parameters"], [63, "parameters"], [71, "parameters"], [73, "parameters"], [76, "parameters"], [85, "parameters"], [83, "parameters"], [88, "parameters"], [89, "parameters"], [97, "parameters"], [95, "parameters"], [105, "parameters"], [100, "parameters"], [117, "parameters"], [116, "parameters"], [113, "parameters"], [114, "parameters"], [112, "parameters"], [125, "parameters"], [129, "parameters"], [126, "parameters"], [124, "parameters"], [134, "parameters"], [140, "parameters"], [141, "parameters"], [142, "parameters"], [143, "parameters"], [144, "parameters"], [151, "parameters"], [150, "parameters"], [149, "parameters"], [153, "parameters"], [155, "parameters"], [156, "parameters"], [157, "parameters"], [158, "parameters"], [159, "parameters"], [162, "parameters"], [160, "parameters"], [171, "parameters"], [170, "parameters"], [173, "parameters"], [183, "parameters"], [181, "parameters"], [179, "parameters"], [182, "parameters"], [187, "parameters"], [184, "parameters"], [186, "parameters"], [185, "parameters"], [189, "parameters"], [188, "parameters"], [190, "parameters"], [197, "parameters"], [223, "parameters"], [235, "parameters"], [255, "parameters"], [251, "parameters"], [254, "parameters"], [256, "parameters"], [260, "parameters"], [257, "parameters"], [272, "parameters"], [268, "parameters"], [284, "parameters"], [280, "parameters"], [297, "parameters"], [292, "parameters"], [293, "parameters"], [301, "parameters"], [302, "parameters"], [300, "parameters"], [314, "parameters"], [315, "parameters"], [317, "parameters"], [319, "parameters"], [316, "parameters"], [332, "parameters"], [329, "parameters"], [333, "parameters"], [338, "parameters"], [334, "parameters"], [336, "parameters"], [345, "parameters"], [341, "parameters"], [342, "parameters"], [344, "parameters"], [343, "parameters"], [346, "parameters"], [349, "parameters"], [348, "parameters"], [355, "parameters"], [356, "parameters"], [354, "parameters"], [352, "parameters"], [360, "parameters"], [362, "parameters"], [358, "parameters"], [363, "parameters"], [359, "parameters"], [369, "parameters"], [368, "parameters"], [375, "parameters"], [372, "parameters"], [373, "parameters"], [370, "parameters"], [374, "parameters"], [379, "parameters"], [376, "parameters"], [381, "parameters"], [380, "parameters"], [387, "parameters"], [385, "parameters"], [384, "parameters"], [386, "parameters"], [391, "parameters"], [392, "parameters"], [388, "parameters"], [399, "parameters"], [396, "parameters"], [397, "parameters"], [398, "parameters"], [394, "parameters"], [402, "parameters"], [401, "parameters"], [403, "parameters"], [408, "parameters"], [410, "parameters"], [407, "parameters"], [413, "parameters"], [429, "parameters"], [428, "parameters"], [427, "parameters"], [430, "parameters"], [431, "parameters"], [443, "parameters"], [450, "parameters"], [451, "parameters"], [456, "parameters"], [461, "parameters"], [465, "parameters"], [462, "parameters"], [467, "parameters"], [468, "parameters"], [471, "parameters"], [476, "parameters"], [472, "parameters"], [473, "parameters"], [477, "parameters"], [481, "parameters"], [478, "parameters"], [483, "parameters"], [480, "parameters"], [482, "parameters"], [486, "parameters"], [485, "parameters"], [487, "parameters"], [484, "parameters"]], "Notations and documentation conventions": [[511, "notations-and-documentation-conventions"]], "Notation": [[511, "notation"]], "Documentation conventions for C++ code": [[511, "documentation-conventions-for-c-code"]], "add": [[511, "add"]], "Return value": [[511, "return-value"]], "Assignment": [[522, "assignment"]], "Move assign operator": [[522, "move-assign-operator"]], "Overloading functions and methods for CLEF arguments": [[510, "overloading-functions-and-methods-for-clef-arguments"]], "Overloading functions": [[510, "overloading-functions"]], "Overloading operator() and other methods": [[510, "overloading-operator-and-other-methods"]], "[block_gf] Block Green functions": [[523, "block-gf-t-block-green-functions"]], "Constructors": [[523, "constructors"], [525, "constructors"]], "Factories": [[523, "factories"]], "Factories for the regular type": [[523, "factories-for-the-regular-type"]], "Factories for the view type": [[523, "factories-for-the-view-type"]], "Domain & mesh": [[523, "domain-mesh"], [533, "domain-mesh"], [529, "domain-mesh"], [528, "domain-mesh"], [535, "domain-mesh"], [532, "domain-mesh"], [527, "domain-mesh"]], "Singularity": [[523, "singularity"], [529, "singularity"], [528, "singularity"], [535, "singularity"], [532, "singularity"]], "Interpolation method": [[523, "interpolation-method"], [532, "interpolation-method"]], "Data storage": [[523, "data-storage"], [533, "data-storage"], [529, "data-storage"], [528, "data-storage"], [535, "data-storage"], [532, "data-storage"], [527, "data-storage"]], "HDF5 storage convention": [[523, "hdf5-storage-convention"], [533, "hdf5-storage-convention"], [529, "hdf5-storage-convention"], [528, "hdf5-storage-convention"], [535, "hdf5-storage-convention"], [532, "hdf5-storage-convention"], [527, "hdf5-storage-convention"]], "Iterators": [[523, "iterators"]], "Basic notions": [[515, "basic-notions"]], "Types of Green\u2019s functions": [[515, "types-of-green-s-functions"]], "Matsubara Green\u2019s function in imaginary time ": [[515, "matsubara-green-s-function-in-imaginary-time-gfimtime"]], "Matsubara Green\u2019s function in imaginary frequencies ": [[515, "matsubara-green-s-function-in-imaginary-frequencies-gfimfreq"]], "Matsubara Green\u2019s function with Legendre polynomials ": [[515, "matsubara-green-s-function-with-legendre-polynomials-gflegendre"]], "Green function in real time ": [[515, "green-function-in-real-time-gfretime"]], "Retarded Green\u2019s function in real frequencies ": [[515, "retarded-green-s-function-in-real-frequencies-gfrefreq"]], "Fourier and Legendre transforms": [[515, "fourier-and-legendre-transforms"]], "High-frequency tail": [[515, "high-frequency-tail"]], "How does it work ?": [[514, "how-does-it-work"]], "Cofactors": [[514, "cofactors"]], "The Sherman-Morrison formula": [[514, "the-sherman-morrison-formula"]], "Addition of a line and a column, or more": [[514, "addition-of-a-line-and-a-column-or-more"]], "Removal of a line and a column, or more": [[514, "removal-of-a-line-and-a-column-or-more"]], "Change of a column": [[514, "change-of-a-column"]], "Change of a line": [[514, "change-of-a-line"]], "Change of a line and a column": [[514, "change-of-a-line-and-a-column"]], "Interaction with CLEF expressions": [[516, "interaction-with-clef-expressions"]], "Fourier: implementation notes": [[520, "fourier-implementation-notes"]], "The FFTW library": [[520, "the-fftw-library"]], "Implementation in real time/frequency using FFTW": [[520, "implementation-in-real-time-frequency-using-fftw"]], "Implementation in imaginary time/frequency using FFTW": [[520, "implementation-in-imaginary-time-frequency-using-fftw"]], "Special case of real functions in time for fermions": [[520, "special-case-of-real-functions-in-time-for-fermions"]], "Special case of real functions in time for bosons": [[520, "special-case-of-real-functions-in-time-for-bosons"]], "Usage of the tail in the TF": [[520, "usage-of-the-tail-in-the-tf"]], "Synopsis": [[519, "synopsis"], [533, "synopsis"], [529, "synopsis"], [528, "synopsis"], [535, "synopsis"], [513, "synopsis"], [527, "synopsis"]], "Fourier transforms": [[519, "fourier-transforms"], [1887, "Fourier-transforms"], [1883, "Fourier-transforms"]], "fourier": [[519, "fourier"], [0, "fourier"], [0, "id76"]], "Operator()": [[524, "operator"]], "(1) Evaluation": [[524, "evaluation"]], "(2) Building a view": [[524, "building-a-view"]], "(3) Interaction with clef expressions": [[524, "interaction-with-clef-expressions"]], "Concepts": [[517, "concepts"], [564, "concepts"]], "Domain": [[517, "domain"]], "PureFunctionOnDomain": [[517, "purefunctionondomain"]], "Mesh": [[517, "mesh"]], "MeshPoint": [[517, "meshpoint"]], "Operator []": [[537, "operator"]], "(1) Use the linear index of the mesh": [[537, "use-the-linear-index-of-the-mesh"]], "(2) Use the mesh_point of the mesh": [[537, "use-the-mesh-point-of-the-mesh"]], "(3) Find the closest mesh point from a domain point": [[537, "find-the-closest-mesh-point-from-a-domain-point"]], "(4) Interaction with clef expressions": [[537, "interaction-with-clef-expressions"]], "Constructors of gf": [[525, "constructors-of-gf"]], "Target reinterpretation": [[534, "target-reinterpretation"]], "Evaluation method": [[533, "evaluation-method"], [529, "evaluation-method"], [528, "evaluation-method"], [535, "evaluation-method"], [527, "evaluation-method"]], "[gf] Real frequencies": [[533, "gf-refreq-real-frequencies"]], "Data access": [[526, "data-access"]], "mesh": [[526, "mesh"], [0, "mesh"]], "data": [[526, "data"]], "singularity": [[526, "singularity"]], "symmetry": [[526, "symmetry"]], "Specializations": [[536, "specializations"]], "[gf] Legendre representation": [[529, "gf-legendre-legendre-representation"]], "Misc": [[530, "misc"]], "Statistic": [[530, "statistic"]], "[gf] Matsubara imaginary time": [[528, "gf-imtime-matsubara-imaginary-time"]], "[gf] Real time": [[535, "gf-retime-real-time"]], "Implementation notes": [[538, "implementation-notes"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.__init__": [[592, "triqs-atom-diag-atom-diag-atomdiagcomplex-init"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.c_matrix": [[594, "triqs-atom-diag-atom-diag-atomdiagcomplex-c-matrix"]], "Tuple tools": [[587, "tuple-tools"]], "apply": [[587, "apply"]], "for_each": [[587, "for-each"]], "for_each_zip": [[587, "for-each-zip"]], "map": [[587, "map"]], "fold": [[587, "fold"]], "reverse": [[587, "reverse"]], "called_on_tuple": [[587, "called-on-tuple"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.c_connection": [[593, "triqs-atom-diag-atom-diag-atomdiagcomplex-c-connection"]], "triqs.atom_diag.AtomDiag": [[589, "triqs-atom-diag-atomdiag"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_connection": [[595, "triqs-atom-diag-atom-diag-atomdiagcomplex-cdag-connection"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.flatten_subspace_index": [[598, "triqs-atom-diag-atom-diag-atomdiagcomplex-flatten-subspace-index"]], "triqs.atom_diag.atom_diag": [[590, "module-triqs.atom_diag.atom_diag"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.fock_states": [[599, "triqs-atom-diag-atom-diag-atomdiagcomplex-fock-states"]], "triqs.atom_diag.atom_diag.AtomDiagComplex": [[591, "triqs-atom-diag-atom-diag-atomdiagcomplex"]], "Python include warnings": [[586, "python-include-warnings"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.energies": [[597, "triqs-atom-diag-atom-diag-atomdiagcomplex-energies"]], "triqs.atom_diag": [[588, "module-triqs.atom_diag"]], "Exceptions": [[585, "exceptions"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.cdag_matrix": [[596, "triqs-atom-diag-atom-diag-atomdiagcomplex-cdag-matrix"]], "Applications based on TRIQS": [[4, "applications-based-on-triqs"]], "Table of Contents": [[4, "table-of-contents"]], "Impurity Solvers": [[4, "impurity-solvers"]], "Hybridization-expansion solver": [[4, "hybridization-expansion-solver"]], "Hubbard I solver": [[4, "hubbard-i-solver"]], "Hartree Fock solver": [[4, "hartree-fock-solver"]], "PYED - Exact diagonalization for finite quantum systems (external)": [[4, "pyed-exact-diagonalization-for-finite-quantum-systems-external"]], "Interface to the pomerol exact diagonalization solver (external)": [[4, "interface-to-the-pomerol-exact-diagonalization-solver-external"]], "Interface to the w2dynamics impurity solver": [[4, "interface-to-the-w2dynamics-impurity-solver"]], "Interface to the NRG Ljubljana impurity solver": [[4, "interface-to-the-nrg-ljubljana-impurity-solver"]], "Ab-Initio Tools": [[4, "ab-initio-tools"]], "DFT tools - Toolbox for ab initio calculations of correlated materials": [[4, "dft-tools-toolbox-for-ab-initio-calculations-of-correlated-materials"]], "solid_dmft - Python wrapper to perform DFT+DMFT calculations using TRIQS": [[4, "solid-dmft-python-wrapper-to-perform-dft-dmft-calculations-using-triqs"]], "Analytic Continuation": [[4, "analytic-continuation"]], "Maxent": [[4, "maxent"]], "Nevanlinna Analytic Continuation": [[4, "nevanlinna-analytic-continuation"]], "SOM - Stochastic Optimization Method for Analytic Continuation (external)": [[4, "som-stochastic-optimization-method-for-analytic-continuation-external"]], "Interface to Omegamaxent": [[4, "interface-to-omegamaxent"]], "Other Applications": [[4, "other-applications"]], "TPRF - The Two-Particle Response Function tool box": [[4, "tprf-the-two-particle-response-function-tool-box"]], "TRIQS Solver benchmarks": [[4, "triqs-solver-benchmarks"]], "App4Triqs Application Skeleton": [[4, "app4triqs-application-skeleton"]], "Cpp2Py": [[4, "cpp2py"]], "Documentation": [[9, "documentation"], [0, "documentation"]], "C++ API": [[9, "c-api"]], "Python API": [[9, "python-api"], [552, "python-api"]], "Contributing": [[6, "contributing"]], "Issues and feature requests": [[6, "issues-and-feature-requests"]], "Contributing to code and documentation": [[6, "contributing-to-code-and-documentation"]], "Github discussions": [[6, "github-discussions"]], "mpi": [[0, "id26"], [0, "id58"], [108, "mpi"]], "itertools": [[0, "itertools"], [11, "itertools"]], "Changelog": [[0, "changelog"]], "Version 3.3.1": [[0, "version-3-3-1"]], "General": [[0, "general"], [0, "id2"], [0, "id4"], [0, "id8"], [0, "id18"], [0, "id30"], [0, "id35"], [0, "id41"], [0, "id49"], [0, "id52"], [0, "id62"], [0, "id66"], [0, "id74"], [0, "id80"]], "doc": [[0, "doc"], [0, "id3"], [0, "id5"], [0, "id10"], [0, "id14"], [0, "id21"], [0, "id34"], [0, "id38"], [0, "id46"], [0, "id50"], [0, "id54"], [0, "id64"], [0, "id73"], [0, "id79"]], "Version 3.3.0": [[0, "version-3-3-0"]], "Gf": [[0, "gf"], [0, "id9"], [0, "id31"]], "atom_diag": [[0, "atom-diag"], [0, "id19"], [0, "id27"], [0, "id36"], [0, "id72"]], "cmake": [[0, "cmake"], [0, "id7"], [0, "id11"], [0, "id13"], [0, "id20"], [0, "id29"], [0, "id32"], [0, "id37"], [0, "id42"], [0, "id48"], [0, "id51"], [0, "id53"], [0, "id65"], [0, "id69"], [0, "id77"]], "jenkins": [[0, "jenkins"], [0, "id6"], [0, "id12"], [0, "id23"], [0, "id33"], [0, "id40"], [0, "id45"], [0, "id56"], [0, "id63"]], "Version 3.2.1": [[0, "version-3-2-1"]], "Version 3.2.0": [[0, "version-3-2-0"]], "Porting Script": [[0, "porting-script"], [0, "id17"]], "API Changes": [[0, "api-changes"]], "Meshes": [[0, "meshes"], [0, "id16"]], "DLR": [[0, "dlr"]], "Lattice": [[0, "lattice"]], "det_manip": [[0, "det-manip"], [0, "id71"]], "mc_generic": [[0, "mc-generic"], [0, "id25"], [0, "id57"]], "MPI": [[0, "mpi"]], "Fixes": [[0, "fixes"]], "Version 3.1.1": [[0, "version-3-1-1"]], "gf": [[0, "id15"], [0, "id22"], [0, "id28"], [0, "id39"], [0, "id44"], [0, "id47"], [0, "id55"], [0, "id67"], [0, "id81"]], "Version 3.1.0": [[0, "version-3-1-0"]], "Deprecate use of string indices for Green functions": [[0, "deprecate-use-of-string-indices-for-green-functions"]], "Change in gf_struct objects": [[0, "change-in-gf-struct-objects"]], "Green function meshes (C++)": [[0, "green-function-meshes-c"]], "Move multi-array into TRIQS/nda library": [[0, "move-multi-array-into-triqs-nda-library"]], "triqs::stat Rework": [[0, "triqs-stat-rework"]], "Bath discretization function": [[0, "bath-discretization-function"]], "Jenkins Sanitizer Checks": [[0, "jenkins-sanitizer-checks"]], "New website theme": [[0, "new-website-theme"]], "TightBinding and TBLattice improvements": [[0, "tightbinding-and-tblattice-improvements"]], "Require C++20 capable compiler": [[0, "require-c-20-capable-compiler"]], "cpp2py": [[0, "cpp2py"], [0, "id43"]], "lattice": [[0, "id24"], [0, "id59"], [0, "id70"]], "nda": [[0, "nda"]], "Version 3.0.2": [[0, "version-3-0-2"]], "Python 3.10": [[0, "python-3-10"]], "c++20": [[0, "c-20"]], "Version 3.0.1": [[0, "version-3-0-1"]], "Issue 819 - Atom Diag": [[0, "issue-819-atom-diag"]], "array": [[0, "array"], [0, "id68"]], "Version 3.0.0": [[0, "version-3-0-0"]], "Renamings": [[0, "renamings"]], "Dependency Management": [[0, "dependency-management"]], "h5py dependency": [[0, "h5py-dependency"]], "Removal of deprecated API": [[0, "removal-of-deprecated-api"]], "detmanip": [[0, "detmanip"]], "operators": [[0, "operators"], [0, "id60"]], "packaging": [[0, "packaging"], [0, "id61"]], "Version 2.2.3": [[0, "version-2-2-3"]], "Version 2.2.2": [[0, "version-2-2-2"]], "Version 2.2.1": [[0, "version-2-2-1"]], "Version 2.2.0": [[0, "version-2-2-0"]], "Make range and itertools functionality standalone": [[0, "make-range-and-itertools-functionality-standalone"]], "Make mpi functionality standalone and change namespace": [[0, "make-mpi-functionality-standalone-and-change-namespace"]], "Non-owning views (C++)": [[0, "non-owning-views-c"]], "Dynamic Analyzer Checks (ASAN, UBSAN)": [[0, "dynamic-analyzer-checks-asan-ubsan"]], "No longer install googletest": [[0, "no-longer-install-googletest"]], "app4triqs": [[0, "app4triqs"]], "arrays": [[0, "arrays"], [0, "id78"]], "h5": [[0, "h5"]], "pytriqs": [[0, "pytriqs"], [0, "id75"], [0, "id83"]], "Version 2.1.1": [[0, "version-2-1-1"]], "Version 2.1.0": [[0, "version-2-1-0"]], "clef": [[0, "clef"]], "BlockGf": [[0, "blockgf"]], "lapack": [[0, "lapack"]], "tail": [[0, "tail"], [0, "id82"]], "mc_tools": [[0, "mc-tools"]], "Version 2.0.0": [[0, "version-2-0-0"]], "fourier,tail": [[0, "fourier-tail"]], "hdf5": [[0, "hdf5"]], "gf/py": [[0, "gf-py"]], "py": [[0, "py"]], "travis": [[0, "travis"]], "pytriqs/gf": [[0, "pytriqs-gf"]], "test": [[0, "test"]], "tail,fourier": [[0, "tail-fourier"]], "Version 1.5": [[0, "version-1-5"]], "API changes": [[0, "id84"]], "Version 1.4": [[0, "version-1-4"]], "Installation": [[0, "installation"], [0, "id85"], [1850, "installation"]], "Many-body operators": [[0, "many-body-operators"], [0, "id86"]], "Green\u2019s functions": [[0, "greens-functions"], [542, "green-s-functions"], [1862, "green-s-functions"]], "Tests": [[0, "tests"], [0, "id88"]], "Version 1.3": [[0, "version-1-3"]], "Green functions": [[0, "green-functions"]], "Monte-Carlo tools": [[0, "monte-carlo-tools"]], "Determinant manipulation": [[0, "determinant-manipulation"]], "HDF5": [[0, "id87"], [551, "hdf5"]], "c++2py": [[0, "c-2py"]], "Miscellaneous": [[0, "miscellaneous"]], "Version 1.2": [[0, "version-1-2"]], "C++": [[0, "c"], [1866, "c"], [574, "c"]], "Python": [[0, "python"], [572, "python"], [1866, "python"], [574, "python"]], "Green Functions": [[0, "id89"]], "Version 1.1": [[0, "version-1-1"]], "Version 1.0": [[0, "version-1-0"]], "Python classes": [[0, "python-classes"]], "Archives": [[0, "archives"]], "About TRIQS": [[3, "about-triqs"]], "Authors & contributors": [[3, "authors-contributors"]], "Citation": [[3, "citation"]], "License": [[3, "license"]], "Disclaimer": [[3, "disclaimer"], [1854, "disclaimer"]], "Logo files": [[3, "logo-files"]], "Table of contents": [[5, "table-of-contents"]], "How to contribute to documentation?": [[7, "how-to-contribute-to-documentation"]], "Who should write documentation?": [[7, "who-should-write-documentation"]], "Building the documentation": [[7, "building-the-documentation"]], "Editing the documentation": [[7, "editing-the-documentation"]], "How to make a pull request?": [[8, "how-to-make-a-pull-request"]], "Setting up your fork repository": [[8, "setting-up-your-fork-repository"]], "Making your pull request": [[8, "making-your-pull-request"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.n_subspaces": [[607, "triqs-atom-diag-atom-diag-atomdiagcomplex-n-subspaces"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.gs_energy": [[605, "triqs-atom-diag-atom-diag-atomdiagcomplex-gs-energy"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.get_eigenvalue": [[602, "triqs-atom-diag-atom-diag-atomdiagcomplex-get-eigenvalue"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_subspace_index": [[611, "triqs-atom-diag-atom-diag-atomdiagcomplex-vacuum-subspace-index"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.unitary_matrices": [[609, "triqs-atom-diag-atom-diag-atomdiagcomplex-unitary-matrices"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.full_hilbert_space_dim": [[601, "triqs-atom-diag-atom-diag-atomdiagcomplex-full-hilbert-space-dim"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dims": [[604, "triqs-atom-diag-atom-diag-atomdiagcomplex-get-subspace-dims"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.h_atomic": [[606, "triqs-atom-diag-atom-diag-atomdiagcomplex-h-atomic"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.quantum_numbers": [[608, "triqs-atom-diag-atom-diag-atomdiagcomplex-quantum-numbers"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.vacuum_state": [[610, "triqs-atom-diag-atom-diag-atomdiagcomplex-vacuum-state"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.fops": [[600, "triqs-atom-diag-atom-diag-atomdiagcomplex-fops"]], "triqs.atom_diag.atom_diag.AtomDiagReal": [[612, "triqs-atom-diag-atom-diag-atomdiagreal"]], "triqs.atom_diag.atom_diag.AtomDiagComplex.get_subspace_dim": [[603, "triqs-atom-diag-atom-diag-atomdiagcomplex-get-subspace-dim"]], "triqs.atom_diag.atom_diag.AtomDiagReal.c_connection": [[614, "triqs-atom-diag-atom-diag-atomdiagreal-c-connection"]], "triqs.atom_diag.atom_diag.AtomDiagReal.__init__": [[613, "triqs-atom-diag-atom-diag-atomdiagreal-init"]], "triqs.atom_diag.atom_diag.AtomDiagReal.c_matrix": [[615, "triqs-atom-diag-atom-diag-atomdiagreal-c-matrix"]], "triqs.atom_diag.atom_diag.AtomDiagReal.fops": [[621, "triqs-atom-diag-atom-diag-atomdiagreal-fops"]], "triqs.atom_diag.atom_diag.AtomDiagReal.energies": [[618, "triqs-atom-diag-atom-diag-atomdiagreal-energies"]], "triqs.atom_diag.atom_diag.AtomDiagReal.cdag_connection": [[616, "triqs-atom-diag-atom-diag-atomdiagreal-cdag-connection"]], "triqs.atom_diag.atom_diag.AtomDiagReal.fock_states": [[620, "triqs-atom-diag-atom-diag-atomdiagreal-fock-states"]], "triqs.atom_diag.atom_diag.AtomDiagReal.flatten_subspace_index": [[619, "triqs-atom-diag-atom-diag-atomdiagreal-flatten-subspace-index"]], "triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dim": [[624, "triqs-atom-diag-atom-diag-atomdiagreal-get-subspace-dim"]], "triqs.atom_diag.atom_diag.AtomDiagReal.get_subspace_dims": [[625, "triqs-atom-diag-atom-diag-atomdiagreal-get-subspace-dims"]], "triqs.atom_diag.atom_diag.AtomDiagReal.n_subspaces": [[628, "triqs-atom-diag-atom-diag-atomdiagreal-n-subspaces"]], "triqs.atom_diag.atom_diag.AtomDiagReal.h_atomic": [[627, "triqs-atom-diag-atom-diag-atomdiagreal-h-atomic"]], "triqs.atom_diag.atom_diag.AtomDiagReal.quantum_numbers": [[629, "triqs-atom-diag-atom-diag-atomdiagreal-quantum-numbers"]], "triqs.atom_diag.atom_diag.AtomDiagReal.full_hilbert_space_dim": [[622, "triqs-atom-diag-atom-diag-atomdiagreal-full-hilbert-space-dim"]], "triqs.atom_diag.atom_diag.AtomDiagReal.cdag_matrix": [[617, "triqs-atom-diag-atom-diag-atomdiagreal-cdag-matrix"]], "triqs.atom_diag.atom_diag.AtomDiagReal.get_eigenvalue": [[623, "triqs-atom-diag-atom-diag-atomdiagreal-get-eigenvalue"]], "triqs.atom_diag.atom_diag.AtomDiagReal.gs_energy": [[626, "triqs-atom-diag-atom-diag-atomdiagreal-gs-energy"]], "triqs.atom_diag.atom_diag.quantum_number_eigenvalues_checked": [[641, "triqs-atom-diag-atom-diag-quantum-number-eigenvalues-checked"]], "triqs.atom_diag.atom_diag.atomic_g_iw": [[635, "triqs-atom-diag-atom-diag-atomic-g-iw"]], "triqs.atom_diag.atom_diag.quantum_number_eigenvalues": [[640, "triqs-atom-diag-atom-diag-quantum-number-eigenvalues"]], "triqs.atom_diag.atom_diag.partition_function": [[639, "triqs-atom-diag-atom-diag-partition-function"]], "triqs.atom_diag.atom_diag.act": [[633, "triqs-atom-diag-atom-diag-act"]], "triqs.atom_diag.atom_diag.AtomDiagReal.unitary_matrices": [[630, "triqs-atom-diag-atom-diag-atomdiagreal-unitary-matrices"]], "triqs.atom_diag.atom_diag.trace_rho_op": [[642, "triqs-atom-diag-atom-diag-trace-rho-op"]], "triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_subspace_index": [[632, "triqs-atom-diag-atom-diag-atomdiagreal-vacuum-subspace-index"]], "triqs.atom_diag.atom_diag.AtomDiagReal.vacuum_state": [[631, "triqs-atom-diag-atom-diag-atomdiagreal-vacuum-state"]], "triqs.atom_diag.atom_diag.atomic_g_l": [[636, "triqs-atom-diag-atom-diag-atomic-g-l"]], "triqs.dos": [[643, "module-triqs.dos"]], "triqs.atom_diag.atom_diag.atomic_density_matrix": [[634, "triqs-atom-diag-atom-diag-atomic-density-matrix"]], "triqs.atom_diag.atom_diag.atomic_g_tau": [[637, "triqs-atom-diag-atom-diag-atomic-g-tau"]], "triqs.dos.dos": [[644, "module-triqs.dos.dos"]], "triqs.atom_diag.atom_diag.atomic_g_w": [[638, "triqs-atom-diag-atom-diag-atomic-g-w"]], "triqs.dos.dos.DOSFromFunction.__init__": [[650, "triqs-dos-dos-dosfromfunction-init"]], "triqs.dos.dos.DOSFromFunction.density": [[652, "triqs-dos-dos-dosfromfunction-density"]], "triqs.fit.fit": [[658, "module-triqs.fit.fit"]], "triqs.dos.dos.DOS.copy": [[647, "triqs-dos-dos-dos-copy"]], "triqs.dos.hilbert_transform.HilbertTransform.__init__": [[656, "triqs-dos-hilbert-transform-hilberttransform-init"]], "triqs.fit": [[657, "module-triqs.fit"]], "triqs.dos.dos.DOS": [[645, "triqs-dos-dos-dos"]], "triqs.dos.dos.DOSFromFunction": [[649, "triqs-dos-dos-dosfromfunction"]], "triqs.dos.hilbert_transform.HilbertTransform": [[655, "triqs-dos-hilbert-transform-hilberttransform"]], "triqs.dos.dos.DOS.density": [[648, "triqs-dos-dos-dos-density"]], "triqs.dos.dos.dos_from_file": [[653, "triqs-dos-dos-dos-from-file"]], "triqs.dos.dos.DOS.__init__": [[646, "triqs-dos-dos-dos-init"]], "triqs.fit.fit.Fit": [[659, "triqs-fit-fit-fit"]], "triqs.dos.dos.DOSFromFunction.copy": [[651, "triqs-dos-dos-dosfromfunction-copy"]], "triqs.dos.hilbert_transform": [[654, "module-triqs.dos.hilbert_transform"]], "triqs.gf": [[661, "module-triqs.gf"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy_from": [[668, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-copy-from"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.data": [[669, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-data"]], "triqs.gf.backwd_compat.gf_imfreq": [[663, "module-triqs.gf.backwd_compat.gf_imfreq"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.conjugate": [[666, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-conjugate"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.copy": [[667, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-copy"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail": [[674, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-fit-tail"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail_on_window": [[673, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-fit-hermitian-tail-on-window"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.enforce_discontinuity": [[671, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq": [[664, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq"]], "Parameters (KEYWORD argument ONLY)": [[664, "parameters-keyword-argument-only"], [703, "parameters-keyword-argument-only"], [742, "parameters-keyword-argument-only"], [781, "parameters-keyword-argument-only"], [820, "parameters-keyword-argument-only"], [548, "parameters-keyword-argument-only"], [546, "parameters-keyword-argument-only"], [545, "parameters-keyword-argument-only"], [544, "parameters-keyword-argument-only"], [547, "parameters-keyword-argument-only"]], "triqs.fit.fit.Fit.__init__": [[660, "triqs-fit-fit-fit-init"]], "triqs.gf.backwd_compat": [[662, "module-triqs.gf.backwd_compat"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.density": [[670, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-density"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.__init__": [[665, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-init"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_hermitian_tail": [[672, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-fit-hermitian-tail"]], "Random number generator": [[569, "random-number-generator"]], "Generic use": [[569, "generic-use"]], "Getting a list of random number generators": [[569, "getting-a-list-of-random-number-generators"]], "Accessing the random number generator from the Monte Carlo class": [[569, "accessing-the-random-number-generator-from-the-monte-carlo-class"]], "[triqs/hilbert_space] Many-body states and Hilbert spaces": [[555, "triqs-hilbert-space-many-body-states-and-hilbert-spaces"]], "Example of use": [[555, "example-of-use"]], "Sums over Brillouin zone": [[561, "sums-over-brillouin-zone"]], "Free Fermions with tight binding hopping": [[562, "free-fermions-with-tight-binding-hopping"]], "Hilbert Transform": [[560, "hilbert-transform"]], "Example: the Ising chain in a magnetic field": [[567, "example-the-ising-chain-in-a-magnetic-field"]], "The configuration": [[567, "the-configuration"]], "The move": [[567, "the-move"], [570, "the-move"]], "Measure": [[567, "measure"]], "Main program": [[567, "main-program"]], "Bravais Lattice": [[557, "bravais-lattice"]], "Reference documentation/manual": [[558, "reference-documentation-manual"], [498, "reference-documentation-manual"]], "[triqs/lattice] Lattice tools": [[558, "triqs-lattice-lattice-tools"]], "Introductory example": [[558, "introductory-example"]], "Density of state and related tools": [[559, "density-of-state-and-related-tools"]], "The Density of state: DOS": [[559, "the-density-of-state-dos"]], "Reading a DOS from a text file": [[559, "reading-a-dos-from-a-text-file"]], "Computing a DOS from a tight_binding": [[559, "computing-a-dos-from-a-tight-binding"]], "The DOS computed from a function": [[559, "the-dos-computed-from-a-function"]], "The BravaisLattice and TightBinding classes: definitions and example": [[563, "the-bravaislattice-and-tightbinding-classes-definitions-and-example"]], "BravaisLattice": [[563, "bravaislattice"]], "TightBinding": [[563, "tightbinding"]], "energies_on_bz_path": [[563, "energies-on-bz-path"]], "Introduction & Motivations": [[564, "introduction-motivations"]], "The Move concept": [[564, "the-move-concept"]], "The Measure concept": [[564, "the-measure-concept"]], "StateVector Concept": [[556, "statevector-concept"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail_in_fit_window": [[688, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.replace_by_tail": [[687, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-replace-by-tail"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.invert": [[680, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-invert"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_hermitian": [[681, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rank": [[684, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-rank"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.imag": [[677, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-imag"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.rebinning_tau": [[686, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-rebinning-tau"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_fourier": [[689, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-fourier"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.is_gf_real_in_tau": [[682, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.inverse": [[679, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-inverse"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.fit_tail_on_window": [[675, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.indices": [[678, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-indices"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.mesh": [[683, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-mesh"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.from_L_G_R": [[676, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-from-l-g-r"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.real": [[685, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-real"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.__init__": [[704, "triqs-gf-backwd-compat-gf-imtime-gfimtime-init"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_pade": [[693, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-pade"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.x_data_view": [[700, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-x-data-view"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_shape": [[696, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-target-shape"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.total_density": [[698, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-total-density"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.zero": [[701, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-zero"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imtime": [[691, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-imtime"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime": [[703, "triqs-gf-backwd-compat-gf-imtime-gfimtime"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.tau_L2_norm": [[697, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_imfreq": [[690, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_imtime": [[702, "module-triqs.gf.backwd_compat.gf_imtime"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.transpose": [[699, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-transpose"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.set_from_legendre": [[692, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-set-from-legendre"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_indices": [[694, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-target-indices"]], "triqs.gf.backwd_compat.gf_imfreq.GfImFreq.target_rank": [[695, "triqs-gf-backwd-compat-gf-imfreq-gfimfreq-target-rank"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.conjugate": [[705, "triqs-gf-backwd-compat-gf-imtime-gfimtime-conjugate"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.copy_from": [[707, "triqs-gf-backwd-compat-gf-imtime-gfimtime-copy-from"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.density": [[709, "triqs-gf-backwd-compat-gf-imtime-gfimtime-density"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail": [[713, "triqs-gf-backwd-compat-gf-imtime-gfimtime-fit-tail"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.inverse": [[718, "triqs-gf-backwd-compat-gf-imtime-gfimtime-inverse"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.indices": [[717, "triqs-gf-backwd-compat-gf-imtime-gfimtime-indices"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.from_L_G_R": [[715, "triqs-gf-backwd-compat-gf-imtime-gfimtime-from-l-g-r"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.imag": [[716, "triqs-gf-backwd-compat-gf-imtime-gfimtime-imag"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.invert": [[719, "triqs-gf-backwd-compat-gf-imtime-gfimtime-invert"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.copy": [[706, "triqs-gf-backwd-compat-gf-imtime-gfimtime-copy"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail": [[711, "triqs-gf-backwd-compat-gf-imtime-gfimtime-fit-hermitian-tail"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.data": [[708, "triqs-gf-backwd-compat-gf-imtime-gfimtime-data"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.enforce_discontinuity": [[710, "triqs-gf-backwd-compat-gf-imtime-gfimtime-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_tail_on_window": [[714, "triqs-gf-backwd-compat-gf-imtime-gfimtime-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.fit_hermitian_tail_on_window": [[712, "triqs-gf-backwd-compat-gf-imtime-gfimtime-fit-hermitian-tail-on-window"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_real_in_tau": [[721, "triqs-gf-backwd-compat-gf-imtime-gfimtime-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.is_gf_hermitian": [[720, "triqs-gf-backwd-compat-gf-imtime-gfimtime-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_pade": [[732, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-pade"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail": [[726, "triqs-gf-backwd-compat-gf-imtime-gfimtime-replace-by-tail"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.replace_by_tail_in_fit_window": [[727, "triqs-gf-backwd-compat-gf-imtime-gfimtime-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_rank": [[734, "triqs-gf-backwd-compat-gf-imtime-gfimtime-target-rank"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.rank": [[723, "triqs-gf-backwd-compat-gf-imtime-gfimtime-rank"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_indices": [[733, "triqs-gf-backwd-compat-gf-imtime-gfimtime-target-indices"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_fourier": [[728, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-fourier"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.real": [[724, "triqs-gf-backwd-compat-gf-imtime-gfimtime-real"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.mesh": [[722, "triqs-gf-backwd-compat-gf-imtime-gfimtime-mesh"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_legendre": [[731, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-legendre"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imtime": [[730, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-imtime"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.set_from_imfreq": [[729, "triqs-gf-backwd-compat-gf-imtime-gfimtime-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.rebinning_tau": [[725, "triqs-gf-backwd-compat-gf-imtime-gfimtime-rebinning-tau"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.conjugate": [[744, "triqs-gf-backwd-compat-gf-legendre-gflegendre-conjugate"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.transpose": [[738, "triqs-gf-backwd-compat-gf-imtime-gfimtime-transpose"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.__init__": [[743, "triqs-gf-backwd-compat-gf-legendre-gflegendre-init"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre": [[742, "triqs-gf-backwd-compat-gf-legendre-gflegendre"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.x_data_view": [[739, "triqs-gf-backwd-compat-gf-imtime-gfimtime-x-data-view"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.tau_L2_norm": [[736, "triqs-gf-backwd-compat-gf-imtime-gfimtime-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.density": [[748, "triqs-gf-backwd-compat-gf-legendre-gflegendre-density"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.enforce_discontinuity": [[749, "triqs-gf-backwd-compat-gf-legendre-gflegendre-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.target_shape": [[735, "triqs-gf-backwd-compat-gf-imtime-gfimtime-target-shape"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.total_density": [[737, "triqs-gf-backwd-compat-gf-imtime-gfimtime-total-density"]], "triqs.gf.backwd_compat.gf_imtime.GfImTime.zero": [[740, "triqs-gf-backwd-compat-gf-imtime-gfimtime-zero"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy": [[745, "triqs-gf-backwd-compat-gf-legendre-gflegendre-copy"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.copy_from": [[746, "triqs-gf-backwd-compat-gf-legendre-gflegendre-copy-from"]], "triqs.gf.backwd_compat.gf_legendre": [[741, "module-triqs.gf.backwd_compat.gf_legendre"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.data": [[747, "triqs-gf-backwd-compat-gf-legendre-gflegendre-data"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.rebinning_tau": [[764, "triqs-gf-backwd-compat-gf-legendre-gflegendre-rebinning-tau"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail": [[752, "triqs-gf-backwd-compat-gf-legendre-gflegendre-fit-tail"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.indices": [[756, "triqs-gf-backwd-compat-gf-legendre-gflegendre-indices"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_tail_on_window": [[753, "triqs-gf-backwd-compat-gf-legendre-gflegendre-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.real": [[763, "triqs-gf-backwd-compat-gf-legendre-gflegendre-real"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail_on_window": [[751, "triqs-gf-backwd-compat-gf-legendre-gflegendre-fit-hermitian-tail-on-window"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.fit_hermitian_tail": [[750, "triqs-gf-backwd-compat-gf-legendre-gflegendre-fit-hermitian-tail"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.inverse": [[757, "triqs-gf-backwd-compat-gf-legendre-gflegendre-inverse"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_hermitian": [[759, "triqs-gf-backwd-compat-gf-legendre-gflegendre-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.invert": [[758, "triqs-gf-backwd-compat-gf-legendre-gflegendre-invert"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.mesh": [[761, "triqs-gf-backwd-compat-gf-legendre-gflegendre-mesh"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.rank": [[762, "triqs-gf-backwd-compat-gf-legendre-gflegendre-rank"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.from_L_G_R": [[754, "triqs-gf-backwd-compat-gf-legendre-gflegendre-from-l-g-r"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.imag": [[755, "triqs-gf-backwd-compat-gf-legendre-gflegendre-imag"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.is_gf_real_in_tau": [[760, "triqs-gf-backwd-compat-gf-legendre-gflegendre-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.zero": [[779, "triqs-gf-backwd-compat-gf-legendre-gflegendre-zero"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.transpose": [[777, "triqs-gf-backwd-compat-gf-legendre-gflegendre-transpose"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_shape": [[774, "triqs-gf-backwd-compat-gf-legendre-gflegendre-target-shape"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.total_density": [[776, "triqs-gf-backwd-compat-gf-legendre-gflegendre-total-density"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imfreq": [[768, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_legendre": [[770, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-legendre"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.tau_L2_norm": [[775, "triqs-gf-backwd-compat-gf-legendre-gflegendre-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_fourier": [[767, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-fourier"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_pade": [[771, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-pade"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail_in_fit_window": [[766, "triqs-gf-backwd-compat-gf-legendre-gflegendre-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.x_data_view": [[778, "triqs-gf-backwd-compat-gf-legendre-gflegendre-x-data-view"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_indices": [[772, "triqs-gf-backwd-compat-gf-legendre-gflegendre-target-indices"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.set_from_imtime": [[769, "triqs-gf-backwd-compat-gf-legendre-gflegendre-set-from-imtime"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.replace_by_tail": [[765, "triqs-gf-backwd-compat-gf-legendre-gflegendre-replace-by-tail"]], "triqs.gf.backwd_compat.gf_legendre.GfLegendre.target_rank": [[773, "triqs-gf-backwd-compat-gf-legendre-gflegendre-target-rank"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail_on_window": [[790, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-fit-hermitian-tail-on-window"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.conjugate": [[783, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-conjugate"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.from_L_G_R": [[793, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-from-l-g-r"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail": [[791, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-fit-tail"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.__init__": [[782, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-init"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy": [[784, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-copy"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.copy_from": [[785, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-copy-from"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.data": [[786, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-data"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq": [[781, "triqs-gf-backwd-compat-gf-refreq-gfrefreq"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_tail_on_window": [[792, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.density": [[787, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-density"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.imag": [[794, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-imag"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.enforce_discontinuity": [[788, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.fit_hermitian_tail": [[789, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-fit-hermitian-tail"]], "triqs.gf.backwd_compat.gf_refreq": [[780, "module-triqs.gf.backwd_compat.gf_refreq"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imfreq": [[807, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.real": [[802, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-real"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail": [[804, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-replace-by-tail"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.indices": [[795, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-indices"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_real_in_tau": [[799, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_fourier": [[806, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-fourier"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_imtime": [[808, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-imtime"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.replace_by_tail_in_fit_window": [[805, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.rebinning_tau": [[803, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-rebinning-tau"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_legendre": [[809, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-legendre"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.mesh": [[800, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-mesh"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.is_gf_hermitian": [[798, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.inverse": [[796, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-inverse"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.invert": [[797, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-invert"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.rank": [[801, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-rank"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_rank": [[812, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-target-rank"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.conjugate": [[822, "triqs-gf-backwd-compat-gf-retime-gfretime-conjugate"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.set_from_pade": [[810, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-set-from-pade"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_shape": [[813, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-target-shape"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.x_data_view": [[817, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-x-data-view"]], "triqs.gf.backwd_compat.gf_retime.GfReTime": [[820, "triqs-gf-backwd-compat-gf-retime-gfretime"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.copy_from": [[824, "triqs-gf-backwd-compat-gf-retime-gfretime-copy-from"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.tau_L2_norm": [[814, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.total_density": [[815, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-total-density"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.target_indices": [[811, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-target-indices"]], "triqs.gf.backwd_compat.gf_retime": [[819, "module-triqs.gf.backwd_compat.gf_retime"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.transpose": [[816, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-transpose"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.__init__": [[821, "triqs-gf-backwd-compat-gf-retime-gfretime-init"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.copy": [[823, "triqs-gf-backwd-compat-gf-retime-gfretime-copy"]], "triqs.gf.backwd_compat.gf_refreq.GfReFreq.zero": [[818, "triqs-gf-backwd-compat-gf-refreq-gfrefreq-zero"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail": [[830, "triqs-gf-backwd-compat-gf-retime-gfretime-fit-tail"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail_on_window": [[829, "triqs-gf-backwd-compat-gf-retime-gfretime-fit-hermitian-tail-on-window"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_hermitian_tail": [[828, "triqs-gf-backwd-compat-gf-retime-gfretime-fit-hermitian-tail"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.data": [[825, "triqs-gf-backwd-compat-gf-retime-gfretime-data"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.density": [[826, "triqs-gf-backwd-compat-gf-retime-gfretime-density"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.fit_tail_on_window": [[831, "triqs-gf-backwd-compat-gf-retime-gfretime-fit-tail-on-window"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.from_L_G_R": [[832, "triqs-gf-backwd-compat-gf-retime-gfretime-from-l-g-r"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.imag": [[833, "triqs-gf-backwd-compat-gf-retime-gfretime-imag"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.indices": [[834, "triqs-gf-backwd-compat-gf-retime-gfretime-indices"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.invert": [[836, "triqs-gf-backwd-compat-gf-retime-gfretime-invert"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.mesh": [[839, "triqs-gf-backwd-compat-gf-retime-gfretime-mesh"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_real_in_tau": [[838, "triqs-gf-backwd-compat-gf-retime-gfretime-is-gf-real-in-tau"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.inverse": [[835, "triqs-gf-backwd-compat-gf-retime-gfretime-inverse"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.enforce_discontinuity": [[827, "triqs-gf-backwd-compat-gf-retime-gfretime-enforce-discontinuity"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.is_gf_hermitian": [[837, "triqs-gf-backwd-compat-gf-retime-gfretime-is-gf-hermitian"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.real": [[841, "triqs-gf-backwd-compat-gf-retime-gfretime-real"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imfreq": [[846, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-imfreq"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.rebinning_tau": [[842, "triqs-gf-backwd-compat-gf-retime-gfretime-rebinning-tau"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.target_shape": [[852, "triqs-gf-backwd-compat-gf-retime-gfretime-target-shape"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_pade": [[849, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-pade"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_fourier": [[845, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-fourier"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_imtime": [[847, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-imtime"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail_in_fit_window": [[844, "triqs-gf-backwd-compat-gf-retime-gfretime-replace-by-tail-in-fit-window"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.tau_L2_norm": [[853, "triqs-gf-backwd-compat-gf-retime-gfretime-tau-l2-norm"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.set_from_legendre": [[848, "triqs-gf-backwd-compat-gf-retime-gfretime-set-from-legendre"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.rank": [[840, "triqs-gf-backwd-compat-gf-retime-gfretime-rank"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.total_density": [[854, "triqs-gf-backwd-compat-gf-retime-gfretime-total-density"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.target_rank": [[851, "triqs-gf-backwd-compat-gf-retime-gfretime-target-rank"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.replace_by_tail": [[843, "triqs-gf-backwd-compat-gf-retime-gfretime-replace-by-tail"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.target_indices": [[850, "triqs-gf-backwd-compat-gf-retime-gfretime-target-indices"]], "triqs.gf.block2_gf.Block2Gf.n_blocks": [[869, "triqs-gf-block2-gf-block2gf-n-blocks"]], "triqs.gf.block2_gf.Block2Gf.copy_selected_blocks": [[864, "triqs-gf-block2-gf-block2gf-copy-selected-blocks"]], "triqs.gf.block2_gf.Block2Gf": [[859, "triqs-gf-block2-gf-block2gf"]], "triqs.gf.block2_gf.Block2Gf.copy_from": [[863, "triqs-gf-block2-gf-block2gf-copy-from"]], "triqs.gf.block2_gf.Block2Gf.indices2": [[868, "triqs-gf-block2-gf-block2gf-indices2"]], "triqs.gf.block2_gf.Block2Gf.imag": [[865, "triqs-gf-block2-gf-block2gf-imag"]], "triqs.gf.block2_gf": [[858, "module-triqs.gf.block2_gf"]], "triqs.gf.block2_gf.Block2Gf.__init__": [[860, "triqs-gf-block2-gf-block2gf-init"]], "triqs.gf.block2_gf.Block2Gf.all_indices": [[861, "triqs-gf-block2-gf-block2gf-all-indices"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.transpose": [[855, "triqs-gf-backwd-compat-gf-retime-gfretime-transpose"]], "triqs.gf.block2_gf.Block2Gf.copy": [[862, "triqs-gf-block2-gf-block2gf-copy"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.x_data_view": [[856, "triqs-gf-backwd-compat-gf-retime-gfretime-x-data-view"]], "triqs.gf.backwd_compat.gf_retime.GfReTime.zero": [[857, "triqs-gf-backwd-compat-gf-retime-gfretime-zero"]], "triqs.gf.block2_gf.Block2Gf.indices": [[866, "triqs-gf-block2-gf-block2gf-indices"]], "triqs.gf.block2_gf.Block2Gf.indices1": [[867, "triqs-gf-block2-gf-block2gf-indices1"]], "triqs.gf.block_gf.BlockGf.indices": [[884, "triqs-gf-block-gf-blockgf-indices"]], "triqs.gf.block2_gf.Block2Gf.zero": [[872, "triqs-gf-block2-gf-block2gf-zero"]], "triqs.gf.block_gf.BlockGf.copy_selected_blocks": [[881, "triqs-gf-block-gf-blockgf-copy-selected-blocks"]], "triqs.gf.block2_gf.Block2Gf.real": [[870, "triqs-gf-block2-gf-block2gf-real"]], "triqs.gf.block_gf.BlockGf.__init__": [[875, "triqs-gf-block-gf-blockgf-init"]], "triqs.gf.block_gf": [[873, "module-triqs.gf.block_gf"]], "triqs.gf.block_gf.BlockGf.conjugate": [[878, "triqs-gf-block-gf-blockgf-conjugate"]], "triqs.gf.block2_gf.Block2Gf.view_selected_blocks": [[871, "triqs-gf-block2-gf-block2gf-view-selected-blocks"]], "triqs.gf.block_gf.BlockGf.density": [[882, "triqs-gf-block-gf-blockgf-density"]], "triqs.gf.block_gf.BlockGf": [[874, "triqs-gf-block-gf-blockgf"]], "triqs.gf.block_gf.BlockGf.beta": [[877, "triqs-gf-block-gf-blockgf-beta"]], "triqs.gf.block_gf.BlockGf.imag": [[883, "triqs-gf-block-gf-blockgf-imag"]], "triqs.gf.block_gf.BlockGf.all_indices": [[876, "triqs-gf-block-gf-blockgf-all-indices"]], "triqs.gf.block_gf.BlockGf.copy": [[879, "triqs-gf-block-gf-blockgf-copy"]], "triqs.gf.block_gf.BlockGf.copy_from": [[880, "triqs-gf-block-gf-blockgf-copy-from"]], "triqs.gf.block_gf.call_factory_from_dict": [[896, "triqs-gf-block-gf-call-factory-from-dict"]], "triqs.gf.block_gf.BlockGf.view_selected_blocks": [[894, "triqs-gf-block-gf-blockgf-view-selected-blocks"]], "triqs.gf.block_gf.BlockGf.transpose": [[893, "triqs-gf-block-gf-blockgf-transpose"]], "triqs.gf.block_gf.BlockGf.real": [[890, "triqs-gf-block-gf-blockgf-real"]], "triqs.gf.descriptor_base.Base": [[899, "triqs-gf-descriptor-base-base"]], "triqs.gf.block_gf.BlockGf.inverse": [[885, "triqs-gf-block-gf-blockgf-inverse"]], "triqs.gf.block_gf.BlockGf.save": [[891, "triqs-gf-block-gf-blockgf-save"]], "triqs.gf.block_gf.BlockGf.load": [[887, "triqs-gf-block-gf-blockgf-load"]], "triqs.gf.block_gf.BlockGf.total_density": [[892, "triqs-gf-block-gf-blockgf-total-density"]], "triqs.gf.block_gf.BlockGf.invert": [[886, "triqs-gf-block-gf-blockgf-invert"]], "triqs.gf.descriptor_base": [[898, "module-triqs.gf.descriptor_base"]], "triqs.gf.block_gf.BlockGf.n_blocks": [[889, "triqs-gf-block-gf-blockgf-n-blocks"]], "triqs.gf.block_gf.BlockGf.mesh": [[888, "triqs-gf-block-gf-blockgf-mesh"]], "triqs.gf.block_gf.fix_gf_struct_type": [[897, "triqs-gf-block-gf-fix-gf-struct-type"]], "triqs.gf.block_gf.BlockGf.zero": [[895, "triqs-gf-block-gf-blockgf-zero"]], "Descriptors": [[550, "descriptors"]], "Reference": [[550, "reference"], [548, "reference"], [546, "reference"], [545, "reference"], [544, "reference"], [547, "reference"], [551, "reference"], [579, "reference"]], "Tools for GFs": [[553, "tools-for-gfs"]], "HDF5 data scheme": [[548, "hdf5-data-scheme"], [546, "hdf5-data-scheme"], [545, "hdf5-data-scheme"], [544, "hdf5-data-scheme"], [547, "hdf5-data-scheme"], [498, "hdf5-data-scheme"]], "[GfReTime] Retarded Green\u2019s function in real time": [[548, "gfretime-retarded-green-s-function-in-real-time"]], "[GfLegendre] Matsubara Green\u2019s function with Legendre polynomials": [[546, "gflegendre-matsubara-green-s-function-with-legendre-polynomials"]], "[GfImTime] Matsubara Green\u2019s function in imaginary time": [[545, "gfimtime-matsubara-green-s-function-in-imaginary-time"]], "[GfImFreq] Matsubara Green\u2019s function in imaginary frequencies": [[544, "gfimfreq-matsubara-green-s-function-in-imaginary-frequencies"]], "[GfReFreq] Retarded Green\u2019s function in real frequencies": [[547, "gfrefreq-retarded-green-s-function-in-real-frequencies"]], "High-Frequency moments of the Green\u2019s function": [[552, "high-frequency-moments-of-the-green-s-function"], [541, "high-frequency-moments-of-the-green-s-function"]], "Fourier and Legendre to Matsubara transforms": [[554, "fourier-and-legendre-to-matsubara-transforms"]], "Time to frequency": [[554, "time-to-frequency"]], "Legendre to Matsubara": [[554, "legendre-to-matsubara"]], "Operations": [[551, "operations"], [192, "operations"], [543, "operations"]], "BlockGf: The complete Green\u2019s function": [[551, "blockgf-the-complete-green-s-function"]], "A little example": [[551, "a-little-example"]], "Block access": [[551, "block-access"]], "Iterator": [[551, "iterator"]], "View or copies?": [[551, "view-or-copies"]], "shelve / pickle": [[551, "shelve-pickle"], [543, "shelve-pickle"]], "API": [[541, "api"]], "Adjusting the fit parameters (Advanced)": [[541, "adjusting-the-fit-parameters-advanced"]], "Adjusting the fit window (Advanced)": [[541, "adjusting-the-fit-window-advanced"]], "U matrix construction": [[573, "u-matrix-construction"]], "Helper functions": [[577, "helper-functions"]], "Plotting TRIQS objects": [[580, "plotting-triqs-objects"]], "A thin layer above matplotlib": [[580, "a-thin-layer-above-matplotlib"]], "Multiple panels figures": [[580, "multiple-panels-figures"]], "Plot protocol [Advanced]": [[580, "plot-protocol-advanced"]], "Example with options": [[580, "example-with-options"]], "Reproducibility, provenance": [[581, "reproducibility-provenance"]], "TRIQS code version": [[581, "triqs-code-version"]], "Saving the script in the data archive": [[581, "saving-the-script-in-the-data-archive"]], "From the data to the figures": [[581, "from-the-data-to-the-figures"]], "Member types": [[572, "member-types"], [64, "member-types"], [20, "member-types"], [28, "member-types"], [35, "member-types"], [49, "member-types"], [77, "member-types"], [90, "member-types"], [101, "member-types"], [128, "member-types"], [154, "member-types"], [192, "member-types"], [242, "member-types"], [259, "member-types"], [271, "member-types"], [283, "member-types"], [325, "member-types"], [357, "member-types"], [366, "member-types"], [378, "member-types"], [540, "member-types"], [521, "member-types"], [539, "member-types"]], "Free functions": [[572, "free-functions"], [527, "free-functions"]], "Second-quantization operators": [[572, "second-quantization-operators"]], "Construction/factories": [[572, "construction-factories"]], "Overloaded operations": [[572, "overloaded-operations"]], "Methods": [[572, "methods"]], "Iteration over monomials": [[572, "iteration-over-monomials"]], "Serialization & HDF5": [[572, "serialization-hdf5"]], "Random number generators": [[582, "random-number-generators"]], "Usage": [[582, "usage"], [1855, "usage"], [1851, "usage"]], "Complete documentation/manual/triqs": [[582, "complete-documentation-manual-triqs"]], "[triqs/operators] Second-quantization operators and many-body Hamiltonians": [[571, "triqs-operators-second-quantization-operators-and-many-body-hamiltonians"]], "[triqs/stat] Statistical Analysis": [[583, "triqs-stat-statistical-analysis"]], "Processing Correlated Data": [[583, "processing-correlated-data"]], "Averages and Standard Errors": [[583, "averages-and-standard-errors"]], "[triqs/utility] Utilities: exceptions, tuple-tools, etc.": [[584, "triqs-utility-utilities-exceptions-tuple-tools-etc"]], "Hamiltonians": [[575, "hamiltonians"]], "Observables": [[576, "observables"]], "Tutorial": [[570, "tutorial"]], "The C++ code for this problem": [[570, "the-c-code-for-this-problem"]], "Initializing the MPI": [[570, "initializing-the-mpi"]], "Constructing the Monte Carlo simulation": [[570, "constructing-the-monte-carlo-simulation"]], "Moves and measures": [[570, "moves-and-measures"]], "The measure": [[570, "the-measure"]], "Starting the Monte Carlo simulation": [[570, "starting-the-monte-carlo-simulation"]], "End of the simulation - gathering results": [[570, "end-of-the-simulation-gathering-results"]], "Writing your own Monte Carlo simulation": [[570, "writing-your-own-monte-carlo-simulation"]], "Fitting data": [[579, "fitting-data"]], "A simple example": [[579, "a-simple-example"]], "triqs.gf.descriptor_base.Omega_.__init__": [[911, "triqs-gf-descriptor-base-omega-init"]], "triqs.gf.descriptor_base.convert_scalar_to_const": [[912, "triqs-gf-descriptor-base-convert-scalar-to-const"]], "triqs.gf.descriptor_base.LazyCTX.__init__": [[909, "triqs-gf-descriptor-base-lazyctx-init"]], "triqs.gf.descriptor_base.Function": [[906, "triqs-gf-descriptor-base-function"]], "triqs.gf.descriptor_base.Const.__init__": [[905, "triqs-gf-descriptor-base-const-init"]], "triqs.gf.descriptor_base.Function.__init__": [[907, "triqs-gf-descriptor-base-function-init"]], "triqs.gf.descriptor_base.Const": [[904, "triqs-gf-descriptor-base-const"]], "triqs.gf.descriptor_base.LazyCTX": [[908, "triqs-gf-descriptor-base-lazyctx"]], "triqs.gf.descriptor_base.BaseBlock.is_block_descriptor": [[903, "triqs-gf-descriptor-base-baseblock-is-block-descriptor"]], "triqs.gf.descriptor_base.BaseBlock.__init__": [[902, "triqs-gf-descriptor-base-baseblock-init"]], "triqs.gf.descriptor_base.Omega_": [[910, "triqs-gf-descriptor-base-omega"]], "triqs.gf.descriptor_base.is_lazy": [[913, "triqs-gf-descriptor-base-is-lazy"]], "triqs.gf.descriptor_base.BaseBlock": [[901, "triqs-gf-descriptor-base-baseblock"]], "triqs.gf.descriptor_base.is_scalar": [[914, "triqs-gf-descriptor-base-is-scalar"]], "triqs.gf.descriptor_base.Base.__init__": [[900, "triqs-gf-descriptor-base-base-init"]], "triqs.gf.descriptors.LegendreToMatsubara": [[921, "triqs-gf-descriptors-legendretomatsubara"]], "triqs.gf.descriptors.OneFermionInTime.__init__": [[928, "triqs-gf-descriptors-onefermionintime-init"]], "triqs.gf.descriptors.LegendreToMatsubara.__init__": [[922, "triqs-gf-descriptors-legendretomatsubara-init"]], "triqs.gf.descriptors.Fourier.is_block_descriptor": [[920, "triqs-gf-descriptors-fourier-is-block-descriptor"]], "triqs.gf.descriptors.Fourier": [[918, "triqs-gf-descriptors-fourier"]], "triqs.gf.descriptors.MatsubaraToLegendre.__init__": [[925, "triqs-gf-descriptors-matsubaratolegendre-init"]], "triqs.gf.descriptors.OneFermionInTime": [[927, "triqs-gf-descriptors-onefermionintime"]], "triqs.gf.descriptors.MatsubaraToLegendre": [[924, "triqs-gf-descriptors-matsubaratolegendre"]], "triqs.gf.descriptors.Flat": [[916, "triqs-gf-descriptors-flat"]], "triqs.gf.descriptors.Flat.__init__": [[917, "triqs-gf-descriptors-flat-init"]], "triqs.gf.descriptors": [[915, "module-triqs.gf.descriptors"]], "triqs.gf.descriptors.SemiCircular": [[929, "triqs-gf-descriptors-semicircular"]], "triqs.gf.descriptors.Fourier.__init__": [[919, "triqs-gf-descriptors-fourier-init"]], "triqs.gf.descriptors.MatsubaraToLegendre.is_block_descriptor": [[926, "triqs-gf-descriptors-matsubaratolegendre-is-block-descriptor"]], "triqs.gf.descriptors.LegendreToMatsubara.is_block_descriptor": [[923, "triqs-gf-descriptors-legendretomatsubara-is-block-descriptor"]], "triqs.gf.descriptors.Wilson.__init__": [[932, "triqs-gf-descriptors-wilson-init"]], "triqs.gf.gf": [[936, "module-triqs.gf.gf"]], "triqs.gf.gf.AddMethod": [[937, "triqs-gf-gf-addmethod"]], "triqs.gf.gf.AddMethod.mro": [[939, "triqs-gf-gf-addmethod-mro"]], "triqs.gf.descriptors.Wilson": [[931, "triqs-gf-descriptors-wilson"]], "triqs.gf.descriptors.SemiCircular.__init__": [[930, "triqs-gf-descriptors-semicircular-init"]], "triqs.gf.gf.CallProxyNone.__init__": [[941, "triqs-gf-gf-callproxynone-init"]], "triqs.gf.dlr_crm_dyson_solver": [[934, "module-triqs.gf.dlr_crm_dyson_solver"]], "triqs.gf.gf.Gf.conjugate": [[944, "triqs-gf-gf-gf-conjugate"]], "triqs.gf.gf.Gf.__init__": [[943, "triqs-gf-gf-gf-init"]], "triqs.gf.descriptors.semi": [[933, "triqs-gf-descriptors-semi"]], "triqs.gf.gf.AddMethod.__init__": [[938, "triqs-gf-gf-addmethod-init"]], "triqs.gf.gf.CallProxyNone": [[940, "triqs-gf-gf-callproxynone"]], "triqs.gf.dlr_crm_dyson_solver.minimize_dyson": [[935, "triqs-gf-dlr-crm-dyson-solver-minimize-dyson"]], "triqs.gf.gf.Gf": [[942, "triqs-gf-gf-gf"]], "triqs.gf.gf.Gf.density": [[948, "triqs-gf-gf-gf-density"]], "triqs.gf.gf.Gf.fit_tail": [[952, "triqs-gf-gf-gf-fit-tail"]], "triqs.gf.gf.Gf.fit_hermitian_tail": [[950, "triqs-gf-gf-gf-fit-hermitian-tail"]], "triqs.gf.gf.Gf.imag": [[955, "triqs-gf-gf-gf-imag"]], "triqs.gf.gf.Gf.inverse": [[957, "triqs-gf-gf-gf-inverse"]], "triqs.gf.gf.Gf.enforce_discontinuity": [[949, "triqs-gf-gf-gf-enforce-discontinuity"]], "triqs.gf.gf.Gf.copy_from": [[946, "triqs-gf-gf-gf-copy-from"]], "triqs.gf.gf.Gf.indices": [[956, "triqs-gf-gf-gf-indices"]], "triqs.gf.gf.Gf.is_gf_hermitian": [[959, "triqs-gf-gf-gf-is-gf-hermitian"]], "triqs.gf.gf.Gf.data": [[947, "triqs-gf-gf-gf-data"]], "triqs.gf.gf.Gf.fit_hermitian_tail_on_window": [[951, "triqs-gf-gf-gf-fit-hermitian-tail-on-window"]], "triqs.gf.gf.Gf.invert": [[958, "triqs-gf-gf-gf-invert"]], "triqs.gf.gf.Gf.fit_tail_on_window": [[953, "triqs-gf-gf-gf-fit-tail-on-window"]], "triqs.gf.gf.Gf.from_L_G_R": [[954, "triqs-gf-gf-gf-from-l-g-r"]], "triqs.gf.gf.Gf.copy": [[945, "triqs-gf-gf-gf-copy"]], "triqs.gf.gf.Gf.set_from_legendre": [[970, "triqs-gf-gf-gf-set-from-legendre"]], "triqs.gf.gf.Gf.real": [[963, "triqs-gf-gf-gf-real"]], "triqs.gf.gf.Gf.target_indices": [[972, "triqs-gf-gf-gf-target-indices"]], "triqs.gf.gf.Gf.mesh": [[961, "triqs-gf-gf-gf-mesh"]], "triqs.gf.gf.Gf.set_from_fourier": [[967, "triqs-gf-gf-gf-set-from-fourier"]], "triqs.gf.gf.Gf.target_rank": [[973, "triqs-gf-gf-gf-target-rank"]], "triqs.gf.gf.Gf.is_gf_real_in_tau": [[960, "triqs-gf-gf-gf-is-gf-real-in-tau"]], "triqs.gf.gf.Gf.set_from_pade": [[971, "triqs-gf-gf-gf-set-from-pade"]], "triqs.gf.gf.Gf.replace_by_tail_in_fit_window": [[966, "triqs-gf-gf-gf-replace-by-tail-in-fit-window"]], "triqs.gf.gf.Gf.rebinning_tau": [[964, "triqs-gf-gf-gf-rebinning-tau"]], "triqs.gf.gf.Gf.set_from_imtime": [[969, "triqs-gf-gf-gf-set-from-imtime"]], "triqs.gf.gf.Gf.target_shape": [[974, "triqs-gf-gf-gf-target-shape"]], "triqs.gf.gf.Gf.rank": [[962, "triqs-gf-gf-gf-rank"]], "triqs.gf.gf.Gf.set_from_imfreq": [[968, "triqs-gf-gf-gf-set-from-imfreq"]], "triqs.gf.gf.Gf.replace_by_tail": [[965, "triqs-gf-gf-gf-replace-by-tail"]], "triqs.gf.gf.add_method_helper": [[982, "triqs-gf-gf-add-method-helper"]], "triqs.gf.gf.Gf.total_density": [[976, "triqs-gf-gf-gf-total-density"]], "triqs.gf.gf_factories.make_gf_dlr_imtime": [[989, "triqs-gf-gf-factories-make-gf-dlr-imtime"]], "triqs.gf.gf.Gf.transpose": [[977, "triqs-gf-gf-gf-transpose"]], "triqs.gf.gf_factories": [[985, "module-triqs.gf.gf_factories"]], "triqs.gf.gf_factories.make_gf_dlr_imfreq": [[988, "triqs-gf-gf-factories-make-gf-dlr-imfreq"]], "triqs.gf.gf_factories.fit_gf_dlr": [[986, "triqs-gf-gf-factories-fit-gf-dlr"]], "triqs.gf.gf.Gf.tau_L2_norm": [[975, "triqs-gf-gf-gf-tau-l2-norm"]], "triqs.gf.gf.Gf.zero": [[979, "triqs-gf-gf-gf-zero"]], "triqs.gf.gf.Idx": [[980, "triqs-gf-gf-idx"]], "triqs.gf.gf.call_factory_from_dict": [[984, "triqs-gf-gf-call-factory-from-dict"]], "triqs.gf.gf.Gf.x_data_view": [[978, "triqs-gf-gf-gf-x-data-view"]], "triqs.gf.gf.Idx.__init__": [[981, "triqs-gf-gf-idx-init"]], "triqs.gf.gf_factories.make_gf_dlr": [[987, "triqs-gf-gf-factories-make-gf-dlr"]], "triqs.gf.gf.bckwd": [[983, "triqs-gf-gf-bckwd"]], "triqs.gf.gf_factories.make_hermitian": [[993, "triqs-gf-gf-factories-make-hermitian"]], "triqs.gf.gf_fnt.fit_hermitian_tail_on_window": [[999, "triqs-gf-gf-fnt-fit-hermitian-tail-on-window"]], "triqs.gf.gf_fnt.is_gf_hermitian": [[1002, "triqs-gf-gf-fnt-is-gf-hermitian"]], "triqs.gf.gf_factories.make_gf_imfreq": [[991, "triqs-gf-gf-factories-make-gf-imfreq"]], "triqs.gf.gf_fnt.density": [[996, "triqs-gf-gf-fnt-density"]], "triqs.gf.gf_fnt.is_gf_real_in_tau": [[1003, "triqs-gf-gf-fnt-is-gf-real-in-tau"]], "triqs.gf.gf_fnt": [[995, "module-triqs.gf.gf_fnt"]], "triqs.gf.gf_factories.make_real_in_tau": [[994, "triqs-gf-gf-factories-make-real-in-tau"]], "triqs.gf.gf_fnt.enforce_discontinuity": [[997, "triqs-gf-gf-fnt-enforce-discontinuity"]], "triqs.gf.gf_fnt.rebinning_tau": [[1004, "triqs-gf-gf-fnt-rebinning-tau"]], "triqs.gf.gf_fnt.fit_hermitian_tail": [[998, "triqs-gf-gf-fnt-fit-hermitian-tail"]], "triqs.gf.gf_fnt.fit_tail_on_window": [[1001, "triqs-gf-gf-fnt-fit-tail-on-window"]], "triqs.gf.gf_factories.make_gf_imtime": [[992, "triqs-gf-gf-factories-make-gf-imtime"]], "triqs.gf.gf_fnt.fit_tail": [[1000, "triqs-gf-gf-fnt-fit-tail"]], "triqs.gf.gf_factories.make_gf_from_fourier": [[990, "triqs-gf-gf-factories-make-gf-from-fourier"]], "triqs.gf.gf_fnt.set_from_legendre": [[1010, "triqs-gf-gf-fnt-set-from-legendre"]], "triqs.gf.lazy_expressions.LazyExpr.copy": [[1016, "triqs-gf-lazy-expressions-lazyexpr-copy"]], "triqs.gf.lazy_expressions.LazyExpr.get_terminal": [[1017, "triqs-gf-lazy-expressions-lazyexpr-get-terminal"]], "triqs.gf.gf_fnt.set_from_fourier": [[1007, "triqs-gf-gf-fnt-set-from-fourier"]], "triqs.gf.gf_fnt.replace_by_tail_in_fit_window": [[1006, "triqs-gf-gf-fnt-replace-by-tail-in-fit-window"]], "triqs.gf.gf_fnt.set_from_pade": [[1011, "triqs-gf-gf-fnt-set-from-pade"]], "triqs.gf.gf_fnt.replace_by_tail": [[1005, "triqs-gf-gf-fnt-replace-by-tail"]], "triqs.gf.lazy_expressions.LazyExpr": [[1014, "triqs-gf-lazy-expressions-lazyexpr"]], "triqs.gf.gf_fnt.set_from_imfreq": [[1008, "triqs-gf-gf-fnt-set-from-imfreq"]], "triqs.gf.gf_fnt.set_from_imtime": [[1009, "triqs-gf-gf-fnt-set-from-imtime"]], "triqs.gf.lazy_expressions.LazyExpr.__init__": [[1015, "triqs-gf-lazy-expressions-lazyexpr-init"]], "triqs.gf.gf_fnt.tau_L2_norm": [[1012, "triqs-gf-gf-fnt-tau-l2-norm"]], "triqs.gf.lazy_expressions.LazyExpr.set_from": [[1019, "triqs-gf-lazy-expressions-lazyexpr-set-from"]], "triqs.gf.lazy_expressions": [[1013, "module-triqs.gf.lazy_expressions"]], "triqs.gf.lazy_expressions.LazyExpr.is_terminal": [[1018, "triqs-gf-lazy-expressions-lazyexpr-is-terminal"]], "triqs.gf.matsubara_freq.MatsubaraFreq.real": [[1034, "triqs-gf-matsubara-freq-matsubarafreq-real"]], "triqs.gf.lazy_expressions.lazy_function": [[1025, "triqs-gf-lazy-expressions-lazy-function"]], "triqs.gf.lazy_expressions.LazyExprTerminal": [[1020, "triqs-gf-lazy-expressions-lazyexprterminal"]], "triqs.gf.lazy_expressions.transform": [[1027, "triqs-gf-lazy-expressions-transform"]], "triqs.gf.matsubara_freq": [[1029, "module-triqs.gf.matsubara_freq"]], "triqs.gf.map_block": [[1028, "module-triqs.gf.map_block"]], "triqs.gf.matsubara_freq.MatsubaraFreq": [[1030, "triqs-gf-matsubara-freq-matsubarafreq"]], "triqs.gf.matsubara_freq.MatsubaraFreq.index": [[1033, "triqs-gf-matsubara-freq-matsubarafreq-index"]], "triqs.gf.lazy_expressions.all_terminals": [[1022, "triqs-gf-lazy-expressions-all-terminals"]], "triqs.gf.lazy_expressions.LazyExprTerminal.__init__": [[1021, "triqs-gf-lazy-expressions-lazyexprterminal-init"]], "triqs.gf.lazy_expressions.eval_expr_with_context": [[1024, "triqs-gf-lazy-expressions-eval-expr-with-context"]], "triqs.gf.matsubara_freq.MatsubaraFreq.imag": [[1032, "triqs-gf-matsubara-freq-matsubarafreq-imag"]], "triqs.gf.lazy_expressions.make_lazy": [[1026, "triqs-gf-lazy-expressions-make-lazy"]], "triqs.gf.lazy_expressions.eval_expr": [[1023, "triqs-gf-lazy-expressions-eval-expr"]], "triqs.gf.matsubara_freq.MatsubaraFreq.__init__": [[1031, "triqs-gf-matsubara-freq-matsubarafreq-init"]], "triqs.gf.mesh_product.MeshProduct.copy_from": [[1048, "triqs-gf-mesh-product-meshproduct-copy-from"]], "triqs.gf.mesh_product.MeshProduct.__init__": [[1045, "triqs-gf-mesh-product-meshproduct-init"]], "triqs.gf.matsubara_freq.MatsubaraFreq.value": [[1035, "triqs-gf-matsubara-freq-matsubarafreq-value"]], "triqs.gf.mesh_point.MeshValueGenerator": [[1041, "triqs-gf-mesh-point-meshvaluegenerator"]], "triqs.gf.mesh_product.MeshProduct.components": [[1046, "triqs-gf-mesh-product-meshproduct-components"]], "triqs.gf.mesh_point.MeshPoint": [[1037, "triqs-gf-mesh-point-meshpoint"]], "triqs.gf.mesh_point.MeshPoint.imag": [[1039, "triqs-gf-mesh-point-meshpoint-imag"]], "triqs.gf.mesh_point.MeshPoint.real": [[1040, "triqs-gf-mesh-point-meshpoint-real"]], "triqs.gf.mesh_product.MeshProduct": [[1044, "triqs-gf-mesh-product-meshproduct"]], "triqs.gf.mesh_product.MeshProduct.copy": [[1047, "triqs-gf-mesh-product-meshproduct-copy"]], "triqs.gf.mesh_point": [[1036, "module-triqs.gf.mesh_point"]], "triqs.gf.mesh_point.MeshPoint.__init__": [[1038, "triqs-gf-mesh-point-meshpoint-init"]], "triqs.gf.mesh_point.MeshValueGenerator.__init__": [[1042, "triqs-gf-mesh-point-meshvaluegenerator-init"]], "triqs.gf.mesh_product": [[1043, "module-triqs.gf.mesh_product"]], "triqs.gf.mesh_product.MeshProduct.rank": [[1049, "triqs-gf-mesh-product-meshproduct-rank"]], "triqs.gf.meshes.MeshBrZone.to_value": [[1064, "triqs-gf-meshes-meshbrzone-to-value"]], "triqs.gf.meshes.MeshBrZone": [[1054, "triqs-gf-meshes-meshbrzone"]], "Parameters (Option 1)": [[1054, "parameters-option-1"], [1067, "parameters-option-1"], [1154, "parameters-option-1"], [1166, "parameters-option-1"]], "Parameters (Option 2)": [[1054, "parameters-option-2"], [1067, "parameters-option-2"], [1154, "parameters-option-2"], [1166, "parameters-option-2"]], "triqs.gf.meshes.MeshBrZone.copy_from": [[1059, "triqs-gf-meshes-meshbrzone-copy-from"]], "triqs.gf.meshes.MeshBrZone.copy": [[1058, "triqs-gf-meshes-meshbrzone-copy"]], "triqs.gf.meshes": [[1053, "module-triqs.gf.meshes"]], "triqs.gf.mesh_product.call_factory_from_dict": [[1052, "triqs-gf-mesh-product-call-factory-from-dict"]], "triqs.gf.mesh_product.MeshProduct.size_of_components": [[1050, "triqs-gf-mesh-product-meshproduct-size-of-components"]], "triqs.gf.meshes.MeshBrZone.bz": [[1056, "triqs-gf-meshes-meshbrzone-bz"]], "triqs.gf.meshes.MeshBrZone.__init__": [[1055, "triqs-gf-meshes-meshbrzone-init"]], "triqs.gf.meshes.MeshBrZone.dims": [[1060, "triqs-gf-meshes-meshbrzone-dims"]], "triqs.gf.meshes.MeshBrZone.closest_index": [[1057, "triqs-gf-meshes-meshbrzone-closest-index"]], "triqs.gf.meshes.MeshBrZone.mesh_hash": [[1061, "triqs-gf-meshes-meshbrzone-mesh-hash"]], "triqs.gf.meshes.MeshBrZone.to_index": [[1063, "triqs-gf-meshes-meshbrzone-to-index"]], "triqs.gf.mesh_product.MeshProduct.to_data_index": [[1051, "triqs-gf-mesh-product-meshproduct-to-data-index"]], "triqs.gf.meshes.MeshBrZone.to_data_index": [[1062, "triqs-gf-meshes-meshbrzone-to-data-index"]], "triqs.gf.meshes.MeshBrZone.units": [[1065, "triqs-gf-meshes-meshbrzone-units"]], "triqs.gf.meshes.MeshCycLat.copy": [[1069, "triqs-gf-meshes-meshcyclat-copy"]], "triqs.gf.meshes.MeshCycLat.lattice": [[1072, "triqs-gf-meshes-meshcyclat-lattice"]], "triqs.gf.meshes.MeshCycLat.to_value": [[1076, "triqs-gf-meshes-meshcyclat-to-value"]], "triqs.gf.meshes.MeshCycLat.__init__": [[1068, "triqs-gf-meshes-meshcyclat-init"]], "triqs.gf.meshes.MeshCycLat.to_data_index": [[1074, "triqs-gf-meshes-meshcyclat-to-data-index"]], "triqs.gf.meshes.MeshBrZone.values": [[1066, "triqs-gf-meshes-meshbrzone-values"]], "triqs.gf.meshes.MeshCycLat": [[1067, "triqs-gf-meshes-meshcyclat"]], "triqs.gf.meshes.MeshCycLat.copy_from": [[1070, "triqs-gf-meshes-meshcyclat-copy-from"]], "triqs.gf.meshes.MeshCycLat.units": [[1077, "triqs-gf-meshes-meshcyclat-units"]], "triqs.gf.meshes.MeshCycLat.mesh_hash": [[1073, "triqs-gf-meshes-meshcyclat-mesh-hash"]], "triqs.gf.meshes.MeshCycLat.to_index": [[1075, "triqs-gf-meshes-meshcyclat-to-index"]], "triqs.gf.meshes.MeshCycLat.dims": [[1071, "triqs-gf-meshes-meshcyclat-dims"]], "triqs.gf.meshes.MeshCycLat.values": [[1078, "triqs-gf-meshes-meshcyclat-values"]], "triqs.gf.meshes.MeshDLR": [[1079, "triqs-gf-meshes-meshdlr"]], "triqs.gf.meshes.MeshDLR.eps": [[1084, "triqs-gf-meshes-meshdlr-eps"]], "triqs.gf.meshes.MeshDLR.copy_from": [[1083, "triqs-gf-meshes-meshdlr-copy-from"]], "triqs.gf.meshes.MeshDLR.copy": [[1082, "triqs-gf-meshes-meshdlr-copy"]], "triqs.gf.meshes.MeshDLR.to_value": [[1089, "triqs-gf-meshes-meshdlr-to-value"]], "triqs.gf.meshes.MeshDLR.__init__": [[1080, "triqs-gf-meshes-meshdlr-init"]], "triqs.gf.meshes.MeshDLR.mesh_hash": [[1085, "triqs-gf-meshes-meshdlr-mesh-hash"]], "triqs.gf.meshes.MeshDLRImFreq.__init__": [[1093, "triqs-gf-meshes-meshdlrimfreq-init"]], "triqs.gf.meshes.MeshDLRImFreq.beta": [[1094, "triqs-gf-meshes-meshdlrimfreq-beta"]], "triqs.gf.meshes.MeshDLR.to_data_index": [[1087, "triqs-gf-meshes-meshdlr-to-data-index"]], "triqs.gf.meshes.MeshDLR.statistic": [[1086, "triqs-gf-meshes-meshdlr-statistic"]], "triqs.gf.meshes.MeshDLRImFreq": [[1092, "triqs-gf-meshes-meshdlrimfreq"]], "triqs.gf.meshes.MeshDLR.w_max": [[1091, "triqs-gf-meshes-meshdlr-w-max"]], "triqs.gf.meshes.MeshDLR.values": [[1090, "triqs-gf-meshes-meshdlr-values"]], "triqs.gf.meshes.MeshDLR.beta": [[1081, "triqs-gf-meshes-meshdlr-beta"]], "triqs.gf.meshes.MeshDLR.to_index": [[1088, "triqs-gf-meshes-meshdlr-to-index"]], "triqs.gf.meshes.MeshDLRImFreq.to_data_index": [[1100, "triqs-gf-meshes-meshdlrimfreq-to-data-index"]], "triqs.gf.meshes.MeshDLRImFreq.to_index": [[1101, "triqs-gf-meshes-meshdlrimfreq-to-index"]], "triqs.gf.meshes.MeshDLRImTime.beta": [[1107, "triqs-gf-meshes-meshdlrimtime-beta"]], "triqs.gf.meshes.MeshDLRImFreq.copy_from": [[1096, "triqs-gf-meshes-meshdlrimfreq-copy-from"]], "triqs.gf.meshes.MeshDLRImFreq.w_max": [[1104, "triqs-gf-meshes-meshdlrimfreq-w-max"]], "triqs.gf.meshes.MeshDLRImTime": [[1105, "triqs-gf-meshes-meshdlrimtime"]], "triqs.gf.meshes.MeshDLRImTime.copy_from": [[1109, "triqs-gf-meshes-meshdlrimtime-copy-from"]], "triqs.gf.meshes.MeshDLRImTime.copy": [[1108, "triqs-gf-meshes-meshdlrimtime-copy"]], "triqs.gf.meshes.MeshDLRImFreq.mesh_hash": [[1098, "triqs-gf-meshes-meshdlrimfreq-mesh-hash"]], "triqs.gf.meshes.MeshDLRImFreq.statistic": [[1099, "triqs-gf-meshes-meshdlrimfreq-statistic"]], "triqs.gf.meshes.MeshDLRImTime.__init__": [[1106, "triqs-gf-meshes-meshdlrimtime-init"]], "triqs.gf.meshes.MeshDLRImFreq.eps": [[1097, "triqs-gf-meshes-meshdlrimfreq-eps"]], "triqs.gf.meshes.MeshDLRImFreq.to_value": [[1102, "triqs-gf-meshes-meshdlrimfreq-to-value"]], "triqs.gf.meshes.MeshDLRImFreq.copy": [[1095, "triqs-gf-meshes-meshdlrimfreq-copy"]], "triqs.gf.meshes.MeshDLRImFreq.values": [[1103, "triqs-gf-meshes-meshdlrimfreq-values"]], "triqs.gf.meshes.MeshImFreq.first_index": [[1123, "triqs-gf-meshes-meshimfreq-first-index"]], "triqs.gf.meshes.MeshImFreq.copy": [[1121, "triqs-gf-meshes-meshimfreq-copy"]], "triqs.gf.meshes.MeshImFreq.__init__": [[1119, "triqs-gf-meshes-meshimfreq-init"]], "triqs.gf.meshes.MeshImFreq.last_index": [[1124, "triqs-gf-meshes-meshimfreq-last-index"]], "triqs.gf.meshes.MeshImFreq.copy_from": [[1122, "triqs-gf-meshes-meshimfreq-copy-from"]], "triqs.gf.meshes.MeshImFreq": [[1118, "triqs-gf-meshes-meshimfreq"]], "triqs.gf.meshes.MeshDLRImTime.values": [[1116, "triqs-gf-meshes-meshdlrimtime-values"]], "triqs.gf.meshes.MeshDLRImTime.to_index": [[1114, "triqs-gf-meshes-meshdlrimtime-to-index"]], "triqs.gf.meshes.MeshDLRImTime.eps": [[1110, "triqs-gf-meshes-meshdlrimtime-eps"]], "triqs.gf.meshes.MeshDLRImTime.to_value": [[1115, "triqs-gf-meshes-meshdlrimtime-to-value"]], "triqs.gf.meshes.MeshDLRImTime.w_max": [[1117, "triqs-gf-meshes-meshdlrimtime-w-max"]], "triqs.gf.meshes.MeshImFreq.beta": [[1120, "triqs-gf-meshes-meshimfreq-beta"]], "triqs.gf.meshes.MeshDLRImTime.to_data_index": [[1113, "triqs-gf-meshes-meshdlrimtime-to-data-index"]], "triqs.gf.meshes.MeshDLRImTime.statistic": [[1112, "triqs-gf-meshes-meshdlrimtime-statistic"]], "triqs.gf.meshes.MeshDLRImTime.mesh_hash": [[1111, "triqs-gf-meshes-meshdlrimtime-mesh-hash"]], "triqs.gf.meshes.MeshImFreq.mesh_hash": [[1125, "triqs-gf-meshes-meshimfreq-mesh-hash"]], "triqs.gf.meshes.MeshImTime.copy": [[1137, "triqs-gf-meshes-meshimtime-copy"]], "triqs.gf.meshes.MeshImFreq.to_data_index": [[1130, "triqs-gf-meshes-meshimfreq-to-data-index"]], "triqs.gf.meshes.MeshImFreq.statistic": [[1129, "triqs-gf-meshes-meshimfreq-statistic"]], "triqs.gf.meshes.MeshImFreq.to_value": [[1132, "triqs-gf-meshes-meshimfreq-to-value"]], "triqs.gf.meshes.MeshImFreq.set_tail_fit_parameters": [[1128, "triqs-gf-meshes-meshimfreq-set-tail-fit-parameters"]], "triqs.gf.meshes.MeshImFreq.values": [[1133, "triqs-gf-meshes-meshimfreq-values"]], "triqs.gf.meshes.MeshImTime.copy_from": [[1138, "triqs-gf-meshes-meshimtime-copy-from"]], "triqs.gf.meshes.MeshImFreq.to_index": [[1131, "triqs-gf-meshes-meshimfreq-to-index"]], "triqs.gf.meshes.MeshImTime.__init__": [[1135, "triqs-gf-meshes-meshimtime-init"]], "triqs.gf.meshes.MeshImFreq.positive_only": [[1127, "triqs-gf-meshes-meshimfreq-positive-only"]], "triqs.gf.meshes.MeshImFreq.n_iw": [[1126, "triqs-gf-meshes-meshimfreq-n-iw"]], "triqs.gf.meshes.MeshImTime.beta": [[1136, "triqs-gf-meshes-meshimtime-beta"]], "triqs.gf.meshes.MeshImTime.mesh_hash": [[1139, "triqs-gf-meshes-meshimtime-mesh-hash"]], "triqs.gf.meshes.MeshImTime": [[1134, "triqs-gf-meshes-meshimtime"]], "triqs.gf.meshes.MeshLegendre.to_index": [[1153, "triqs-gf-meshes-meshlegendre-to-index"]], "triqs.gf.meshes.MeshImTime.to_index": [[1142, "triqs-gf-meshes-meshimtime-to-index"]], "triqs.gf.meshes.MeshImTime.to_data_index": [[1141, "triqs-gf-meshes-meshimtime-to-data-index"]], "triqs.gf.meshes.MeshLegendre.copy": [[1148, "triqs-gf-meshes-meshlegendre-copy"]], "triqs.gf.meshes.MeshLegendre.copy_from": [[1149, "triqs-gf-meshes-meshlegendre-copy-from"]], "triqs.gf.meshes.MeshLegendre.__init__": [[1146, "triqs-gf-meshes-meshlegendre-init"]], "triqs.gf.meshes.MeshLegendre.statistic": [[1151, "triqs-gf-meshes-meshlegendre-statistic"]], "triqs.gf.meshes.MeshImTime.statistic": [[1140, "triqs-gf-meshes-meshimtime-statistic"]], "triqs.gf.meshes.MeshLegendre.mesh_hash": [[1150, "triqs-gf-meshes-meshlegendre-mesh-hash"]], "triqs.gf.meshes.MeshReFreq": [[1154, "triqs-gf-meshes-meshrefreq"]], "triqs.gf.meshes.MeshLegendre.beta": [[1147, "triqs-gf-meshes-meshlegendre-beta"]], "triqs.gf.meshes.MeshImTime.values": [[1144, "triqs-gf-meshes-meshimtime-values"]], "triqs.gf.meshes.MeshImTime.to_value": [[1143, "triqs-gf-meshes-meshimtime-to-value"]], "triqs.gf.meshes.MeshLegendre": [[1145, "triqs-gf-meshes-meshlegendre"]], "triqs.gf.meshes.MeshLegendre.to_data_index": [[1152, "triqs-gf-meshes-meshlegendre-to-data-index"]], "triqs.gf.meshes.MeshReTime": [[1166, "triqs-gf-meshes-meshretime"]], "triqs.gf.meshes.MeshReFreq.to_data_index": [[1160, "triqs-gf-meshes-meshrefreq-to-data-index"]], "triqs.gf.meshes.MeshReTime.copy_from": [[1169, "triqs-gf-meshes-meshretime-copy-from"]], "triqs.gf.meshes.MeshReFreq.w_min": [[1165, "triqs-gf-meshes-meshrefreq-w-min"]], "triqs.gf.meshes.MeshReFreq.copy": [[1156, "triqs-gf-meshes-meshrefreq-copy"]], "triqs.gf.meshes.MeshReFreq.__init__": [[1155, "triqs-gf-meshes-meshrefreq-init"]], "triqs.gf.meshes.MeshReFreq.to_value": [[1162, "triqs-gf-meshes-meshrefreq-to-value"]], "triqs.gf.meshes.MeshReTime.__init__": [[1167, "triqs-gf-meshes-meshretime-init"]], "triqs.gf.meshes.MeshReFreq.w_max": [[1164, "triqs-gf-meshes-meshrefreq-w-max"]], "triqs.gf.meshes.MeshReFreq.mesh_hash": [[1159, "triqs-gf-meshes-meshrefreq-mesh-hash"]], "triqs.gf.meshes.MeshReFreq.delta": [[1158, "triqs-gf-meshes-meshrefreq-delta"]], "triqs.gf.meshes.MeshReFreq.to_index": [[1161, "triqs-gf-meshes-meshrefreq-to-index"]], "triqs.gf.meshes.MeshReFreq.values": [[1163, "triqs-gf-meshes-meshrefreq-values"]], "triqs.gf.meshes.MeshReFreq.copy_from": [[1157, "triqs-gf-meshes-meshrefreq-copy-from"]], "triqs.gf.meshes.MeshReTime.copy": [[1168, "triqs-gf-meshes-meshretime-copy"]], "triqs.gf.plot.bz.generate_points_on_path": [[1183, "triqs-gf-plot-bz-generate-points-on-path"]], "triqs.gf.plot.bz.generate_points": [[1182, "triqs-gf-plot-bz-generate-points"]], "triqs.gf.meshes.MeshReTime.to_index": [[1175, "triqs-gf-meshes-meshretime-to-index"]], "triqs.gf.meshes.MeshReTime.to_value": [[1176, "triqs-gf-meshes-meshretime-to-value"]], "triqs.gf.plot.bz.length": [[1184, "triqs-gf-plot-bz-length"]], "triqs.gf.meshes.MeshReTime.mesh_hash": [[1171, "triqs-gf-meshes-meshretime-mesh-hash"]], "triqs.gf.meshes.MeshReTime.t_max": [[1172, "triqs-gf-meshes-meshretime-t-max"]], "triqs.gf.plot": [[1179, "module-triqs.gf.plot"]], "triqs.gf.plot.bz": [[1180, "module-triqs.gf.plot.bz"]], "triqs.gf.meshes.make_adjoint_mesh": [[1178, "triqs-gf-meshes-make-adjoint-mesh"]], "triqs.gf.plot.bz.dist": [[1181, "triqs-gf-plot-bz-dist"]], "triqs.gf.meshes.MeshReTime.values": [[1177, "triqs-gf-meshes-meshretime-values"]], "triqs.gf.meshes.MeshReTime.to_data_index": [[1174, "triqs-gf-meshes-meshretime-to-data-index"]], "triqs.gf.meshes.MeshReTime.t_min": [[1173, "triqs-gf-meshes-meshretime-t-min"]], "triqs.gf.meshes.MeshReTime.delta": [[1170, "triqs-gf-meshes-meshretime-delta"]], "triqs.gf.plot.one_var.dlr_imtime": [[1194, "triqs-gf-plot-one-var-dlr-imtime"]], "triqs.gf.plot.one_var.imtime": [[1196, "triqs-gf-plot-one-var-imtime"]], "triqs.gf.plot.one_var.imfreq": [[1195, "triqs-gf-plot-one-var-imfreq"]], "triqs.gf.plot.bz.plot": [[1186, "triqs-gf-plot-bz-plot"]], "triqs.gf.plot.one_var.refreq": [[1198, "triqs-gf-plot-one-var-refreq"]], "triqs.gf.plot.dispatcher": [[1191, "triqs-gf-plot-dispatcher"]], "triqs.gf.plot.bz_x_x.plottable_slice_along_path": [[1190, "triqs-gf-plot-bz-x-x-plottable-slice-along-path"]], "triqs.gf.plot.bz.slice_on_path": [[1187, "triqs-gf-plot-bz-slice-on-path"]], "triqs.gf.plot.one_var": [[1192, "module-triqs.gf.plot.one_var"]], "triqs.gf.plot.bz.make_plottable": [[1185, "triqs-gf-plot-bz-make-plottable"]], "triqs.gf.plot.one_var.legendre": [[1197, "triqs-gf-plot-one-var-legendre"]], "triqs.gf.plot.bz_x_x": [[1188, "module-triqs.gf.plot.bz_x_x"]], "triqs.gf.plot.bz_x_x.plot": [[1189, "triqs-gf-plot-bz-x-x-plot"]], "triqs.gf.plot.one_var.dlr_imfreq": [[1193, "triqs-gf-plot-one-var-dlr-imfreq"]], "triqs.gf.plot.one_var.retime": [[1199, "triqs-gf-plot-one-var-retime"]], "triqs.gf.plot.select_indices.select_path_indices": [[1207, "triqs-gf-plot-select-indices-select-path-indices"]], "triqs.gf.tools.conjugate": [[1209, "triqs-gf-tools-conjugate"]], "triqs.gf.plot.plot_base.plot_base": [[1201, "triqs-gf-plot-plot-base-plot-base"]], "triqs.gf.tools.inverse": [[1214, "triqs-gf-tools-inverse"]], "triqs.gf.plot.select_indices.pick_selection_vec": [[1206, "triqs-gf-plot-select-indices-pick-selection-vec"]], "triqs.gf.tools.delta": [[1210, "triqs-gf-tools-delta"]], "triqs.gf.plot.select_indices.dist": [[1205, "triqs-gf-plot-select-indices-dist"]], "triqs.gf.plot.select_indices.closest_point_in_line": [[1203, "triqs-gf-plot-select-indices-closest-point-in-line"]], "triqs.gf.tools.fit_legendre": [[1213, "triqs-gf-tools-fit-legendre"]], "triqs.gf.tools.discretize_bath": [[1211, "triqs-gf-tools-discretize-bath"]], "triqs.gf.plot.select_indices": [[1202, "module-triqs.gf.plot.select_indices"]], "triqs.gf.plot.select_indices.closest_to": [[1204, "triqs-gf-plot-select-indices-closest-to"]], "triqs.gf.plot.plot_base": [[1200, "module-triqs.gf.plot.plot_base"]], "triqs.gf.tools.dyson": [[1212, "triqs-gf-tools-dyson"]], "triqs.gf.tools": [[1208, "module-triqs.gf.tools"]], "triqs.gf.wrapped_aux.CallProxyBrZone_3": [[1227, "triqs-gf-wrapped-aux-callproxybrzone-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_2": [[1225, "triqs-gf-wrapped-aux-callproxybrzone-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_1.__init__": [[1224, "triqs-gf-wrapped-aux-callproxybrzone-1-init"]], "triqs.gf.wrapped_aux": [[1220, "module-triqs.gf.wrapped_aux"]], "triqs.gf.wrapped_aux.CallProxyBrZone_4": [[1229, "triqs-gf-wrapped-aux-callproxybrzone-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_3.__init__": [[1228, "triqs-gf-wrapped-aux-callproxybrzone-3-init"]], "triqs.gf.tools.make_zero_tail": [[1216, "triqs-gf-tools-make-zero-tail"]], "triqs.gf.tools.make_delta": [[1215, "triqs-gf-tools-make-delta"]], "triqs.gf.tools.read_gf_from_txt": [[1217, "triqs-gf-tools-read-gf-from-txt"]], "triqs.gf.wrapped_aux.CallProxyBrZone_1": [[1223, "triqs-gf-wrapped-aux-callproxybrzone-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_0.__init__": [[1222, "triqs-gf-wrapped-aux-callproxybrzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_0": [[1221, "triqs-gf-wrapped-aux-callproxybrzone-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_2.__init__": [[1226, "triqs-gf-wrapped-aux-callproxybrzone-2-init"]], "triqs.gf.tools.write_gf_to_txt": [[1219, "triqs-gf-tools-write-gf-to-txt"]], "triqs.gf.tools.transpose": [[1218, "triqs-gf-tools-transpose"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1": [[1233, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_1.__init__": [[1234, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1": [[1243, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3": [[1237, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_4.__init__": [[1230, "triqs-gf-wrapped-aux-callproxybrzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0": [[1241, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_1.__init__": [[1244, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2.__init__": [[1236, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_3.__init__": [[1238, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0": [[1231, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4": [[1239, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_4.__init__": [[1240, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_0.__init__": [[1232, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_DLR_2": [[1235, "triqs-gf-wrapped-aux-callproxybrzone-x-dlr-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_0.__init__": [[1242, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1.__init__": [[1256, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R": [[1253, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-0-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2": [[1259, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R": [[1257, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-1-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0_R.__init__": [[1254, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1_R.__init__": [[1258, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_1": [[1255, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2": [[1245, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4": [[1249, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3.__init__": [[1248, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_2.__init__": [[1246, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_3": [[1247, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImFreq_4.__init__": [[1250, "triqs-gf-wrapped-aux-callproxybrzone-x-imfreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0": [[1251, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_0.__init__": [[1252, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4": [[1267, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R": [[1269, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-4-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R": [[1265, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-3-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0.__init__": [[1272, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3_R.__init__": [[1266, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3": [[1263, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_3.__init__": [[1264, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4_R.__init__": [[1270, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_4.__init__": [[1268, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R.__init__": [[1262, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_0": [[1271, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1.__init__": [[1274, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2_R": [[1261, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-2-r"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ImTime_2.__init__": [[1260, "triqs-gf-wrapped-aux-callproxybrzone-x-imtime-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_1": [[1273, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1": [[1283, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3": [[1277, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4": [[1279, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2": [[1285, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0": [[1281, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_0.__init__": [[1282, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_3.__init__": [[1278, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_1.__init__": [[1284, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3.__init__": [[1288, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_3": [[1287, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-3"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4": [[1289, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2": [[1275, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_2.__init__": [[1276, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_Legendre_4.__init__": [[1280, "triqs-gf-wrapped-aux-callproxybrzone-x-legendre-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_2.__init__": [[1286, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2.__init__": [[1296, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-2-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3": [[1297, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_1.__init__": [[1304, "triqs-gf-wrapped-aux-callproxycyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_0": [[1301, "triqs-gf-wrapped-aux-callproxycyclat-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_3.__init__": [[1298, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-3-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4.__init__": [[1300, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_1": [[1303, "triqs-gf-wrapped-aux-callproxycyclat-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_0.__init__": [[1302, "triqs-gf-wrapped-aux-callproxycyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1": [[1293, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-1"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_1.__init__": [[1294, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-1-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReFreq_4.__init__": [[1290, "triqs-gf-wrapped-aux-callproxybrzone-x-refreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0": [[1291, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-0"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_4": [[1299, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-4"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_2": [[1295, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-2"]], "triqs.gf.wrapped_aux.CallProxyBrZone_x_ReTime_0.__init__": [[1292, "triqs-gf-wrapped-aux-callproxybrzone-x-retime-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0": [[1311, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2": [[1315, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_4": [[1309, "triqs-gf-wrapped-aux-callproxycyclat-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_3.__init__": [[1308, "triqs-gf-wrapped-aux-callproxycyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_2": [[1305, "triqs-gf-wrapped-aux-callproxycyclat-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3.__init__": [[1318, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_3": [[1307, "triqs-gf-wrapped-aux-callproxycyclat-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_2.__init__": [[1316, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_3": [[1317, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1.__init__": [[1314, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_0.__init__": [[1312, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_4.__init__": [[1310, "triqs-gf-wrapped-aux-callproxycyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4": [[1319, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_1": [[1313, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_2.__init__": [[1306, "triqs-gf-wrapped-aux-callproxycyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4.__init__": [[1330, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0": [[1331, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0.__init__": [[1322, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R.__init__": [[1334, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_0": [[1321, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2": [[1325, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_4": [[1329, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1": [[1323, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_2.__init__": [[1326, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3.__init__": [[1328, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0.__init__": [[1332, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_0_R": [[1333, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-0-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_1.__init__": [[1324, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_DLR_4.__init__": [[1320, "triqs-gf-wrapped-aux-callproxycyclat-x-dlr-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImFreq_3": [[1327, "triqs-gf-wrapped-aux-callproxycyclat-x-imfreq-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4": [[1347, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R.__init__": [[1338, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1_R": [[1337, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-1-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2": [[1339, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2.__init__": [[1340, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1.__init__": [[1336, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R.__init__": [[1346, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4.__init__": [[1348, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R": [[1341, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-2-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3.__init__": [[1344, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3": [[1343, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R": [[1349, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-4-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_1": [[1335, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_2_R.__init__": [[1342, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_3_R": [[1345, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-3-r"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3.__init__": [[1358, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1": [[1353, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2": [[1355, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1.__init__": [[1364, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4": [[1359, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_1": [[1363, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0.__init__": [[1362, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_0": [[1361, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0.__init__": [[1352, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_4.__init__": [[1360, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_1.__init__": [[1354, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-1-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_2.__init__": [[1356, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_0": [[1351, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_Legendre_3": [[1357, "triqs-gf-wrapped-aux-callproxycyclat-x-legendre-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ImTime_4_R.__init__": [[1350, "triqs-gf-wrapped-aux-callproxycyclat-x-imtime-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3": [[1367, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4": [[1369, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3": [[1377, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-3"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4": [[1379, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-4"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2.__init__": [[1366, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_3.__init__": [[1368, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0": [[1371, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-0"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_2": [[1365, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_0.__init__": [[1372, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-0-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1": [[1373, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-1"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2": [[1375, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-2"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_2.__init__": [[1376, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-2-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReFreq_4.__init__": [[1370, "triqs-gf-wrapped-aux-callproxycyclat-x-refreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_3.__init__": [[1378, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-3-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_1.__init__": [[1374, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-1-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_4.__init__": [[1390, "triqs-gf-wrapped-aux-callproxydlr-4-init"]], "triqs.gf.wrapped_aux.CallProxyCycLat_x_ReTime_4.__init__": [[1380, "triqs-gf-wrapped-aux-callproxycyclat-x-retime-4-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_0": [[1381, "triqs-gf-wrapped-aux-callproxydlr-0"]], "triqs.gf.wrapped_aux.CallProxyDLR_4": [[1389, "triqs-gf-wrapped-aux-callproxydlr-4"]], "triqs.gf.wrapped_aux.CallProxyDLR_2": [[1385, "triqs-gf-wrapped-aux-callproxydlr-2"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0": [[1391, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_0.__init__": [[1392, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1": [[1393, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyDLR_1": [[1383, "triqs-gf-wrapped-aux-callproxydlr-1"]], "triqs.gf.wrapped_aux.CallProxyDLR_3.__init__": [[1388, "triqs-gf-wrapped-aux-callproxydlr-3-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_3": [[1387, "triqs-gf-wrapped-aux-callproxydlr-3"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_1.__init__": [[1394, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_2.__init__": [[1386, "triqs-gf-wrapped-aux-callproxydlr-2-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_0.__init__": [[1382, "triqs-gf-wrapped-aux-callproxydlr-0-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_1.__init__": [[1384, "triqs-gf-wrapped-aux-callproxydlr-1-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2.__init__": [[1406, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3.__init__": [[1408, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4": [[1409, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4": [[1399, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1": [[1403, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3": [[1397, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0.__init__": [[1402, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_4.__init__": [[1400, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_0": [[1401, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_2": [[1405, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_1.__init__": [[1404, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_3": [[1407, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2": [[1395, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_3.__init__": [[1398, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_BrZone_2.__init__": [[1396, "triqs-gf-wrapped-aux-callproxydlr-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_0.__init__": [[1412, "triqs-gf-wrapped-aux-callproxyimfreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1.__init__": [[1424, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_4.__init__": [[1420, "triqs-gf-wrapped-aux-callproxyimfreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0": [[1421, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_1": [[1423, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyDLR_x_CycLat_4.__init__": [[1410, "triqs-gf-wrapped-aux-callproxydlr-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_4": [[1419, "triqs-gf-wrapped-aux-callproxyimfreq-4"]], "triqs.gf.wrapped_aux.CallProxyImFreq_3": [[1417, "triqs-gf-wrapped-aux-callproxyimfreq-3"]], "triqs.gf.wrapped_aux.CallProxyImFreq_3.__init__": [[1418, "triqs-gf-wrapped-aux-callproxyimfreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_1": [[1413, "triqs-gf-wrapped-aux-callproxyimfreq-1"]], "triqs.gf.wrapped_aux.CallProxyImFreq_1.__init__": [[1414, "triqs-gf-wrapped-aux-callproxyimfreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_2.__init__": [[1416, "triqs-gf-wrapped-aux-callproxyimfreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_0.__init__": [[1422, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_0": [[1411, "triqs-gf-wrapped-aux-callproxyimfreq-0"]], "triqs.gf.wrapped_aux.CallProxyImFreq_2": [[1415, "triqs-gf-wrapped-aux-callproxyimfreq-2"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0": [[1431, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4": [[1429, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1.__init__": [[1434, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2.__init__": [[1436, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4": [[1439, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2.__init__": [[1426, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3": [[1427, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3": [[1437, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_2": [[1435, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_2": [[1425, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_4.__init__": [[1430, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_0.__init__": [[1432, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_3.__init__": [[1438, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_BrZone_3.__init__": [[1428, "triqs-gf-wrapped-aux-callproxyimfreq-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_1": [[1433, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyImTime_0": [[1441, "triqs-gf-wrapped-aux-callproxyimtime-0"]], "triqs.gf.wrapped_aux.CallProxyImTime_2_R.__init__": [[1452, "triqs-gf-wrapped-aux-callproxyimtime-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_2_R": [[1451, "triqs-gf-wrapped-aux-callproxyimtime-2-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_1_R.__init__": [[1448, "triqs-gf-wrapped-aux-callproxyimtime-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_1": [[1445, "triqs-gf-wrapped-aux-callproxyimtime-1"]], "triqs.gf.wrapped_aux.CallProxyImTime_2": [[1449, "triqs-gf-wrapped-aux-callproxyimtime-2"]], "triqs.gf.wrapped_aux.CallProxyImTime_2.__init__": [[1450, "triqs-gf-wrapped-aux-callproxyimtime-2-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_0_R.__init__": [[1444, "triqs-gf-wrapped-aux-callproxyimtime-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyImFreq_x_CycLat_4.__init__": [[1440, "triqs-gf-wrapped-aux-callproxyimfreq-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_1.__init__": [[1446, "triqs-gf-wrapped-aux-callproxyimtime-1-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_0.__init__": [[1442, "triqs-gf-wrapped-aux-callproxyimtime-0-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_3": [[1453, "triqs-gf-wrapped-aux-callproxyimtime-3"]], "triqs.gf.wrapped_aux.CallProxyImTime_3.__init__": [[1454, "triqs-gf-wrapped-aux-callproxyimtime-3-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_1_R": [[1447, "triqs-gf-wrapped-aux-callproxyimtime-1-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_0_R": [[1443, "triqs-gf-wrapped-aux-callproxyimtime-0-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R": [[1463, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-0-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_4": [[1457, "triqs-gf-wrapped-aux-callproxyimtime-4"]], "triqs.gf.wrapped_aux.CallProxyImTime_3_R.__init__": [[1456, "triqs-gf-wrapped-aux-callproxyimtime-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2": [[1469, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R.__init__": [[1468, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_4_R.__init__": [[1460, "triqs-gf-wrapped-aux-callproxyimtime-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1": [[1465, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0_R.__init__": [[1464, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1_R": [[1467, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-1-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_4.__init__": [[1458, "triqs-gf-wrapped-aux-callproxyimtime-4-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_3_R": [[1455, "triqs-gf-wrapped-aux-callproxyimtime-3-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0": [[1461, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_0.__init__": [[1462, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_1.__init__": [[1466, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_4_R": [[1459, "triqs-gf-wrapped-aux-callproxyimtime-4-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R": [[1483, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-0-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0.__init__": [[1482, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3": [[1473, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3.__init__": [[1474, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R": [[1471, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-2-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R.__init__": [[1476, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_3_R": [[1475, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-3-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R.__init__": [[1480, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0": [[1481, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4_R": [[1479, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-4-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4.__init__": [[1478, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_4": [[1477, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2_R.__init__": [[1472, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_BrZone_2.__init__": [[1470, "triqs-gf-wrapped-aux-callproxyimtime-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_0_R.__init__": [[1484, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-0-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1": [[1485, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R.__init__": [[1496, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-3-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R": [[1487, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-1-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4": [[1497, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R.__init__": [[1492, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-2-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1_R.__init__": [[1488, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-1-r-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2": [[1489, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2.__init__": [[1490, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3.__init__": [[1494, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4.__init__": [[1498, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_2_R": [[1491, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-2-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3": [[1493, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R": [[1499, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-4-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_1.__init__": [[1486, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_3_R": [[1495, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-3-r"]], "triqs.gf.wrapped_aux.CallProxyImTime_x_CycLat_4_R.__init__": [[1500, "triqs-gf-wrapped-aux-callproxyimtime-x-cyclat-4-r-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_3.__init__": [[1508, "triqs-gf-wrapped-aux-callproxylegendre-3-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_0": [[1501, "triqs-gf-wrapped-aux-callproxylegendre-0"]], "triqs.gf.wrapped_aux.CallProxyLegendre_3": [[1507, "triqs-gf-wrapped-aux-callproxylegendre-3"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1.__init__": [[1514, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_4": [[1509, "triqs-gf-wrapped-aux-callproxylegendre-4"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0.__init__": [[1512, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_2.__init__": [[1506, "triqs-gf-wrapped-aux-callproxylegendre-2-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_1": [[1513, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyLegendre_2": [[1505, "triqs-gf-wrapped-aux-callproxylegendre-2"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_0": [[1511, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyLegendre_1": [[1503, "triqs-gf-wrapped-aux-callproxylegendre-1"]], "triqs.gf.wrapped_aux.CallProxyLegendre_4.__init__": [[1510, "triqs-gf-wrapped-aux-callproxylegendre-4-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_1.__init__": [[1504, "triqs-gf-wrapped-aux-callproxylegendre-1-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_0.__init__": [[1502, "triqs-gf-wrapped-aux-callproxylegendre-0-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3.__init__": [[1518, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_3": [[1517, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1.__init__": [[1524, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0.__init__": [[1522, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3": [[1527, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2": [[1525, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2.__init__": [[1516, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_1": [[1523, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4": [[1529, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_3.__init__": [[1528, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_0": [[1521, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_2.__init__": [[1526, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_2": [[1515, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4.__init__": [[1520, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_BrZone_4": [[1519, "triqs-gf-wrapped-aux-callproxylegendre-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyLegendre_x_CycLat_4.__init__": [[1530, "triqs-gf-wrapped-aux-callproxylegendre-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_2": [[1535, "triqs-gf-wrapped-aux-callproxyrefreq-2"]], "triqs.gf.wrapped_aux.CallProxyReFreq_0.__init__": [[1532, "triqs-gf-wrapped-aux-callproxyrefreq-0-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_2.__init__": [[1536, "triqs-gf-wrapped-aux-callproxyrefreq-2-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_3.__init__": [[1538, "triqs-gf-wrapped-aux-callproxyrefreq-3-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1": [[1543, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_1.__init__": [[1544, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_0": [[1531, "triqs-gf-wrapped-aux-callproxyrefreq-0"]], "triqs.gf.wrapped_aux.CallProxyReFreq_3": [[1537, "triqs-gf-wrapped-aux-callproxyrefreq-3"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0.__init__": [[1542, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_1": [[1533, "triqs-gf-wrapped-aux-callproxyrefreq-1"]], "triqs.gf.wrapped_aux.CallProxyReFreq_4.__init__": [[1540, "triqs-gf-wrapped-aux-callproxyrefreq-4-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_4": [[1539, "triqs-gf-wrapped-aux-callproxyrefreq-4"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_0": [[1541, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyReFreq_1.__init__": [[1534, "triqs-gf-wrapped-aux-callproxyrefreq-1-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3.__init__": [[1548, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0": [[1551, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3": [[1557, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2": [[1545, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_3.__init__": [[1558, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2": [[1555, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4.__init__": [[1550, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_3": [[1547, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_0.__init__": [[1552, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1.__init__": [[1554, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_2.__init__": [[1556, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_1": [[1553, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_4": [[1549, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4": [[1559, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-4"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_BrZone_2.__init__": [[1546, "triqs-gf-wrapped-aux-callproxyrefreq-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_0.__init__": [[1562, "triqs-gf-wrapped-aux-callproxyretime-0-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_1.__init__": [[1564, "triqs-gf-wrapped-aux-callproxyretime-1-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_4": [[1569, "triqs-gf-wrapped-aux-callproxyretime-4"]], "triqs.gf.wrapped_aux.CallProxyReFreq_x_CycLat_4.__init__": [[1560, "triqs-gf-wrapped-aux-callproxyrefreq-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_2.__init__": [[1566, "triqs-gf-wrapped-aux-callproxyretime-2-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0": [[1571, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-0"]], "triqs.gf.wrapped_aux.CallProxyReTime_3.__init__": [[1568, "triqs-gf-wrapped-aux-callproxyretime-3-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_0.__init__": [[1572, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-0-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1.__init__": [[1574, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-1-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_2": [[1565, "triqs-gf-wrapped-aux-callproxyretime-2"]], "triqs.gf.wrapped_aux.CallProxyReTime_4.__init__": [[1570, "triqs-gf-wrapped-aux-callproxyretime-4-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_1": [[1563, "triqs-gf-wrapped-aux-callproxyretime-1"]], "triqs.gf.wrapped_aux.CallProxyReTime_0": [[1561, "triqs-gf-wrapped-aux-callproxyretime-0"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_1": [[1573, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-1"]], "triqs.gf.wrapped_aux.CallProxyReTime_3": [[1567, "triqs-gf-wrapped-aux-callproxyretime-3"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3": [[1577, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-3"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2": [[1575, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-2"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2.__init__": [[1586, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-2-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_2.__init__": [[1576, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-2-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4.__init__": [[1580, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-4-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0.__init__": [[1582, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-0-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1.__init__": [[1584, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-1-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_3.__init__": [[1578, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-3-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3": [[1587, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-3"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_1": [[1583, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-1"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_0": [[1581, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-0"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_BrZone_4": [[1579, "triqs-gf-wrapped-aux-callproxyretime-x-brzone-4"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_3.__init__": [[1588, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-3-init"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_2": [[1585, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-2"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4": [[1589, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-4"]], "triqs.lattice.lattice_tools.BravaisLattice": [[1598, "triqs-lattice-lattice-tools-bravaislattice"]], "triqs.lattice.bz_patch.BZPatch.dos": [[1596, "triqs-lattice-bz-patch-bzpatch-dos"]], "triqs.lattice.lattice_tools.BravaisLattice.orbital_names": [[1603, "triqs-lattice-lattice-tools-bravaislattice-orbital-names"]], "triqs.lattice.lattice_tools.BravaisLattice.lattice_to_real_coordinates": [[1600, "triqs-lattice-lattice-tools-bravaislattice-lattice-to-real-coordinates"]], "triqs.lattice.lattice_tools": [[1597, "module-triqs.lattice.lattice_tools"]], "triqs.lattice": [[1592, "module-triqs.lattice"]], "triqs.lattice.bz_patch": [[1593, "module-triqs.lattice.bz_patch"]], "triqs.lattice.lattice_tools.BravaisLattice.__init__": [[1599, "triqs-lattice-lattice-tools-bravaislattice-init"]], "triqs.lattice.lattice_tools.BravaisLattice.orbital_positions": [[1604, "triqs-lattice-lattice-tools-bravaislattice-orbital-positions"]], "triqs.lattice.lattice_tools.BravaisLattice.n_orbitals": [[1601, "triqs-lattice-lattice-tools-bravaislattice-n-orbitals"]], "triqs.lattice.bz_patch.BZPatch.__init__": [[1595, "triqs-lattice-bz-patch-bzpatch-init"]], "triqs.lattice.lattice_tools.BravaisLattice.ndim": [[1602, "triqs-lattice-lattice-tools-bravaislattice-ndim"]], "triqs.lattice.bz_patch.BZPatch": [[1594, "triqs-lattice-bz-patch-bzpatch"]], "triqs.gf.wrapped_aux.CallProxyReTime_x_CycLat_4.__init__": [[1590, "triqs-gf-wrapped-aux-callproxyretime-x-cyclat-4-init"]], "triqs.gf.wrapped_aux.set_from_gf_data_mul_LR": [[1591, "triqs-gf-wrapped-aux-set-from-gf-data-mul-lr"]], "triqs.lattice.lattice_tools.BrillouinZone.lattice": [[1608, "triqs-lattice-lattice-tools-brillouinzone-lattice"]], "triqs.lattice.lattice_tools.BrillouinZone.units": [[1610, "triqs-lattice-lattice-tools-brillouinzone-units"]], "triqs.lattice.lattice_tools.TightBinding.lattice_to_real_coordinates": [[1617, "triqs-lattice-lattice-tools-tightbinding-lattice-to-real-coordinates"]], "triqs.lattice.lattice_tools.TightBinding.__init__": [[1612, "triqs-lattice-lattice-tools-tightbinding-init"]], "triqs.lattice.lattice_tools.BrillouinZone.__init__": [[1607, "triqs-lattice-lattice-tools-brillouinzone-init"]], "triqs.lattice.lattice_tools.BravaisLattice.units": [[1605, "triqs-lattice-lattice-tools-bravaislattice-units"]], "triqs.lattice.lattice_tools.TightBinding.dispersion": [[1613, "triqs-lattice-lattice-tools-tightbinding-dispersion"]], "triqs.lattice.lattice_tools.TightBinding.fourier": [[1615, "triqs-lattice-lattice-tools-tightbinding-fourier"]], "triqs.lattice.lattice_tools.BrillouinZone": [[1606, "triqs-lattice-lattice-tools-brillouinzone"]], "triqs.lattice.lattice_tools.TightBinding.displ_vec": [[1614, "triqs-lattice-lattice-tools-tightbinding-displ-vec"]], "triqs.lattice.lattice_tools.TightBinding.overlap_mat_vec": [[1618, "triqs-lattice-lattice-tools-tightbinding-overlap-mat-vec"]], "triqs.lattice.lattice_tools.TightBinding": [[1611, "triqs-lattice-lattice-tools-tightbinding"]], "triqs.lattice.lattice_tools.dos": [[1619, "triqs-lattice-lattice-tools-dos"]], "triqs.lattice.lattice_tools.BrillouinZone.ndim": [[1609, "triqs-lattice-lattice-tools-brillouinzone-ndim"]], "triqs.lattice.lattice_tools.TightBinding.lattice": [[1616, "triqs-lattice-lattice-tools-tightbinding-lattice"]], "triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_SL_to_L": [[1629, "triqs-lattice-super-lattice-tbsuperlattice-change-coordinates-sl-to-l"]], "triqs.lattice.lattice_tools.dos_patch": [[1620, "triqs-lattice-lattice-tools-dos-patch"]], "triqs.lattice.super_lattice.TBSuperLattice.fourier": [[1633, "triqs-lattice-super-lattice-tbsuperlattice-fourier"]], "triqs.lattice.super_lattice.TBSuperLattice.dispersion": [[1631, "triqs-lattice-super-lattice-tbsuperlattice-dispersion"]], "triqs.lattice.super_lattice.TBSuperLattice.fold": [[1632, "triqs-lattice-super-lattice-tbsuperlattice-fold"]], "triqs.lattice.point": [[1621, "module-triqs.lattice.point"]], "triqs.lattice.super_lattice.TBSuperLattice": [[1626, "triqs-lattice-super-lattice-tbsuperlattice"]], "triqs.lattice.super_lattice": [[1625, "module-triqs.lattice.super_lattice"]], "triqs.lattice.super_lattice.TBSuperLattice.cluster_sites": [[1630, "triqs-lattice-super-lattice-tbsuperlattice-cluster-sites"]], "triqs.lattice.super_lattice.TBSuperLattice.get_kmesh": [[1634, "triqs-lattice-super-lattice-tbsuperlattice-get-kmesh"]], "triqs.lattice.super_lattice.TBSuperLattice.__init__": [[1627, "triqs-lattice-super-lattice-tbsuperlattice-init"]], "triqs.lattice.point.LatticePoint.value": [[1624, "triqs-lattice-point-latticepoint-value"]], "triqs.lattice.super_lattice.TBSuperLattice.change_coordinates_L_to_SL": [[1628, "triqs-lattice-super-lattice-tbsuperlattice-change-coordinates-l-to-sl"]], "triqs.lattice.point.LatticePoint.__init__": [[1623, "triqs-lattice-point-latticepoint-init"]], "triqs.lattice.point.LatticePoint": [[1622, "triqs-lattice-point-latticepoint"]], "triqs.lattice.super_lattice.TBSuperLattice.get_rmesh": [[1635, "triqs-lattice-super-lattice-tbsuperlattice-get-rmesh"]], "triqs.lattice.super_lattice.TBSuperLattice.lattice_to_real_coordinates": [[1637, "triqs-lattice-super-lattice-tbsuperlattice-lattice-to-real-coordinates"]], "triqs.lattice.super_lattice.TBSuperLattice.hoppings": [[1636, "triqs-lattice-super-lattice-tbsuperlattice-hoppings"]], "triqs.lattice.tight_binding.TBLattice.__init__": [[1647, "triqs-lattice-tight-binding-tblattice-init"]], "triqs.lattice.tight_binding.TBLattice.fourier": [[1649, "triqs-lattice-tight-binding-tblattice-fourier"]], "triqs.lattice.super_lattice.TBSuperLattice.ndim": [[1639, "triqs-lattice-super-lattice-tbsuperlattice-ndim"]], "triqs.lattice.super_lattice.TBSuperLattice.orbital_positions": [[1641, "triqs-lattice-super-lattice-tbsuperlattice-orbital-positions"]], "triqs.lattice.tight_binding.TBLattice.dispersion": [[1648, "triqs-lattice-tight-binding-tblattice-dispersion"]], "triqs.lattice.super_lattice.TBSuperLattice.pack_index_site_orbital": [[1642, "triqs-lattice-super-lattice-tbsuperlattice-pack-index-site-orbital"]], "triqs.lattice.super_lattice.TBSuperLattice.unpack_index_site_orbital": [[1644, "triqs-lattice-super-lattice-tbsuperlattice-unpack-index-site-orbital"]], "triqs.lattice.super_lattice.TBSuperLattice.units": [[1643, "triqs-lattice-super-lattice-tbsuperlattice-units"]], "triqs.lattice.super_lattice.TBSuperLattice.n_orbitals": [[1638, "triqs-lattice-super-lattice-tbsuperlattice-n-orbitals"]], "triqs.lattice.tight_binding.TBLattice": [[1646, "triqs-lattice-tight-binding-tblattice"]], "triqs.lattice.super_lattice.TBSuperLattice.orbital_names": [[1640, "triqs-lattice-super-lattice-tbsuperlattice-orbital-names"]], "triqs.lattice.tight_binding": [[1645, "module-triqs.lattice.tight_binding"]], "triqs.lattice.tight_binding.TBLattice.orbital_positions": [[1657, "triqs-lattice-tight-binding-tblattice-orbital-positions"]], "triqs.lattice.tight_binding.dos": [[1659, "triqs-lattice-tight-binding-dos"]], "triqs.lattice.tight_binding.TBLattice.hoppings": [[1652, "triqs-lattice-tight-binding-tblattice-hoppings"]], "triqs.lattice.tight_binding.TBLattice.get_rmesh": [[1651, "triqs-lattice-tight-binding-tblattice-get-rmesh"]], "triqs.lattice.utils": [[1661, "module-triqs.lattice.utils"]], "triqs.lattice.utils.TB_from_wannier90": [[1663, "triqs-lattice-utils-tb-from-wannier90"]], "triqs.lattice.tight_binding.TBLattice.lattice_to_real_coordinates": [[1653, "triqs-lattice-tight-binding-tblattice-lattice-to-real-coordinates"]], "triqs.lattice.utils.TB_to_sympy": [[1664, "triqs-lattice-utils-tb-to-sympy"]], "triqs.lattice.tight_binding.TBLattice.n_orbitals": [[1654, "triqs-lattice-tight-binding-tblattice-n-orbitals"]], "triqs.lattice.utils.TB_from_pythTB": [[1662, "triqs-lattice-utils-tb-from-pythtb"]], "triqs.lattice.tight_binding.TBLattice.get_kmesh": [[1650, "triqs-lattice-tight-binding-tblattice-get-kmesh"]], "triqs.lattice.tight_binding.TBLattice.orbital_names": [[1656, "triqs-lattice-tight-binding-tblattice-orbital-names"]], "triqs.lattice.tight_binding.TBLattice.units": [[1658, "triqs-lattice-tight-binding-tblattice-units"]], "triqs.lattice.tight_binding.TBLattice.ndim": [[1655, "triqs-lattice-tight-binding-tblattice-ndim"]], "triqs.lattice.tight_binding.dos_patch": [[1660, "triqs-lattice-tight-binding-dos-patch"]], "triqs.operators.operators": [[1670, "module-triqs.operators.operators"]], "triqs.operators.operators.Operator": [[1671, "triqs-operators-operators-operator"]], "triqs.operators.operators.Operator.real": [[1675, "triqs-operators-operators-operator-real"]], "triqs.operators.operators.is_op_hermitian": [[1679, "triqs-operators-operators-is-op-hermitian"]], "triqs.operators": [[1669, "module-triqs.operators"]], "triqs.operators.operators.Operator.is_zero": [[1674, "triqs-operators-operators-operator-is-zero"]], "triqs.operators.operators.c_dag": [[1677, "triqs-operators-operators-c-dag"]], "triqs.operators.operators.dagger": [[1678, "triqs-operators-operators-dagger"]], "triqs.lattice.utils.parse_hopping_from_wannier90_hr_dat": [[1667, "triqs-lattice-utils-parse-hopping-from-wannier90-hr-dat"]], "triqs.lattice.utils.extend_wannier90_to_spin": [[1665, "triqs-lattice-utils-extend-wannier90-to-spin"]], "triqs.operators.operators.Operator.imag": [[1673, "triqs-operators-operators-operator-imag"]], "triqs.operators.operators.c": [[1676, "triqs-operators-operators-c"]], "triqs.lattice.utils.parse_lattice_vectors_from_wannier90_wout": [[1668, "triqs-lattice-utils-parse-lattice-vectors-from-wannier90-wout"]], "triqs.lattice.utils.k_space_path": [[1666, "triqs-lattice-utils-k-space-path"]], "triqs.operators.operators.Operator.__init__": [[1672, "triqs-operators-operators-operator-init"]], "triqs.operators.util.U_matrix.spherical_to_cubic": [[1692, "triqs-operators-util-u-matrix-spherical-to-cubic"]], "triqs.operators.util.U_matrix.angular_matrix_element": [[1686, "triqs-operators-util-u-matrix-angular-matrix-element"]], "triqs.operators.util": [[1681, "module-triqs.operators.util"]], "triqs.operators.util.U_matrix.reduce_4index_to_2index": [[1691, "triqs-operators-util-u-matrix-reduce-4index-to-2index"]], "triqs.operators.util.U_matrix.t2g_submatrix": [[1694, "triqs-operators-util-u-matrix-t2g-submatrix"]], "triqs.operators.util.U_matrix": [[1682, "module-triqs.operators.util.U_matrix"]], "triqs.operators.util.U_matrix.cubic_names": [[1688, "triqs-operators-util-u-matrix-cubic-names"]], "triqs.operators.util.U_matrix.U_matrix_slater": [[1685, "triqs-operators-util-u-matrix-u-matrix-slater"]], "triqs.operators.util.U_matrix.eg_submatrix": [[1689, "triqs-operators-util-u-matrix-eg-submatrix"]], "triqs.operators.util.U_matrix.subarray": [[1693, "triqs-operators-util-u-matrix-subarray"]], "triqs.operators.util.U_matrix.radial_integrals_to_U_J": [[1690, "triqs-operators-util-u-matrix-radial-integrals-to-u-j"]], "triqs.operators.util.U_matrix.U_J_to_radial_integrals": [[1683, "triqs-operators-util-u-matrix-u-j-to-radial-integrals"]], "triqs.operators.operators.n": [[1680, "triqs-operators-operators-n"]], "triqs.operators.util.U_matrix.clebsch_gordan": [[1687, "triqs-operators-util-u-matrix-clebsch-gordan"]], "triqs.operators.util.U_matrix.U_matrix_kanamori": [[1684, "triqs-operators-util-u-matrix-u-matrix-kanamori"]], "triqs.operators.util.hamiltonians": [[1706, "module-triqs.operators.util.hamiltonians"]], "triqs.operators.util.extractors.extract_h_dict": [[1702, "triqs-operators-util-extractors-extract-h-dict"]], "triqs.operators.util.extractors.quadratic_terms": [[1704, "triqs-operators-util-extractors-quadratic-terms"]], "triqs.operators.util.U_matrix.three_j_symbol": [[1695, "triqs-operators-util-u-matrix-three-j-symbol"]], "triqs.operators.util.hamiltonians.backward_compat": [[1707, "triqs-operators-util-hamiltonians-backward-compat"]], "triqs.operators.util.extractors.block_matrix_from_op": [[1698, "triqs-operators-util-extractors-block-matrix-from-op"]], "triqs.operators.util.U_matrix.transform_U_matrix": [[1696, "triqs-operators-util-u-matrix-transform-u-matrix"]], "triqs.operators.util.extractors": [[1697, "module-triqs.operators.util.extractors"]], "triqs.operators.util.extractors.extract_U_dict2": [[1700, "triqs-operators-util-extractors-extract-u-dict2"]], "triqs.operators.util.extractors.extract_U_dict4": [[1701, "triqs-operators-util-extractors-extract-u-dict4"]], "triqs.operators.util.extractors.dict_to_matrix": [[1699, "triqs-operators-util-extractors-dict-to-matrix"]], "triqs.operators.util.extractors.op_from_block_matrix": [[1703, "triqs-operators-util-extractors-op-from-block-matrix"]], "triqs.operators.util.hamiltonians.diagonal_part": [[1708, "triqs-operators-util-hamiltonians-diagonal-part"]], "triqs.operators.util.extractors.quartic_terms": [[1705, "triqs-operators-util-extractors-quartic-terms"]], "triqs.operators.util.hamiltonians.h_int_density": [[1709, "triqs-operators-util-hamiltonians-h-int-density"]], "triqs.operators.util.op_struct.get_mkind": [[1722, "triqs-operators-util-op-struct-get-mkind"]], "triqs.operators.util.observables.S_op": [[1719, "triqs-operators-util-observables-s-op"]], "triqs.plot": [[1724, "module-triqs.plot"]], "triqs.operators.util.hamiltonians.h_int_kanamori": [[1710, "triqs-operators-util-hamiltonians-h-int-kanamori"]], "triqs.operators.util.observables.L_op": [[1716, "triqs-operators-util-observables-l-op"]], "triqs.operators.util.observables.check_backward_compat": [[1720, "triqs-operators-util-observables-check-backward-compat"]], "triqs.operators.util.observables.S2_op": [[1718, "triqs-operators-util-observables-s2-op"]], "triqs.operators.util.hamiltonians.h_int_slater": [[1711, "triqs-operators-util-hamiltonians-h-int-slater"]], "triqs.operators.util.observables": [[1713, "module-triqs.operators.util.observables"]], "triqs.operators.util.op_struct": [[1721, "module-triqs.operators.util.op_struct"]], "triqs.operators.util.op_struct.set_operator_structure": [[1723, "triqs-operators-util-op-struct-set-operator-structure"]], "triqs.operators.util.observables.L2_op": [[1714, "triqs-operators-util-observables-l2-op"]], "triqs.operators.util.hamiltonians.make_operator_real": [[1712, "triqs-operators-util-hamiltonians-make-operator-real"]], "triqs.operators.util.observables.N_op": [[1717, "triqs-operators-util-observables-n-op"]], "triqs.operators.util.observables.LS_op": [[1715, "triqs-operators-util-observables-ls-op"]], "triqs.plot.protocol.clip_array": [[1731, "triqs-plot-protocol-clip-array"]], "triqs.random_generator": [[1733, "module-triqs.random_generator"]], "triqs.plot.mpl_interface.use_amsmath": [[1729, "triqs-plot-mpl-interface-use-amsmath"]], "triqs.plot.mpl_interface.oplot": [[1726, "triqs-plot-mpl-interface-oplot"]], "triqs.random_generator.random_generator.random_generator_names_list": [[1737, "triqs-random-generator-random-generator-random-generator-names-list"]], "triqs.plot.mpl_interface.oplotr": [[1728, "triqs-plot-mpl-interface-oplotr"]], "triqs.random_generator.RandomGenerator": [[1734, "triqs-random-generator-randomgenerator"]], "triqs.plot.mpl_interface.oploti": [[1727, "triqs-plot-mpl-interface-oploti"]], "triqs.plot.protocol.plot_protocol_apply": [[1732, "triqs-plot-protocol-plot-protocol-apply"]], "triqs.stat": [[1738, "module-triqs.stat"]], "triqs.random_generator.random_generator": [[1736, "module-triqs.random_generator.random_generator"]], "triqs.stat.histogram": [[1739, "module-triqs.stat.histogram"]], "triqs.plot.mpl_interface": [[1725, "module-triqs.plot.mpl_interface"]], "triqs.plot.protocol": [[1730, "module-triqs.plot.protocol"]], "triqs.random_generator.RandomGenerator.__init__": [[1735, "triqs-random-generator-randomgenerator-init"]], "triqs.stat.histograms.Histogram.__init__": [[1743, "triqs-stat-histograms-histogram-init"]], "triqs.stat.histograms.Histogram.mesh_point": [[1747, "triqs-stat-histograms-histogram-mesh-point"]], "triqs.stat.histograms.Histogram.clear": [[1744, "triqs-stat-histograms-histogram-clear"]], "triqs.stat.histograms.Histogram.limits": [[1746, "triqs-stat-histograms-histogram-limits"]], "triqs.sumk.sumk_discrete": [[1753, "module-triqs.sumk.sumk_discrete"]], "triqs.stat.histograms.pdf": [[1751, "triqs-stat-histograms-pdf"]], "triqs.sumk": [[1752, "module-triqs.sumk"]], "triqs.stat.histogram.plot": [[1740, "triqs-stat-histogram-plot"]], "triqs.stat.histograms": [[1741, "module-triqs.stat.histograms"]], "triqs.stat.histograms.cdf": [[1750, "triqs-stat-histograms-cdf"]], "triqs.stat.histograms.Histogram.n_data_pts": [[1748, "triqs-stat-histograms-histogram-n-data-pts"]], "triqs.stat.histograms.Histogram": [[1742, "triqs-stat-histograms-histogram"]], "triqs.stat.histograms.Histogram.data": [[1745, "triqs-stat-histograms-histogram-data"]], "triqs.sumk.sumk_discrete.SumkDiscrete": [[1754, "triqs-sumk-sumk-discrete-sumkdiscrete"]], "triqs.stat.histograms.Histogram.n_lost_pts": [[1749, "triqs-stat-histograms-histogram-n-lost-pts"]], "triqs.utility": [[1766, "module-triqs.utility"]], "triqs.utility.bound_and_bisect.bound_and_bisect": [[1768, "triqs-utility-bound-and-bisect-bound-and-bisect"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.n_kpts": [[1764, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-n-kpts"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.resize_arrays": [[1765, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-resize-arrays"]], "triqs.sumk.sumk_discrete.SumkDiscrete.__init__": [[1756, "triqs-sumk-sumk-discrete-sumkdiscrete-init"]], "triqs.sumk.sumk_discrete.SumkDiscrete.GFBlocIndices": [[1755, "triqs-sumk-sumk-discrete-sumkdiscrete-gfblocindices"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice": [[1760, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice"]], "triqs.sumk.sumk_discrete.SumkDiscrete.resize_arrays": [[1758, "triqs-sumk-sumk-discrete-sumkdiscrete-resize-arrays"]], "triqs.sumk.sumk_discrete.SumkDiscrete.n_kpts": [[1757, "triqs-sumk-sumk-discrete-sumkdiscrete-n-kpts"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.GFBlocIndices": [[1761, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-gfblocindices"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.Recompute_Grid": [[1762, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-recompute-grid"]], "triqs.sumk.sumk_discrete_from_lattice": [[1759, "module-triqs.sumk.sumk_discrete_from_lattice"]], "triqs.utility.bound_and_bisect.determine_bounds": [[1769, "triqs-utility-bound-and-bisect-determine-bounds"]], "triqs.utility.bound_and_bisect": [[1767, "module-triqs.utility.bound_and_bisect"]], "triqs.sumk.sumk_discrete_from_lattice.SumkDiscreteFromLattice.__init__": [[1763, "triqs-sumk-sumk-discrete-from-lattice-sumkdiscretefromlattice-init"]], "triqs.utility.comparison_tests.assert_array_close_to_scalar": [[1772, "triqs-utility-comparison-tests-assert-array-close-to-scalar"]], "triqs.utility.dist_on_nodes.DistributionOnNodes.run": [[1783, "triqs-utility-dist-on-nodes-distributiononnodes-run"]], "triqs.utility.capture_stdout": [[1770, "module-triqs.utility.capture_stdout"]], "triqs.utility.comparison_tests.assert_arrays_are_close": [[1773, "triqs-utility-comparison-tests-assert-arrays-are-close"]], "triqs.utility.comparison_tests": [[1771, "module-triqs.utility.comparison_tests"]], "triqs.utility.comparison_tests.assert_block_gfs_are_close": [[1775, "triqs-utility-comparison-tests-assert-block-gfs-are-close"]], "triqs.utility.dist_on_nodes": [[1779, "module-triqs.utility.dist_on_nodes"]], "triqs.utility.dist_on_nodes.DistributionOnNodes.__init__": [[1782, "triqs-utility-dist-on-nodes-distributiononnodes-init"]], "triqs.utility.comparison_tests.assert_gfs_are_close": [[1776, "triqs-utility-comparison-tests-assert-gfs-are-close"]], "triqs.utility.dichotomy.dichotomy": [[1778, "triqs-utility-dichotomy-dichotomy"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack": [[1784, "triqs-utility-dist-on-nodes-distributiononnodesonestack"]], "triqs.utility.dist_on_nodes.DistributionOnNodes": [[1780, "triqs-utility-dist-on-nodes-distributiononnodes"]], "triqs.utility.dist_on_nodes.DistributionOnNodes.SleepTime": [[1781, "triqs-utility-dist-on-nodes-distributiononnodes-sleeptime"]], "triqs.utility.comparison_tests.assert_block2_gfs_are_close": [[1774, "triqs-utility-comparison-tests-assert-block2-gfs-are-close"]], "triqs.utility.dichotomy": [[1777, "module-triqs.utility.dichotomy"]], "triqs.utility.h5diff": [[1799, "module-triqs.utility.h5diff"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.run": [[1796, "triqs-utility-dist-on-nodes-distributiononnodestest-run"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.result": [[1795, "triqs-utility-dist-on-nodes-distributiononnodestest-result"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.result": [[1788, "triqs-utility-dist-on-nodes-distributiononnodesonestack-result"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.run": [[1789, "triqs-utility-dist-on-nodes-distributiononnodesonestack-run"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.__init__": [[1786, "triqs-utility-dist-on-nodes-distributiononnodesonestack-init"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.SleepTime": [[1792, "triqs-utility-dist-on-nodes-distributiononnodestest-sleeptime"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest": [[1791, "triqs-utility-dist-on-nodes-distributiononnodestest"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.finished": [[1794, "triqs-utility-dist-on-nodes-distributiononnodestest-finished"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.__init__": [[1793, "triqs-utility-dist-on-nodes-distributiononnodestest-init"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.treate": [[1798, "triqs-utility-dist-on-nodes-distributiononnodestest-treate"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.SleepTime": [[1785, "triqs-utility-dist-on-nodes-distributiononnodesonestack-sleeptime"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.finished": [[1787, "triqs-utility-dist-on-nodes-distributiononnodesonestack-finished"]], "triqs.utility.dist_on_nodes.DistributionOnNodesTest.the_function": [[1797, "triqs-utility-dist-on-nodes-distributiononnodestest-the-function"]], "triqs.utility.dist_on_nodes.DistributionOnNodesOneStack.treate": [[1790, "triqs-utility-dist-on-nodes-distributiononnodesonestack-treate"]], "triqs.utility.mpi_mpi4py.all_reduce": [[1805, "triqs-utility-mpi-mpi4py-all-reduce"]], "triqs.utility.mpi_mpi4py.bcast": [[1807, "triqs-utility-mpi-mpi4py-bcast"]], "triqs.utility.mpi_mpi4py.myprint_err": [[1810, "triqs-utility-mpi-mpi4py-myprint-err"]], "triqs.utility.mpi_mpi4py.myprint_out": [[1811, "triqs-utility-mpi-mpi4py-myprint-out"]], "triqs.utility.mpi.check_for_mpi": [[1803, "triqs-utility-mpi-check-for-mpi"]], "Returns:": [[1803, "returns"]], "triqs.utility.mpi": [[1802, "module-triqs.utility.mpi"]], "triqs.utility.mpi_mpi4py.master_gets_host_names": [[1809, "triqs-utility-mpi-mpi4py-master-gets-host-names"]], "triqs.utility.h5diff.h5diff": [[1801, "triqs-utility-h5diff-h5diff"]], "triqs.utility.mpi_mpi4py.recv": [[1812, "triqs-utility-mpi-mpi4py-recv"]], "triqs.utility.mpi_mpi4py.is_master_node": [[1808, "triqs-utility-mpi-mpi4py-is-master-node"]], "triqs.utility.h5diff.compare": [[1800, "triqs-utility-h5diff-compare"]], "triqs.utility.mpi_mpi4py.send": [[1814, "triqs-utility-mpi-mpi4py-send"]], "triqs.utility.mpi_mpi4py.report": [[1813, "triqs-utility-mpi-mpi4py-report"]], "triqs.utility.mpi_mpi4py": [[1804, "module-triqs.utility.mpi_mpi4py"]], "triqs.utility.mpi_mpi4py.barrier": [[1806, "triqs-utility-mpi-mpi4py-barrier"]], "triqs.utility.mpi_mpi4py.slice_sup": [[1817, "triqs-utility-mpi-mpi4py-slice-sup"]], "triqs.utility.mpi_nompi.recv": [[1826, "triqs-utility-mpi-nompi-recv"]], "triqs.utility.mpi_mpi4py.slice_inf": [[1816, "triqs-utility-mpi-mpi4py-slice-inf"]], "triqs.utility.mpi_nompi.all_reduce": [[1819, "triqs-utility-mpi-nompi-all-reduce"]], "triqs.utility.mpi_mpi4py.slice_array": [[1815, "triqs-utility-mpi-mpi4py-slice-array"]], "triqs.utility.mpi_nompi.barrier": [[1820, "triqs-utility-mpi-nompi-barrier"]], "triqs.utility.mpi_nompi.send": [[1828, "triqs-utility-mpi-nompi-send"]], "triqs.utility.mpi_nompi": [[1818, "module-triqs.utility.mpi_nompi"]], "triqs.utility.mpi_nompi.master_gets_host_names": [[1823, "triqs-utility-mpi-nompi-master-gets-host-names"]], "triqs.utility.mpi_nompi.bcast": [[1821, "triqs-utility-mpi-nompi-bcast"]], "triqs.utility.mpi_nompi.is_master_node": [[1822, "triqs-utility-mpi-nompi-is-master-node"]], "triqs.utility.mpi_nompi.myprint_out": [[1825, "triqs-utility-mpi-nompi-myprint-out"]], "triqs.utility.mpi_nompi.slice_array": [[1829, "triqs-utility-mpi-nompi-slice-array"]], "triqs.utility.mpi_nompi.myprint_err": [[1824, "triqs-utility-mpi-nompi-myprint-err"]], "triqs.utility.mpi_nompi.report": [[1827, "triqs-utility-mpi-nompi-report"]], "triqs.utility.redirect.T.is_alive": [[1837, "triqs-utility-redirect-t-is-alive"]], "triqs.utility.redirect.T.setName": [[1843, "triqs-utility-redirect-t-setname"]], "triqs.utility.redirect.T.getName": [[1834, "triqs-utility-redirect-t-getname"]], "triqs.utility.redirect": [[1830, "module-triqs.utility.redirect"]], "triqs.utility.redirect.T.ident": [[1835, "triqs-utility-redirect-t-ident"]], "triqs.utility.redirect.T.native_id": [[1840, "triqs-utility-redirect-t-native-id"]], "triqs.utility.redirect.T.start": [[1844, "triqs-utility-redirect-t-start"]], "triqs.utility.redirect.T.__init__": [[1832, "triqs-utility-redirect-t-init"]], "triqs.utility.redirect.T.daemon": [[1833, "triqs-utility-redirect-t-daemon"]], "triqs.utility.redirect.T.isDaemon": [[1836, "triqs-utility-redirect-t-isdaemon"]], "triqs.utility.redirect.T.run": [[1841, "triqs-utility-redirect-t-run"]], "triqs.utility.redirect.T": [[1831, "triqs-utility-redirect-t"]], "triqs.utility.redirect.T.name": [[1839, "triqs-utility-redirect-t-name"]], "triqs.utility.redirect.T.join": [[1838, "triqs-utility-redirect-t-join"]], "triqs.utility.redirect.T.setDaemon": [[1842, "triqs-utility-redirect-t-setdaemon"]], "Frequently-asked questions": [[1848, "frequently-asked-questions"]], "Q: How do I write my GF data to text files, e.g. to plot using other plotting tools?": [[1848, "q-how-do-i-write-my-gf-data-to-text-files-e-g-to-plot-using-other-plotting-tools"]], "Q: How do I save the triqs hash and script for debugging purposes?": [[1848, "q-how-do-i-save-the-triqs-hash-and-script-for-debugging-purposes"]], "Python Virtual Environments": [[1855, "python-virtual-environments"]], "Compiling a package from source": [[1855, "compiling-a-package-from-source"]], "triqs.utility.redirect.stop_redirect": [[1847, "triqs-utility-redirect-stop-redirect"]], "triqs.utility.redirect.start_redirect": [[1846, "triqs-utility-redirect-start-redirect"]], "User guide": [[1859, "user-guide"]], "Why use TRIQS?": [[1859, "why-use-triqs"]], "Python Tutorials": [[1859, "python-tutorials"]], "A quick tour in C++": [[1859, "a-quick-tour-in-c"]], "Customizing your installation": [[1853, "customizing-your-installation"]], "cmake options": [[1853, "cmake-options"]], "Prerequisites for the TRIQS Compilation on Mac OS X": [[1854, "prerequisites-for-the-triqs-compilation-on-mac-os-x"]], "Installation of the dependencies": [[1854, "installation-of-the-dependencies"]], "Packaged Versions of TRIQS": [[1850, "packaged-versions-of-triqs"]], "Ubuntu Debian packages": [[1850, "ubuntu-debian-packages"]], "Anaconda": [[1850, "anaconda"]], "Docker": [[1850, "docker"]], "Apptainer": [[1850, "apptainer"]], "Binder": [[1850, "binder"]], "Compiling TRIQS from source using EasyBuild": [[1850, "compiling-triqs-from-source-using-easybuild"]], "Compiling TRIQS from source (Advanced)": [[1850, "compiling-triqs-from-source-advanced"]], "Prerequisites": [[1850, "prerequisites"]], "Installation steps": [[1850, "installation-steps"]], "Environment setup": [[1850, "environment-setup"]], "Further reading": [[1850, "further-reading"]], "Installing required libraries on Ubuntu": [[1857, "installing-required-libraries-on-ubuntu"]], "Issues": [[1857, "issues"]], "Unix environment variables": [[1852, "unix-environment-variables"]], "Common environment variables": [[1852, "common-environment-variables"]], "Environment variables for software developement": [[1852, "environment-variables-for-software-developement"]], "Environment variables affecting OpenMP": [[1852, "environment-variables-affecting-openmp"]], "Using the clang compiler": [[1851, "using-the-clang-compiler"]], "Get and install clang on linux": [[1851, "get-and-install-clang-on-linux"]], "libclang": [[1851, "libclang"]], "A complete list of requirements": [[1856, "a-complete-list-of-requirements"]], "C++ compilers": [[1856, "c-compilers"]], "Tools and Libraries": [[1856, "tools-and-libraries"]], "Building the TRIQS documentation": [[1856, "building-the-triqs-documentation"]], "Welcome": [[1849, "welcome"]], "TRIQS 3.3": [[1849, null]], "TRIQS applications": [[1849, "triqs-applications"]], "Core libraries": [[1849, "core-libraries"]], "Numerical Algorithms": [[1849, "numerical-algorithms"]], "TRIQS Community": [[1849, "triqs-community"]], "Where to start?": [[1849, "where-to-start"]], "Guide for porting your application to TRIQS 3.0 and Python 3": [[1858, "guide-for-porting-your-application-to-triqs-3-0-and-python-3"]], "Preparation": [[1858, "preparation"]], "Port your Python files to Python 3": [[1858, "port-your-python-files-to-python-3"]], "Porting IPython Notebooks": [[1858, "porting-ipython-notebooks"]], "Floor division": [[1858, "floor-division"]], "Porting to TRIQS 3.0": [[1858, "porting-to-triqs-3-0"]], "Regenerate desc files": [[1858, "regenerate-desc-files"]], "Update app4triqs skeleton": [[1858, "update-app4triqs-skeleton"]], "Final Steps": [[1858, "final-steps"]], "triqs.utility.redirect.T.stop": [[1845, "triqs-utility-redirect-t-stop"]], "Profiling in C++ and Python": [[1866, "profiling-in-c-and-python"]], "Writing you own C++ code with TRIQS": [[1867, "writing-you-own-c-code-with-triqs"]], "A simple C++ project, with its tests and documentation": [[1867, "a-simple-c-project-with-its-tests-and-documentation"]], "A mixed C++/Python project": [[1867, "a-mixed-c-python-project"]], "Matsubara Green\u2019s functions": [[1862, "matsubara-green-s-functions"]], "Creation of a simple Green\u2019s function G(i\\omega)": [[1862, "creation-of-a-simple-green-s-function-g-i-omega"]], "Two-frequency Green\u2019s function G(i\\omega,i\\nu)": [[1862, "two-frequency-green-s-function-g-i-omega-i-nu"]], "Imaginary-time Green\u2019s functions G(\\tau)": [[1862, "imaginary-time-green-s-functions-g-tau"]], "Real-time Green\u2019s functions G(t)": [[1862, "real-time-green-s-functions-g-t"]], "Creation of a two real time GF G(t,t')": [[1862, "creation-of-a-two-real-time-gf-g-t-t"]], "How to fill a GF with placeholders": [[1862, "how-to-fill-a-gf-with-placeholders"]], "How to interpolate the GF value at a point of the domain": [[1862, "how-to-interpolate-the-gf-value-at-a-point-of-the-domain"]], "Dynamical mean-field theory on a Bethe lattice": [[1869, "dynamical-mean-field-theory-on-a-bethe-lattice"]], "Conventions for TRIQS applications": [[1864, "conventions-for-triqs-applications"]], "Source structure": [[1864, "source-structure"]], "Install structure": [[1864, "install-structure"]], "Build structure": [[1864, "build-structure"]], "Model DMFT": [[1871, "model-dmft"]], "det_manip: Determinant manipulations for CTQMC": [[1861, "det-manip-determinant-manipulations-for-ctqmc"]], "Creation of an empty det_manip class": [[1861, "creation-of-an-empty-det-manip-class"]], "Creation of a non empty det_manip class": [[1861, "creation-of-a-non-empty-det-manip-class"]], "Get information about a det_manip class": [[1861, "get-information-about-a-det-manip-class"]], "Add a line and a column": [[1861, "add-a-line-and-a-column"]], "Remove a line and a column": [[1861, "remove-a-line-and-a-column"]], "Add two lines and two columns": [[1861, "add-two-lines-and-two-columns"]], "Remove two lines and two columns": [[1861, "remove-two-lines-and-two-columns"]], "Remove/add the one/two last lines and columns": [[1861, "remove-add-the-one-two-last-lines-and-columns"]], "Replace one line and column": [[1861, "replace-one-line-and-column"]], "Basics": [[1868, "basics"]], "Learn more about Python, ipython and the notebook": [[1870, "learn-more-about-python-ipython-and-the-notebook"]], "A tight-binding model on a square lattice": [[1872, "a-tight-binding-model-on-a-square-lattice"]], "Using TRIQS in your own C++ project": [[1865, "using-triqs-in-your-own-c-project"]], "Green\u2019s function and HDF5 files": [[1863, "green-s-function-and-hdf5-files"]], "Multidimensional arrays": [[1860, "multidimensional-arrays"]], "Declaring and printing an array": [[1860, "declaring-and-printing-an-array"]], "Simple operations": [[1860, "simple-operations"]], "HDF5 Archiving": [[1860, "hdf5-archiving"]], "Views: ranges and slices": [[1860, "views-ranges-and-slices"]], "Matrices and vectors": [[1860, "matrices-and-vectors"]], "Defining through a lazy expression": [[1860, "defining-through-a-lazy-expression"]], "Linear algebra": [[1860, "linear-algebra"]], "Map and fold": [[1860, "map-and-fold"]], "Version compatibility": [[1910, "version-compatibility"]], "TRIQS version numbering": [[1910, "triqs-version-numbering"]], "TRIQS applications version numbering": [[1910, "triqs-applications-version-numbering"]], "How to determine the version of the installed TRIQS library": [[1910, "how-to-determine-the-version-of-the-installed-triqs-library"]], "Two-particle Response": [[1909, "two-particle-response"]], "itertools::sliced::cbegin": [[66, "itertools-sliced-cbegin"]], "itertools::sliced": [[64, "itertools-sliced"]], "Public members": [[64, "public-members"], [14, "public-members"], [20, "public-members"], [35, "public-members"], [42, "public-members"], [62, "public-members"], [72, "public-members"], [77, "public-members"], [84, "public-members"], [90, "public-members"], [96, "public-members"], [101, "public-members"], [128, "public-members"], [242, "public-members"]], "Member functions": [[64, "member-functions"], [14, "member-functions"], [20, "member-functions"], [28, "member-functions"], [35, "member-functions"], [42, "member-functions"], [49, "member-functions"], [72, "member-functions"], [77, "member-functions"], [84, "member-functions"], [90, "member-functions"], [96, "member-functions"], [101, "member-functions"], [115, "member-functions"], [123, "member-functions"], [128, "member-functions"], [133, "member-functions"], [154, "member-functions"], [192, "member-functions"], [242, "member-functions"], [259, "member-functions"], [271, "member-functions"], [283, "member-functions"], [325, "member-functions"], [340, "member-functions"], [351, "member-functions"], [357, "member-functions"], [366, "member-functions"], [378, "member-functions"], [390, "member-functions"], [406, "member-functions"], [432, "member-functions"], [442, "member-functions"], [449, "member-functions"], [463, "member-functions"], [540, "member-functions"], [521, "member-functions"], [539, "member-functions"]], "itertools::sliced::cend": [[67, "itertools-sliced-cend"]], "itertools::sliced::begin": [[65, "itertools-sliced-begin"]], "Returns": [[65, "returns"], [68, "returns"], [12, "returns"], [13, "returns"], [19, "returns"], [18, "returns"], [21, "returns"], [16, "returns"], [24, "returns"], [33, "returns"], [29, "returns"], [30, "returns"], [32, "returns"], [31, "returns"], [34, "returns"], [36, "returns"], [44, "returns"], [40, "returns"], [47, "returns"], [51, "returns"], [48, "returns"], [46, "returns"], [52, "returns"], [57, "returns"], [58, "returns"], [63, "returns"], [71, "returns"], [70, "returns"], [74, "returns"], [76, "returns"], [78, "returns"], [81, "returns"], [83, "returns"], [86, "returns"], [93, "returns"], [92, "returns"], [89, "returns"], [98, "returns"], [95, "returns"], [102, "returns"], [100, "returns"], [106, "returns"], [113, "returns"], [114, "returns"], [121, "returns"], [122, "returns"], [120, "returns"], [125, "returns"], [126, "returns"], [127, "returns"], [130, "returns"], [135, "returns"], [131, "returns"], [132, "returns"], [139, "returns"], [141, "returns"], [142, "returns"], [144, "returns"], [151, "returns"], [149, "returns"], [153, "returns"], [155, "returns"], [156, "returns"], [157, "returns"], [158, "returns"], [163, "returns"], [171, "returns"], [170, "returns"], [172, "returns"], [183, "returns"], [181, "returns"], [182, "returns"], [187, "returns"], [184, "returns"], [186, "returns"], [185, "returns"], [189, "returns"], [188, "returns"], [190, "returns"], [255, "returns"], [254, "returns"], [256, "returns"], [257, "returns"], [301, "returns"], [302, "returns"], [300, "returns"], [314, "returns"], [315, "returns"], [317, "returns"], [327, "returns"], [326, "returns"], [331, "returns"], [330, "returns"], [328, "returns"], [339, "returns"], [338, "returns"], [334, "returns"], [342, "returns"], [343, "returns"], [346, "returns"], [350, "returns"], [349, "returns"], [347, "returns"], [348, "returns"], [362, "returns"], [363, "returns"], [359, "returns"], [361, "returns"], [369, "returns"], [367, "returns"], [364, "returns"], [375, "returns"], [372, "returns"], [371, "returns"], [373, "returns"], [374, "returns"], [377, "returns"], [380, "returns"], [382, "returns"], [387, "returns"], [385, "returns"], [383, "returns"], [384, "returns"], [386, "returns"], [389, "returns"], [393, "returns"], [399, "returns"], [395, "returns"], [396, "returns"], [394, "returns"], [400, "returns"], [402, "returns"], [401, "returns"], [404, "returns"], [407, "returns"], [414, "returns"], [428, "returns"], [430, "returns"], [431, "returns"], [452, "returns"], [453, "returns"], [455, "returns"], [457, "returns"], [459, "returns"], [456, "returns"], [458, "returns"], [454, "returns"], [460, "returns"], [462, "returns"], [469, "returns"], [470, "returns"], [466, "returns"], [471, "returns"], [476, "returns"], [474, "returns"], [473, "returns"], [475, "returns"], [477, "returns"], [481, "returns"], [479, "returns"], [478, "returns"], [483, "returns"], [480, "returns"], [482, "returns"], [486, "returns"], [485, "returns"], [487, "returns"], [484, "returns"]], "itertools::sliced::end": [[68, "itertools-sliced-end"]], "itertools::sliced::operator==": [[69, "itertools-sliced-operator"]], "itertools::enum_iter": [[14, "itertools-enum-iter"]], "itertools::enum_iter::constructor": [[15, "itertools-enum-iter-constructor"]], "itertools::chunk_range": [[12, "itertools-chunk-range"]], "itertools::distance": [[13, "itertools-distance"]], "Classes": [[11, "classes"], [108, "classes"], [152, "classes"], [191, "classes"], [240, "classes"], [324, "classes"], [405, "classes"], [448, "classes"]], "Functions": [[11, "functions"], [108, "functions"], [152, "functions"], [240, "functions"], [324, "functions"], [405, "functions"], [448, "functions"]], "itertools::enumerated": [[20, "itertools-enumerated"]], "itertools::enumerate": [[19, "itertools-enumerate"]], "itertools::enum_iter::operator==": [[18, "itertools-enum-iter-operator"]], "itertools::enum_iter::increment": [[17, "itertools-enum-iter-increment"]], "itertools::enumerated::begin": [[21, "itertools-enumerated-begin"]], "itertools::enum_iter::dereference": [[16, "itertools-enum-iter-dereference"]], "itertools::iterator_facade": [[27, "itertools-iterator-facade"]], "itertools::foreach": [[26, "itertools-foreach"]], "itertools::enumerated::end": [[24, "itertools-enumerated-end"]], "itertools::enumerated::cbegin": [[22, "itertools-enumerated-cbegin"]], "itertools::enumerated::operator==": [[25, "itertools-enumerated-operator"]], "itertools::enumerated::cend": [[23, "itertools-enumerated-cend"]], "itertools::make_sentinel": [[33, "itertools-make-sentinel"]], "itertools::iterator_facade::operator*": [[29, "itertools-iterator-facade-iter-value-std-forward-iterator-tag-reference-difference-operator"]], "itertools::iterator_facade::operator++": [[30, "itertools-iterator-facade-iter-value-std-forward-iterator-tag-reference-difference-operator"]], "itertools::make_product": [[32, "itertools-make-product"]], "itertools::iterator_facade::operator->": [[31, "itertools-iterator-facade-iter-value-std-forward-iterator-tag-reference-difference-operator"]], "itertools::iterator_facade": [[28, "itertools-iterator-facade-iter-value-std-forward-iterator-tag-reference-difference"]], "itertools::make_vector_from_range": [[34, "itertools-make-vector-from-range"]], "itertools::multiplied::cend": [[38, "itertools-multiplied-cend"]], "itertools::multiplied": [[35, "itertools-multiplied"]], "itertools::multiplied::begin": [[36, "itertools-multiplied-begin"]], "itertools::multiplied::cbegin": [[37, "itertools-multiplied-cbegin"]], "itertools::multiplied::constructor": [[39, "itertools-multiplied-constructor"]], "itertools::prod_iter::increment": [[45, "itertools-prod-iter-increment"]], "itertools::prod_iter::dereference": [[44, "itertools-prod-iter-dereference"]], "itertools::prod_iter": [[42, "itertools-prod-iter"]], "itertools::multiplied::operator==": [[41, "itertools-multiplied-operator"]], "itertools::prod_iter::constructor": [[43, "itertools-prod-iter-constructor"]], "itertools::multiplied::end": [[40, "itertools-multiplied-end"]], "itertools::product": [[47, "itertools-product"]], "itertools::range::cbegin": [[51, "itertools-range-cbegin"]], "itertools::range::begin": [[50, "itertools-range-begin"]], "itertools::product_range": [[48, "itertools-product-range"]], "itertools::prod_iter::operator==": [[46, "itertools-prod-iter-operator"]], "itertools::range": [[49, "itertools-range"]], "Non Member functions": [[49, "non-member-functions"], [192, "non-member-functions"], [242, "non-member-functions"], [259, "non-member-functions"], [271, "non-member-functions"], [283, "non-member-functions"], [325, "non-member-functions"], [340, "non-member-functions"], [357, "non-member-functions"], [366, "non-member-functions"], [378, "non-member-functions"], [390, "non-member-functions"], [406, "non-member-functions"], [463, "non-member-functions"], [539, "non-member-functions"]], "itertools::range::end": [[54, "itertools-range-end"]], "itertools::range::first": [[55, "itertools-range-first"]], "itertools::range::last": [[56, "itertools-range-last"]], "itertools::range::constructor": [[53, "itertools-range-constructor"]], "itertools::range::cend": [[52, "itertools-range-cend"]], "itertools::range::operator+": [[57, "itertools-range-operator"]], "itertools::range::operator<<": [[58, "itertools-range-operator"]], "itertools::slice": [[63, "itertools-slice"]], "itertools::sentinel_t": [[62, "itertools-sentinel-t"]], "itertools::range::size": [[60, "itertools-range-size"]], "itertools::range::operator==": [[59, "itertools-range-operator"]], "itertools::range::step": [[61, "itertools-range-step"]], "itertools::stride": [[71, "itertools-stride"]], "itertools::stride_iter::increment": [[75, "itertools-stride-iter-increment"]], "itertools::sliced::size": [[70, "itertools-sliced-size"]], "itertools::stride_iter::dereference": [[74, "itertools-stride-iter-dereference"]], "itertools::stride_iter": [[72, "itertools-stride-iter"]], "itertools::stride_iter::constructor": [[73, "itertools-stride-iter-constructor"]], "itertools::strided::cend": [[80, "itertools-strided-cend"]], "itertools::stride_iter::operator==": [[76, "itertools-stride-iter-operator"]], "itertools::strided::begin": [[78, "itertools-strided-begin"]], "itertools::strided::end": [[81, "itertools-strided-end"]], "itertools::strided::cbegin": [[79, "itertools-strided-cbegin"]], "itertools::strided": [[77, "itertools-strided"]], "itertools::transform_iter": [[84, "itertools-transform-iter"]], "itertools::transform_iter::constructor": [[85, "itertools-transform-iter-constructor"]], "itertools::transform": [[83, "itertools-transform"]], "itertools::strided::operator==": [[82, "itertools-strided-operator"]], "itertools::transform_iter::dereference": [[86, "itertools-transform-iter-dereference"]], "itertools::transform_iter::increment": [[87, "itertools-transform-iter-increment"]], "itertools::transformed::cend": [[93, "itertools-transformed-cend"]], "itertools::transform_iter::operator=": [[88, "itertools-transform-iter-operator"]], "itertools::transformed::cbegin": [[92, "itertools-transformed-cbegin"]], "itertools::transformed::begin": [[91, "itertools-transformed-begin"]], "itertools::transform_iter::operator==": [[89, "itertools-transform-iter-operator"]], "itertools::transformed": [[90, "itertools-transformed"]], "itertools::zip_iter::dereference": [[98, "itertools-zip-iter-dereference"]], "itertools::zip_iter::constructor": [[97, "itertools-zip-iter-constructor"]], "itertools::zip": [[95, "itertools-zip"]], "itertools::zip_iter::increment": [[99, "itertools-zip-iter-increment"]], "itertools::zip_iter": [[96, "itertools-zip-iter"]], "itertools::transformed::end": [[94, "itertools-transformed-end"]], "itertools::zipped::constructor": [[105, "itertools-zipped-constructor"]], "itertools::zipped::cbegin": [[103, "itertools-zipped-cbegin"]], "itertools::zipped::cend": [[104, "itertools-zipped-cend"]], "itertools::zipped": [[101, "itertools-zipped"]], "itertools::zipped::begin": [[102, "itertools-zipped-begin"]], "itertools::zip_iter::operator==": [[100, "itertools-zip-iter-operator"]], "mpi::all_reduce": [[110, "mpi-all-reduce"]], "itertools::zipped::operator==": [[107, "itertools-zipped-operator"]], "itertools::zipped::end": [[106, "itertools-zipped-end"]], "mpi::all_gather": [[109, "mpi-all-gather"]], "mpi::all_reduce_in_place": [[111, "mpi-all-reduce-in-place"]], "mpi::communicator::barrier": [[117, "mpi-communicator-barrier"]], "mpi::communicator": [[115, "mpi-communicator"]], "mpi::communicator::abort": [[116, "mpi-communicator-abort"]], "mpi::chunk": [[113, "mpi-chunk"]], "mpi::chunk_length": [[114, "mpi-chunk-length"]], "mpi::broadcast": [[112, "mpi-broadcast"]], "mpi::communicator::size": [[121, "mpi-communicator-size"]], "mpi::communicator::split": [[122, "mpi-communicator-split"]], "mpi::communicator::constructor": [[118, "mpi-communicator-constructor"]], "mpi::communicator::rank": [[120, "mpi-communicator-rank"]], "mpi::environment": [[123, "mpi-environment"]], "mpi::communicator::get": [[119, "mpi-communicator-get"]], "mpi::gather": [[125, "mpi-gather"]], "mpi::lazy::invoke": [[129, "mpi-lazy-invoke"]], "mpi::get_mpi_type": [[126, "mpi-get-mpi-type"]], "mpi::lazy": [[128, "mpi-lazy"]], "mpi::environment::constructor": [[124, "mpi-environment-constructor"]], "mpi::is_initialized": [[127, "mpi-is-initialized"]], "mpi::lazy::shape": [[130, "mpi-lazy-shape"]], "mpi::monitor::emergency_occured": [[135, "mpi-monitor-emergency-occured"]], "mpi::monitor::constructor": [[134, "mpi-monitor-constructor"]], "mpi::map_C_function": [[131, "mpi-map-c-function"]], "mpi::monitor": [[133, "mpi-monitor"]], "mpi::map_add": [[132, "mpi-map-add"]], "mpi::monitor::finalize_communications": [[136, "mpi-monitor-finalize-communications"]], "mpi::monitor::root_check_nodes_and_bcast": [[139, "mpi-monitor-root-check-nodes-and-bcast"]], "mpi::mpi_broadcast": [[140, "mpi-mpi-broadcast"]], "mpi::monitor::operator=": [[137, "mpi-monitor-operator"]], "mpi::monitor::request_emergency_stop": [[138, "mpi-monitor-request-emergency-stop"]], "mpi::mpi_gather": [[141, "mpi-mpi-gather"]], "mpi::mpi_reduce": [[142, "mpi-mpi-reduce"]], "mpi::mpi_type": [[146, "mpi-mpi-type-constt"]], "mpi::mpi_reduce_in_place": [[143, "mpi-mpi-reduce-in-place"]], "mpi::mpi_scatter": [[144, "mpi-mpi-scatter"]], "mpi::mpi_type": [[145, "mpi-mpi-type"]], "mpi::mpi_type>": [[147, "mpi-mpi-type-std-tuple-t"]], "mpi::scatter": [[151, "mpi-scatter"]], "mpi::reduce_in_place": [[150, "mpi-reduce-in-place"]], "triqs::atom_diag": [[152, "triqs-atom-diag"]], "Type aliases": [[152, "type-aliases"], [240, "type-aliases"], [324, "type-aliases"]], "mpi::reduce": [[149, "mpi-reduce"]], "mpi::mpi_type_from_tie": [[148, "mpi-mpi-type-from-tie"]], "triqs::atom_diag::act": [[153, "triqs-atom-diag-act"]], "triqs::atom_diag::atom_diag::c_connection": [[155, "triqs-atom-diag-atom-diag-c-connection"]], "triqs::atom_diag::atom_diag::c_matrix": [[156, "triqs-atom-diag-atom-diag-c-matrix"]], "triqs::atom_diag::atom_diag": [[154, "triqs-atom-diag-atom-diag"]], "triqs::atom_diag::atom_diag::cdag_connection": [[157, "triqs-atom-diag-atom-diag-cdag-connection"]], "triqs::atom_diag::atom_diag::cdag_matrix": [[158, "triqs-atom-diag-atom-diag-cdag-matrix"]], "triqs::atom_diag::atom_diag::constructor": [[159, "triqs-atom-diag-atom-diag-constructor"]], "triqs::atom_diag::atom_diag::get_fops": [[165, "triqs-atom-diag-atom-diag-get-fops"]], "triqs::atom_diag::atom_diag::get_eigenvalue": [[162, "triqs-atom-diag-atom-diag-get-eigenvalue"]], "triqs::atom_diag::atom_diag::flatten_subspace_index": [[160, "triqs-atom-diag-atom-diag-flatten-subspace-index"]], "triqs::atom_diag::atom_diag::get_fock_states": [[164, "triqs-atom-diag-atom-diag-get-fock-states"]], "triqs::atom_diag::atom_diag::get_energies": [[163, "triqs-atom-diag-atom-diag-get-energies"]], "triqs::atom_diag::atom_diag::get_eigensystems": [[161, "triqs-atom-diag-atom-diag-get-eigensystems"]], "triqs::atom_diag::atom_diag::get_full_hilbert_space_dim": [[167, "triqs-atom-diag-atom-diag-get-full-hilbert-space-dim"]], "triqs::atom_diag::atom_diag::get_gs_energy": [[168, "triqs-atom-diag-atom-diag-get-gs-energy"]], "triqs::atom_diag::atom_diag::get_op_mat": [[171, "triqs-atom-diag-atom-diag-get-op-mat"]], "triqs::atom_diag::atom_diag::get_h_atomic": [[169, "triqs-atom-diag-atom-diag-get-h-atomic"]], "triqs::atom_diag::atom_diag::get_full_hilbert_space": [[166, "triqs-atom-diag-atom-diag-get-full-hilbert-space"]], "triqs::atom_diag::atom_diag::get_matrix_element_of_monomial": [[170, "triqs-atom-diag-atom-diag-get-matrix-element-of-monomial"]], "triqs::atom_diag::atom_diag::get_subspace_dims": [[174, "triqs-atom-diag-atom-diag-get-subspace-dims"]], "triqs::atom_diag::atom_diag::get_unitary_matrices": [[175, "triqs-atom-diag-atom-diag-get-unitary-matrices"]], "triqs::atom_diag::atom_diag::get_subspace_dim": [[173, "triqs-atom-diag-atom-diag-get-subspace-dim"]], "triqs::atom_diag::atom_diag::get_quantum_numbers": [[172, "triqs-atom-diag-atom-diag-get-quantum-numbers"]], "triqs::atom_diag::atom_diag::get_unitary_matrix": [[176, "triqs-atom-diag-atom-diag-get-unitary-matrix"]], "triqs::atom_diag::atom_diag::get_vacuum_state": [[177, "triqs-atom-diag-atom-diag-get-vacuum-state"]], "triqs::atom_diag::atomic_g_l": [[183, "triqs-atom-diag-atomic-g-l"]], "triqs::atom_diag::atomic_density_matrix": [[181, "triqs-atom-diag-atomic-density-matrix"]], "triqs::atom_diag::atom_diag::n_subspaces": [[180, "triqs-atom-diag-atom-diag-n-subspaces"]], "triqs::atom_diag::atom_diag::index_range_of_subspace": [[179, "triqs-atom-diag-atom-diag-index-range-of-subspace"]], "triqs::atom_diag::atomic_g_iw": [[182, "triqs-atom-diag-atomic-g-iw"]], "triqs::atom_diag::atom_diag::get_vacuum_subspace_index": [[178, "triqs-atom-diag-atom-diag-get-vacuum-subspace-index"]], "triqs::atom_diag::partition_function": [[187, "triqs-atom-diag-partition-function"]], "triqs::atom_diag::atomic_g_lehmann": [[184, "triqs-atom-diag-atomic-g-lehmann"]], "triqs::atom_diag::atomic_g_w": [[186, "triqs-atom-diag-atomic-g-w"]], "triqs::atom_diag::atomic_g_tau": [[185, "triqs-atom-diag-atomic-g-tau"]], "triqs::atom_diag::quantum_number_eigenvalues_checked": [[189, "triqs-atom-diag-quantum-number-eigenvalues-checked"]], "triqs::atom_diag::quantum_number_eigenvalues": [[188, "triqs-atom-diag-quantum-number-eigenvalues"]], "triqs::atom_diag::trace_rho_op": [[190, "triqs-atom-diag-trace-rho-op"]], "triqs::det_manip::det_manip::change_row": [[194, "triqs-det-manip-det-manip-change-row"]], "triqs::det_manip::det_manip::clear": [[195, "triqs-det-manip-det-manip-clear"]], "triqs::det_manip": [[191, "triqs-det-manip"]], "triqs::det_manip::det_manip": [[192, "triqs-det-manip-det-manip"]], "triqs::det_manip::det_manip::change_col": [[193, "triqs-det-manip-det-manip-change-col"]], "triqs::det_manip::det_manip::get_precision_error": [[201, "triqs-det-manip-det-manip-get-precision-error"]], "triqs::det_manip::det_manip::get_function": [[199, "triqs-det-manip-det-manip-get-function"]], "triqs::det_manip::det_manip::get_n_operations_before_check": [[200, "triqs-det-manip-det-manip-get-n-operations-before-check"]], "triqs::det_manip::det_manip::complete_operation": [[196, "triqs-det-manip-det-manip-complete-operation"]], "triqs::det_manip::det_manip::determinant": [[198, "triqs-det-manip-det-manip-determinant"]], "triqs::det_manip::det_manip::constructor": [[197, "triqs-det-manip-det-manip-constructor"]], "triqs::det_manip::det_manip::get_x_internal_order": [[205, "triqs-det-manip-det-manip-get-x-internal-order"]], "triqs::det_manip::det_manip::get_precision_warning": [[202, "triqs-det-manip-det-manip-get-precision-warning"]], "triqs::det_manip::det_manip::get_x": [[204, "triqs-det-manip-det-manip-get-x"]], "triqs::det_manip::det_manip::get_singular_threshold": [[203, "triqs-det-manip-det-manip-get-singular-threshold"]], "triqs::det_manip::det_manip::get_y": [[206, "triqs-det-manip-det-manip-get-y"]], "triqs::det_manip::det_manip::get_y_internal_order": [[207, "triqs-det-manip-det-manip-get-y-internal-order"]], "triqs::det_manip::det_manip::insert2_at_end": [[212, "triqs-det-manip-det-manip-insert2-at-end"]], "triqs::det_manip::det_manip::h5_read": [[208, "triqs-det-manip-det-manip-h5-read"]], "triqs::det_manip::det_manip::h5_write": [[209, "triqs-det-manip-det-manip-h5-write"]], "triqs::det_manip::det_manip::insert_at_end": [[213, "triqs-det-manip-det-manip-insert-at-end"]], "triqs::det_manip::det_manip::insert": [[210, "triqs-det-manip-det-manip-insert"]], "triqs::det_manip::det_manip::insert2": [[211, "triqs-det-manip-det-manip-insert2"]], "triqs::det_manip::det_manip::remove": [[219, "triqs-det-manip-det-manip-remove"]], "triqs::det_manip::det_manip::is_singular": [[216, "triqs-det-manip-det-manip-is-singular"]], "triqs::det_manip::det_manip::reject_last_try": [[218, "triqs-det-manip-det-manip-reject-last-try"]], "triqs::det_manip::det_manip::matrix": [[217, "triqs-det-manip-det-manip-matrix"]], "triqs::det_manip::det_manip::inverse_matrix": [[214, "triqs-det-manip-det-manip-inverse-matrix"]], "triqs::det_manip::det_manip::inverse_matrix_internal_order": [[215, "triqs-det-manip-det-manip-inverse-matrix-internal-order"]], "triqs::det_manip::det_manip::roll_matrix": [[224, "triqs-det-manip-det-manip-roll-matrix"]], "triqs::det_manip::det_manip::remove2_at_end": [[221, "triqs-det-manip-det-manip-remove2-at-end"]], "triqs::det_manip::det_manip::remove_at_end": [[222, "triqs-det-manip-det-manip-remove-at-end"]], "triqs::det_manip::det_manip::set_n_operations_before_check": [[225, "triqs-det-manip-det-manip-set-n-operations-before-check"]], "triqs::det_manip::det_manip::reserve": [[223, "triqs-det-manip-det-manip-reserve"]], "triqs::det_manip::det_manip::remove2": [[220, "triqs-det-manip-det-manip-remove2"]], "triqs::det_manip::det_manip::set_precision_error": [[226, "triqs-det-manip-det-manip-set-precision-error"]], "triqs::det_manip::det_manip::size": [[229, "triqs-det-manip-det-manip-size"]], "triqs::det_manip::det_manip::set_singular_threshold": [[228, "triqs-det-manip-det-manip-set-singular-threshold"]], "triqs::det_manip::det_manip::swap_col": [[230, "triqs-det-manip-det-manip-swap-col"]], "triqs::det_manip::det_manip::swap_row": [[231, "triqs-det-manip-det-manip-swap-row"]], "triqs::det_manip::det_manip::set_precision_warning": [[227, "triqs-det-manip-det-manip-set-precision-warning"]], "triqs::det_manip::det_manip::try_change_col": [[232, "triqs-det-manip-det-manip-try-change-col"]], "triqs::det_manip::det_manip::try_change_col_row": [[233, "triqs-det-manip-det-manip-try-change-col-row"]], "triqs::det_manip::det_manip::try_insert": [[235, "triqs-det-manip-det-manip-try-insert"]], "triqs::det_manip::det_manip::try_insert_k": [[236, "triqs-det-manip-det-manip-try-insert-k"]], "triqs::det_manip::det_manip::try_change_row": [[234, "triqs-det-manip-det-manip-try-change-row"]], "triqs::det_manip::det_manip::try_refill": [[237, "triqs-det-manip-det-manip-try-refill"]], "triqs::gfs::": [[241, "triqs-gfs-deduction-guide-for-block-gf"]], "triqs::det_manip::det_manip::try_remove_k": [[239, "triqs-det-manip-det-manip-try-remove-k"]], "triqs::gfs::block_gf::block_names": [[243, "triqs-gfs-block-gf-block-names"]], "triqs::gfs::block_gf": [[242, "triqs-gfs-block-gf"]], "triqs::det_manip::det_manip::try_remove": [[238, "triqs-det-manip-det-manip-try-remove"]], "triqs::gfs": [[240, "triqs-gfs"]], "triqs::gfs::block_gf::h5_read": [[247, "triqs-gfs-block-gf-h5-read"]], "triqs::gfs::block_gf::constructor": [[245, "triqs-gfs-block-gf-constructor"]], "triqs::gfs::block_gf::h5_write": [[248, "triqs-gfs-block-gf-h5-write"]], "triqs::gfs::block_gf::data": [[246, "triqs-gfs-block-gf-data"]], "triqs::gfs::block_gf::hdf5_format": [[249, "triqs-gfs-block-gf-hdf5-format"]], "triqs::gfs::block_gf::block_sizes": [[244, "triqs-gfs-block-gf-block-sizes"]], "triqs::gfs::fit_gf_dlr": [[253, "triqs-gfs-fit-gf-dlr"]], "triqs::gfs::block_gf::operator()": [[250, "triqs-gfs-block-gf-operator"]], "triqs::gfs::fit_tail": [[255, "triqs-gfs-fit-tail"]], "triqs::gfs::block_gf::operator=": [[251, "triqs-gfs-block-gf-operator"]], "triqs::gfs::fit_hermitian_tail": [[254, "triqs-gfs-fit-hermitian-tail"]], "triqs::gfs::density": [[252, "triqs-gfs-density"]], "triqs::gfs::flatten_2d": [[256, "triqs-gfs-flatten-2d"]], "triqs::gfs::gf": [[259, "triqs-gfs-gf"]], "Accessors": [[259, "accessors"], [271, "accessors"], [283, "accessors"]], "triqs::gfs::gf::constructor": [[260, "triqs-gfs-gf-constructor"]], "triqs::gfs::gf::data": [[261, "triqs-gfs-gf-data"]], "triqs::gfs::flatten_gf_2d": [[257, "triqs-gfs-flatten-gf-2d"]], "triqs::gfs::get_mesh": [[258, "triqs-gfs-get-mesh"]], "triqs::gfs::gf::operator<<": [[267, "triqs-gfs-gf-operator"]], "triqs::gfs::gf::data_shape": [[262, "triqs-gfs-gf-data-shape"]], "triqs::gfs::gf::h5_read": [[263, "triqs-gfs-gf-h5-read"]], "triqs::gfs::gf::hdf5_format": [[265, "triqs-gfs-gf-hdf5-format"]], "triqs::gfs::gf::h5_write": [[264, "triqs-gfs-gf-h5-write"]], "triqs::gfs::gf::mesh": [[266, "triqs-gfs-gf-mesh"]], "triqs::gfs::gf_const_view::constructor": [[272, "triqs-gfs-gf-const-view-constructor"]], "triqs::gfs::gf_const_view::data": [[273, "triqs-gfs-gf-const-view-data"]], "triqs::gfs::gf::operator=": [[268, "triqs-gfs-gf-operator"]], "triqs::gfs::gf_const_view": [[271, "triqs-gfs-gf-const-view"]], "triqs::gfs::gf::target_shape": [[270, "triqs-gfs-gf-target-shape"]], "triqs::gfs::gf::target_indices": [[269, "triqs-gfs-gf-target-indices"]], "triqs::gfs::gf_const_view::h5_write": [[276, "triqs-gfs-gf-const-view-h5-write"]], "triqs::gfs::gf_const_view::mesh": [[278, "triqs-gfs-gf-const-view-mesh"]], "triqs::gfs::gf_const_view::hdf5_format": [[277, "triqs-gfs-gf-const-view-hdf5-format"]], "triqs::gfs::gf_const_view::data_shape": [[274, "triqs-gfs-gf-const-view-data-shape"]], "triqs::gfs::gf_const_view::operator<<": [[279, "triqs-gfs-gf-const-view-operator"]], "triqs::gfs::gf_const_view::h5_read": [[275, "triqs-gfs-gf-const-view-h5-read"]], "triqs::gfs::gf_const_view::target_shape": [[282, "triqs-gfs-gf-const-view-target-shape"]], "triqs::gfs::gf_const_view::target_indices": [[281, "triqs-gfs-gf-const-view-target-indices"]], "triqs::gfs::gf_view::constructor": [[284, "triqs-gfs-gf-view-constructor"]], "triqs::gfs::gf_view::data": [[285, "triqs-gfs-gf-view-data"]], "triqs::gfs::gf_view": [[283, "triqs-gfs-gf-view"]], "triqs::gfs::gf_const_view::rebind": [[280, "triqs-gfs-gf-const-view-rebind"]], "triqs::gfs::gf_view::data_shape": [[286, "triqs-gfs-gf-view-data-shape"]], "triqs::gfs::gf_view::operator<<": [[291, "triqs-gfs-gf-view-operator"]], "triqs::gfs::gf_view::hdf5_format": [[289, "triqs-gfs-gf-view-hdf5-format"]], "triqs::gfs::gf_view::h5_write": [[288, "triqs-gfs-gf-view-h5-write"]], "triqs::gfs::gf_view::mesh": [[290, "triqs-gfs-gf-view-mesh"]], "triqs::gfs::gf_view::h5_read": [[287, "triqs-gfs-gf-view-h5-read"]], "triqs::gfs::imag": [[297, "triqs-gfs-imag"]], "triqs::gfs::gf_view::target_indices": [[294, "triqs-gfs-gf-view-target-indices"]], "triqs::gfs::h5_read_gf_struct": [[296, "triqs-gfs-h5-read-gf-struct"]], "triqs::gfs::gf_view::operator=": [[292, "triqs-gfs-gf-view-operator"]], "triqs::gfs::gf_view::rebind": [[293, "triqs-gfs-gf-view-rebind"]], "triqs::gfs::gf_view::target_shape": [[295, "triqs-gfs-gf-view-target-shape"]], "triqs::gfs::is_gf_real": [[301, "triqs-gfs-is-gf-real"]], "triqs::gfs::impl_tag": [[298, "triqs-gfs-impl-tag"]], "triqs::gfs::inverse": [[299, "triqs-gfs-inverse"]], "triqs::gfs::make_block2_gf": [[303, "triqs-gfs-make-block2-gf"]], "triqs::gfs::is_gf_real_in_tau": [[302, "triqs-gfs-is-gf-real-in-tau"]], "triqs::gfs::is_gf_hermitian": [[300, "triqs-gfs-is-gf-hermitian"]], "triqs::gfs::make_gf_dlr": [[306, "triqs-gfs-make-gf-dlr"]], "triqs::gfs::make_gf_dlr_imtime": [[308, "triqs-gfs-make-gf-dlr-imtime"]], "triqs::gfs::make_block_gf": [[304, "triqs-gfs-make-block-gf"]], "triqs::gfs::make_gf_from_fourier": [[309, "triqs-gfs-make-gf-from-fourier"]], "triqs::gfs::make_block_gf_view": [[305, "triqs-gfs-make-block-gf-view"]], "triqs::gfs::make_gf_dlr_imfreq": [[307, "triqs-gfs-make-gf-dlr-imfreq"]], "triqs::gfs::make_hermitian": [[314, "triqs-gfs-make-hermitian"]], "triqs::gfs::make_gf_imtime": [[313, "triqs-gfs-make-gf-imtime"]], "triqs::gfs::make_gf_from_inverse_fourier": [[310, "triqs-gfs-make-gf-from-inverse-fourier"]], "triqs::gfs::make_gf_from_real_gf": [[311, "triqs-gfs-make-gf-from-real-gf"]], "triqs::gfs::make_real_in_tau": [[315, "triqs-gfs-make-real-in-tau"]], "triqs::gfs::make_gf_imfreq": [[312, "triqs-gfs-make-gf-imfreq"]], "triqs::gfs::tau_L2_norm": [[321, "triqs-gfs-tau-l2-norm"]], "triqs::gfs::mpi_reduce": [[317, "triqs-gfs-mpi-reduce"]], "triqs::gfs::positive_freq_view": [[318, "triqs-gfs-positive-freq-view"]], "triqs::gfs::real": [[319, "triqs-gfs-real"]], "triqs::gfs::reinterpret_scalar_valued_gf_as_matrix_valued": [[320, "triqs-gfs-reinterpret-scalar-valued-gf-as-matrix-valued"]], "triqs::gfs::make_zero_tail": [[316, "triqs-gfs-make-zero-tail"]], "triqs::gfs::unflatten_2d": [[322, "triqs-gfs-unflatten-2d"]], "triqs::hilbert_space::fundamental_operator_set::cbegin": [[327, "triqs-hilbert-space-fundamental-operator-set-cbegin"]], "triqs::hilbert_space::fundamental_operator_set": [[325, "triqs-hilbert-space-fundamental-operator-set"]], "triqs::hilbert_space": [[324, "triqs-hilbert-space"]], "triqs::hilbert_space::fundamental_operator_set::begin": [[326, "triqs-hilbert-space-fundamental-operator-set-begin"]], "triqs::gfs::unflatten_gf_2d": [[323, "triqs-gfs-unflatten-gf-2d"]], "triqs::hilbert_space::fundamental_operator_set::h5_read_attribute": [[332, "triqs-hilbert-space-fundamental-operator-set-h5-read-attribute"]], "triqs::hilbert_space::fundamental_operator_set::end": [[331, "triqs-hilbert-space-fundamental-operator-set-end"]], "triqs::hilbert_space::fundamental_operator_set::data": [[330, "triqs-hilbert-space-fundamental-operator-set-data"]], "triqs::hilbert_space::fundamental_operator_set::constructor": [[329, "triqs-hilbert-space-fundamental-operator-set-constructor"]], "triqs::hilbert_space::fundamental_operator_set::h5_write_attribute": [[333, "triqs-hilbert-space-fundamental-operator-set-h5-write-attribute"]], "triqs::hilbert_space::fundamental_operator_set::cend": [[328, "triqs-hilbert-space-fundamental-operator-set-cend"]], "triqs::hilbert_space::fundamental_operator_set::size": [[339, "triqs-hilbert-space-fundamental-operator-set-size"]], "triqs::hilbert_space::fundamental_operator_set::insert": [[335, "triqs-hilbert-space-fundamental-operator-set-insert"]], "triqs::hilbert_space::fundamental_operator_set::operator[]": [[338, "triqs-hilbert-space-fundamental-operator-set-operator"]], "triqs::hilbert_space::fundamental_operator_set::operator==": [[337, "triqs-hilbert-space-fundamental-operator-set-operator"]], "triqs::hilbert_space::fundamental_operator_set::has_indices": [[334, "triqs-hilbert-space-fundamental-operator-set-has-indices"]], "triqs::hilbert_space::fundamental_operator_set::insert_from_indices_t": [[336, "triqs-hilbert-space-fundamental-operator-set-insert-from-indices-t"]], "triqs::hilbert_space::hilbert_space::h5_write": [[345, "triqs-hilbert-space-hilbert-space-h5-write"]], "triqs::hilbert_space::hilbert_space": [[340, "triqs-hilbert-space-hilbert-space"]], "triqs::hilbert_space::hilbert_space::constructor": [[341, "triqs-hilbert-space-hilbert-space-constructor"]], "triqs::hilbert_space::hilbert_space::get_fock_state": [[342, "triqs-hilbert-space-hilbert-space-get-fock-state"]], "triqs::hilbert_space::hilbert_space::h5_read": [[344, "triqs-hilbert-space-hilbert-space-h5-read"]], "triqs::hilbert_space::hilbert_space::get_state_index": [[343, "triqs-hilbert-space-hilbert-space-get-state-index"]], "triqs::hilbert_space::hilbert_space::has_state": [[346, "triqs-hilbert-space-hilbert-space-has-state"]], "triqs::hilbert_space::imperative_operator": [[351, "triqs-hilbert-space-imperative-operator"]], "triqs::hilbert_space::hilbert_space::size": [[350, "triqs-hilbert-space-hilbert-space-size"]], "triqs::hilbert_space::hilbert_space::operator==": [[349, "triqs-hilbert-space-hilbert-space-operator"]], "triqs::hilbert_space::hilbert_space::hdf5_format": [[347, "triqs-hilbert-space-hilbert-space-hdf5-format"]], "triqs::hilbert_space::hilbert_space::operator!=": [[348, "triqs-hilbert-space-hilbert-space-operator"]], "triqs::hilbert_space::imperative_operator::is_empty": [[353, "triqs-hilbert-space-imperative-operator-is-empty"]], "triqs::hilbert_space::imperative_operator::update": [[355, "triqs-hilbert-space-imperative-operator-update"]], "triqs::hilbert_space::make_zero_state": [[356, "triqs-hilbert-space-make-zero-state"]], "triqs::hilbert_space::imperative_operator::operator()": [[354, "triqs-hilbert-space-imperative-operator-operator"]], "triqs::hilbert_space::imperative_operator::constructor": [[352, "triqs-hilbert-space-imperative-operator-constructor"]], "triqs::hilbert_space::space_partition": [[357, "triqs-hilbert-space-space-partition"]], "triqs::hilbert_space::space_partition::foreach": [[360, "triqs-hilbert-space-space-partition-foreach"]], "triqs::hilbert_space::space_partition::lookup_basis_state": [[362, "triqs-hilbert-space-space-partition-lookup-basis-state"]], "triqs::hilbert_space::space_partition::constructor": [[358, "triqs-hilbert-space-space-partition-constructor"]], "triqs::hilbert_space::space_partition::merge_subspaces": [[363, "triqs-hilbert-space-space-partition-merge-subspaces"]], "triqs::hilbert_space::space_partition::find_mappings": [[359, "triqs-hilbert-space-space-partition-find-mappings"]], "triqs::hilbert_space::space_partition::get_matrix_elements": [[361, "triqs-hilbert-space-space-partition-get-matrix-elements"]], "triqs::hilbert_space::state::dot_product": [[369, "triqs-hilbert-space-state-hilbertspace-scalartype-false-dot-product"]], "triqs::hilbert_space::state": [[365, "triqs-hilbert-space-state"]], "triqs::hilbert_space::state::amplitudes": [[367, "triqs-hilbert-space-state-hilbertspace-scalartype-false-amplitudes"]], "triqs::hilbert_space::space_partition::n_subspaces": [[364, "triqs-hilbert-space-space-partition-n-subspaces"]], "triqs::hilbert_space::state": [[366, "triqs-hilbert-space-state-hilbertspace-scalartype-false"]], "triqs::hilbert_space::state::constructor": [[368, "triqs-hilbert-space-state-hilbertspace-scalartype-false-constructor"]], "triqs::hilbert_space::state::operator-=": [[375, "triqs-hilbert-space-state-hilbertspace-scalartype-false-operator"]], "triqs::hilbert_space::state::operator()": [[372, "triqs-hilbert-space-state-hilbertspace-scalartype-false-operator"]], "triqs::hilbert_space::state::get_hilbert": [[371, "triqs-hilbert-space-state-hilbertspace-scalartype-false-get-hilbert"]], "triqs::hilbert_space::state::operator*=": [[373, "triqs-hilbert-space-state-hilbertspace-scalartype-false-operator"]], "triqs::hilbert_space::state::foreach": [[370, "triqs-hilbert-space-state-hilbertspace-scalartype-false-foreach"]], "triqs::hilbert_space::state::operator+=": [[374, "triqs-hilbert-space-state-hilbertspace-scalartype-false-operator"]], "triqs::hilbert_space::state::constructor": [[379, "triqs-hilbert-space-state-hilbertspace-scalartype-true-constructor"]], "triqs::hilbert_space::state::set_hilbert": [[376, "triqs-hilbert-space-state-hilbertspace-scalartype-false-set-hilbert"]], "triqs::hilbert_space::state::size": [[377, "triqs-hilbert-space-state-hilbertspace-scalartype-false-size"]], "triqs::hilbert_space::state::foreach": [[381, "triqs-hilbert-space-state-hilbertspace-scalartype-true-foreach"]], "triqs::hilbert_space::state::dot_product": [[380, "triqs-hilbert-space-state-hilbertspace-scalartype-true-dot-product"]], "triqs::hilbert_space::state": [[378, "triqs-hilbert-space-state-hilbertspace-scalartype-true"]], "triqs::hilbert_space::state::get_hilbert": [[382, "triqs-hilbert-space-state-hilbertspace-scalartype-true-get-hilbert"]], "triqs::hilbert_space::state::operator-=": [[387, "triqs-hilbert-space-state-hilbertspace-scalartype-true-operator"]], "triqs::hilbert_space::state::operator*=": [[385, "triqs-hilbert-space-state-hilbertspace-scalartype-true-operator"]], "triqs::hilbert_space::state::nterms": [[383, "triqs-hilbert-space-state-hilbertspace-scalartype-true-nterms"]], "triqs::hilbert_space::state::operator()": [[384, "triqs-hilbert-space-state-hilbertspace-scalartype-true-operator"]], "triqs::hilbert_space::state::operator+=": [[386, "triqs-hilbert-space-state-hilbertspace-scalartype-true-operator"]], "triqs::hilbert_space::sub_hilbert_space::add_fock_state": [[391, "triqs-hilbert-space-sub-hilbert-space-add-fock-state"]], "triqs::hilbert_space::sub_hilbert_space::constructor": [[392, "triqs-hilbert-space-sub-hilbert-space-constructor"]], "triqs::hilbert_space::state::size": [[389, "triqs-hilbert-space-state-hilbertspace-scalartype-true-size"]], "triqs::hilbert_space::sub_hilbert_space::get_all_fock_states": [[393, "triqs-hilbert-space-sub-hilbert-space-get-all-fock-states"]], "triqs::hilbert_space::sub_hilbert_space": [[390, "triqs-hilbert-space-sub-hilbert-space"]], "triqs::hilbert_space::state::set_hilbert": [[388, "triqs-hilbert-space-state-hilbertspace-scalartype-true-set-hilbert"]], "triqs::hilbert_space::sub_hilbert_space::has_state": [[399, "triqs-hilbert-space-sub-hilbert-space-has-state"]], "triqs::hilbert_space::sub_hilbert_space::get_index": [[395, "triqs-hilbert-space-sub-hilbert-space-get-index"]], "triqs::hilbert_space::sub_hilbert_space::get_state_index": [[396, "triqs-hilbert-space-sub-hilbert-space-get-state-index"]], "triqs::hilbert_space::sub_hilbert_space::h5_read": [[397, "triqs-hilbert-space-sub-hilbert-space-h5-read"]], "triqs::hilbert_space::sub_hilbert_space::h5_write": [[398, "triqs-hilbert-space-sub-hilbert-space-h5-write"]], "triqs::hilbert_space::sub_hilbert_space::get_fock_state": [[394, "triqs-hilbert-space-sub-hilbert-space-get-fock-state"]], "triqs::hilbert_space::sub_hilbert_space::hdf5_format": [[400, "triqs-hilbert-space-sub-hilbert-space-hdf5-format"]], "triqs::mc_tools": [[405, "triqs-mc-tools"]], "triqs::hilbert_space::sub_hilbert_space::operator==": [[402, "triqs-hilbert-space-sub-hilbert-space-operator"]], "triqs::hilbert_space::sub_hilbert_space::operator!=": [[401, "triqs-hilbert-space-sub-hilbert-space-operator"]], "triqs::hilbert_space::sub_hilbert_space::set_index": [[403, "triqs-hilbert-space-sub-hilbert-space-set-index"]], "triqs::hilbert_space::sub_hilbert_space::size": [[404, "triqs-hilbert-space-sub-hilbert-space-size"]], "triqs::mc_tools::mc_generic::add_measure": [[408, "triqs-mc-tools-mc-generic-add-measure"]], "triqs::mc_tools::mc_generic": [[406, "triqs-mc-tools-mc-generic"]], "triqs::mc_tools::mc_generic::clear_measures": [[411, "triqs-mc-tools-mc-generic-clear-measures"]], "triqs::mc_tools::mc_generic::add_measure_aux": [[409, "triqs-mc-tools-mc-generic-add-measure-aux"]], "triqs::mc_tools::mc_generic::add_move": [[410, "triqs-mc-tools-mc-generic-add-move"]], "triqs::mc_tools::mc_generic::accumulate": [[407, "triqs-mc-tools-mc-generic-accumulate"]], "triqs::mc_tools::mc_generic::constructor": [[413, "triqs-mc-tools-mc-generic-constructor"]], "triqs::mc_tools::mc_generic::get_config_id": [[417, "triqs-mc-tools-mc-generic-get-config-id"]], "triqs::mc_tools::mc_generic::collect_results": [[412, "triqs-mc-tools-mc-generic-collect-results"]], "triqs::mc_tools::mc_generic::get_accumulation_time": [[415, "triqs-mc-tools-mc-generic-get-accumulation-time"]], "triqs::mc_tools::mc_generic::get_acceptance_rates": [[414, "triqs-mc-tools-mc-generic-get-acceptance-rates"]], "triqs::mc_tools::mc_generic::get_accumulation_time_HHMMSS": [[416, "triqs-mc-tools-mc-generic-get-accumulation-time-hhmmss"]], "triqs::mc_tools::mc_generic::get_rng": [[421, "triqs-mc-tools-mc-generic-get-rng"]], "triqs::mc_tools::mc_generic::get_warmup_time": [[423, "triqs-mc-tools-mc-generic-get-warmup-time"]], "triqs::mc_tools::mc_generic::get_total_time": [[422, "triqs-mc-tools-mc-generic-get-total-time"]], "triqs::mc_tools::mc_generic::get_percent": [[420, "triqs-mc-tools-mc-generic-get-percent"]], "triqs::mc_tools::mc_generic::get_duration": [[419, "triqs-mc-tools-mc-generic-get-duration"]], "triqs::mc_tools::mc_generic::get_current_cycle_number": [[418, "triqs-mc-tools-mc-generic-get-current-cycle-number"]], "triqs::mc_tools::mc_generic::set_after_cycle_duty": [[429, "triqs-mc-tools-mc-generic-set-after-cycle-duty"]], "triqs::mc_tools::mc_generic::get_warmup_time_HHMMSS": [[424, "triqs-mc-tools-mc-generic-get-warmup-time-hhmmss"]], "triqs::mc_tools::mc_generic::h5_read": [[425, "triqs-mc-tools-mc-generic-h5-read"]], "triqs::mc_tools::mc_generic::run": [[428, "triqs-mc-tools-mc-generic-run"]], "triqs::mc_tools::mc_generic::h5_write": [[426, "triqs-mc-tools-mc-generic-h5-write"]], "triqs::mc_tools::mc_generic::rm_measure": [[427, "triqs-mc-tools-mc-generic-rm-measure"]], "triqs::mc_tools::move_set": [[432, "triqs-mc-tools-move-set"]], "triqs::mc_tools::mc_generic::warmup": [[430, "triqs-mc-tools-mc-generic-warmup"]], "triqs::mc_tools::mc_generic::warmup_and_accumulate": [[431, "triqs-mc-tools-mc-generic-warmup-and-accumulate"]], "triqs::mc_tools::move_set::accept": [[433, "triqs-mc-tools-move-set-accept"]], "triqs::mc_tools::move_set::add": [[434, "triqs-mc-tools-move-set-add"]], "triqs::mc_tools::move_set::attempt": [[435, "triqs-mc-tools-move-set-attempt"]], "triqs::mc_tools::move_set::collect_statistics": [[437, "triqs-mc-tools-move-set-collect-statistics"]], "triqs::mc_tools::move_set::clear_statistics": [[436, "triqs-mc-tools-move-set-clear-statistics"]], "triqs::mc_tools::move_set::constructor": [[438, "triqs-mc-tools-move-set-constructor"]], "triqs::mc_tools::move_set::get_statistics": [[440, "triqs-mc-tools-move-set-get-statistics"]], "triqs::mc_tools::move_set::get_acceptance_rates": [[439, "triqs-mc-tools-move-set-get-acceptance-rates"]], "triqs::mc_tools::move_set::reject": [[441, "triqs-mc-tools-move-set-reject"]], "triqs::mc_tools::random_generator_names": [[447, "triqs-mc-tools-random-generator-names"]], "triqs::mc_tools::random_generator::preview": [[446, "triqs-mc-tools-random-generator-preview"]], "triqs::mc_tools::random_generator::constructor": [[443, "triqs-mc-tools-random-generator-constructor"]], "triqs::mc_tools::random_generator::name": [[444, "triqs-mc-tools-random-generator-name"]], "triqs::mc_tools::random_generator::operator()": [[445, "triqs-mc-tools-random-generator-operator"]], "triqs::mc_tools::random_generator": [[442, "triqs-mc-tools-random-generator"]], "triqs::stat": [[448, "triqs-stat"]], "triqs::stat::accumulator": [[449, "triqs-stat-accumulator"]], "Logarithmic (Log) Binning": [[449, "logarithmic-log-binning"]], "Linear (Lin) Binning": [[449, "linear-lin-binning"]], "triqs::stat::accumulator::compress_linear_bins": [[450, "triqs-stat-accumulator-compress-linear-bins"]], "triqs::stat::accumulator::constructor": [[451, "triqs-stat-accumulator-constructor"]], "triqs::stat::accumulator::data_input_count": [[452, "triqs-stat-accumulator-data-input-count"]], "triqs::stat::accumulator::lin_bin_capacity": [[453, "triqs-stat-accumulator-lin-bin-capacity"]], "triqs::stat::accumulator::log_bin_errors": [[455, "triqs-stat-accumulator-log-bin-errors"]], "triqs::stat::accumulator::n_lin_bins": [[457, "triqs-stat-accumulator-n-lin-bins"]], "triqs::stat::accumulator::n_log_bins": [[459, "triqs-stat-accumulator-n-log-bins"]], "triqs::stat::accumulator::log_bin_errors_all_reduce": [[456, "triqs-stat-accumulator-log-bin-errors-all-reduce"]], "triqs::stat::accumulator::n_lin_bins_max": [[458, "triqs-stat-accumulator-n-lin-bins-max"]], "triqs::stat::accumulator::linear_bins": [[454, "triqs-stat-accumulator-linear-bins"]], "triqs::stat::histogram": [[463, "triqs-stat-histogram"]], "triqs::stat::accumulator::operator<<": [[461, "triqs-stat-accumulator-operator"]], "triqs::stat::histogram::constructor": [[465, "triqs-stat-histogram-constructor"]], "triqs::stat::accumulator::n_log_bins_max": [[460, "triqs-stat-accumulator-n-log-bins-max"]], "triqs::stat::histogram::clear": [[464, "triqs-stat-histogram-clear"]], "triqs::stat::cdf": [[462, "triqs-stat-cdf"]], "triqs::stat::histogram::hdf5_format": [[469, "triqs-stat-histogram-hdf5-format"]], "triqs::stat::histogram::limits": [[470, "triqs-stat-histogram-limits"]], "triqs::stat::histogram::h5_read": [[467, "triqs-stat-histogram-h5-read"]], "triqs::stat::histogram::h5_write": [[468, "triqs-stat-histogram-h5-write"]], "triqs::stat::histogram::data": [[466, "triqs-stat-histogram-data"]], "triqs::stat::histogram::mesh_point": [[471, "triqs-stat-histogram-mesh-point"]], "triqs::stat::histogram::operator+": [[476, "triqs-stat-histogram-operator"]], "triqs::stat::histogram::mpi_broadcast": [[472, "triqs-stat-histogram-mpi-broadcast"]], "triqs::stat::histogram::n_data_pts": [[474, "triqs-stat-histogram-n-data-pts"]], "triqs::stat::histogram::mpi_reduce": [[473, "triqs-stat-histogram-mpi-reduce"]], "triqs::stat::histogram::n_lost_pts": [[475, "triqs-stat-histogram-n-lost-pts"]], "triqs::stat::histogram::operator<<": [[477, "triqs-stat-histogram-operator"]], "triqs::stat::jackknife_mpi": [[481, "triqs-stat-jackknife-mpi"]], "triqs::stat::histogram::size": [[479, "triqs-stat-histogram-size"]], "triqs::stat::histogram::operator==": [[478, "triqs-stat-histogram-operator"]], "triqs::stat::mean_and_err": [[483, "triqs-stat-mean-and-err"]], "triqs::stat::jackknife": [[480, "triqs-stat-jackknife"]], "triqs::stat::mean": [[482, "triqs-stat-mean"]], "triqs::stat::pdf": [[486, "triqs-stat-pdf"]], "Manipulations of determinants": [[512, "manipulations-of-determinants"]], "HDFArchive": [[498, "hdfarchive"]], "HDFArchiveGroup": [[498, "hdfarchivegroup"]], "HDFArchiveInert": [[498, "hdfarchiveinert"]], "Hdf-compliant objects": [[498, "hdf-compliant-objects"]], "How does a class become hdf-compliant?": [[498, "how-does-a-class-become-hdf-compliant"]], "triqs::stat::mean_mpi": [[485, "triqs-stat-mean-mpi"]], "triqs::stat::tau_estimate_from_errors": [[487, "triqs-stat-tau-estimate-from-errors"]], "triqs::stat::mean_and_err_mpi": [[484, "triqs-stat-mean-and-err-mpi"]], "Finite temperature antiferromagnetism in two dimensional systems": [[1908, "Finite-temperature-antiferromagnetism-in-two-dimensional-systems"], [1903, "Finite-temperature-antiferromagnetism-in-two-dimensional-systems"]], "Mermin-Wagner theorem": [[1908, "Mermin-Wagner-theorem"], [1903, "Mermin-Wagner-theorem"]], "TPSC and the Mermin-Wagner theorem": [[1908, "TPSC-and-the-Mermin-Wagner-theorem"], [1903, "TPSC-and-the-Mermin-Wagner-theorem"]], "Code from previous notebooks": [[1908, "Code-from-previous-notebooks"], [1903, "Code-from-previous-notebooks"]], "\\chi_0 calculator for arbitrary \\beta": [[1908, "\\chi_0-calculator-for-arbitrary-\\beta"], [1903, "\\chi_0-calculator-for-arbitrary-\\beta"]], "RPA spin structure factor S_{RPA} as a function of temperature T": [[1908, "RPA-spin-structure-factor-S_{RPA}-as-a-function-of-temperature-T"], [1903, "RPA-spin-structure-factor-S_{RPA}-as-a-function-of-temperature-T"]], "TPSC spin structure factor S_{TPSC} as a function of temperature": [[1908, "TPSC-spin-structure-factor-S_{TPSC}-as-a-function-of-temperature"], [1903, "TPSC-spin-structure-factor-S_{TPSC}-as-a-function-of-temperature"]], "Questions": [[1908, "Questions"], [1903, "Questions"]], "Remarks": [[1908, "Remarks"], [1903, "Remarks"]], "Two-particle self consistency (TPSC)": [[1907, "Two-particle-self-consistency-(TPSC)"], [1902, "Two-particle-self-consistency-(TPSC)"]], "Theory": [[1907, "Theory"], [1905, "Theory"], [1902, "Theory"], [1900, "Theory"]], "Behaviour of U_{sp} and U_{ch} vs.\u00a0U": [[1907, "Behaviour-of-U_{sp}-and-U_{ch}-vs.\u00a0U"], [1902, "Behaviour-of-U_{sp}-and-U_{ch}-vs.\u00a0U"]], "Note: weakness of RPA": [[1907, "Note:-weakness-of-RPA"], [1902, "Note:-weakness-of-RPA"]], "Fermions on the square lattice & perfect nesting": [[1904, "Fermions-on-the-square-lattice-&-perfect-nesting"], [1899, "Fermions-on-the-square-lattice-&-perfect-nesting"]], "Square lattice with nearest-neighbour hopping": [[1904, "Square-lattice-with-nearest-neighbour-hopping"], [1899, "Square-lattice-with-nearest-neighbour-hopping"]], "Non-interacting lattice Green\u2019s function": [[1904, "Non-interacting-lattice-Green\u2019s-function"], [1899, "Non-interacting-lattice-Green\u2019s-function"]], "Fermi surface nesting": [[1904, "Fermi-surface-nesting"], [1899, "Fermi-surface-nesting"]], "Susceptibility \\chi_0 of non-interacting fermions": [[1905, "Susceptibility-\\chi_0-of-non-interacting-fermions"], [1900, "Susceptibility-\\chi_0-of-non-interacting-fermions"]], "Fast calculation using Fourier transform": [[1905, "Fast-calculation-using-Fourier-transform"], [1900, "Fast-calculation-using-Fourier-transform"]], "Goals and questions": [[1905, "Goals-and-questions"], [1900, "Goals-and-questions"]], "Compute the susceptibility \\chi_0(\\mathbf{q}, i\\omega_n)": [[1905, "Compute-the-susceptibility-\\chi_0(\\mathbf{q},-i\\omega_n)"], [1900, "Compute-the-susceptibility-\\chi_0(\\mathbf{q},-i\\omega_n)"]], "Static susceptibility \\chi_0(\\mathbf{q}, \\omega=0) and perfect nesting": [[1905, "Static-susceptibility-\\chi_0(\\mathbf{q},-\\omega=0)-and-perfect-nesting"], [1900, "Static-susceptibility-\\chi_0(\\mathbf{q},-\\omega=0)-and-perfect-nesting"]], "The random phase approximation (RPA)": [[1906, "The-random-phase-approximation-(RPA)"], [1901, "The-random-phase-approximation-(RPA)"]], "RPA solver": [[1906, "RPA-solver"], [1901, "RPA-solver"]], "Single-orbital Hubbard model": [[1895, "Single-orbital-Hubbard-model"], [1890, "Single-orbital-Hubbard-model"]], "Solution 1": [[1895, "Solution-1"], [1896, "Solution-1"]], "Solution 2": [[1895, "Solution-2"], [1896, "Solution-2"]], "Solution 3": [[1895, "Solution-3"]], "Solution 4": [[1895, "Solution-4"]], "Solution 5": [[1895, "Solution-5"]], "Solution 6": [[1895, "Solution-6"]], "Two-orbital Hubbard model": [[1896, "Two-orbital-Hubbard-model"], [1891, "Two-orbital-Hubbard-model"]], "J = 0.0": [[1896, "J-=-0.0"], [1896, "id1"]], "J = 0.1 U": [[1896, "J-=-0.1-U"], [1896, "id2"]], "J = 0.2 U": [[1896, "J-=-0.2-U"], [1896, "id3"]], "Conclusion of Exercise 2": [[1896, "Conclusion-of-Exercise-2"]], "Solution of exercise 3": [[1896, "Solution-of-exercise-3"]], "Conclusion of Exercise 3": [[1896, "Conclusion-of-Exercise-3"]], "Tutorial repository": [[1898, "tutorial-repository"]], "Valence-Bond DMFT solution of the Hubbard model": [[1897, "Valence-Bond-DMFT-solution-of-the-Hubbard-model"], [1892, "Valence-Bond-DMFT-solution-of-the-Hubbard-model"]], "Analyzing the precomputed results": [[1897, "Analyzing-the-precomputed-results"], [1892, "Analyzing-the-precomputed-results"]], "General reminder: Anderson impurity model and CTHYB solver": [[1889, "General-reminder:-Anderson-impurity-model-and-CTHYB-solver"]], "The TRIQS/CTHYB impurity solver": [[1889, "The-TRIQS/CTHYB-impurity-solver"]], "Setting up the impurity solver": [[1889, "Setting-up-the-impurity-solver"]], "Visualizing the imaginary time sampled G(\\tau)": [[1889, "Visualizing-the-imaginary-time-sampled-G(\\tau)"]], "Visualizing the Matsubara-frequency results": [[1889, "Visualizing-the-Matsubara-frequency-results"]], "A first DMFT calculation": [[1894, "A-first-DMFT-calculation"], [1888, "A-first-DMFT-calculation"]], "The iterated perturbation theory": [[1894, "The-iterated-perturbation-theory"], [1888, "The-iterated-perturbation-theory"]], "Dynamical mean-field theory": [[1894, "Dynamical-mean-field-theory"], [1888, "Dynamical-mean-field-theory"]], "Bethe lattice DMFT": [[1894, "Bethe-lattice-DMFT"], [1888, "Bethe-lattice-DMFT"]], "Visualizing the Mott transition": [[1894, "Visualizing-the-Mott-transition"], [1888, "Visualizing-the-Mott-transition"]], "Comparison with the literature": [[1894, "Comparison-with-the-literature"]], "Tutorials": [[1893, "tutorials"]], "TRIQS Green\u2019s functions": [[1887, "TRIQS-Green\u2019s-functions"], [1883, "TRIQS-Green\u2019s-functions"]], "Matrix-Valued Green\u2019s functions": [[1887, "Matrix-Valued-Green\u2019s-functions"], [1883, "Matrix-Valued-Green\u2019s-functions"]], "Block Green\u2019s functions": [[1887, "Block-Green\u2019s-functions"], [1883, "Block-Green\u2019s-functions"]], "Additional Initialization Descriptors": [[1887, "Additional-Initialization-Descriptors"], [1883, "Additional-Initialization-Descriptors"]], "Flat density of states": [[1887, "Flat-density-of-states"], [1883, "Flat-density-of-states"]], "Semi-circular density of states": [[1887, "Semi-circular-density-of-states"], [1883, "Semi-circular-density-of-states"]], "Imaginary-frequency Green\u2019s functions": [[1887, "Imaginary-frequency-Green\u2019s-functions"], [1883, "Imaginary-frequency-Green\u2019s-functions"]], "Arithmetic Operations": [[1887, "Arithmetic-Operations"], [1883, "Arithmetic-Operations"]], "Obtaining the density": [[1887, "Obtaining-the-density"], [1883, "Obtaining-the-density"]], "Compact meshes for imaginary time / frequency: DLR Green\u2019s function": [[1887, "Compact-meshes-for-imaginary-time-/-frequency:-DLR-Green\u2019s-function"], [1883, "Compact-meshes-for-imaginary-time-/-frequency:-DLR-Green\u2019s-function"]], "Pade analytical continuation": [[1887, "Pade-analytical-continuation"], [1883, "Pade-analytical-continuation"]], "Exercises": [[1887, "Exercises"], [1883, "Exercises"]], "HDF5 Archives": [[1884, "HDF5-Archives"]], "Writing to an archive": [[1884, "Writing-to-an-archive"]], "Reading from an archive": [[1884, "Reading-from-an-archive"]], "Introduction to multivariable Green\u2019s functions": [[1886, "Introduction-to-multivariable-Green\u2019s-functions"]], "Imports and parameters": [[1886, "Imports-and-parameters"]], "Constructing and Initializing a Lattice Green\u2019s function": [[1886, "Constructing-and-Initializing-a-Lattice-Green\u2019s-function"]], "Numpy Broadcasting": [[1886, "Numpy-Broadcasting"]], "Evaluate the Green function": [[1886, "Evaluate-the-Green-function"]], "Defining a Tight-Binding Hamiltonian": [[1886, "Defining-a-Tight-Binding-Hamiltonian"]], "Manipulating fermionic operators": [[1885, "Manipulating-fermionic-operators"]], "Fundamental operators": [[1885, "Fundamental-operators"]], "Number operator": [[1885, "Number-operator"]], "Operations with operators": [[1885, "Operations-with-operators"]], "Exact Diagonalization": [[1885, "Exact-Diagonalization"]], "Comparison to Hubbard-I solution": [[1880, "Comparison-to-Hubbard-I-solution"], [1876, "Comparison-to-Hubbard-I-solution"]], "Advanced: Running a Full charge self-consistent DFT+DMFT calculation": [[1880, "Advanced:-Running-a-Full-charge-self-consistent-DFT+DMFT-calculation"], [1876, "Advanced:-Running-a-Full-charge-self-consistent-DFT+DMFT-calculation"]], "FermiSee": [[1878, "FermiSee"], [1874, "FermiSee"]], "Introducing python and the ipython notebook": [[1881, "Introducing-python-and-the-ipython-notebook"]], "Script mode": [[1881, "Script-mode"]], "Interactive shell mode": [[1881, "Interactive-shell-mode"]], "The ipython notebook": [[1881, "The-ipython-notebook"]], "A very short introduction to python": [[1881, "A-very-short-introduction-to-python"]], "Calculating": [[1881, "Calculating"]], "Simple loops / indentation": [[1881, "Simple-loops-/-indentation"]], "If statements": [[1881, "If-statements"]], "Defining a function": [[1881, "Defining-a-function"]], "Importing modules": [[1881, "Importing-modules"]], "Lists": [[1881, "Lists"]], "The numpy library": [[1881, "The-numpy-library"]], "Defining a new class": [[1881, "Defining-a-new-class"]], "Getting help": [[1881, "Getting-help"]], "Matplotlib Examples": [[1882, "Matplotlib-Examples"]], "Goal of this tutorial": [[1882, "Goal-of-this-tutorial"]], "Inline plots": [[1882, "Inline-plots"]], "Making the plot prettier": [[1882, "Making-the-plot-prettier"]], "Subplots": [[1882, "Subplots"]], "Histograms and text": [[1882, "Histograms-and-text"]], "Python-like approach to matplotlib": [[1882, "Python-like-approach-to-matplotlib"]], "More examples": [[1882, "More-examples"]], "Phase diagram exploration": [[1879, "Phase-diagram-exploration"], [1875, "Phase-diagram-exploration"]], "TRIQS / solid_dmft tutorial": [[1877, "TRIQS-/-solid_dmft-tutorial"], [1873, "TRIQS-/-solid_dmft-tutorial"]], "0. Performing a DFT Quantum Espresso calculation and creating a Wannier Hamiltonian": [[1877, "0.-Performing-a-DFT-Quantum-Espresso-calculation-and-creating-a-Wannier-Hamiltonian"], [1873, "0.-Performing-a-DFT-Quantum-Espresso-calculation-and-creating-a-Wannier-Hamiltonian"]], "1. Creating a low-energy description of La_2CuO_4": [[1877, "1.-Creating-a-low-energy-description-of-La_2CuO_4"], [1873, "1.-Creating-a-low-energy-description-of-La_2CuO_4"]], "2. Run a one-shot DMFT calculation using solid_dmft": [[1877, "2.-Run-a-one-shot-DMFT-calculation-using-solid_dmft"], [1873, "2.-Run-a-one-shot-DMFT-calculation-using-solid_dmft"]], "3. Check convergence": [[1877, "3.-Check-convergence"], [1873, "3.-Check-convergence"]], "Reminder: The TRIQS BlockGf object": [[1877, "Reminder:-The-TRIQS-BlockGf-object"], [1873, "Reminder:-The-TRIQS-BlockGf-object"]], "Plot of the self-energy \u03a3": [[1877, "Plot-of-the-self-energy-\u03a3"], [1873, "Plot-of-the-self-energy-\u03a3"]], "4. Analytic continuation of the self-energy": [[1877, "4.-Analytic-continuation-of-the-self-energy"], [1873, "4.-Analytic-continuation-of-the-self-energy"]], "5. Plot Spectral Function": [[1877, "5.-Plot-Spectral-Function"], [1873, "5.-Plot-Spectral-Function"]], "Analytically continue the impurity Green\u2019s function": [[1877, "Analytically-continue-the-impurity-Green\u2019s-function"], [1873, "Analytically-continue-the-impurity-Green\u2019s-function"]], "6. Plot the Fermi slice at k_z = 0.0 using the solid_dmft post-processing tool": [[1877, "6.-Plot-the-Fermi-slice-at-k_z-=-0.0-using-the-solid_dmft-post-processing-tool"], [1873, "6.-Plot-the-Fermi-slice-at-k_z-=-0.0-using-the-solid_dmft-post-processing-tool"]], "This concludes the first tutorial. You may now continue with tutorial 02-FermiSee.": [[1877, "This-concludes-the-first-tutorial.-You-may-now-continue-with-tutorial-02-FermiSee."], [1873, "This-concludes-the-first-tutorial.-You-may-now-continue-with-tutorial-02-FermiSee."]], "Coefficient extraction": [[574, "coefficient-extraction"]], "Plotting protocols": [[578, "plotting-protocols"]], "mesh::imtime": [[540, "mesh-imtime"]], "Python documentation": [[549, "python-documentation"]], "The Monte Carlo loop": [[568, "the-monte-carlo-loop"]], "C++ variable names": [[568, "c-variable-names"]], "Monte Carlo loop and connection with moves and measures": [[568, "monte-carlo-loop-and-connection-with-moves-and-measures"]], "Full documentation/manual/triqs": [[566, "full-documentation-manual-triqs"], [513, "full-documentation-manual-triqs"]], "The blocks: matrix-valued Green\u2019s functions": [[543, "the-blocks-matrix-valued-green-s-functions"]], "Slicing": [[543, "slicing"]], "Bracket Accessor": [[543, "bracket-accessor"]], "Assignment: << or = operator": [[543, "assignment-or-operator"]], "Lazy expressions": [[543, "lazy-expressions"]], "Plot options": [[543, "plot-options"]], "Direct access to data points": [[543, "direct-access-to-data-points"]], "Tools for Monte Carlo": [[565, "tools-for-monte-carlo"]], "The det_manip class": [[513, "the-det-manip-class"]], "Parameter & construction": [[513, "parameter-construction"]], "Public types": [[513, "public-types"]], "Public member functions": [[513, "public-member-functions"]], "Under the hood \u2026": [[513, "under-the-hood"]], "[gf>] Multiple variables": [[532, "gf-prod-x-y-multiple-variables"]], "Subscript operator": [[532, "subscript-operator"]], "Clef expressions": [[532, "clef-expressions"]], "Functional techniques": [[532, "functional-techniques"]], "gf and views": [[521, "gf-and-views"]], "Non-member functions": [[521, "non-member-functions"]], "mesh::imfreq": [[539, "mesh-imfreq"]], "C++ documentation": [[518, "c-documentation"]], "[gf] Green function on Matsubara frequencies": [[527, "gf-imfreq-green-function-on-matsubara-frequencies"]]}, "indexentries": {"h5": [[496, "module-h5"]], "module": [[496, "module-h5"], [543, "index-0"]], "hdfarchive (class in h5)": [[498, "h5.HDFArchive"]], "hdfarchivegroup (built-in class)": [[498, "HDFArchiveGroup"]], "hdfarchiveinert (built-in class)": [[498, "HDFArchiveInert"]], "apply_on_leaves() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.apply_on_leaves"]], "built-in function": [[498, "register_class"]], "create_group() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.create_group"]], "get_raw() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.get_raw"]], "is_data() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.is_data"]], "is_group() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.is_group"]], "items() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.items"]], "keys() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.keys"]], "read_attr() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.read_attr"]], "register_class()": [[498, "register_class"]], "root_path() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.root_path"]], "update() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.update"]], "values() (hdfarchivegroup method)": [[498, "HDFArchiveGroup.values"]], "lightweight exact diagonalization solver and tools": [[500, "index-0"]], "green's functions": [[543, "index-0"], [549, "index-0"]], "block green's function": [[543, "index-0"]], "gf_imfreq": [[543, "index-0"]], "gf_imtime": [[543, "index-0"]], "gf_legendre": [[543, "index-0"]], "gf_refreq": [[543, "index-0"]], "gf_retime": [[543, "index-0"]], "hilbert space tools": [[555, "index-0"]], "second-quantization operators": [[571, "index-0"]], "analysis": [[578, "index-0"]]}})
\ No newline at end of file
diff --git a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/01-IPT_and_DMFT.html b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/01-IPT_and_DMFT.html
index 59a92d8ff8..040c0571d8 100644
--- a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/01-IPT_and_DMFT.html
+++ b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/01-IPT_and_DMFT.html
@@ -2098,7 +2098,7 @@ Dynamical mean-field theory\(G_0\) and loop until convergence
-
+
Bethe lattice DMFT
diff --git a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/02-Introduction_to_the_CTHYB_solver.html b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/02-Introduction_to_the_CTHYB_solver.html
index 07444a4521..81bb0c2436 100644
--- a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/02-Introduction_to_the_CTHYB_solver.html
+++ b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/02-Introduction_to_the_CTHYB_solver.html
@@ -2062,7 +2062,7 @@
General reminder: Anderson impurity model and CTHYB solver
In the Anderson impurity model, we decompose the full lattice problem into an interacting site (‘impurity’) hybridised to a bath:
-
+
- with the Hamiltonian :nbsphinx-math:`begin{align*}
H = & color{red}{H_{rm imp}} + color{darkgreen}{H_{rm hyb}} + color{blue}{H_{rm bath}} \
diff --git a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/05-VBDMFT_Hubbard.html b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/05-VBDMFT_Hubbard.html
index 18192c1d5e..01f10933e2 100644
--- a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/05-VBDMFT_Hubbard.html
+++ b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/05-VBDMFT_Hubbard.html
@@ -2063,7 +2063,7 @@
Valence-Bond DMFT solution of the Hubbard model\(U/t=10\) and \(t'/t=-0.3\), which are values commonly used for modeling hole-doped cuprates in a single-band framework. All energies (and temperatures) are expressed in units of \(D=4t=1\), and the doping is denoted by \(\delta\).
We subdivide the Brillouin Zone into a minimal set of two patches of equal area \(P_+\) (even) and \(P_-\) (odd).
-
+
\(P_+\) is a central square centered at momentum \((0,0)\) and containing the nodal region; the complementary region \(P_{-}\) extends to the edge of the BZ and contains in particular the antinodal region and the \((\pi,\pi)\) momentum.
[2]:
diff --git a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/01s-IPT_and_DMFT.html b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/01s-IPT_and_DMFT.html
index fce348b7cd..4a4c784fc4 100644
--- a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/01s-IPT_and_DMFT.html
+++ b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/01s-IPT_and_DMFT.html
@@ -2109,7 +2109,7 @@ Dynamical mean-field theory\(G_0\) and loop until convergence
-
+
Bethe lattice DMFT
@@ -2224,7 +2224,7 @@ Visualizing the Mott transition
Comparison with the literature
You can compare the result above with what can be found in the literature (review of Antoine Georges et al.)
-
+
diff --git a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/03s-Single-orbital_Hubbard_with_CTQMC.html b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/03s-Single-orbital_Hubbard_with_CTQMC.html
index 5cc74c5024..6b7d45ac5b 100644
--- a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/03s-Single-orbital_Hubbard_with_CTQMC.html
+++ b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/03s-Single-orbital_Hubbard_with_CTQMC.html
@@ -2337,7 +2337,7 @@ Solution 6
+
Regardless of which package you use for MaxEnt, it is very important to remember that there are some important knobs with which one can play in MaxEnt that can substantially change the results, and so one must be very careful in its use!
Exercise 7
diff --git a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/05s-VBDMFT_Hubbard.html b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/05s-VBDMFT_Hubbard.html
index af7383b1e9..90afbb91a5 100644
--- a/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/05s-VBDMFT_Hubbard.html
+++ b/triqs/3.3.x/userguide/python/tutorials/ModelDMFT/solutions/05s-VBDMFT_Hubbard.html
@@ -2067,7 +2067,7 @@ Valence-Bond DMFT solution of the Hubbard model\(U/t=10\) and \(t'/t=-0.3\), which are values commonly used for modeling hole-doped cuprates in a single-band framework. All energies (and temperatures) are expressed in units of \(D=4t=1\), and the doping is denoted by \(\delta\).
We subdivide the Brillouin Zone into a minimal set of two patches of equal area \(P_+\) (even) and \(P_-\) (odd).
-
+
\(P_+\) is a central square centered at momentum \((0,0)\) and containing the nodal region; the complementary region \(P_{-}\) extends to the edge of the BZ and contains in particular the antinodal region and the \((\pi,\pi)\) momentum.
[1]: