Skip to content

fill

Fills a State with a given model state, e.g. a ProductState or a RandomState.

Sources
fill.hpp
fill.cpp
fill.jl


Definition

void fill(State &state, ProductState const &pstate, int64_t ncol = 0);
void fill(State &state, RandomState const &rstate, int64_t ncol = 0);
fill(state::State, pstate::ProductState, ncol::Int64 = 1)
fill(state::State, rstate::RandomState, ncol::Int64 = 1)
Name Description
state State object to be filled
pstate ProductState object
rstate RandomState object
ncol integer deciding which column of the State is filled (default: 1/0 (Julia/C++))

Usage Example

auto block = Spinhalf(2);
auto state = State(block);  
auto pstate = ProductState({"Up", "Dn"});
fill(state, pstate);
XDIAG_SHOW(state.vector());

auto rstate = RandomState(1234);
fill(state, rstate);
XDIAG_SHOW(state.vector());
block = Spinhalf(2)
state = State(block)
pstate = ProductState(["Up", "Dn"])
fill(state, pstate)
display(vector(state))

rstate = RandomState(1234)
fill(state, rstate)
display(vector(state))