ProductState
A product state of local configurations.
Sources
product_state.hpp
product_state.cpp
product_state.jl
Constructors
Parameter | Description |
---|---|
nsites | construct a product state on nsites |
local_states | the local configurations of the product state |
Iteration
A ProductState can be iterated over, where at each iteration the string of the local configuration is retured. Here is an example:
Methods
nsites
Returns the number of sites of the product state
size
Returns the number of sites of the product state. Same as "nsites".
setindex! / operator[]
Sets the local configuration at the given site index to the given string.
getindex / operator[]
Returns the string of the local configuration at the given site index.
push! / push_back
Adds a local configuration add the end of the product state.
Usage Example
auto pstate = ProductState({"Up", "Dn", "Emp", "UpDn"});
for (auto s : pstate) {
Log("{}", s);
}
XDIAG_SHOW(to_string(pstate));
pstate = ProductState();
pstate.push_back("Dn");
pstate.push_back("Up");
pstate.push_back("Dn");
XDIAG_SHOW(pstate.nsites());
for (auto s : pstate) {
Log("{}", s);
}
XDIAG_SHOW(to_string(pstate));