TRIQS/TRIQS 4.0.0
Researching Interacting Quantum Systems
Loading...
Searching...
No Matches
triqs::stat::AccCompatible

#include <triqs/stat/concepts.hpp>

Detailed Description

Concept to check if a type can be used with triqs::stat::lin_binning or triqs::stat::log_binning.

Allowed types include triqs::stat::StatCompatible types that are either scalar or regular array types.

Template Parameters
TType to check.

Definition at line 58 of file concepts.hpp.

Concept definition

template<typename T>
concept triqs::stat::AccCompatible = StatCompatible<T> && (nda::Scalar<T> || nda::is_regular_v<T>)
Concept to check if a type can be used with triqs::stat::lin_binning or triqs::stat::log_binning.
Definition concepts.hpp:58
Concept to check if a type can be used with various Statistical analysis tools.
Definition concepts.hpp:47