#include <bitset>#include <iostream>#include <string>

Go to the source code of this file.
Namespaces | |
| namespace | autopas |
| This is the main namespace of AutoPas. | |
Enumerations | |
| enum class | autopas::OwnershipState : int64_t { autopas::dummy = 0b0000 , autopas::owned = 0b0001 , autopas::halo = 0b0010 } |
| Enum that specifies the state of ownership. More... | |
Functions | |
| constexpr OwnershipState | autopas::operator& (const OwnershipState a, const OwnershipState b) |
| Bitwise AND operator for OwnershipState. | |
| constexpr OwnershipState | autopas::operator| (const OwnershipState a, const OwnershipState b) |
| Bitwise OR operator for OwnershipState. | |
| constexpr int64_t | autopas::toInt64 (const OwnershipState a) |
| Returns the int64_t value of a given OwnershipState. | |
| std::string | autopas::format_as (const OwnershipState &state) |
| This function is needed to pass an ownership state to spdlog/fmt. | |
| std::ostream & | autopas::operator<< (std::ostream &os, const OwnershipState &ownershipState) |
| Insertion operator for OwnershipState. | |