Xped
Loading...
Searching...
No Matches
Properties.hpp
Go to the documentation of this file.
1#ifndef XPED_PROPERTIES_HPP_
2#define XPED_PROPERTIES_HPP_
3
4namespace Xped::PROP {
5
6constexpr bool HERMITIAN = true;
7constexpr bool NON_HERMITIAN = false;
8constexpr bool UNITARY = true;
9constexpr bool NON_UNITARY = false;
10constexpr bool FERMIONIC = true;
11constexpr bool NON_FERMIONIC = false;
12constexpr bool BOSONIC = false;
13constexpr bool COMPRESS = true;
14constexpr bool DONT_COMPRESS = false;
15
16} // namespace Xped::PROP
17#endif
Definition: Properties.hpp:4
constexpr bool COMPRESS
Definition: Properties.hpp:13
constexpr bool FERMIONIC
Definition: Properties.hpp:10
constexpr bool UNITARY
Definition: Properties.hpp:8
constexpr bool NON_FERMIONIC
Definition: Properties.hpp:11
constexpr bool DONT_COMPRESS
Definition: Properties.hpp:14
constexpr bool HERMITIAN
Definition: Properties.hpp:6
constexpr bool BOSONIC
Definition: Properties.hpp:12
constexpr bool NON_UNITARY
Definition: Properties.hpp:9
constexpr bool NON_HERMITIAN
Definition: Properties.hpp:7